{
  "contractName": "IKernelEvents",
  "abi": [
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "namespace",
          "type": "bytes32"
        },
        {
          "indexed": true,
          "name": "appId",
          "type": "bytes32"
        },
        {
          "indexed": false,
          "name": "app",
          "type": "address"
        }
      ],
      "name": "SetApp",
      "type": "event"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.4.24+commit.e67f0147\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"namespace\",\"type\":\"bytes32\"},{\"indexed\":true,\"name\":\"appId\",\"type\":\"bytes32\"},{\"indexed\":false,\"name\":\"app\",\"type\":\"address\"}],\"name\":\"SetApp\",\"type\":\"event\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"@aragon/os/contracts/kernel/IKernel.sol\":\"IKernelEvents\"},\"evmVersion\":\"byzantium\",\"libraries\":{},\"optimizer\":{\"enabled\":true,\"runs\":10000},\"remappings\":[]},\"sources\":{\"@aragon/os/contracts/acl/IACL.sol\":{\"keccak256\":\"0xe3492bc29d2482e65d2e39c96487b5388f6181f6bcdc6fe6329b8206b84c0cf1\",\"urls\":[\"bzzr://3af0b7e423c7ff4100a3b5868203ec169c866328f2d93d3b6a2111e916cdc411\"]},\"@aragon/os/contracts/common/IVaultRecoverable.sol\":{\"keccak256\":\"0xd7cb66ee5d01be69a6abab04583cc86755bf63c2f1fd03b519a876162f52b323\",\"urls\":[\"bzzr://acb75e2637639bbc83b95032a822a54a588889f203b188e97cd78292cc0ee7f5\"]},\"@aragon/os/contracts/kernel/IKernel.sol\":{\"keccak256\":\"0xd02b98282ccd271b0caa86f2c249986f1619dcf41811f5dadce520b32610b68e\",\"urls\":[\"bzzr://e77000fc50cf4cfb160518af1cfb612e6cbbc06cb4357b1e03ff492fd17d8d2e\"]}},\"version\":1}",
  "bytecode": "0x6080604052348015600f57600080fd5b50603580601d6000396000f3006080604052600080fd00a165627a7a72305820713b4121c22d9f1268418ae115eba0b289eb6f33fb55dbc81f98720b8a7f58870029",
  "deployedBytecode": "0x6080604052600080fd00a165627a7a72305820713b4121c22d9f1268418ae115eba0b289eb6f33fb55dbc81f98720b8a7f58870029",
  "sourceMap": "140:108:49:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;140:108:49;;;;;;;",
  "deployedSourceMap": "140:108:49:-;;;;;",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\nimport \"../acl/IACL.sol\";\nimport \"../common/IVaultRecoverable.sol\";\n\n\ninterface IKernelEvents {\n    event SetApp(bytes32 indexed namespace, bytes32 indexed appId, address app);\n}\n\n\n// This should be an interface, but interfaces can't inherit yet :(\ncontract IKernel is IKernelEvents, IVaultRecoverable {\n    function acl() public view returns (IACL);\n    function hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool);\n\n    function setApp(bytes32 namespace, bytes32 appId, address app) public;\n    function getApp(bytes32 namespace, bytes32 appId) public view returns (address);\n}\n",
  "sourcePath": "@aragon/os/contracts/kernel/IKernel.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/kernel/IKernel.sol",
    "exportedSymbols": {
      "IKernel": [
        8231
      ],
      "IKernelEvents": [
        8190
      ]
    },
    "id": 8232,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8179,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:49"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 8180,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 5305,
        "src": "70:25:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 8181,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 6344,
        "src": "96:41:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8190,
        "linearizedBaseContracts": [
          8190
        ],
        "name": "IKernelEvents",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 8189,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 8188,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8183,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "183:25:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8182,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "183:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8185,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "210:21:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8184,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "210:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8187,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "233:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8186,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "233:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "182:63:49"
            },
            "src": "170:76:49"
          }
        ],
        "scope": 8232,
        "src": "140:108:49"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8191,
              "name": "IKernelEvents",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8190,
              "src": "339:13:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IKernelEvents_$8190",
                "typeString": "contract IKernelEvents"
              }
            },
            "id": 8192,
            "nodeType": "InheritanceSpecifier",
            "src": "339:13:49"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8193,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 6343,
              "src": "354:17:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$6343",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 8194,
            "nodeType": "InheritanceSpecifier",
            "src": "354:17:49"
          }
        ],
        "contractDependencies": [
          6343,
          8190
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8231,
        "linearizedBaseContracts": [
          8231,
          6343,
          8190
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8199,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8195,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "390:2:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8198,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8197,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8199,
                  "src": "414:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$5304",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 8196,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5304,
                    "src": "414:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$5304",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:49"
            },
            "scope": 8231,
            "src": "378:42:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8212,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8208,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8201,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "448:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8200,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "448:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8203,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "461:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8202,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "461:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8205,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "476:12:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "476:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8207,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "490:9:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8206,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "490:5:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:53:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8211,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8210,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "522:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8209,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "522:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "521:6:49"
            },
            "scope": 8231,
            "src": "425:103:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8221,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8219,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8214,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "550:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8213,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "550:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8216,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "569:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8215,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "569:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8218,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "584:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "584:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "549:47:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8220,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "603:0:49"
            },
            "scope": 8231,
            "src": "534:70:49",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8230,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8226,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8223,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "625:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8222,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8225,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "644:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8224,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "624:34:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8229,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8228,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "680:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8227,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "680:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "679:9:49"
            },
            "scope": 8231,
            "src": "609:80:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8232,
        "src": "319:372:49"
      }
    ],
    "src": "44:648:49"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/kernel/IKernel.sol",
    "exportedSymbols": {
      "IKernel": [
        8231
      ],
      "IKernelEvents": [
        8190
      ]
    },
    "id": 8232,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8179,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:49"
      },
      {
        "absolutePath": "@aragon/os/contracts/acl/IACL.sol",
        "file": "../acl/IACL.sol",
        "id": 8180,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 5305,
        "src": "70:25:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
        "file": "../common/IVaultRecoverable.sol",
        "id": 8181,
        "nodeType": "ImportDirective",
        "scope": 8232,
        "sourceUnit": 6344,
        "src": "96:41:49",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": true,
        "id": 8190,
        "linearizedBaseContracts": [
          8190
        ],
        "name": "IKernelEvents",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 8189,
            "name": "SetApp",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 8188,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8183,
                  "indexed": true,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "183:25:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8182,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "183:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8185,
                  "indexed": true,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "210:21:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8184,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "210:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8187,
                  "indexed": false,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8189,
                  "src": "233:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8186,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "233:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "182:63:49"
            },
            "src": "170:76:49"
          }
        ],
        "scope": 8232,
        "src": "140:108:49"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8191,
              "name": "IKernelEvents",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 8190,
              "src": "339:13:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IKernelEvents_$8190",
                "typeString": "contract IKernelEvents"
              }
            },
            "id": 8192,
            "nodeType": "InheritanceSpecifier",
            "src": "339:13:49"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 8193,
              "name": "IVaultRecoverable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 6343,
              "src": "354:17:49",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IVaultRecoverable_$6343",
                "typeString": "contract IVaultRecoverable"
              }
            },
            "id": 8194,
            "nodeType": "InheritanceSpecifier",
            "src": "354:17:49"
          }
        ],
        "contractDependencies": [
          6343,
          8190
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8231,
        "linearizedBaseContracts": [
          8231,
          6343,
          8190
        ],
        "name": "IKernel",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8199,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "acl",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8195,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "390:2:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8198,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8197,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8199,
                  "src": "414:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IACL_$5304",
                    "typeString": "contract IACL"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 8196,
                    "name": "IACL",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5304,
                    "src": "414:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IACL_$5304",
                      "typeString": "contract IACL"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:49"
            },
            "scope": 8231,
            "src": "378:42:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8212,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "hasPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8208,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8201,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "448:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8200,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "448:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8203,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "461:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8202,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "461:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8205,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "476:12:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8204,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "476:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8207,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "490:9:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8206,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "490:5:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:53:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8211,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8210,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8212,
                  "src": "522:4:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8209,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "522:4:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "521:6:49"
            },
            "scope": 8231,
            "src": "425:103:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8221,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8219,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8214,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "550:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8213,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "550:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8216,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "569:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8215,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "569:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8218,
                  "name": "app",
                  "nodeType": "VariableDeclaration",
                  "scope": 8221,
                  "src": "584:11:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8217,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "584:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "549:47:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8220,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "603:0:49"
            },
            "scope": 8231,
            "src": "534:70:49",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8230,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getApp",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8226,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8223,
                  "name": "namespace",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "625:17:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8222,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8225,
                  "name": "appId",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "644:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 8224,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "624:34:49"
            },
            "payable": false,
            "returnParameters": {
              "id": 8229,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8228,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8230,
                  "src": "680:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8227,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "680:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "679:9:49"
            },
            "scope": 8231,
            "src": "609:80:49",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8232,
        "src": "319:372:49"
      }
    ],
    "src": "44:648:49"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.598Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}