{
    "Function": "_dripsState",
    "File": "src/Drips.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_dripsStorage"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _dripsState(uint256 userId, uint256 assetId)\n        internal\n        view\n        returns (\n            bytes32 dripsHash,\n            bytes32 dripsHistoryHash,\n            uint32 updateTime,\n            uint128 balance,\n            uint32 maxEnd\n        )\n    {\n        DripsState storage state = _dripsStorage().states[assetId][userId];\n        return\n            (state.dripsHash, state.dripsHistoryHash, state.updateTime, state.balance, state.maxEnd);\n    }"
}