{
    "Function": "redeem",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "InvestmentManagerLike"
    ],
    "Internal Calls": [
        "withApproval"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function redeem(uint256 shares, address receiver, address owner)\n        public\n        withApproval(owner)\n        returns (uint256 assets)\n    {\n        uint256 currencyPayout = investmentManager.processRedeem(shares, receiver, owner);\n        emit Withdraw(address(this), receiver, owner, currencyPayout, shares);\n        return currencyPayout;\n    }"
}