{
  "contractName": "KernelStorage",
  "abi": [
    {
      "constant": true,
      "inputs": [
        {
          "name": "",
          "type": "bytes32"
        },
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "name": "apps",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "recoveryVaultAppId",
      "outputs": [
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "bytecode": "0x608060405234801561001057600080fd5b50610177806100206000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634558850c1461005157806386070cfe146100d0575b600080fd5b34801561005d57600080fd5b5061008e60048036038101908080356000191690602001909291908035600019169060200190929190505050610103565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156100dc57600080fd5b506100e5610145565b60405180826000191660001916815260200191505060405180910390f35b60006020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600154815600a165627a7a7230582046ccfee634569602e05f0a6cdcdb226000e44f71c1db51db85898219b6dad1f70029",
  "deployedBytecode": "0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634558850c1461005157806386070cfe146100d0575b600080fd5b34801561005d57600080fd5b5061008e60048036038101908080356000191690602001909291908035600019169060200190929190505050610103565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156100dc57600080fd5b506100e5610145565b60405180826000191660001916815260200191505060405180910390f35b60006020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600154815600a165627a7a7230582046ccfee634569602e05f0a6cdcdb226000e44f71c1db51db85898219b6dad1f70029",
  "sourceMap": "26:170:47:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26:170:47;;;;;;;",
  "deployedSourceMap": "26:170:47:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;93:61:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;160:33:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;160:33::-;;;;:::o",
  "source": "pragma solidity 0.4.24;\n\n\ncontract KernelStorage {\n    // namespace => app id => address\n    mapping (bytes32 => mapping (bytes32 => address)) public apps;\n    bytes32 public recoveryVaultAppId;\n}\n",
  "sourcePath": "@aragon/os/contracts/kernel/KernelStorage.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/kernel/KernelStorage.sol",
    "exportedSymbols": {
      "KernelStorage": [
        10840
      ]
    },
    "id": 10841,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10831,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:47"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 10840,
        "linearizedBaseContracts": [
          10840
        ],
        "name": "KernelStorage",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 10837,
            "name": "apps",
            "nodeType": "VariableDeclaration",
            "scope": 10840,
            "src": "93:61:47",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_mapping$_t_bytes32_$_t_mapping$_t_bytes32_$_t_address_$_$",
              "typeString": "mapping(bytes32 => mapping(bytes32 => address))"
            },
            "typeName": {
              "id": 10836,
              "keyType": {
                "id": 10832,
                "name": "bytes32",
                "nodeType": "ElementaryTypeName",
                "src": "102:7:47",
                "typeDescriptions": {
                  "typeIdentifier": "t_bytes32",
                  "typeString": "bytes32"
                }
              },
              "nodeType": "Mapping",
              "src": "93:49:47",
              "typeDescriptions": {
                "typeIdentifier": "t_mapping$_t_bytes32_$_t_mapping$_t_bytes32_$_t_address_$_$",
                "typeString": "mapping(bytes32 => mapping(bytes32 => address))"
              },
              "valueType": {
                "id": 10835,
                "keyType": {
                  "id": 10833,
                  "name": "bytes32",
                  "nodeType": "ElementaryTypeName",
                  "src": "122:7:47",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  }
                },
                "nodeType": "Mapping",
                "src": "113:28:47",
                "typeDescriptions": {
                  "typeIdentifier": "t_mapping$_t_bytes32_$_t_address_$",
                  "typeString": "mapping(bytes32 => address)"
                },
                "valueType": {
                  "id": 10834,
                  "name": "address",
                  "nodeType": "ElementaryTypeName",
                  "src": "133:7:47",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  }
                }
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "constant": false,
            "id": 10839,
            "name": "recoveryVaultAppId",
            "nodeType": "VariableDeclaration",
            "scope": 10840,
            "src": "160:33:47",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_bytes32",
              "typeString": "bytes32"
            },
            "typeName": {
              "id": 10838,
              "name": "bytes32",
              "nodeType": "ElementaryTypeName",
              "src": "160:7:47",
              "typeDescriptions": {
                "typeIdentifier": "t_bytes32",
                "typeString": "bytes32"
              }
            },
            "value": null,
            "visibility": "public"
          }
        ],
        "scope": 10841,
        "src": "26:170:47"
      }
    ],
    "src": "0:197:47"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/kernel/KernelStorage.sol",
    "exportedSymbols": {
      "KernelStorage": [
        10840
      ]
    },
    "id": 10841,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10831,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:47"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 10840,
        "linearizedBaseContracts": [
          10840
        ],
        "name": "KernelStorage",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 10837,
            "name": "apps",
            "nodeType": "VariableDeclaration",
            "scope": 10840,
            "src": "93:61:47",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_mapping$_t_bytes32_$_t_mapping$_t_bytes32_$_t_address_$_$",
              "typeString": "mapping(bytes32 => mapping(bytes32 => address))"
            },
            "typeName": {
              "id": 10836,
              "keyType": {
                "id": 10832,
                "name": "bytes32",
                "nodeType": "ElementaryTypeName",
                "src": "102:7:47",
                "typeDescriptions": {
                  "typeIdentifier": "t_bytes32",
                  "typeString": "bytes32"
                }
              },
              "nodeType": "Mapping",
              "src": "93:49:47",
              "typeDescriptions": {
                "typeIdentifier": "t_mapping$_t_bytes32_$_t_mapping$_t_bytes32_$_t_address_$_$",
                "typeString": "mapping(bytes32 => mapping(bytes32 => address))"
              },
              "valueType": {
                "id": 10835,
                "keyType": {
                  "id": 10833,
                  "name": "bytes32",
                  "nodeType": "ElementaryTypeName",
                  "src": "122:7:47",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  }
                },
                "nodeType": "Mapping",
                "src": "113:28:47",
                "typeDescriptions": {
                  "typeIdentifier": "t_mapping$_t_bytes32_$_t_address_$",
                  "typeString": "mapping(bytes32 => address)"
                },
                "valueType": {
                  "id": 10834,
                  "name": "address",
                  "nodeType": "ElementaryTypeName",
                  "src": "133:7:47",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  }
                }
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "constant": false,
            "id": 10839,
            "name": "recoveryVaultAppId",
            "nodeType": "VariableDeclaration",
            "scope": 10840,
            "src": "160:33:47",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_bytes32",
              "typeString": "bytes32"
            },
            "typeName": {
              "id": 10838,
              "name": "bytes32",
              "nodeType": "ElementaryTypeName",
              "src": "160:7:47",
              "typeDescriptions": {
                "typeIdentifier": "t_bytes32",
                "typeString": "bytes32"
              }
            },
            "value": null,
            "visibility": "public"
          }
        ],
        "scope": 10841,
        "src": "26:170:47"
      }
    ],
    "src": "0:197:47"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.1",
  "updatedAt": "2019-03-29T09:45:33.526Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}