{
    "Function": "sweepLBToken",
    "File": "src/LBRouter.sol",
    "Parent Contracts": [
        "src/interfaces/ILBRouter.sol"
    ],
    "High-Level Calls": [
        "ILBToken"
    ],
    "Internal Calls": [
        "onlyFactoryOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function sweepLBToken(\n        ILBToken _lbToken,\n        address _to,\n        uint256[] memory _ids,\n        uint256[] memory _amounts\n    ) external override onlyFactoryOwner {\n        _lbToken.safeBatchTransferFrom(address(this), _to, _ids, _amounts);\n    }"
}