Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 40988848 | 622 days ago | IN | 0 POL | 0.00615074 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xdBFa02cB...E69315ee2 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
NFTify1155
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-06-15 */ // File: @openzeppelin/contracts/interfaces/IERC1271.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); } // 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 v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/cryptography/SignatureChecker.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; /** * @dev Signature verification helper: Provide a single mechanism to verify both private-key (EOA) ECDSA signature and * ERC1271 contract signatures. Using this instead of ECDSA.recover in your contract will make them compatible with * smart contract wallets such as Argent and Gnosis. * * Note: unlike ECDSA signatures, contract signature's are revocable, and the outcome of this function can thus change * through time. It could return true at block N and false at block N+1 (or the opposite). * * _Available since v4.1._ */ library SignatureChecker { function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector); } } // 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/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @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, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: contracts/collections/IERC1155Permit.sol pragma solidity ^0.8.0; interface IERC1155Permit { function DOMAIN_SEPARATOR() external view returns (bytes32); /** * @dev Retrieve the current nonce of `account` * @param account the account's address * @return current account's nonce */ function nonces(address account) external view returns (uint256); /** * @notice function to be called by anyone to approve `spender` using a Permit signature * @dev Anyone can call this to approve `spender`, even a third-party * @param owner the owner who approves * @param spender the actor to be approved * @param deadline the deadline for the permit to be used * @param v V component * @param r R component * @param s S component */ function permit( address owner, address spender, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; } // File: contracts/collections/ERC1155Permit.sol pragma solidity ^0.8.0; abstract contract ERC1155Permit is Ownable, Pausable, ERC1155, IERC1155Permit { bytes32 public constant PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 nonce,uint256 deadline)" ); string public name; string public symbol; mapping(address => uint256) private _nonces; /** * This are save as immutable for cheap access * The chainId is also saved to be able to recompute domainSeparator in the case of fork */ bytes32 private immutable _domainSeparator; uint256 private immutable _domainChainId; constructor( string memory _name, string memory _symbol, string memory _uri ) ERC1155(_uri) { name = _name; symbol = _symbol; uint256 chainId; // solhint-disable-next-line no-inline-assembly assembly { chainId := chainid() } _domainChainId = chainId; _domainSeparator = _calculateDomainSeparator(chainId); } /** * @notice Builds the DOMAIN_SEPARATOR (eip712) at time of use * @dev This is not set as a constant, to ensure that the chainId will change in the event of a chain fork * @return the DOMAIN_SEPARATOR of eip712 */ function DOMAIN_SEPARATOR() public view override returns (bytes32) { uint256 chainId; //solhint-disable-next-line no-inline-assembly assembly { chainId := chainid() } return (chainId == _domainChainId) ? _domainSeparator : _calculateDomainSeparator(chainId); } function _calculateDomainSeparator(uint256 chainId) internal view returns (bytes32) { return keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256(bytes("1")), chainId, address(this) ) ); } /** * @dev See {IERC721WithPermitV1-nonces} */ function nonces(address account) public view override returns (uint256) { return _nonces[account]; } /** * @dev See {IERC721WithPermit-permit} */ function permit( address owner, address spender, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public override { require( deadline >= block.timestamp, "ERC721WithPermit: permit deadline expired" ); bytes32 digest = _buildDigest(owner, spender, _nonces[owner], deadline); (address recoveredAddress, ) = ECDSA.tryRecover(digest, v, r, s); require( recoveredAddress == owner, "ERC721WithPermit: invalid permit signature" ); _nonces[owner]++; _setApprovalForAll(owner, spender, true); } /** * @notice Builds the permit digest to sign * @param owner the token owner * @param spender the token spender * @param nonce the nonce to make a permit for * @param deadline the deadline before when the permit can be used * @return the digest to sign */ function _buildDigest( address owner, address spender, uint256 nonce, uint256 deadline ) public view returns (bytes32) { return ECDSA.toTypedDataHash( DOMAIN_SEPARATOR(), keccak256( abi.encode(PERMIT_TYPEHASH, owner, spender, nonce, deadline) ) ); } /** * @notice Query if a contract implements an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @dev Overriden from ERC721 here in order to include the interface of this EIP * @return `true` if the contract implements `interfaceID` and `interfaceID` is not 0xffffffff, `false` otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC1155Permit).interfaceId || super.supportsInterface(interfaceId); } } // File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } } // File: contracts/collections/NFTify1155.sol // collections/NFTify1155.sol pragma solidity ^0.8.0; contract NFTify1155 is Ownable, Pausable, ERC1155Supply, ERC1155Permit { address public controller; constructor( string memory _name, string memory _symbol, string memory _uri, address _controller ) ERC1155Permit(_name, _symbol, _uri) { controller = _controller; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "NFTify: token transfer while paused"); } /** * @dev See {ERC1155-uri} */ function uri(uint256 tokenId) public view virtual override returns (string memory) { string memory baseURI = super.uri(tokenId); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId))) : ""; } /** * @dev Handle mint request */ function mint( address account, uint256 id, uint256 amount, bytes memory data ) public { require( _msgSender() == controller || _msgSender() == owner(), "NFTify1155: only owner or controller" ); _mint(account, id, amount, data); } /** * @dev Handle burn request */ function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "NFTify1155: caller is not owner nor approved" ); _burn(account, id, value); } /** * @dev See {ERC1155Permit-supportsInterface} */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC1155Permit) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev Approve the controller for minting */ function setController(address _newController) public onlyOwner { controller = _newController; } /** * @dev Set the collection uri */ function setURI(string memory _uri) public onlyOwner { _setURI(_uri); } /** * @dev Pause all transfers in the contract */ function pause() external virtual onlyOwner { _pause(); } /** * @dev Unpause all transfers in the contract */ function unpause() external virtual onlyOwner { _unpause(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_controller","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"_buildDigest","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"_newController","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c8063715018a6116100f9578063a22cb46511610097578063f242432a11610071578063f242432a146104f2578063f2fde38b1461050e578063f5298aca1461052a578063f77c479114610546576101c3565b8063a22cb46514610476578063bd85b03914610492578063e985e9c5146104c2576101c3565b80638456cb59116100d35780638456cb59146104145780638da5cb5b1461041e57806392eefe9b1461043c57806395d89b4114610458576101c3565b8063715018a6146103be578063731133e9146103c85780637ecebe00146103e4576101c3565b806330adf81f1161016657806348613c281161014057806348613c28146103245780634e1273f4146103405780634f558e79146103705780635c975abb146103a0576101c3565b806330adf81f146102de5780633644e515146102fc5780633f4ba83a1461031a576101c3565b806306fdde03116101a257806306fdde031461024457806307c6e64e146102625780630e89341c146102925780632eb2c2d6146102c2576101c3565b8062fdd58e146101c857806301ffc9a7146101f857806302fe530514610228575b600080fd5b6101e260048036038101906101dd919061328d565b610564565b6040516101ef9190613fc4565b60405180910390f35b610212600480360381019061020d919061341b565b61062e565b60405161021f9190613bc1565b60405180910390f35b610242600480360381019061023d9190613475565b610640565b005b61024c6106c8565b6040516102599190613ce2565b60405180910390f35b61027c600480360381019061027791906130c2565b610756565b6040516102899190613bdc565b60405180910390f35b6102ac60048036038101906102a791906134be565b6107c1565b6040516102b99190613ce2565b60405180910390f35b6102dc60048036038101906102d79190612ff3565b610821565b005b6102e66108c2565b6040516102f39190613bdc565b60405180910390f35b6103046108e6565b6040516103119190613bdc565b60405180910390f35b610322610949565b005b61033e600480360381019061033991906131c0565b6109cf565b005b61035a600480360381019061035591906133a3565b610b4b565b6040516103679190613b68565b60405180910390f35b61038a600480360381019061038591906134be565b610c64565b6040516103979190613bc1565b60405180910390f35b6103a8610c78565b6040516103b59190613bc1565b60405180910390f35b6103c6610c8e565b005b6103e260048036038101906103dd9190613320565b610d16565b005b6103fe60048036038101906103f99190612f86565b610e03565b60405161040b9190613fc4565b60405180910390f35b61041c610e4c565b005b610426610ed2565b6040516104339190613a8b565b60405180910390f35b61045660048036038101906104519190612f86565b610efb565b005b610460610fbb565b60405161046d9190613ce2565b60405180910390f35b610490600480360381019061048b919061324d565b611049565b005b6104ac60048036038101906104a791906134be565b61105f565b6040516104b99190613fc4565b60405180910390f35b6104dc60048036038101906104d79190612fb3565b61107c565b6040516104e99190613bc1565b60405180910390f35b61050c60048036038101906105079190613129565b611110565b005b61052860048036038101906105239190612f86565b6111b1565b005b610544600480360381019061053f91906132cd565b6112a9565b005b61054e611346565b60405161055b9190613a8b565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cc90613d84565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106398261136c565b9050919050565b6106486113e5565b73ffffffffffffffffffffffffffffffffffffffff16610666610ed2565b73ffffffffffffffffffffffffffffffffffffffff16146106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b390613f04565b60405180910390fd5b6106c5816113ed565b50565b600580546106d59061430b565b80601f01602080910402602001604051908101604052809291908181526020018280546107019061430b565b801561074e5780601f106107235761010080835404028352916020019161074e565b820191906000526020600020905b81548152906001019060200180831161073157829003601f168201915b505050505081565b60006107b76107636108e6565b7fdaab21af31ece73a508939fedd476a5ee5129a5ed4bb091f3236ffb45394df628787878760405160200161079c959493929190613bf7565b60405160208183030381529060405280519060200120611407565b9050949350505050565b606060006107ce8361143a565b905060008151116107ee5760405180602001604052806000815250610819565b806107f8846114ce565b604051602001610809929190613a30565b6040516020818303038152906040525b915050919050565b6108296113e5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061086f575061086e856108696113e5565b61107c565b5b6108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590613ea4565b60405180910390fd5b6108bb858585858561162f565b5050505050565b7fdaab21af31ece73a508939fedd476a5ee5129a5ed4bb091f3236ffb45394df6281565b6000804690507f000000000000000000000000000000000000000000000000000000000000008981146109215761091c81611946565b610943565b7f3f17f5124b366566b92b33c465e8fd6c0eb455fc2ee699032c4ef1cda1d0478c5b91505090565b6109516113e5565b73ffffffffffffffffffffffffffffffffffffffff1661096f610ed2565b73ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90613f04565b60405180910390fd5b6109cd6119f0565b565b42841015610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990613e04565b60405180910390fd5b6000610a5f8787600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205488610756565b90506000610a6f82868686611a91565b5090508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790613d64565b60405180910390fd5b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610b309061436e565b9190505550610b4188886001611b9e565b5050505050505050565b60608151835114610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613f64565b60405180910390fd5b6000835167ffffffffffffffff811115610bae57610bad6144ae565b5b604051908082528060200260200182016040528015610bdc5781602001602082028036833780820191505090505b50905060005b8451811015610c5957610c29858281518110610c0157610c0061447f565b5b6020026020010151858381518110610c1c57610c1b61447f565b5b6020026020010151610564565b828281518110610c3c57610c3b61447f565b5b60200260200101818152505080610c529061436e565b9050610be2565b508091505092915050565b600080610c708361105f565b119050919050565b60008060149054906101000a900460ff16905090565b610c966113e5565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613f04565b60405180910390fd5b610d146000611d0b565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d576113e5565b73ffffffffffffffffffffffffffffffffffffffff161480610db25750610d7c610ed2565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6113e5565b73ffffffffffffffffffffffffffffffffffffffff16145b610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890613e24565b60405180910390fd5b610dfd84848484611dcf565b50505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e546113e5565b73ffffffffffffffffffffffffffffffffffffffff16610e72610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613f04565b60405180910390fd5b610ed0611f66565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f036113e5565b73ffffffffffffffffffffffffffffffffffffffff16610f21610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613f04565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60068054610fc89061430b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff49061430b565b80156110415780601f1061101657610100808354040283529160200191611041565b820191906000526020600020905b81548152906001019060200180831161102457829003601f168201915b505050505081565b61105b6110546113e5565b8383611b9e565b5050565b600060046000838152602001908152602001600020549050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111186113e5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061115e575061115d856111586113e5565b61107c565b5b61119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613de4565b60405180910390fd5b6111aa8585858585612009565b5050505050565b6111b96113e5565b73ffffffffffffffffffffffffffffffffffffffff166111d7610ed2565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490613f04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613da4565b60405180910390fd5b6112a681611d0b565b50565b6112b16113e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112f757506112f6836112f16113e5565b61107c565b5b611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90613e64565b60405180910390fd5b61134183838361228e565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007eeb673d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113de57506113dd826124ad565b5b9050919050565b600033905090565b8060039080519060200190611403929190612c34565b5050565b6000828260405160200161141c929190613a54565b60405160208183030381529060405280519060200120905092915050565b6060600380546114499061430b565b80601f01602080910402602001604051908101604052809291908181526020018280546114759061430b565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b50505050509050919050565b60606000821415611516576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061162a565b600082905060005b600082146115485780806115319061436e565b915050600a8261154191906141d9565b915061151e565b60008167ffffffffffffffff811115611564576115636144ae565b5b6040519080825280601f01601f1916602001820160405280156115965781602001600182028036833780820191505090505b5090505b60008514611623576001826115af919061420a565b9150600a856115be91906143c1565b60306115ca9190614183565b60f81b8183815181106115e0576115df61447f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561161c91906141d9565b945061159a565b8093505050505b919050565b8151835114611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90613e84565b60405180910390fd5b60006116ed6113e5565b90506116fd81878787878761258f565b60005b84518110156118b157600085828151811061171e5761171d61447f565b5b60200260200101519050600085838151811061173d5761173c61447f565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613ee4565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118969190614183565b92505081905550505050806118aa9061436e565b9050611700565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611928929190613b8a565b60405180910390a461193e8187878787876125ed565b505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60056040516119789190613a19565b60405180910390206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012084306040516020016119d3959493929190613c4a565b604051602081830303815290604052805190602001209050919050565b6119f8610c78565b611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613d44565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a7a6113e5565b604051611a879190613a8b565b60405180910390a1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611acc576000600391509150611b95565b601b8560ff1614158015611ae45750601c8560ff1614155b15611af6576000600491509150611b95565b600060018787878760405160008152602001604052604051611b1b9493929190613c9d565b6020604051602081039080840390855afa158015611b3d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8c57600060019250925050611b95565b80600092509250505b94509492505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613f44565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cfe9190613bc1565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690613fa4565b60405180910390fd5b6000611e496113e5565b9050611e6a81600087611e5b886127d4565b611e64886127d4565b8761258f565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eca9190614183565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611f48929190613fdf565b60405180910390a4611f5f8160008787878761284e565b5050505050565b611f6e610c78565b15611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e44565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ff26113e5565b604051611fff9190613a8b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090613e84565b60405180910390fd5b60006120836113e5565b90506120a3818787612094886127d4565b61209d886127d4565b8761258f565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613ee4565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f29190614183565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161226f929190613fdf565b60405180910390a461228582888888888861284e565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590613ec4565b60405180910390fd5b60006123086113e5565b90506123388185600061231a876127d4565b612323876127d4565b6040518060200160405280600081525061258f565b60006001600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613dc4565b60405180910390fd5b8281036001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161249e929190613fdf565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612588575061258782612a35565b5b9050919050565b61259d868686868686612a9f565b6125a5610c78565b156125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90613f24565b60405180910390fd5b505050505050565b61260c8473ffffffffffffffffffffffffffffffffffffffff16612c19565b156127cc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612652959493929190613aa6565b602060405180830381600087803b15801561266c57600080fd5b505af192505050801561269d57506040513d601f19601f8201168201806040525081019061269a9190613448565b60015b612743576126a96144dd565b806308c379a0141561270657506126be614bb7565b806126c95750612708565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd9190613ce2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273a90613d04565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c190613d24565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156127f3576127f26144ae565b5b6040519080825280602002602001820160405280156128215781602001602082028036833780820191505090505b50905082816000815181106128395761283861447f565b5b60200260200101818152505080915050919050565b61286d8473ffffffffffffffffffffffffffffffffffffffff16612c19565b15612a2d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016128b3959493929190613b0e565b602060405180830381600087803b1580156128cd57600080fd5b505af19250505080156128fe57506040513d601f19601f820116820180604052508101906128fb9190613448565b60015b6129a45761290a6144dd565b806308c379a01415612967575061291f614bb7565b8061292a5750612969565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e9190613ce2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299b90613d04565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2290613d24565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612aad868686868686612c2c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b5f5760005b8351811015612b5d57828181518110612b0157612b0061447f565b5b602002602001015160046000868481518110612b2057612b1f61447f565b5b602002602001015181526020019081526020016000206000828254612b459190614183565b9250508190555080612b569061436e565b9050612ae5565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c115760005b8351811015612c0f57828181518110612bb357612bb261447f565b5b602002602001015160046000868481518110612bd257612bd161447f565b5b602002602001015181526020019081526020016000206000828254612bf7919061420a565b9250508190555080612c089061436e565b9050612b97565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b828054612c409061430b565b90600052602060002090601f016020900481019282612c625760008555612ca9565b82601f10612c7b57805160ff1916838001178555612ca9565b82800160010185558215612ca9579182015b82811115612ca8578251825591602001919060010190612c8d565b5b509050612cb69190612cba565b5090565b5b80821115612cd3576000816000905550600101612cbb565b5090565b6000612cea612ce58461402d565b614008565b90508083825260208201905082856020860282011115612d0d57612d0c614504565b5b60005b85811015612d3d5781612d238882612e3b565b845260208401935060208301925050600181019050612d10565b5050509392505050565b6000612d5a612d5584614059565b614008565b90508083825260208201905082856020860282011115612d7d57612d7c614504565b5b60005b85811015612dad5781612d938882612f5c565b845260208401935060208301925050600181019050612d80565b5050509392505050565b6000612dca612dc584614085565b614008565b905082815260208101848484011115612de657612de5614509565b5b612df18482856142c9565b509392505050565b6000612e0c612e07846140b6565b614008565b905082815260208101848484011115612e2857612e27614509565b5b612e338482856142c9565b509392505050565b600081359050612e4a81614c4d565b92915050565b600082601f830112612e6557612e646144ff565b5b8135612e75848260208601612cd7565b91505092915050565b600082601f830112612e9357612e926144ff565b5b8135612ea3848260208601612d47565b91505092915050565b600081359050612ebb81614c64565b92915050565b600081359050612ed081614c7b565b92915050565b600081359050612ee581614c92565b92915050565b600081519050612efa81614c92565b92915050565b600082601f830112612f1557612f146144ff565b5b8135612f25848260208601612db7565b91505092915050565b600082601f830112612f4357612f426144ff565b5b8135612f53848260208601612df9565b91505092915050565b600081359050612f6b81614ca9565b92915050565b600081359050612f8081614cc0565b92915050565b600060208284031215612f9c57612f9b614513565b5b6000612faa84828501612e3b565b91505092915050565b60008060408385031215612fca57612fc9614513565b5b6000612fd885828601612e3b565b9250506020612fe985828601612e3b565b9150509250929050565b600080600080600060a0868803121561300f5761300e614513565b5b600061301d88828901612e3b565b955050602061302e88828901612e3b565b945050604086013567ffffffffffffffff81111561304f5761304e61450e565b5b61305b88828901612e7e565b935050606086013567ffffffffffffffff81111561307c5761307b61450e565b5b61308888828901612e7e565b925050608086013567ffffffffffffffff8111156130a9576130a861450e565b5b6130b588828901612f00565b9150509295509295909350565b600080600080608085870312156130dc576130db614513565b5b60006130ea87828801612e3b565b94505060206130fb87828801612e3b565b935050604061310c87828801612f5c565b925050606061311d87828801612f5c565b91505092959194509250565b600080600080600060a0868803121561314557613144614513565b5b600061315388828901612e3b565b955050602061316488828901612e3b565b945050604061317588828901612f5c565b935050606061318688828901612f5c565b925050608086013567ffffffffffffffff8111156131a7576131a661450e565b5b6131b388828901612f00565b9150509295509295909350565b60008060008060008060c087890312156131dd576131dc614513565b5b60006131eb89828a01612e3b565b96505060206131fc89828a01612e3b565b955050604061320d89828a01612f5c565b945050606061321e89828a01612f71565b935050608061322f89828a01612ec1565b92505060a061324089828a01612ec1565b9150509295509295509295565b6000806040838503121561326457613263614513565b5b600061327285828601612e3b565b925050602061328385828601612eac565b9150509250929050565b600080604083850312156132a4576132a3614513565b5b60006132b285828601612e3b565b92505060206132c385828601612f5c565b9150509250929050565b6000806000606084860312156132e6576132e5614513565b5b60006132f486828701612e3b565b935050602061330586828701612f5c565b925050604061331686828701612f5c565b9150509250925092565b6000806000806080858703121561333a57613339614513565b5b600061334887828801612e3b565b945050602061335987828801612f5c565b935050604061336a87828801612f5c565b925050606085013567ffffffffffffffff81111561338b5761338a61450e565b5b61339787828801612f00565b91505092959194509250565b600080604083850312156133ba576133b9614513565b5b600083013567ffffffffffffffff8111156133d8576133d761450e565b5b6133e485828601612e50565b925050602083013567ffffffffffffffff8111156134055761340461450e565b5b61341185828601612e7e565b9150509250929050565b60006020828403121561343157613430614513565b5b600061343f84828501612ed6565b91505092915050565b60006020828403121561345e5761345d614513565b5b600061346c84828501612eeb565b91505092915050565b60006020828403121561348b5761348a614513565b5b600082013567ffffffffffffffff8111156134a9576134a861450e565b5b6134b584828501612f2e565b91505092915050565b6000602082840312156134d4576134d3614513565b5b60006134e284828501612f5c565b91505092915050565b60006134f783836139ec565b60208301905092915050565b61350c8161423e565b82525050565b600061351d8261410c565b613527818561413a565b9350613532836140e7565b8060005b8381101561356357815161354a88826134eb565b97506135558361412d565b925050600181019050613536565b5085935050505092915050565b61357981614250565b82525050565b6135888161425c565b82525050565b61359f61359a8261425c565b6143b7565b82525050565b60006135b082614117565b6135ba818561414b565b93506135ca8185602086016142d8565b6135d381614518565b840191505092915050565b600081546135eb8161430b565b6135f5818661415c565b94506001821660008114613610576001811461362157613654565b60ff19831686528186019350613654565b61362a856140f7565b60005b8381101561364c5781548189015260018201915060208101905061362d565b838801955050505b50505092915050565b600061366882614122565b6136728185614167565b93506136828185602086016142d8565b61368b81614518565b840191505092915050565b60006136a182614122565b6136ab8185614178565b93506136bb8185602086016142d8565b80840191505092915050565b60006136d4603483614167565b91506136df82614536565b604082019050919050565b60006136f7602883614167565b915061370282614585565b604082019050919050565b600061371a601483614167565b9150613725826145d4565b602082019050919050565b600061373d602a83614167565b9150613748826145fd565b604082019050919050565b6000613760602b83614167565b915061376b8261464c565b604082019050919050565b6000613783602683614167565b915061378e8261469b565b604082019050919050565b60006137a6602483614167565b91506137b1826146ea565b604082019050919050565b60006137c9600283614178565b91506137d482614739565b600282019050919050565b60006137ec602983614167565b91506137f782614762565b604082019050919050565b600061380f602983614167565b915061381a826147b1565b604082019050919050565b6000613832602483614167565b915061383d82614800565b604082019050919050565b6000613855601083614167565b91506138608261484f565b602082019050919050565b6000613878602c83614167565b915061388382614878565b604082019050919050565b600061389b602583614167565b91506138a6826148c7565b604082019050919050565b60006138be603283614167565b91506138c982614916565b604082019050919050565b60006138e1602383614167565b91506138ec82614965565b604082019050919050565b6000613904602a83614167565b915061390f826149b4565b604082019050919050565b6000613927602083614167565b915061393282614a03565b602082019050919050565b600061394a602383614167565b915061395582614a2c565b604082019050919050565b600061396d602983614167565b915061397882614a7b565b604082019050919050565b6000613990602983614167565b915061399b82614aca565b604082019050919050565b60006139b3602883614167565b91506139be82614b19565b604082019050919050565b60006139d6602183614167565b91506139e182614b68565b604082019050919050565b6139f5816142b2565b82525050565b613a04816142b2565b82525050565b613a13816142bc565b82525050565b6000613a2582846135de565b915081905092915050565b6000613a3c8285613696565b9150613a488284613696565b91508190509392505050565b6000613a5f826137bc565b9150613a6b828561358e565b602082019150613a7b828461358e565b6020820191508190509392505050565b6000602082019050613aa06000830184613503565b92915050565b600060a082019050613abb6000830188613503565b613ac86020830187613503565b8181036040830152613ada8186613512565b90508181036060830152613aee8185613512565b90508181036080830152613b0281846135a5565b90509695505050505050565b600060a082019050613b236000830188613503565b613b306020830187613503565b613b3d60408301866139fb565b613b4a60608301856139fb565b8181036080830152613b5c81846135a5565b90509695505050505050565b60006020820190508181036000830152613b828184613512565b905092915050565b60006040820190508181036000830152613ba48185613512565b90508181036020830152613bb88184613512565b90509392505050565b6000602082019050613bd66000830184613570565b92915050565b6000602082019050613bf1600083018461357f565b92915050565b600060a082019050613c0c600083018861357f565b613c196020830187613503565b613c266040830186613503565b613c3360608301856139fb565b613c4060808301846139fb565b9695505050505050565b600060a082019050613c5f600083018861357f565b613c6c602083018761357f565b613c79604083018661357f565b613c8660608301856139fb565b613c936080830184613503565b9695505050505050565b6000608082019050613cb2600083018761357f565b613cbf6020830186613a0a565b613ccc604083018561357f565b613cd9606083018461357f565b95945050505050565b60006020820190508181036000830152613cfc818461365d565b905092915050565b60006020820190508181036000830152613d1d816136c7565b9050919050565b60006020820190508181036000830152613d3d816136ea565b9050919050565b60006020820190508181036000830152613d5d8161370d565b9050919050565b60006020820190508181036000830152613d7d81613730565b9050919050565b60006020820190508181036000830152613d9d81613753565b9050919050565b60006020820190508181036000830152613dbd81613776565b9050919050565b60006020820190508181036000830152613ddd81613799565b9050919050565b60006020820190508181036000830152613dfd816137df565b9050919050565b60006020820190508181036000830152613e1d81613802565b9050919050565b60006020820190508181036000830152613e3d81613825565b9050919050565b60006020820190508181036000830152613e5d81613848565b9050919050565b60006020820190508181036000830152613e7d8161386b565b9050919050565b60006020820190508181036000830152613e9d8161388e565b9050919050565b60006020820190508181036000830152613ebd816138b1565b9050919050565b60006020820190508181036000830152613edd816138d4565b9050919050565b60006020820190508181036000830152613efd816138f7565b9050919050565b60006020820190508181036000830152613f1d8161391a565b9050919050565b60006020820190508181036000830152613f3d8161393d565b9050919050565b60006020820190508181036000830152613f5d81613960565b9050919050565b60006020820190508181036000830152613f7d81613983565b9050919050565b60006020820190508181036000830152613f9d816139a6565b9050919050565b60006020820190508181036000830152613fbd816139c9565b9050919050565b6000602082019050613fd960008301846139fb565b92915050565b6000604082019050613ff460008301856139fb565b61400160208301846139fb565b9392505050565b6000614012614023565b905061401e828261433d565b919050565b6000604051905090565b600067ffffffffffffffff821115614048576140476144ae565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614074576140736144ae565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140a05761409f6144ae565b5b6140a982614518565b9050602081019050919050565b600067ffffffffffffffff8211156140d1576140d06144ae565b5b6140da82614518565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061418e826142b2565b9150614199836142b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ce576141cd6143f2565b5b828201905092915050565b60006141e4826142b2565b91506141ef836142b2565b9250826141ff576141fe614421565b5b828204905092915050565b6000614215826142b2565b9150614220836142b2565b925082821015614233576142326143f2565b5b828203905092915050565b600061424982614292565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156142f65780820151818401526020810190506142db565b83811115614305576000848401525b50505050565b6000600282049050600182168061432357607f821691505b6020821081141561433757614336614450565b5b50919050565b61434682614518565b810181811067ffffffffffffffff82111715614365576143646144ae565b5b80604052505050565b6000614379826142b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ac576143ab6143f2565b5b600182019050919050565b6000819050919050565b60006143cc826142b2565b91506143d7836142b2565b9250826143e7576143e6614421565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156144fc5760046000803e6144f9600051614529565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231576974685065726d69743a20696e76616c6964207065726d697460008201527f207369676e617475726500000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243373231576974685065726d69743a207065726d697420646561646c696e60008201527f6520657870697265640000000000000000000000000000000000000000000000602082015250565b7f4e4654696679313135353a206f6e6c79206f776e6572206f7220636f6e74726f60008201527f6c6c657200000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e4654696679313135353a2063616c6c6572206973206e6f74206f776e65722060008201527f6e6f7220617070726f7665640000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e46546966793a20746f6b656e207472616e73666572207768696c652070617560008201527f7365640000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614bc757614c4a565b614bcf614023565b60043d036004823e80513d602482011167ffffffffffffffff82111715614bf7575050614c4a565b808201805167ffffffffffffffff811115614c155750505050614c4a565b80602083010160043d038501811115614c32575050505050614c4a565b614c418260200185018661433d565b82955050505050505b90565b614c568161423e565b8114614c6157600080fd5b50565b614c6d81614250565b8114614c7857600080fd5b50565b614c848161425c565b8114614c8f57600080fd5b50565b614c9b81614266565b8114614ca657600080fd5b50565b614cb2816142b2565b8114614cbd57600080fd5b50565b614cc9816142bc565b8114614cd457600080fd5b5056fea2646970667358221220f0369c83e092e9e2feb648368874d7be47e7728356e32c8dd5d72e0c587d74fe64736f6c63430008070033
Deployed Bytecode Sourcemap
60195:2930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39126:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62265:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62738:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53988:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57224:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61065:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41065:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53823:156;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55042:374;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63047:75;;;:::i;:::-;;56228:684;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39523:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59217:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14431:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17330:103;;;:::i;:::-;;61476:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56044:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62899:71;;;:::i;:::-;;16679:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62566:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54013:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40120:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59006:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40347:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40587:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17588:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61864:324;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60273:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39126:231;39212:7;39259:1;39240:21;;:7;:21;;;;39232:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39327:9;:13;39337:2;39327:13;;;;;;;;;;;:22;39341:7;39327:22;;;;;;;;;;;;;;;;39320:29;;39126:231;;;;:::o;62265:227::-;62419:4;62448:36;62472:11;62448:23;:36::i;:::-;62441:43;;62265:227;;;:::o;62738:85::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62802:13:::1;62810:4;62802:7;:13::i;:::-;62738:85:::0;:::o;53988:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57224:402::-;57375:7;57415:203;57455:18;:16;:18::i;:::-;53874:105;57552:5;57559:7;57568:5;57575:8;57524:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57492:111;;;;;;57415:21;:203::i;:::-;57395:223;;57224:402;;;;;;:::o;61065:352::-;61178:13;61209:21;61233:18;61243:7;61233:9;:18::i;:::-;61209:42;;61306:1;61288:7;61282:21;:25;:127;;;;;;;;;;;;;;;;;61351:7;61360:25;61377:7;61360:16;:25::i;:::-;61334:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61282:127;61262:147;;;61065:352;;;:::o;41065:442::-;41306:12;:10;:12::i;:::-;41298:20;;:4;:20;;;:60;;;;41322:36;41339:4;41345:12;:10;:12::i;:::-;41322:16;:36::i;:::-;41298:60;41276:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41447:52;41470:4;41476:2;41480:3;41485:7;41494:4;41447:22;:52::i;:::-;41065:442;;;;;:::o;53823:156::-;53874:105;53823:156;:::o;55042:374::-;55100:7;55120:15;55239:9;55228:20;;55303:14;55292:7;:25;55291:117;;55374:34;55400:7;55374:25;:34::i;:::-;55291:117;;;55338:16;55291:117;55271:137;;;55042:374;:::o;63047:75::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63104:10:::1;:8;:10::i;:::-;63047:75::o:0;56228:684::-;56447:15;56435:8;:27;;56413:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56544:14;56561:54;56574:5;56581:7;56590;:14;56598:5;56590:14;;;;;;;;;;;;;;;;56606:8;56561:12;:54::i;:::-;56544:71;;56629:24;56659:33;56676:6;56684:1;56687;56690;56659:16;:33::i;:::-;56628:64;;;56747:5;56727:25;;:16;:25;;;56705:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;56835:7;:14;56843:5;56835:14;;;;;;;;;;;;;;;;:16;;;;;;;;;:::i;:::-;;;;;;56864:40;56883:5;56890:7;56899:4;56864:18;:40::i;:::-;56402:510;;56228:684;;;;;;:::o;39523:524::-;39679:16;39740:3;:10;39721:8;:15;:29;39713:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;39809:30;39856:8;:15;39842:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39809:63;;39890:9;39885:122;39909:8;:15;39905:1;:19;39885:122;;;39965:30;39975:8;39984:1;39975:11;;;;;;;;:::i;:::-;;;;;;;;39988:3;39992:1;39988:6;;;;;;;;:::i;:::-;;;;;;;;39965:9;:30::i;:::-;39946:13;39960:1;39946:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;39926:3;;;;:::i;:::-;;;39885:122;;;;40026:13;40019:20;;;39523:524;;;;:::o;59217:122::-;59274:4;59330:1;59298:29;59324:2;59298:25;:29::i;:::-;:33;59291:40;;59217:122;;;:::o;14431:86::-;14478:4;14502:7;;;;;;;;;;;14495:14;;14431:86;:::o;17330:103::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17395:30:::1;17422:1;17395:18;:30::i;:::-;17330:103::o:0;61476:329::-;61653:10;;;;;;;;;;;61637:26;;:12;:10;:12::i;:::-;:26;;;:53;;;;61683:7;:5;:7::i;:::-;61667:23;;:12;:10;:12::i;:::-;:23;;;61637:53;61615:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;61765:32;61771:7;61780:2;61784:6;61792:4;61765:5;:32::i;:::-;61476:329;;;;:::o;56044:114::-;56107:7;56134;:16;56142:7;56134:16;;;;;;;;;;;;;;;;56127:23;;56044:114;;;:::o;62899:71::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62954:8:::1;:6;:8::i;:::-;62899:71::o:0;16679:87::-;16725:7;16752:6;;;;;;;;;;;16745:13;;16679:87;:::o;62566:110::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62654:14:::1;62641:10;;:27;;;;;;;;;;;;;;;;;;62566:110:::0;:::o;54013:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40120:155::-;40215:52;40234:12;:10;:12::i;:::-;40248:8;40258;40215:18;:52::i;:::-;40120:155;;:::o;59006:113::-;59068:7;59095:12;:16;59108:2;59095:16;;;;;;;;;;;;59088:23;;59006:113;;;:::o;40347:168::-;40446:4;40470:18;:27;40489:7;40470:27;;;;;;;;;;;;;;;:37;40498:8;40470:37;;;;;;;;;;;;;;;;;;;;;;;;;40463:44;;40347:168;;;;:::o;40587:401::-;40803:12;:10;:12::i;:::-;40795:20;;:4;:20;;;:60;;;;40819:36;40836:4;40842:12;:10;:12::i;:::-;40819:16;:36::i;:::-;40795:60;40773:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;40935:45;40953:4;40959:2;40963;40967:6;40975:4;40935:17;:45::i;:::-;40587:401;;;;;:::o;17588:201::-;16910:12;:10;:12::i;:::-;16899:23;;:7;:5;:7::i;:::-;:23;;;16891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17697:1:::1;17677:22;;:8;:22;;;;17669:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17753:28;17772:8;17753:18;:28::i;:::-;17588:201:::0;:::o;61864:324::-;62015:12;:10;:12::i;:::-;62004:23;;:7;:23;;;:66;;;;62031:39;62048:7;62057:12;:10;:12::i;:::-;62031:16;:39::i;:::-;62004:66;61982:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;62155:25;62161:7;62170:2;62174:5;62155;:25::i;:::-;61864:324;;;:::o;60273:25::-;;;;;;;;;;;;;:::o;57994:280::-;58124:4;58181:32;58166:47;;;:11;:47;;;;:100;;;;58230:36;58254:11;58230:23;:36::i;:::-;58166:100;58146:120;;57994:280;;;:::o;13085:98::-;13138:7;13165:10;13158:17;;13085:98;:::o;45067:88::-;45141:6;45134:4;:13;;;;;;;;;;;;:::i;:::-;;45067:88;:::o;12203:196::-;12296:7;12362:15;12379:10;12333:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12323:68;;;;;;12316:75;;12203:196;;;;:::o;38870:105::-;38930:13;38963:4;38956:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38870:105;;;:::o;1081:723::-;1137:13;1367:1;1358:5;:10;1354:53;;;1385:10;;;;;;;;;;;;;;;;;;;;;1354:53;1417:12;1432:5;1417:20;;1448:14;1473:78;1488:1;1480:4;:9;1473:78;;1506:8;;;;;:::i;:::-;;;;1537:2;1529:10;;;;;:::i;:::-;;;1473:78;;;1561:19;1593:6;1583:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561:39;;1611:154;1627:1;1618:5;:10;1611:154;;1655:1;1645:11;;;;;:::i;:::-;;;1722:2;1714:5;:10;;;;:::i;:::-;1701:2;:24;;;;:::i;:::-;1688:39;;1671:6;1678;1671:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1751:2;1742:11;;;;;:::i;:::-;;;1611:154;;;1789:6;1775:21;;;;;1081:723;;;;:::o;43149:1074::-;43376:7;:14;43362:3;:10;:28;43354:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;43468:1;43454:16;;:2;:16;;;;43446:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43525:16;43544:12;:10;:12::i;:::-;43525:31;;43569:60;43590:8;43600:4;43606:2;43610:3;43615:7;43624:4;43569:20;:60::i;:::-;43647:9;43642:421;43666:3;:10;43662:1;:14;43642:421;;;43698:10;43711:3;43715:1;43711:6;;;;;;;;:::i;:::-;;;;;;;;43698:19;;43732:14;43749:7;43757:1;43749:10;;;;;;;;:::i;:::-;;;;;;;;43732:27;;43776:19;43798:9;:13;43808:2;43798:13;;;;;;;;;;;:19;43812:4;43798:19;;;;;;;;;;;;;;;;43776:41;;43855:6;43840:11;:21;;43832:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43988:6;43974:11;:20;43952:9;:13;43962:2;43952:13;;;;;;;;;;;:19;43966:4;43952:19;;;;;;;;;;;;;;;:42;;;;44045:6;44024:9;:13;44034:2;44024:13;;;;;;;;;;;:17;44038:2;44024:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;43683:380;;;43678:3;;;;:::i;:::-;;;43642:421;;;;44110:2;44080:47;;44104:4;44080:47;;44094:8;44080:47;;;44114:3;44119:7;44080:47;;;;;;;:::i;:::-;;;;;;;;44140:75;44176:8;44186:4;44192:2;44196:3;44201:7;44210:4;44140:35;:75::i;:::-;43343:880;43149:1074;;;;;:::o;55424:548::-;55526:7;55632:143;55814:4;55798:22;;;;;;:::i;:::-;;;;;;;;55853:10;;;;;;;;;;;;;;;;;55843:21;;;;;;55887:7;55925:4;55599:350;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55571:393;;;;;;55551:413;;55424:548;;;:::o;15490:120::-;15034:8;:6;:8::i;:::-;15026:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;15559:5:::1;15549:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;15580:22;15589:12;:10;:12::i;:::-;15580:22;;;;;;:::i;:::-;;;;;;;;15490:120::o:0;8741:1632::-;8872:7;8881:12;9806:66;9801:1;9793:10;;:79;9789:163;;;9905:1;9909:30;9889:51;;;;;;9789:163;9971:2;9966:1;:7;;;;:18;;;;;9982:2;9977:1;:7;;;;9966:18;9962:102;;;10017:1;10021:30;10001:51;;;;;;9962:102;10161:14;10178:24;10188:4;10194:1;10197;10200;10178:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10161:41;;10235:1;10217:20;;:6;:20;;;10213:103;;;10270:1;10274:29;10254:50;;;;;;;10213:103;10336:6;10344:20;10328:37;;;;;8741:1632;;;;;;;;:::o;49335:331::-;49490:8;49481:17;;:5;:17;;;;49473:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49593:8;49555:18;:25;49574:5;49555:25;;;;;;;;;;;;;;;:35;49581:8;49555:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49639:8;49617:41;;49632:5;49617:41;;;49649:8;49617:41;;;;;;:::i;:::-;;;;;;;;49335:331;;;:::o;17949:191::-;18023:16;18042:6;;;;;;;;;;;18023:25;;18068:8;18059:6;;:17;;;;;;;;;;;;;;;;;;18123:8;18092:40;;18113:8;18092:40;;;;;;;;;;;;18012:128;17949:191;:::o;45541:569::-;45708:1;45694:16;;:2;:16;;;;45686:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45761:16;45780:12;:10;:12::i;:::-;45761:31;;45805:102;45826:8;45844:1;45848:2;45852:21;45870:2;45852:17;:21::i;:::-;45875:25;45893:6;45875:17;:25::i;:::-;45902:4;45805:20;:102::i;:::-;45941:6;45920:9;:13;45930:2;45920:13;;;;;;;;;;;:17;45934:2;45920:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;46000:2;45963:52;;45996:1;45963:52;;45978:8;45963:52;;;46004:2;46008:6;45963:52;;;;;;;:::i;:::-;;;;;;;;46028:74;46059:8;46077:1;46081:2;46085;46089:6;46097:4;46028:30;:74::i;:::-;45675:435;45541:569;;;;:::o;15231:118::-;14757:8;:6;:8::i;:::-;14756:9;14748:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;15301:4:::1;15291:7;;:14;;;;;;;;;;;;;;;;;;15321:20;15328:12;:10;:12::i;:::-;15321:20;;;;;;:::i;:::-;;;;;;;;15231:118::o:0;41971:820::-;42173:1;42159:16;;:2;:16;;;;42151:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42230:16;42249:12;:10;:12::i;:::-;42230:31;;42274:96;42295:8;42305:4;42311:2;42315:21;42333:2;42315:17;:21::i;:::-;42338:25;42356:6;42338:17;:25::i;:::-;42365:4;42274:20;:96::i;:::-;42383:19;42405:9;:13;42415:2;42405:13;;;;;;;;;;;:19;42419:4;42405:19;;;;;;;;;;;;;;;;42383:41;;42458:6;42443:11;:21;;42435:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42583:6;42569:11;:20;42547:9;:13;42557:2;42547:13;;;;;;;;;;;:19;42561:4;42547:19;;;;;;;;;;;;;;;:42;;;;42632:6;42611:9;:13;42621:2;42611:13;;;;;;;;;;;:17;42625:2;42611:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;42687:2;42656:46;;42681:4;42656:46;;42671:8;42656:46;;;42691:2;42695:6;42656:46;;;;;;;:::i;:::-;;;;;;;;42715:68;42746:8;42756:4;42762:2;42766;42770:6;42778:4;42715:30;:68::i;:::-;42140:651;;41971:820;;;;;:::o;47451:648::-;47594:1;47578:18;;:4;:18;;;;47570:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47649:16;47668:12;:10;:12::i;:::-;47649:31;;47693:102;47714:8;47724:4;47738:1;47742:21;47760:2;47742:17;:21::i;:::-;47765:25;47783:6;47765:17;:25::i;:::-;47693:102;;;;;;;;;;;;:20;:102::i;:::-;47808:19;47830:9;:13;47840:2;47830:13;;;;;;;;;;;:19;47844:4;47830:19;;;;;;;;;;;;;;;;47808:41;;47883:6;47868:11;:21;;47860:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48002:6;47988:11;:20;47966:9;:13;47976:2;47966:13;;;;;;;;;;;:19;47980:4;47966:19;;;;;;;;;;;;;;;:42;;;;48076:1;48037:54;;48062:4;48037:54;;48052:8;48037:54;;;48080:2;48084:6;48037:54;;;;;;;:::i;:::-;;;;;;;;47559:540;;47451:648;;;:::o;38149:310::-;38251:4;38303:26;38288:41;;;:11;:41;;;;:110;;;;38361:37;38346:52;;;:11;:52;;;;38288:110;:163;;;;38415:36;38439:11;38415:23;:36::i;:::-;38288:163;38268:183;;38149:310;;;:::o;60601:407::-;60864:66;60891:8;60901:4;60907:2;60911:3;60916:7;60925:4;60864:26;:66::i;:::-;60952:8;:6;:8::i;:::-;60951:9;60943:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60601:407;;;;;;:::o;51603:813::-;51843:15;:2;:13;;;:15::i;:::-;51839:570;;;51896:2;51879:43;;;51923:8;51933:4;51939:3;51944:7;51953:4;51879:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51875:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;52271:6;52264:14;;;;;;;;;;;:::i;:::-;;;;;;;;51875:523;;;52320:62;;;;;;;;;;:::i;:::-;;;;;;;;51875:523;52052:48;;;52040:60;;;:8;:60;;;;52036:159;;52125:50;;;;;;;;;;:::i;:::-;;;;;;;;52036:159;51959:251;51839:570;51603:813;;;;;;:::o;52424:198::-;52490:16;52519:22;52558:1;52544:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52519:41;;52582:7;52571:5;52577:1;52571:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;52609:5;52602:12;;;52424:198;;;:::o;50851:744::-;51066:15;:2;:13;;;:15::i;:::-;51062:526;;;51119:2;51102:38;;;51141:8;51151:4;51157:2;51161:6;51169:4;51102:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51098:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;51450:6;51443:14;;;;;;;;;;;:::i;:::-;;;;;;;;51098:479;;;51499:62;;;;;;;;;;:::i;:::-;;;;;;;;51098:479;51236:43;;;51224:55;;;:8;:55;;;;51220:154;;51304:50;;;;;;;;;;:::i;:::-;;;;;;;;51220:154;51175:214;51062:526;50851:744;;;;;;:::o;29504:157::-;29589:4;29628:25;29613:40;;;:11;:40;;;;29606:47;;29504:157;;;:::o;59414:655::-;59653:66;59680:8;59690:4;59696:2;59700:3;59705:7;59714:4;59653:26;:66::i;:::-;59752:1;59736:18;;:4;:18;;;59732:160;;;59776:9;59771:110;59795:3;:10;59791:1;:14;59771:110;;;59855:7;59863:1;59855:10;;;;;;;;:::i;:::-;;;;;;;;59831:12;:20;59844:3;59848:1;59844:6;;;;;;;;:::i;:::-;;;;;;;;59831:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;59807:3;;;;:::i;:::-;;;59771:110;;;;59732:160;59922:1;59908:16;;:2;:16;;;59904:158;;;59946:9;59941:110;59965:3;:10;59961:1;:14;59941:110;;;60025:7;60033:1;60025:10;;;;;;;;:::i;:::-;;;;;;;;60001:12;:20;60014:3;60018:1;60014:6;;;;;;;;:::i;:::-;;;;;;;;60001:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;59977:3;;;;:::i;:::-;;;59941:110;;;;59904:158;59414:655;;;;;;:::o;18967:387::-;19027:4;19235:12;19302:7;19290:20;19282:28;;19345:1;19338:4;:8;19331:15;;;18967:387;;;:::o;50622:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722: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:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:139::-;3447:5;3485:6;3472:20;3463:29;;3501:33;3528:5;3501:33;:::i;:::-;3401:139;;;;:::o;3546:137::-;3591:5;3629:6;3616:20;3607:29;;3645:32;3671:5;3645:32;:::i;:::-;3546:137;;;;:::o;3689:141::-;3745:5;3776:6;3770:13;3761:22;;3792:32;3818:5;3792:32;:::i;:::-;3689:141;;;;:::o;3849:338::-;3904:5;3953:3;3946:4;3938:6;3934:17;3930:27;3920:122;;3961:79;;:::i;:::-;3920:122;4078:6;4065:20;4103:78;4177:3;4169:6;4162:4;4154:6;4150:17;4103:78;:::i;:::-;4094:87;;3910:277;3849:338;;;;:::o;4207:340::-;4263:5;4312:3;4305:4;4297:6;4293:17;4289:27;4279:122;;4320:79;;:::i;:::-;4279:122;4437:6;4424:20;4462:79;4537:3;4529:6;4522:4;4514:6;4510:17;4462:79;:::i;:::-;4453:88;;4269:278;4207:340;;;;:::o;4553:139::-;4599:5;4637:6;4624:20;4615:29;;4653:33;4680:5;4653:33;:::i;:::-;4553:139;;;;:::o;4698:135::-;4742:5;4780:6;4767:20;4758:29;;4796:31;4821:5;4796:31;:::i;:::-;4698:135;;;;:::o;4839:329::-;4898:6;4947:2;4935:9;4926:7;4922:23;4918:32;4915:119;;;4953:79;;:::i;:::-;4915:119;5073:1;5098:53;5143:7;5134:6;5123:9;5119:22;5098:53;:::i;:::-;5088:63;;5044:117;4839:329;;;;:::o;5174:474::-;5242:6;5250;5299:2;5287:9;5278:7;5274:23;5270:32;5267:119;;;5305:79;;:::i;:::-;5267:119;5425:1;5450:53;5495:7;5486:6;5475:9;5471:22;5450:53;:::i;:::-;5440:63;;5396:117;5552:2;5578:53;5623:7;5614:6;5603:9;5599:22;5578:53;:::i;:::-;5568:63;;5523:118;5174:474;;;;;:::o;5654:1509::-;5808:6;5816;5824;5832;5840;5889:3;5877:9;5868:7;5864:23;5860:33;5857:120;;;5896:79;;:::i;:::-;5857:120;6016:1;6041:53;6086:7;6077:6;6066:9;6062:22;6041:53;:::i;:::-;6031:63;;5987:117;6143:2;6169:53;6214:7;6205:6;6194:9;6190:22;6169:53;:::i;:::-;6159:63;;6114:118;6299:2;6288:9;6284:18;6271:32;6330:18;6322:6;6319:30;6316:117;;;6352:79;;:::i;:::-;6316:117;6457:78;6527:7;6518:6;6507:9;6503:22;6457:78;:::i;:::-;6447:88;;6242:303;6612:2;6601:9;6597:18;6584:32;6643:18;6635:6;6632:30;6629:117;;;6665:79;;:::i;:::-;6629:117;6770:78;6840:7;6831:6;6820:9;6816:22;6770:78;:::i;:::-;6760:88;;6555:303;6925:3;6914:9;6910:19;6897:33;6957:18;6949:6;6946:30;6943:117;;;6979:79;;:::i;:::-;6943:117;7084:62;7138:7;7129:6;7118:9;7114:22;7084:62;:::i;:::-;7074:72;;6868:288;5654:1509;;;;;;;;:::o;7169:765::-;7255:6;7263;7271;7279;7328:3;7316:9;7307:7;7303:23;7299:33;7296:120;;;7335:79;;:::i;:::-;7296:120;7455:1;7480:53;7525:7;7516:6;7505:9;7501:22;7480:53;:::i;:::-;7470:63;;7426:117;7582:2;7608:53;7653:7;7644:6;7633:9;7629:22;7608:53;:::i;:::-;7598:63;;7553:118;7710:2;7736:53;7781:7;7772:6;7761:9;7757:22;7736:53;:::i;:::-;7726:63;;7681:118;7838:2;7864:53;7909:7;7900:6;7889:9;7885:22;7864:53;:::i;:::-;7854:63;;7809:118;7169:765;;;;;;;:::o;7940:1089::-;8044:6;8052;8060;8068;8076;8125:3;8113:9;8104:7;8100:23;8096:33;8093:120;;;8132:79;;:::i;:::-;8093:120;8252:1;8277:53;8322:7;8313:6;8302:9;8298:22;8277:53;:::i;:::-;8267:63;;8223:117;8379:2;8405:53;8450:7;8441:6;8430:9;8426:22;8405:53;:::i;:::-;8395:63;;8350:118;8507:2;8533:53;8578:7;8569:6;8558:9;8554:22;8533:53;:::i;:::-;8523:63;;8478:118;8635:2;8661:53;8706:7;8697:6;8686:9;8682:22;8661:53;:::i;:::-;8651:63;;8606:118;8791:3;8780:9;8776:19;8763:33;8823:18;8815:6;8812:30;8809:117;;;8845:79;;:::i;:::-;8809:117;8950:62;9004:7;8995:6;8984:9;8980:22;8950:62;:::i;:::-;8940:72;;8734:288;7940:1089;;;;;;;;:::o;9035:1053::-;9137:6;9145;9153;9161;9169;9177;9226:3;9214:9;9205:7;9201:23;9197:33;9194:120;;;9233:79;;:::i;:::-;9194:120;9353:1;9378:53;9423:7;9414:6;9403:9;9399:22;9378:53;:::i;:::-;9368:63;;9324:117;9480:2;9506:53;9551:7;9542:6;9531:9;9527:22;9506:53;:::i;:::-;9496:63;;9451:118;9608:2;9634:53;9679:7;9670:6;9659:9;9655:22;9634:53;:::i;:::-;9624:63;;9579:118;9736:2;9762:51;9805:7;9796:6;9785:9;9781:22;9762:51;:::i;:::-;9752:61;;9707:116;9862:3;9889:53;9934:7;9925:6;9914:9;9910:22;9889:53;:::i;:::-;9879:63;;9833:119;9991:3;10018:53;10063:7;10054:6;10043:9;10039:22;10018:53;:::i;:::-;10008:63;;9962:119;9035:1053;;;;;;;;:::o;10094:468::-;10159:6;10167;10216:2;10204:9;10195:7;10191:23;10187:32;10184:119;;;10222:79;;:::i;:::-;10184:119;10342:1;10367:53;10412:7;10403:6;10392:9;10388:22;10367:53;:::i;:::-;10357:63;;10313:117;10469:2;10495:50;10537:7;10528:6;10517:9;10513:22;10495:50;:::i;:::-;10485:60;;10440:115;10094:468;;;;;:::o;10568:474::-;10636:6;10644;10693:2;10681:9;10672:7;10668:23;10664:32;10661:119;;;10699:79;;:::i;:::-;10661:119;10819:1;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10790:117;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;10568:474;;;;;:::o;11048:619::-;11125:6;11133;11141;11190:2;11178:9;11169:7;11165:23;11161:32;11158:119;;;11196:79;;:::i;:::-;11158:119;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11048:619;;;;;:::o;11673:943::-;11768:6;11776;11784;11792;11841:3;11829:9;11820:7;11816:23;11812:33;11809:120;;;11848:79;;:::i;:::-;11809:120;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;12223:2;12249:53;12294:7;12285:6;12274:9;12270:22;12249:53;:::i;:::-;12239:63;;12194:118;12379:2;12368:9;12364:18;12351:32;12410:18;12402:6;12399:30;12396:117;;;12432:79;;:::i;:::-;12396:117;12537:62;12591:7;12582:6;12571:9;12567:22;12537:62;:::i;:::-;12527:72;;12322:287;11673:943;;;;;;;:::o;12622:894::-;12740:6;12748;12797:2;12785:9;12776:7;12772:23;12768:32;12765:119;;;12803:79;;:::i;:::-;12765:119;12951:1;12940:9;12936:17;12923:31;12981:18;12973:6;12970:30;12967:117;;;13003:79;;:::i;:::-;12967:117;13108:78;13178:7;13169:6;13158:9;13154:22;13108:78;:::i;:::-;13098:88;;12894:302;13263:2;13252:9;13248:18;13235:32;13294:18;13286:6;13283:30;13280:117;;;13316:79;;:::i;:::-;13280:117;13421:78;13491:7;13482:6;13471:9;13467:22;13421:78;:::i;:::-;13411:88;;13206:303;12622:894;;;;;:::o;13522:327::-;13580:6;13629:2;13617:9;13608:7;13604:23;13600:32;13597:119;;;13635:79;;:::i;:::-;13597:119;13755:1;13780:52;13824:7;13815:6;13804:9;13800:22;13780:52;:::i;:::-;13770:62;;13726:116;13522:327;;;;:::o;13855:349::-;13924:6;13973:2;13961:9;13952:7;13948:23;13944:32;13941:119;;;13979:79;;:::i;:::-;13941:119;14099:1;14124:63;14179:7;14170:6;14159:9;14155:22;14124:63;:::i;:::-;14114:73;;14070:127;13855:349;;;;:::o;14210:509::-;14279:6;14328:2;14316:9;14307:7;14303:23;14299:32;14296:119;;;14334:79;;:::i;:::-;14296:119;14482:1;14471:9;14467:17;14454:31;14512:18;14504:6;14501:30;14498:117;;;14534:79;;:::i;:::-;14498:117;14639:63;14694:7;14685:6;14674:9;14670:22;14639:63;:::i;:::-;14629:73;;14425:287;14210:509;;;;:::o;14725:329::-;14784:6;14833:2;14821:9;14812:7;14808:23;14804:32;14801:119;;;14839:79;;:::i;:::-;14801:119;14959:1;14984:53;15029:7;15020:6;15009:9;15005:22;14984:53;:::i;:::-;14974:63;;14930:117;14725:329;;;;:::o;15060:179::-;15129:10;15150:46;15192:3;15184:6;15150:46;:::i;:::-;15228:4;15223:3;15219:14;15205:28;;15060:179;;;;:::o;15245:118::-;15332:24;15350:5;15332:24;:::i;:::-;15327:3;15320:37;15245:118;;:::o;15399:732::-;15518:3;15547:54;15595:5;15547:54;:::i;:::-;15617:86;15696:6;15691:3;15617:86;:::i;:::-;15610:93;;15727:56;15777:5;15727:56;:::i;:::-;15806:7;15837:1;15822:284;15847:6;15844:1;15841:13;15822:284;;;15923:6;15917:13;15950:63;16009:3;15994:13;15950:63;:::i;:::-;15943:70;;16036:60;16089:6;16036:60;:::i;:::-;16026:70;;15882:224;15869:1;15866;15862:9;15857:14;;15822:284;;;15826:14;16122:3;16115:10;;15523:608;;;15399:732;;;;:::o;16137:109::-;16218:21;16233:5;16218:21;:::i;:::-;16213:3;16206:34;16137:109;;:::o;16252:118::-;16339:24;16357:5;16339:24;:::i;:::-;16334:3;16327:37;16252:118;;:::o;16376:157::-;16481:45;16501:24;16519:5;16501:24;:::i;:::-;16481:45;:::i;:::-;16476:3;16469:58;16376:157;;:::o;16539:360::-;16625:3;16653:38;16685:5;16653:38;:::i;:::-;16707:70;16770:6;16765:3;16707:70;:::i;:::-;16700:77;;16786:52;16831:6;16826:3;16819:4;16812:5;16808:16;16786:52;:::i;:::-;16863:29;16885:6;16863:29;:::i;:::-;16858:3;16854:39;16847:46;;16629:270;16539:360;;;;:::o;16927:849::-;17032:3;17069:5;17063:12;17098:36;17124:9;17098:36;:::i;:::-;17150:88;17231:6;17226:3;17150:88;:::i;:::-;17143:95;;17269:1;17258:9;17254:17;17285:1;17280:137;;;;17431:1;17426:344;;;;17247:523;;17280:137;17364:4;17360:9;17349;17345:25;17340:3;17333:38;17400:6;17395:3;17391:16;17384:23;;17280:137;;17426:344;17493:41;17528:5;17493:41;:::i;:::-;17556:1;17570:154;17584:6;17581:1;17578:13;17570:154;;;17658:7;17652:14;17648:1;17643:3;17639:11;17632:35;17708:1;17699:7;17695:15;17684:26;;17606:4;17603:1;17599:12;17594:17;;17570:154;;;17753:6;17748:3;17744:16;17737:23;;17433:337;;17247:523;;17036:740;;16927:849;;;;:::o;17782:364::-;17870:3;17898:39;17931:5;17898:39;:::i;:::-;17953:71;18017:6;18012:3;17953:71;:::i;:::-;17946:78;;18033:52;18078:6;18073:3;18066:4;18059:5;18055:16;18033:52;:::i;:::-;18110:29;18132:6;18110:29;:::i;:::-;18105:3;18101:39;18094:46;;17874:272;17782:364;;;;:::o;18152:377::-;18258:3;18286:39;18319:5;18286:39;:::i;:::-;18341:89;18423:6;18418:3;18341:89;:::i;:::-;18334:96;;18439:52;18484:6;18479:3;18472:4;18465:5;18461:16;18439:52;:::i;:::-;18516:6;18511:3;18507:16;18500:23;;18262:267;18152:377;;;;:::o;18535:366::-;18677:3;18698:67;18762:2;18757:3;18698:67;:::i;:::-;18691:74;;18774:93;18863:3;18774:93;:::i;:::-;18892:2;18887:3;18883:12;18876:19;;18535:366;;;:::o;18907:::-;19049:3;19070:67;19134:2;19129:3;19070:67;:::i;:::-;19063:74;;19146:93;19235:3;19146:93;:::i;:::-;19264:2;19259:3;19255:12;19248:19;;18907:366;;;:::o;19279:::-;19421:3;19442:67;19506:2;19501:3;19442:67;:::i;:::-;19435:74;;19518:93;19607:3;19518:93;:::i;:::-;19636:2;19631:3;19627:12;19620:19;;19279:366;;;:::o;19651:::-;19793:3;19814:67;19878:2;19873:3;19814:67;:::i;:::-;19807:74;;19890:93;19979:3;19890:93;:::i;:::-;20008:2;20003:3;19999:12;19992:19;;19651:366;;;:::o;20023:::-;20165:3;20186:67;20250:2;20245:3;20186:67;:::i;:::-;20179:74;;20262:93;20351:3;20262:93;:::i;:::-;20380:2;20375:3;20371:12;20364:19;;20023:366;;;:::o;20395:::-;20537:3;20558:67;20622:2;20617:3;20558:67;:::i;:::-;20551:74;;20634:93;20723:3;20634:93;:::i;:::-;20752:2;20747:3;20743:12;20736:19;;20395:366;;;:::o;20767:::-;20909:3;20930:67;20994:2;20989:3;20930:67;:::i;:::-;20923:74;;21006:93;21095:3;21006:93;:::i;:::-;21124:2;21119:3;21115:12;21108:19;;20767:366;;;:::o;21139:400::-;21299:3;21320:84;21402:1;21397:3;21320:84;:::i;:::-;21313:91;;21413:93;21502:3;21413:93;:::i;:::-;21531:1;21526:3;21522:11;21515:18;;21139:400;;;:::o;21545:366::-;21687:3;21708:67;21772:2;21767:3;21708:67;:::i;:::-;21701:74;;21784:93;21873:3;21784:93;:::i;:::-;21902:2;21897:3;21893:12;21886:19;;21545:366;;;:::o;21917:::-;22059:3;22080:67;22144:2;22139:3;22080:67;:::i;:::-;22073:74;;22156:93;22245:3;22156:93;:::i;:::-;22274:2;22269:3;22265:12;22258:19;;21917:366;;;:::o;22289:::-;22431:3;22452:67;22516:2;22511:3;22452:67;:::i;:::-;22445:74;;22528:93;22617:3;22528:93;:::i;:::-;22646:2;22641:3;22637:12;22630:19;;22289:366;;;:::o;22661:::-;22803:3;22824:67;22888:2;22883:3;22824:67;:::i;:::-;22817:74;;22900:93;22989:3;22900:93;:::i;:::-;23018:2;23013:3;23009:12;23002:19;;22661:366;;;:::o;23033:::-;23175:3;23196:67;23260:2;23255:3;23196:67;:::i;:::-;23189:74;;23272:93;23361:3;23272:93;:::i;:::-;23390:2;23385:3;23381:12;23374:19;;23033:366;;;:::o;23405:::-;23547:3;23568:67;23632:2;23627:3;23568:67;:::i;:::-;23561:74;;23644:93;23733:3;23644:93;:::i;:::-;23762:2;23757:3;23753:12;23746:19;;23405:366;;;:::o;23777:::-;23919:3;23940:67;24004:2;23999:3;23940:67;:::i;:::-;23933:74;;24016:93;24105:3;24016:93;:::i;:::-;24134:2;24129:3;24125:12;24118:19;;23777:366;;;:::o;24149:::-;24291:3;24312:67;24376:2;24371:3;24312:67;:::i;:::-;24305:74;;24388:93;24477:3;24388:93;:::i;:::-;24506:2;24501:3;24497:12;24490:19;;24149:366;;;:::o;24521:::-;24663:3;24684:67;24748:2;24743:3;24684:67;:::i;:::-;24677:74;;24760:93;24849:3;24760:93;:::i;:::-;24878:2;24873:3;24869:12;24862:19;;24521:366;;;:::o;24893:::-;25035:3;25056:67;25120:2;25115:3;25056:67;:::i;:::-;25049:74;;25132:93;25221:3;25132:93;:::i;:::-;25250:2;25245:3;25241:12;25234:19;;24893:366;;;:::o;25265:::-;25407:3;25428:67;25492:2;25487:3;25428:67;:::i;:::-;25421:74;;25504:93;25593:3;25504:93;:::i;:::-;25622:2;25617:3;25613:12;25606:19;;25265:366;;;:::o;25637:::-;25779:3;25800:67;25864:2;25859:3;25800:67;:::i;:::-;25793:74;;25876:93;25965:3;25876:93;:::i;:::-;25994:2;25989:3;25985:12;25978:19;;25637:366;;;:::o;26009:::-;26151:3;26172:67;26236:2;26231:3;26172:67;:::i;:::-;26165:74;;26248:93;26337:3;26248:93;:::i;:::-;26366:2;26361:3;26357:12;26350:19;;26009:366;;;:::o;26381:::-;26523:3;26544:67;26608:2;26603:3;26544:67;:::i;:::-;26537:74;;26620:93;26709:3;26620:93;:::i;:::-;26738:2;26733:3;26729:12;26722:19;;26381:366;;;:::o;26753:::-;26895:3;26916:67;26980:2;26975:3;26916:67;:::i;:::-;26909:74;;26992:93;27081:3;26992:93;:::i;:::-;27110:2;27105:3;27101:12;27094:19;;26753:366;;;:::o;27125:108::-;27202:24;27220:5;27202:24;:::i;:::-;27197:3;27190:37;27125:108;;:::o;27239:118::-;27326:24;27344:5;27326:24;:::i;:::-;27321:3;27314:37;27239:118;;:::o;27363:112::-;27446:22;27462:5;27446:22;:::i;:::-;27441:3;27434:35;27363:112;;:::o;27481:273::-;27612:3;27634:94;27724:3;27715:6;27634:94;:::i;:::-;27627:101;;27745:3;27738:10;;27481:273;;;;:::o;27760:435::-;27940:3;27962:95;28053:3;28044:6;27962:95;:::i;:::-;27955:102;;28074:95;28165:3;28156:6;28074:95;:::i;:::-;28067:102;;28186:3;28179:10;;27760:435;;;;;:::o;28201:663::-;28442:3;28464:148;28608:3;28464:148;:::i;:::-;28457:155;;28622:75;28693:3;28684:6;28622:75;:::i;:::-;28722:2;28717:3;28713:12;28706:19;;28735:75;28806:3;28797:6;28735:75;:::i;:::-;28835:2;28830:3;28826:12;28819:19;;28855:3;28848:10;;28201:663;;;;;:::o;28870:222::-;28963:4;29001:2;28990:9;28986:18;28978:26;;29014:71;29082:1;29071:9;29067:17;29058:6;29014:71;:::i;:::-;28870:222;;;;:::o;29098:1053::-;29421:4;29459:3;29448:9;29444:19;29436:27;;29473:71;29541:1;29530:9;29526:17;29517:6;29473:71;:::i;:::-;29554:72;29622:2;29611:9;29607:18;29598:6;29554:72;:::i;:::-;29673:9;29667:4;29663:20;29658:2;29647:9;29643:18;29636:48;29701:108;29804:4;29795:6;29701:108;:::i;:::-;29693:116;;29856:9;29850:4;29846:20;29841:2;29830:9;29826:18;29819:48;29884:108;29987:4;29978:6;29884:108;:::i;:::-;29876:116;;30040:9;30034:4;30030:20;30024:3;30013:9;30009:19;30002:49;30068:76;30139:4;30130:6;30068:76;:::i;:::-;30060:84;;29098:1053;;;;;;;;:::o;30157:751::-;30380:4;30418:3;30407:9;30403:19;30395:27;;30432:71;30500:1;30489:9;30485:17;30476:6;30432:71;:::i;:::-;30513:72;30581:2;30570:9;30566:18;30557:6;30513:72;:::i;:::-;30595;30663:2;30652:9;30648:18;30639:6;30595:72;:::i;:::-;30677;30745:2;30734:9;30730:18;30721:6;30677:72;:::i;:::-;30797:9;30791:4;30787:20;30781:3;30770:9;30766:19;30759:49;30825:76;30896:4;30887:6;30825:76;:::i;:::-;30817:84;;30157:751;;;;;;;;:::o;30914:373::-;31057:4;31095:2;31084:9;31080:18;31072:26;;31144:9;31138:4;31134:20;31130:1;31119:9;31115:17;31108:47;31172:108;31275:4;31266:6;31172:108;:::i;:::-;31164:116;;30914:373;;;;:::o;31293:634::-;31514:4;31552:2;31541:9;31537:18;31529:26;;31601:9;31595:4;31591:20;31587:1;31576:9;31572:17;31565:47;31629:108;31732:4;31723:6;31629:108;:::i;:::-;31621:116;;31784:9;31778:4;31774:20;31769:2;31758:9;31754:18;31747:48;31812:108;31915:4;31906:6;31812:108;:::i;:::-;31804:116;;31293:634;;;;;:::o;31933:210::-;32020:4;32058:2;32047:9;32043:18;32035:26;;32071:65;32133:1;32122:9;32118:17;32109:6;32071:65;:::i;:::-;31933:210;;;;:::o;32149:222::-;32242:4;32280:2;32269:9;32265:18;32257:26;;32293:71;32361:1;32350:9;32346:17;32337:6;32293:71;:::i;:::-;32149:222;;;;:::o;32377:664::-;32582:4;32620:3;32609:9;32605:19;32597:27;;32634:71;32702:1;32691:9;32687:17;32678:6;32634:71;:::i;:::-;32715:72;32783:2;32772:9;32768:18;32759:6;32715:72;:::i;:::-;32797;32865:2;32854:9;32850:18;32841:6;32797:72;:::i;:::-;32879;32947:2;32936:9;32932:18;32923:6;32879:72;:::i;:::-;32961:73;33029:3;33018:9;33014:19;33005:6;32961:73;:::i;:::-;32377:664;;;;;;;;:::o;33047:::-;33252:4;33290:3;33279:9;33275:19;33267:27;;33304:71;33372:1;33361:9;33357:17;33348:6;33304:71;:::i;:::-;33385:72;33453:2;33442:9;33438:18;33429:6;33385:72;:::i;:::-;33467;33535:2;33524:9;33520:18;33511:6;33467:72;:::i;:::-;33549;33617:2;33606:9;33602:18;33593:6;33549:72;:::i;:::-;33631:73;33699:3;33688:9;33684:19;33675:6;33631:73;:::i;:::-;33047:664;;;;;;;;:::o;33717:545::-;33890:4;33928:3;33917:9;33913:19;33905:27;;33942:71;34010:1;33999:9;33995:17;33986:6;33942:71;:::i;:::-;34023:68;34087:2;34076:9;34072:18;34063:6;34023:68;:::i;:::-;34101:72;34169:2;34158:9;34154:18;34145:6;34101:72;:::i;:::-;34183;34251:2;34240:9;34236:18;34227:6;34183:72;:::i;:::-;33717:545;;;;;;;:::o;34268:313::-;34381:4;34419:2;34408:9;34404:18;34396:26;;34468:9;34462:4;34458:20;34454:1;34443:9;34439:17;34432:47;34496:78;34569:4;34560:6;34496:78;:::i;:::-;34488:86;;34268:313;;;;:::o;34587:419::-;34753:4;34791:2;34780:9;34776:18;34768:26;;34840:9;34834:4;34830:20;34826:1;34815:9;34811:17;34804:47;34868:131;34994:4;34868:131;:::i;:::-;34860:139;;34587:419;;;:::o;35012:::-;35178:4;35216:2;35205:9;35201:18;35193:26;;35265:9;35259:4;35255:20;35251:1;35240:9;35236:17;35229:47;35293:131;35419:4;35293:131;:::i;:::-;35285:139;;35012:419;;;:::o;35437:::-;35603:4;35641:2;35630:9;35626:18;35618:26;;35690:9;35684:4;35680:20;35676:1;35665:9;35661:17;35654:47;35718:131;35844:4;35718:131;:::i;:::-;35710:139;;35437:419;;;:::o;35862:::-;36028:4;36066:2;36055:9;36051:18;36043:26;;36115:9;36109:4;36105:20;36101:1;36090:9;36086:17;36079:47;36143:131;36269:4;36143:131;:::i;:::-;36135:139;;35862:419;;;:::o;36287:::-;36453:4;36491:2;36480:9;36476:18;36468:26;;36540:9;36534:4;36530:20;36526:1;36515:9;36511:17;36504:47;36568:131;36694:4;36568:131;:::i;:::-;36560:139;;36287:419;;;:::o;36712:::-;36878:4;36916:2;36905:9;36901:18;36893:26;;36965:9;36959:4;36955:20;36951:1;36940:9;36936:17;36929:47;36993:131;37119:4;36993:131;:::i;:::-;36985:139;;36712:419;;;:::o;37137:::-;37303:4;37341:2;37330:9;37326:18;37318:26;;37390:9;37384:4;37380:20;37376:1;37365:9;37361:17;37354:47;37418:131;37544:4;37418:131;:::i;:::-;37410:139;;37137:419;;;:::o;37562:::-;37728:4;37766:2;37755:9;37751:18;37743:26;;37815:9;37809:4;37805:20;37801:1;37790:9;37786:17;37779:47;37843:131;37969:4;37843:131;:::i;:::-;37835:139;;37562:419;;;:::o;37987:::-;38153:4;38191:2;38180:9;38176:18;38168:26;;38240:9;38234:4;38230:20;38226:1;38215:9;38211:17;38204:47;38268:131;38394:4;38268:131;:::i;:::-;38260:139;;37987:419;;;:::o;38412:::-;38578:4;38616:2;38605:9;38601:18;38593:26;;38665:9;38659:4;38655:20;38651:1;38640:9;38636:17;38629:47;38693:131;38819:4;38693:131;:::i;:::-;38685:139;;38412:419;;;:::o;38837:::-;39003:4;39041:2;39030:9;39026:18;39018:26;;39090:9;39084:4;39080:20;39076:1;39065:9;39061:17;39054:47;39118:131;39244:4;39118:131;:::i;:::-;39110:139;;38837:419;;;:::o;39262:::-;39428:4;39466:2;39455:9;39451:18;39443:26;;39515:9;39509:4;39505:20;39501:1;39490:9;39486:17;39479:47;39543:131;39669:4;39543:131;:::i;:::-;39535:139;;39262:419;;;:::o;39687:::-;39853:4;39891:2;39880:9;39876:18;39868:26;;39940:9;39934:4;39930:20;39926:1;39915:9;39911:17;39904:47;39968:131;40094:4;39968:131;:::i;:::-;39960:139;;39687:419;;;:::o;40112:::-;40278:4;40316:2;40305:9;40301:18;40293:26;;40365:9;40359:4;40355:20;40351:1;40340:9;40336:17;40329:47;40393:131;40519:4;40393:131;:::i;:::-;40385:139;;40112:419;;;:::o;40537:::-;40703:4;40741:2;40730:9;40726:18;40718:26;;40790:9;40784:4;40780:20;40776:1;40765:9;40761:17;40754:47;40818:131;40944:4;40818:131;:::i;:::-;40810:139;;40537:419;;;:::o;40962:::-;41128:4;41166:2;41155:9;41151:18;41143:26;;41215:9;41209:4;41205:20;41201:1;41190:9;41186:17;41179:47;41243:131;41369:4;41243:131;:::i;:::-;41235:139;;40962:419;;;:::o;41387:::-;41553:4;41591:2;41580:9;41576:18;41568:26;;41640:9;41634:4;41630:20;41626:1;41615:9;41611:17;41604:47;41668:131;41794:4;41668:131;:::i;:::-;41660:139;;41387:419;;;:::o;41812:::-;41978:4;42016:2;42005:9;42001:18;41993:26;;42065:9;42059:4;42055:20;42051:1;42040:9;42036:17;42029:47;42093:131;42219:4;42093:131;:::i;:::-;42085:139;;41812:419;;;:::o;42237:::-;42403:4;42441:2;42430:9;42426:18;42418:26;;42490:9;42484:4;42480:20;42476:1;42465:9;42461:17;42454:47;42518:131;42644:4;42518:131;:::i;:::-;42510:139;;42237:419;;;:::o;42662:::-;42828:4;42866:2;42855:9;42851:18;42843:26;;42915:9;42909:4;42905:20;42901:1;42890:9;42886:17;42879:47;42943:131;43069:4;42943:131;:::i;:::-;42935:139;;42662:419;;;:::o;43087:::-;43253:4;43291:2;43280:9;43276:18;43268:26;;43340:9;43334:4;43330:20;43326:1;43315:9;43311:17;43304:47;43368:131;43494:4;43368:131;:::i;:::-;43360:139;;43087:419;;;:::o;43512:::-;43678:4;43716:2;43705:9;43701:18;43693:26;;43765:9;43759:4;43755:20;43751:1;43740:9;43736:17;43729:47;43793:131;43919:4;43793:131;:::i;:::-;43785:139;;43512:419;;;:::o;43937:222::-;44030:4;44068:2;44057:9;44053:18;44045:26;;44081:71;44149:1;44138:9;44134:17;44125:6;44081:71;:::i;:::-;43937:222;;;;:::o;44165:332::-;44286:4;44324:2;44313:9;44309:18;44301:26;;44337:71;44405:1;44394:9;44390:17;44381:6;44337:71;:::i;:::-;44418:72;44486:2;44475:9;44471:18;44462:6;44418:72;:::i;:::-;44165:332;;;;;:::o;44503:129::-;44537:6;44564:20;;:::i;:::-;44554:30;;44593:33;44621:4;44613:6;44593:33;:::i;:::-;44503:129;;;:::o;44638:75::-;44671:6;44704:2;44698:9;44688:19;;44638:75;:::o;44719:311::-;44796:4;44886:18;44878:6;44875:30;44872:56;;;44908:18;;:::i;:::-;44872:56;44958:4;44950:6;44946:17;44938:25;;45018:4;45012;45008:15;45000:23;;44719:311;;;:::o;45036:::-;45113:4;45203:18;45195:6;45192:30;45189:56;;;45225:18;;:::i;:::-;45189:56;45275:4;45267:6;45263:17;45255:25;;45335:4;45329;45325:15;45317:23;;45036:311;;;:::o;45353:307::-;45414:4;45504:18;45496:6;45493:30;45490:56;;;45526:18;;:::i;:::-;45490:56;45564:29;45586:6;45564:29;:::i;:::-;45556:37;;45648:4;45642;45638:15;45630:23;;45353:307;;;:::o;45666:308::-;45728:4;45818:18;45810:6;45807:30;45804:56;;;45840:18;;:::i;:::-;45804:56;45878:29;45900:6;45878:29;:::i;:::-;45870:37;;45962:4;45956;45952:15;45944:23;;45666:308;;;:::o;45980:132::-;46047:4;46070:3;46062:11;;46100:4;46095:3;46091:14;46083:22;;45980:132;;;:::o;46118:144::-;46170:4;46193:3;46185:11;;46216:3;46213:1;46206:14;46250:4;46247:1;46237:18;46229:26;;46118:144;;;:::o;46268:114::-;46335:6;46369:5;46363:12;46353:22;;46268:114;;;:::o;46388:98::-;46439:6;46473:5;46467:12;46457:22;;46388:98;;;:::o;46492:99::-;46544:6;46578:5;46572:12;46562:22;;46492:99;;;:::o;46597:113::-;46667:4;46699;46694:3;46690:14;46682:22;;46597:113;;;:::o;46716:184::-;46815:11;46849:6;46844:3;46837:19;46889:4;46884:3;46880:14;46865:29;;46716:184;;;;:::o;46906:168::-;46989:11;47023:6;47018:3;47011:19;47063:4;47058:3;47054:14;47039:29;;46906:168;;;;:::o;47080:147::-;47181:11;47218:3;47203:18;;47080:147;;;;:::o;47233:169::-;47317:11;47351:6;47346:3;47339:19;47391:4;47386:3;47382:14;47367:29;;47233:169;;;;:::o;47408:148::-;47510:11;47547:3;47532:18;;47408:148;;;;:::o;47562:305::-;47602:3;47621:20;47639:1;47621:20;:::i;:::-;47616:25;;47655:20;47673:1;47655:20;:::i;:::-;47650:25;;47809:1;47741:66;47737:74;47734:1;47731:81;47728:107;;;47815:18;;:::i;:::-;47728:107;47859:1;47856;47852:9;47845:16;;47562:305;;;;:::o;47873:185::-;47913:1;47930:20;47948:1;47930:20;:::i;:::-;47925:25;;47964:20;47982:1;47964:20;:::i;:::-;47959:25;;48003:1;47993:35;;48008:18;;:::i;:::-;47993:35;48050:1;48047;48043:9;48038:14;;47873:185;;;;:::o;48064:191::-;48104:4;48124:20;48142:1;48124:20;:::i;:::-;48119:25;;48158:20;48176:1;48158:20;:::i;:::-;48153:25;;48197:1;48194;48191:8;48188:34;;;48202:18;;:::i;:::-;48188:34;48247:1;48244;48240:9;48232:17;;48064:191;;;;:::o;48261:96::-;48298:7;48327:24;48345:5;48327:24;:::i;:::-;48316:35;;48261:96;;;:::o;48363:90::-;48397:7;48440:5;48433:13;48426:21;48415:32;;48363:90;;;:::o;48459:77::-;48496:7;48525:5;48514:16;;48459:77;;;:::o;48542:149::-;48578:7;48618:66;48611:5;48607:78;48596:89;;48542:149;;;:::o;48697:126::-;48734:7;48774:42;48767:5;48763:54;48752:65;;48697:126;;;:::o;48829:77::-;48866:7;48895:5;48884:16;;48829:77;;;:::o;48912:86::-;48947:7;48987:4;48980:5;48976:16;48965:27;;48912:86;;;:::o;49004:154::-;49088:6;49083:3;49078;49065:30;49150:1;49141:6;49136:3;49132:16;49125:27;49004:154;;;:::o;49164:307::-;49232:1;49242:113;49256:6;49253:1;49250:13;49242:113;;;49341:1;49336:3;49332:11;49326:18;49322:1;49317:3;49313:11;49306:39;49278:2;49275:1;49271:10;49266:15;;49242:113;;;49373:6;49370:1;49367:13;49364:101;;;49453:1;49444:6;49439:3;49435:16;49428:27;49364:101;49213:258;49164:307;;;:::o;49477:320::-;49521:6;49558:1;49552:4;49548:12;49538:22;;49605:1;49599:4;49595:12;49626:18;49616:81;;49682:4;49674:6;49670:17;49660:27;;49616:81;49744:2;49736:6;49733:14;49713:18;49710:38;49707:84;;;49763:18;;:::i;:::-;49707:84;49528:269;49477:320;;;:::o;49803:281::-;49886:27;49908:4;49886:27;:::i;:::-;49878:6;49874:40;50016:6;50004:10;50001:22;49980:18;49968:10;49965:34;49962:62;49959:88;;;50027:18;;:::i;:::-;49959:88;50067:10;50063:2;50056:22;49846:238;49803:281;;:::o;50090:233::-;50129:3;50152:24;50170:5;50152:24;:::i;:::-;50143:33;;50198:66;50191:5;50188:77;50185:103;;;50268:18;;:::i;:::-;50185:103;50315:1;50308:5;50304:13;50297:20;;50090:233;;;:::o;50329:79::-;50368:7;50397:5;50386:16;;50329:79;;;:::o;50414:176::-;50446:1;50463:20;50481:1;50463:20;:::i;:::-;50458:25;;50497:20;50515:1;50497:20;:::i;:::-;50492:25;;50536:1;50526:35;;50541:18;;:::i;:::-;50526:35;50582:1;50579;50575:9;50570:14;;50414:176;;;;:::o;50596:180::-;50644:77;50641:1;50634:88;50741:4;50738:1;50731:15;50765:4;50762:1;50755:15;50782:180;50830:77;50827:1;50820:88;50927:4;50924:1;50917:15;50951:4;50948:1;50941:15;50968:180;51016:77;51013:1;51006:88;51113:4;51110:1;51103:15;51137:4;51134:1;51127:15;51154:180;51202:77;51199:1;51192:88;51299:4;51296:1;51289:15;51323:4;51320:1;51313:15;51340:180;51388:77;51385:1;51378:88;51485:4;51482:1;51475:15;51509:4;51506:1;51499:15;51526:183;51561:3;51599:1;51581:16;51578:23;51575:128;;;51637:1;51634;51631;51616:23;51659:34;51690:1;51684:8;51659:34;:::i;:::-;51652:41;;51575:128;51526:183;:::o;51715:117::-;51824:1;51821;51814:12;51838:117;51947:1;51944;51937:12;51961:117;52070:1;52067;52060:12;52084:117;52193:1;52190;52183:12;52207:117;52316:1;52313;52306:12;52330:102;52371:6;52422:2;52418:7;52413:2;52406:5;52402:14;52398:28;52388:38;;52330:102;;;:::o;52438:106::-;52482:8;52531:5;52526:3;52522:15;52501:36;;52438:106;;;:::o;52550:239::-;52690:34;52686:1;52678:6;52674:14;52667:58;52759:22;52754:2;52746:6;52742:15;52735:47;52550:239;:::o;52795:227::-;52935:34;52931:1;52923:6;52919:14;52912:58;53004:10;52999:2;52991:6;52987:15;52980:35;52795:227;:::o;53028:170::-;53168:22;53164:1;53156:6;53152:14;53145:46;53028:170;:::o;53204:229::-;53344:34;53340:1;53332:6;53328:14;53321:58;53413:12;53408:2;53400:6;53396:15;53389:37;53204:229;:::o;53439:230::-;53579:34;53575:1;53567:6;53563:14;53556:58;53648:13;53643:2;53635:6;53631:15;53624:38;53439:230;:::o;53675:225::-;53815:34;53811:1;53803:6;53799:14;53792:58;53884:8;53879:2;53871:6;53867:15;53860:33;53675:225;:::o;53906:223::-;54046:34;54042:1;54034:6;54030:14;54023:58;54115:6;54110:2;54102:6;54098:15;54091:31;53906:223;:::o;54135:214::-;54275:66;54271:1;54263:6;54259:14;54252:90;54135:214;:::o;54355:228::-;54495:34;54491:1;54483:6;54479:14;54472:58;54564:11;54559:2;54551:6;54547:15;54540:36;54355:228;:::o;54589:::-;54729:34;54725:1;54717:6;54713:14;54706:58;54798:11;54793:2;54785:6;54781:15;54774:36;54589:228;:::o;54823:223::-;54963:34;54959:1;54951:6;54947:14;54940:58;55032:6;55027:2;55019:6;55015:15;55008:31;54823:223;:::o;55052:166::-;55192:18;55188:1;55180:6;55176:14;55169:42;55052:166;:::o;55224:231::-;55364:34;55360:1;55352:6;55348:14;55341:58;55433:14;55428:2;55420:6;55416:15;55409:39;55224:231;:::o;55461:224::-;55601:34;55597:1;55589:6;55585:14;55578:58;55670:7;55665:2;55657:6;55653:15;55646:32;55461:224;:::o;55691:237::-;55831:34;55827:1;55819:6;55815:14;55808:58;55900:20;55895:2;55887:6;55883:15;55876:45;55691:237;:::o;55934:222::-;56074:34;56070:1;56062:6;56058:14;56051:58;56143:5;56138:2;56130:6;56126:15;56119:30;55934:222;:::o;56162:229::-;56302:34;56298:1;56290:6;56286:14;56279:58;56371:12;56366:2;56358:6;56354:15;56347:37;56162:229;:::o;56397:182::-;56537:34;56533:1;56525:6;56521:14;56514:58;56397:182;:::o;56585:222::-;56725:34;56721:1;56713:6;56709:14;56702:58;56794:5;56789:2;56781:6;56777:15;56770:30;56585:222;:::o;56813:228::-;56953:34;56949:1;56941:6;56937:14;56930:58;57022:11;57017:2;57009:6;57005:15;56998:36;56813:228;:::o;57047:::-;57187:34;57183:1;57175:6;57171:14;57164:58;57256:11;57251:2;57243:6;57239:15;57232:36;57047:228;:::o;57281:227::-;57421:34;57417:1;57409:6;57405:14;57398:58;57490:10;57485:2;57477:6;57473:15;57466:35;57281:227;:::o;57514:220::-;57654:34;57650:1;57642:6;57638:14;57631:58;57723:3;57718:2;57710:6;57706:15;57699:28;57514:220;:::o;57740:711::-;57779:3;57817:4;57799:16;57796:26;57793:39;;;57825:5;;57793:39;57854:20;;:::i;:::-;57929:1;57911:16;57907:24;57904:1;57898:4;57883:49;57962:4;57956:11;58061:16;58054:4;58046:6;58042:17;58039:39;58006:18;57998:6;57995:30;57979:113;57976:146;;;58107:5;;;;57976:146;58153:6;58147:4;58143:17;58189:3;58183:10;58216:18;58208:6;58205:30;58202:43;;;58238:5;;;;;;58202:43;58286:6;58279:4;58274:3;58270:14;58266:27;58345:1;58327:16;58323:24;58317:4;58313:35;58308:3;58305:44;58302:57;;;58352:5;;;;;;;58302:57;58369;58417:6;58411:4;58407:17;58399:6;58395:30;58389:4;58369:57;:::i;:::-;58442:3;58435:10;;57783:668;;;;;57740:711;;:::o;58457:122::-;58530:24;58548:5;58530:24;:::i;:::-;58523:5;58520:35;58510:63;;58569:1;58566;58559:12;58510:63;58457:122;:::o;58585:116::-;58655:21;58670:5;58655:21;:::i;:::-;58648:5;58645:32;58635:60;;58691:1;58688;58681:12;58635:60;58585:116;:::o;58707:122::-;58780:24;58798:5;58780:24;:::i;:::-;58773:5;58770:35;58760:63;;58819:1;58816;58809:12;58760:63;58707:122;:::o;58835:120::-;58907:23;58924:5;58907:23;:::i;:::-;58900:5;58897:34;58887:62;;58945:1;58942;58935:12;58887:62;58835:120;:::o;58961:122::-;59034:24;59052:5;59034:24;:::i;:::-;59027:5;59024:35;59014:63;;59073:1;59070;59063:12;59014:63;58961:122;:::o;59089:118::-;59160:22;59176:5;59160:22;:::i;:::-;59153:5;59150:33;59140:61;;59197:1;59194;59187:12;59140:61;59089:118;:::o
Swarm Source
ipfs://f0369c83e092e9e2feb648368874d7be47e7728356e32c8dd5d72e0c587d74fe
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.