{
    "Function": "withdraw",
    "File": "contracts/mocks/ControllerMock.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "TestERC20Mock"
    ],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdraw(address _to, uint256 _amount) external {\n        require(msg.sender == address(vault));\n        token.transfer(_to, _amount);\n    }"
}