{
    "Function": "mulShiftRoundUp",
    "File": "src/libraries/Math512Bits.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "mulShiftRoundDown",
        "mulmod(uint256,uint256,uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function mulShiftRoundUp(\n        uint256 x,\n        uint256 y,\n        uint256 offset\n    ) internal pure returns (uint256 result) {\n        unchecked {\n            result = mulShiftRoundDown(x, y, offset);\n            if (mulmod(x, y, 1 << offset) != 0) result += 1;\n        }\n    }"
}