{
  "contractName": "IACLOracle",
  "abi": [
    {
      "constant": true,
      "inputs": [
        {
          "name": "who",
          "type": "address"
        },
        {
          "name": "where",
          "type": "address"
        },
        {
          "name": "what",
          "type": "bytes32"
        },
        {
          "name": "how",
          "type": "uint256[]"
        }
      ],
      "name": "canPerform",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "metadata": "",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\ninterface IACLOracle {\n    function canPerform(address who, address where, bytes32 what, uint256[] how) external view returns (bool);\n}\n",
  "sourcePath": "@aragon/os/contracts/acl/IACLOracle.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/acl/IACLOracle.sol",
    "exportedSymbols": {
      "IACLOracle": [
        5321
      ]
    },
    "id": 5322,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 5306,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:14"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 5321,
        "linearizedBaseContracts": [
          5321
        ],
        "name": "IACLOracle",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 5320,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canPerform",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5316,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5308,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "118:11:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5307,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "118:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5310,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "131:13:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5309,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "131:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5312,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "146:12:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 5311,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "146:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5315,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "160:13:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                    "typeString": "uint256[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 5313,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "160:7:14",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 5314,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "160:9:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                      "typeString": "uint256[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "117:57:14"
            },
            "payable": false,
            "returnParameters": {
              "id": 5319,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5318,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "198:4:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 5317,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "198:4:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "197:6:14"
            },
            "scope": 5321,
            "src": "98:106:14",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 5322,
        "src": "71:135:14"
      }
    ],
    "src": "44:163:14"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/acl/IACLOracle.sol",
    "exportedSymbols": {
      "IACLOracle": [
        5321
      ]
    },
    "id": 5322,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 5306,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:14"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 5321,
        "linearizedBaseContracts": [
          5321
        ],
        "name": "IACLOracle",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 5320,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canPerform",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 5316,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5308,
                  "name": "who",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "118:11:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5307,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "118:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5310,
                  "name": "where",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "131:13:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5309,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "131:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5312,
                  "name": "what",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "146:12:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 5311,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "146:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 5315,
                  "name": "how",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "160:13:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                    "typeString": "uint256[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 5313,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "160:7:14",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 5314,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "160:9:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                      "typeString": "uint256[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "117:57:14"
            },
            "payable": false,
            "returnParameters": {
              "id": 5319,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 5318,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 5320,
                  "src": "198:4:14",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 5317,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "198:4:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "197:6:14"
            },
            "scope": 5321,
            "src": "98:106:14",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 5322,
        "src": "71:135:14"
      }
    ],
    "src": "44:163:14"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.556Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}