{
    "Function": "_withdrawSome",
    "File": "contracts/v3/strategies/BaseStrategy.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IStrategy.sol"
    ],
    "High-Level Calls": [
        "IERC20",
        "SafeMath",
        "IERC20"
    ],
    "Internal Calls": [
        "_withdraw"
    ],
    "Library Calls": [
        "sub"
    ],
    "Low-Level Calls": [],
    "Code": "function _withdrawSome(\n        uint256 _amount\n    )\n        internal\n        returns (uint256)\n    {\n        uint256 _before = IERC20(want).balanceOf(address(this));\n        _withdraw(_amount);\n        uint256 _after = IERC20(want).balanceOf(address(this));\n        _amount = _after.sub(_before);\n\n        return _amount;\n    }"
}