{
    "Function": "wmulup",
    "File": "contracts/math/WMulUp.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function wmulup(uint256 x, uint256 y) internal pure returns (uint256 z) {\n        z = x * y + 1e18 - 1;        // Rounds up.  So (again imagining 2 decimal places):\n        unchecked { z /= 1e18; }     // 383 (3.83) * 235 (2.35) -> 90005 (9.0005), + 99 (0.0099) -> 90104, / 100 -> 901 (9.01).\n    }"
}