{
  "contractName": "ERC165Upgradeable",
  "abi": [
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "uint8",
          "name": "version",
          "type": "uint8"
        }
      ],
      "name": "Initialized",
      "type": "event"
    },
    {
      "inputs": [
        {
          "internalType": "bytes4",
          "name": "interfaceId",
          "type": "bytes4"
        }
      ],
      "name": "supportsInterface",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":\"ERC165Upgradeable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":100},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x0203dcadc5737d9ef2c211d6fa15d18ebc3b30dfa51903b64870b01a062b0b4e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6eb2fd1e9894dbe778f4b8131adecebe570689e63cf892f4e21257bfe1252497\",\"dweb:/ipfs/QmXgUGNfZvrn6N2miv3nooSs7Jm34A41qz94fu2GtDFcx8\"]},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x611aa3f23e59cfdd1863c536776407b3e33d695152a266fa7cfb34440a29a8a3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b4b2110b7f2b3eb32951bc08046fa90feccffa594e1176cb91cdfb0e94726b4\",\"dweb:/ipfs/QmSxLwYjicf9zWFuieRc8WQwE4FisA1Um5jp1iSa731TGt\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x9a3b990bd56d139df3e454a9edf1c64668530b5a77fc32eb063bc206f958274a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0895399d170daab2d69b4c43a0202e5a07f2e67a93b26e3354dcbedb062232f7\",\"dweb:/ipfs/QmUM1VH3XDk559Dsgh4QPvupr3YVKjz87HrSyYzzVFZbxw\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol\":{\"keccak256\":\"0xc6cef87559d0aeffdf0a99803de655938a7779ec0a3cd5d4383483ad85565a09\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://92ad7e572cf44e6b4b37631b44b62f9eb9fb1cf14d9ce51c1504d5dc7ccaf758\",\"dweb:/ipfs/QmcnbqX85tsWnUXPmtuPLE4SczME2sJaTfmqEFkuAJvWhy\"]}},\"version\":1}",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "immutableReferences": {},
  "generatedSources": [],
  "deployedGeneratedSources": [],
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165Upgradeable.sol\";\nimport \"../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {\n    function __ERC165_init() internal onlyInitializing {\n    }\n\n    function __ERC165_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IERC165Upgradeable).interfaceId;\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n",
  "sourcePath": "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol",
  "ast": {
    "absolutePath": "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol",
    "exportedSymbols": {
      "AddressUpgradeable": [
        16426
      ],
      "ERC165Upgradeable": [
        16738
      ],
      "IERC165Upgradeable": [
        16750
      ],
      "Initializable": [
        13707
      ]
    },
    "id": 16739,
    "license": "MIT",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 16696,
        "literals": [
          "solidity",
          "^",
          "0.8",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "99:23:61"
      },
      {
        "absolutePath": "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol",
        "file": "./IERC165Upgradeable.sol",
        "id": 16697,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16739,
        "sourceUnit": 16751,
        "src": "124:34:61",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
        "file": "../../proxy/utils/Initializable.sol",
        "id": 16698,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16739,
        "sourceUnit": 13708,
        "src": "159:45:61",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "abstract": true,
        "baseContracts": [
          {
            "baseName": {
              "id": 16700,
              "name": "Initializable",
              "nameLocations": [
                "822:13:61"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 13707,
              "src": "822:13:61"
            },
            "id": 16701,
            "nodeType": "InheritanceSpecifier",
            "src": "822:13:61"
          },
          {
            "baseName": {
              "id": 16702,
              "name": "IERC165Upgradeable",
              "nameLocations": [
                "837:18:61"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 16750,
              "src": "837:18:61"
            },
            "id": 16703,
            "nodeType": "InheritanceSpecifier",
            "src": "837:18:61"
          }
        ],
        "canonicalName": "ERC165Upgradeable",
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": {
          "id": 16699,
          "nodeType": "StructuredDocumentation",
          "src": "206:576:61",
          "text": " @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```\n Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation."
        },
        "fullyImplemented": true,
        "id": 16738,
        "linearizedBaseContracts": [
          16738,
          16750,
          13707
        ],
        "name": "ERC165Upgradeable",
        "nameLocation": "801:17:61",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 16708,
              "nodeType": "Block",
              "src": "913:7:61",
              "statements": []
            },
            "id": 16709,
            "implemented": true,
            "kind": "function",
            "modifiers": [
              {
                "id": 16706,
                "kind": "modifierInvocation",
                "modifierName": {
                  "id": 16705,
                  "name": "onlyInitializing",
                  "nameLocations": [
                    "896:16:61"
                  ],
                  "nodeType": "IdentifierPath",
                  "referencedDeclaration": 13670,
                  "src": "896:16:61"
                },
                "nodeType": "ModifierInvocation",
                "src": "896:16:61"
              }
            ],
            "name": "__ERC165_init",
            "nameLocation": "871:13:61",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16704,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "884:2:61"
            },
            "returnParameters": {
              "id": 16707,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "913:0:61"
            },
            "scope": 16738,
            "src": "862:58:61",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 16714,
              "nodeType": "Block",
              "src": "987:7:61",
              "statements": []
            },
            "id": 16715,
            "implemented": true,
            "kind": "function",
            "modifiers": [
              {
                "id": 16712,
                "kind": "modifierInvocation",
                "modifierName": {
                  "id": 16711,
                  "name": "onlyInitializing",
                  "nameLocations": [
                    "970:16:61"
                  ],
                  "nodeType": "IdentifierPath",
                  "referencedDeclaration": 13670,
                  "src": "970:16:61"
                },
                "nodeType": "ModifierInvocation",
                "src": "970:16:61"
              }
            ],
            "name": "__ERC165_init_unchained",
            "nameLocation": "935:23:61",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16710,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "958:2:61"
            },
            "returnParameters": {
              "id": 16713,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "987:0:61"
            },
            "scope": 16738,
            "src": "926:68:61",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "baseFunctions": [
              16749
            ],
            "body": {
              "id": 16731,
              "nodeType": "Block",
              "src": "1151:75:61",
              "statements": [
                {
                  "expression": {
                    "commonType": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    },
                    "id": 16729,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "id": 16724,
                      "name": "interfaceId",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 16718,
                      "src": "1168:11:61",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes4",
                        "typeString": "bytes4"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "==",
                    "rightExpression": {
                      "expression": {
                        "arguments": [
                          {
                            "id": 16726,
                            "name": "IERC165Upgradeable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16750,
                            "src": "1188:18:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC165Upgradeable_$16750_$",
                              "typeString": "type(contract IERC165Upgradeable)"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_type$_t_contract$_IERC165Upgradeable_$16750_$",
                              "typeString": "type(contract IERC165Upgradeable)"
                            }
                          ],
                          "id": 16725,
                          "name": "type",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4294967269,
                          "src": "1183:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                            "typeString": "function () pure"
                          }
                        },
                        "id": 16727,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "nameLocations": [],
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1183:24:61",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165Upgradeable_$16750",
                          "typeString": "type(contract IERC165Upgradeable)"
                        }
                      },
                      "id": 16728,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "memberLocation": "1208:11:61",
                      "memberName": "interfaceId",
                      "nodeType": "MemberAccess",
                      "src": "1183:36:61",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes4",
                        "typeString": "bytes4"
                      }
                    },
                    "src": "1168:51:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "functionReturnParameters": 16723,
                  "id": 16730,
                  "nodeType": "Return",
                  "src": "1161:58:61"
                }
              ]
            },
            "documentation": {
              "id": 16716,
              "nodeType": "StructuredDocumentation",
              "src": "999:56:61",
              "text": " @dev See {IERC165-supportsInterface}."
            },
            "functionSelector": "01ffc9a7",
            "id": 16732,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "supportsInterface",
            "nameLocation": "1069:17:61",
            "nodeType": "FunctionDefinition",
            "overrides": {
              "id": 16720,
              "nodeType": "OverrideSpecifier",
              "overrides": [],
              "src": "1127:8:61"
            },
            "parameters": {
              "id": 16719,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16718,
                  "mutability": "mutable",
                  "name": "interfaceId",
                  "nameLocation": "1094:11:61",
                  "nodeType": "VariableDeclaration",
                  "scope": 16732,
                  "src": "1087:18:61",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes4",
                    "typeString": "bytes4"
                  },
                  "typeName": {
                    "id": 16717,
                    "name": "bytes4",
                    "nodeType": "ElementaryTypeName",
                    "src": "1087:6:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "1086:20:61"
            },
            "returnParameters": {
              "id": 16723,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16722,
                  "mutability": "mutable",
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "VariableDeclaration",
                  "scope": 16732,
                  "src": "1145:4:61",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 16721,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "1145:4:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "1144:6:61"
            },
            "scope": 16738,
            "src": "1060:166:61",
            "stateMutability": "view",
            "virtual": true,
            "visibility": "public"
          },
          {
            "constant": false,
            "documentation": {
              "id": 16733,
              "nodeType": "StructuredDocumentation",
              "src": "1232:254:61",
              "text": " @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"
            },
            "id": 16737,
            "mutability": "mutable",
            "name": "__gap",
            "nameLocation": "1511:5:61",
            "nodeType": "VariableDeclaration",
            "scope": 16738,
            "src": "1491:25:61",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_array$_t_uint256_$50_storage",
              "typeString": "uint256[50]"
            },
            "typeName": {
              "baseType": {
                "id": 16734,
                "name": "uint256",
                "nodeType": "ElementaryTypeName",
                "src": "1491:7:61",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint256",
                  "typeString": "uint256"
                }
              },
              "id": 16736,
              "length": {
                "hexValue": "3530",
                "id": 16735,
                "isConstant": false,
                "isLValue": false,
                "isPure": true,
                "kind": "number",
                "lValueRequested": false,
                "nodeType": "Literal",
                "src": "1499:2:61",
                "typeDescriptions": {
                  "typeIdentifier": "t_rational_50_by_1",
                  "typeString": "int_const 50"
                },
                "value": "50"
              },
              "nodeType": "ArrayTypeName",
              "src": "1491:11:61",
              "typeDescriptions": {
                "typeIdentifier": "t_array$_t_uint256_$50_storage_ptr",
                "typeString": "uint256[50]"
              }
            },
            "visibility": "private"
          }
        ],
        "scope": 16739,
        "src": "783:736:61",
        "usedErrors": []
      }
    ],
    "src": "99:1421:61"
  },
  "legacyAST": {
    "absolutePath": "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol",
    "exportedSymbols": {
      "AddressUpgradeable": [
        16426
      ],
      "ERC165Upgradeable": [
        16738
      ],
      "IERC165Upgradeable": [
        16750
      ],
      "Initializable": [
        13707
      ]
    },
    "id": 16739,
    "license": "MIT",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 16696,
        "literals": [
          "solidity",
          "^",
          "0.8",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "99:23:61"
      },
      {
        "absolutePath": "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol",
        "file": "./IERC165Upgradeable.sol",
        "id": 16697,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16739,
        "sourceUnit": 16751,
        "src": "124:34:61",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
        "file": "../../proxy/utils/Initializable.sol",
        "id": 16698,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16739,
        "sourceUnit": 13708,
        "src": "159:45:61",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "abstract": true,
        "baseContracts": [
          {
            "baseName": {
              "id": 16700,
              "name": "Initializable",
              "nameLocations": [
                "822:13:61"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 13707,
              "src": "822:13:61"
            },
            "id": 16701,
            "nodeType": "InheritanceSpecifier",
            "src": "822:13:61"
          },
          {
            "baseName": {
              "id": 16702,
              "name": "IERC165Upgradeable",
              "nameLocations": [
                "837:18:61"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 16750,
              "src": "837:18:61"
            },
            "id": 16703,
            "nodeType": "InheritanceSpecifier",
            "src": "837:18:61"
          }
        ],
        "canonicalName": "ERC165Upgradeable",
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": {
          "id": 16699,
          "nodeType": "StructuredDocumentation",
          "src": "206:576:61",
          "text": " @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```\n Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation."
        },
        "fullyImplemented": true,
        "id": 16738,
        "linearizedBaseContracts": [
          16738,
          16750,
          13707
        ],
        "name": "ERC165Upgradeable",
        "nameLocation": "801:17:61",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 16708,
              "nodeType": "Block",
              "src": "913:7:61",
              "statements": []
            },
            "id": 16709,
            "implemented": true,
            "kind": "function",
            "modifiers": [
              {
                "id": 16706,
                "kind": "modifierInvocation",
                "modifierName": {
                  "id": 16705,
                  "name": "onlyInitializing",
                  "nameLocations": [
                    "896:16:61"
                  ],
                  "nodeType": "IdentifierPath",
                  "referencedDeclaration": 13670,
                  "src": "896:16:61"
                },
                "nodeType": "ModifierInvocation",
                "src": "896:16:61"
              }
            ],
            "name": "__ERC165_init",
            "nameLocation": "871:13:61",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16704,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "884:2:61"
            },
            "returnParameters": {
              "id": 16707,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "913:0:61"
            },
            "scope": 16738,
            "src": "862:58:61",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 16714,
              "nodeType": "Block",
              "src": "987:7:61",
              "statements": []
            },
            "id": 16715,
            "implemented": true,
            "kind": "function",
            "modifiers": [
              {
                "id": 16712,
                "kind": "modifierInvocation",
                "modifierName": {
                  "id": 16711,
                  "name": "onlyInitializing",
                  "nameLocations": [
                    "970:16:61"
                  ],
                  "nodeType": "IdentifierPath",
                  "referencedDeclaration": 13670,
                  "src": "970:16:61"
                },
                "nodeType": "ModifierInvocation",
                "src": "970:16:61"
              }
            ],
            "name": "__ERC165_init_unchained",
            "nameLocation": "935:23:61",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16710,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "958:2:61"
            },
            "returnParameters": {
              "id": 16713,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "987:0:61"
            },
            "scope": 16738,
            "src": "926:68:61",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "baseFunctions": [
              16749
            ],
            "body": {
              "id": 16731,
              "nodeType": "Block",
              "src": "1151:75:61",
              "statements": [
                {
                  "expression": {
                    "commonType": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    },
                    "id": 16729,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "id": 16724,
                      "name": "interfaceId",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 16718,
                      "src": "1168:11:61",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes4",
                        "typeString": "bytes4"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "==",
                    "rightExpression": {
                      "expression": {
                        "arguments": [
                          {
                            "id": 16726,
                            "name": "IERC165Upgradeable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16750,
                            "src": "1188:18:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC165Upgradeable_$16750_$",
                              "typeString": "type(contract IERC165Upgradeable)"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_type$_t_contract$_IERC165Upgradeable_$16750_$",
                              "typeString": "type(contract IERC165Upgradeable)"
                            }
                          ],
                          "id": 16725,
                          "name": "type",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4294967269,
                          "src": "1183:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                            "typeString": "function () pure"
                          }
                        },
                        "id": 16727,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "nameLocations": [],
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1183:24:61",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165Upgradeable_$16750",
                          "typeString": "type(contract IERC165Upgradeable)"
                        }
                      },
                      "id": 16728,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "memberLocation": "1208:11:61",
                      "memberName": "interfaceId",
                      "nodeType": "MemberAccess",
                      "src": "1183:36:61",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes4",
                        "typeString": "bytes4"
                      }
                    },
                    "src": "1168:51:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "functionReturnParameters": 16723,
                  "id": 16730,
                  "nodeType": "Return",
                  "src": "1161:58:61"
                }
              ]
            },
            "documentation": {
              "id": 16716,
              "nodeType": "StructuredDocumentation",
              "src": "999:56:61",
              "text": " @dev See {IERC165-supportsInterface}."
            },
            "functionSelector": "01ffc9a7",
            "id": 16732,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "supportsInterface",
            "nameLocation": "1069:17:61",
            "nodeType": "FunctionDefinition",
            "overrides": {
              "id": 16720,
              "nodeType": "OverrideSpecifier",
              "overrides": [],
              "src": "1127:8:61"
            },
            "parameters": {
              "id": 16719,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16718,
                  "mutability": "mutable",
                  "name": "interfaceId",
                  "nameLocation": "1094:11:61",
                  "nodeType": "VariableDeclaration",
                  "scope": 16732,
                  "src": "1087:18:61",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes4",
                    "typeString": "bytes4"
                  },
                  "typeName": {
                    "id": 16717,
                    "name": "bytes4",
                    "nodeType": "ElementaryTypeName",
                    "src": "1087:6:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "1086:20:61"
            },
            "returnParameters": {
              "id": 16723,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16722,
                  "mutability": "mutable",
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "VariableDeclaration",
                  "scope": 16732,
                  "src": "1145:4:61",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 16721,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "1145:4:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "1144:6:61"
            },
            "scope": 16738,
            "src": "1060:166:61",
            "stateMutability": "view",
            "virtual": true,
            "visibility": "public"
          },
          {
            "constant": false,
            "documentation": {
              "id": 16733,
              "nodeType": "StructuredDocumentation",
              "src": "1232:254:61",
              "text": " @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"
            },
            "id": 16737,
            "mutability": "mutable",
            "name": "__gap",
            "nameLocation": "1511:5:61",
            "nodeType": "VariableDeclaration",
            "scope": 16738,
            "src": "1491:25:61",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_array$_t_uint256_$50_storage",
              "typeString": "uint256[50]"
            },
            "typeName": {
              "baseType": {
                "id": 16734,
                "name": "uint256",
                "nodeType": "ElementaryTypeName",
                "src": "1491:7:61",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint256",
                  "typeString": "uint256"
                }
              },
              "id": 16736,
              "length": {
                "hexValue": "3530",
                "id": 16735,
                "isConstant": false,
                "isLValue": false,
                "isPure": true,
                "kind": "number",
                "lValueRequested": false,
                "nodeType": "Literal",
                "src": "1499:2:61",
                "typeDescriptions": {
                  "typeIdentifier": "t_rational_50_by_1",
                  "typeString": "int_const 50"
                },
                "value": "50"
              },
              "nodeType": "ArrayTypeName",
              "src": "1491:11:61",
              "typeDescriptions": {
                "typeIdentifier": "t_array$_t_uint256_$50_storage_ptr",
                "typeString": "uint256[50]"
              }
            },
            "visibility": "private"
          }
        ],
        "scope": 16739,
        "src": "783:736:61",
        "usedErrors": []
      }
    ],
    "src": "99:1421:61"
  },
  "compiler": {
    "name": "solc",
    "version": "0.8.17+commit.8df45f5f.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.3.4",
  "updatedAt": "2023-02-10T04:50:49.679Z",
  "devdoc": {
    "details": "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.",
    "kind": "dev",
    "methods": {
      "supportsInterface(bytes4)": {
        "details": "See {IERC165-supportsInterface}."
      }
    },
    "stateVariables": {
      "__gap": {
        "details": "This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"
      }
    },
    "version": 1
  },
  "userdoc": {
    "kind": "user",
    "methods": {},
    "version": 1
  }
}