{
    "Function": "constructor",
    "File": "src/contracts/middleware/RegistryBase.sol",
    "Parent Contracts": [
        "src/contracts/interfaces/IQuorumRegistry.sol",
        "src/contracts/interfaces/IRegistry.sol",
        "src/contracts/middleware/VoteWeigherBase.sol",
        "src/contracts/middleware/VoteWeigherBaseStorage.sol",
        "src/contracts/interfaces/IVoteWeigher.sol",
        "lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "constructor"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(\n        IStrategyManager _strategyManager,\n        IServiceManager _serviceManager,\n        uint8 _NUMBER_OF_QUORUMS\n    ) VoteWeigherBase(_strategyManager, _serviceManager, _NUMBER_OF_QUORUMS)\n    // solhint-disable-next-line no-empty-blocks\n    {\n        require(_NUMBER_OF_QUORUMS <= 2 && _NUMBER_OF_QUORUMS > 0, \"RegistryBase: NUMBER_OF_QUORUMS must be less than or equal to 2 and greater than 0\");\n    }"
}