{
    "Function": "available",
    "File": "contracts/AuraVestedEscrow.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_totalVestedOf"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function available(address _recipient) public view returns (uint256) {\n        uint256 vested = _totalVestedOf(_recipient, block.timestamp);\n        return vested - totalClaimed[_recipient];\n    }"
}