{
    "Function": "supportsERC165",
    "File": "contracts/lib/openzeppelin-contracts/contracts/utils/introspection/ERC165Checker.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_supportsERC165Interface",
        "type()",
        "_supportsERC165Interface"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function supportsERC165(address account) internal view returns (bool) {\n        // Any contract that implements ERC165 must explicitly indicate support of\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n        return\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\n    }"
}