{
    "Function": "_marketUnlockFor",
    "File": "contracts/FETH.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_removeFromLockedBalance"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _marketUnlockFor(\n    address account,\n    uint256 expiration,\n    uint256 amount\n  ) private {\n    AccountInfo storage accountInfo = _removeFromLockedBalance(account, expiration, amount);\n    // Total ETH cannot realistically overflow 96 bits.\n    unchecked {\n      accountInfo.freedBalance += uint96(amount);\n    }\n  }"
}