{
    "Function": "marketWithdrawLocked",
    "File": "contracts/FETH.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "AddressUpgradeable"
    ],
    "Internal Calls": [
        "_removeFromLockedBalance",
        "onlyFoundationMarket"
    ],
    "Library Calls": [
        "sendValue"
    ],
    "Low-Level Calls": [],
    "Code": "function marketWithdrawLocked(\n    address account,\n    uint256 expiration,\n    uint256 amount\n  ) external onlyFoundationMarket {\n    _removeFromLockedBalance(account, expiration, amount);\n\n    // With the external call after state changes, we do not need a nonReentrant guard\n    payable(msg.sender).sendValue(amount);\n\n    emit ETHWithdrawn(account, msg.sender, amount);\n  }"
}