{
    "Function": "recoverUnsupportedToken",
    "File": "contracts/v3/controllers/LegacyController.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/ILegacyController.sol"
    ],
    "High-Level Calls": [
        "IERC20",
        "SafeERC20"
    ],
    "Internal Calls": [
        "onlyStrategist",
        "require(bool,string)"
    ],
    "Library Calls": [
        "safeTransfer"
    ],
    "Low-Level Calls": [],
    "Code": "function recoverUnsupportedToken(\n        address _token,\n        address _receiver\n    )\n        external\n        onlyStrategist\n    {\n        require(_token != address(token), \"!_token\");\n        IERC20(_token).safeTransfer(_receiver, IERC20(_token).balanceOf(address(this)));\n    }"
}