{
    "Function": "withdraw",
    "File": "contracts/routers/BatchDepositRouter.sol",
    "Parent Contracts": [
        "contracts/routers/StrategyRouter.sol",
        "contracts/helpers/StrategyTypes.sol",
        "contracts/interfaces/IStrategyRouter.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyController",
        "revert(string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdraw(address strategy, bytes calldata data)\n        external\n        override\n        onlyController\n    {\n      (strategy, data);\n      revert(\"Withdraw not supported\");\n    }"
}