{
    "Function": "absUint",
    "File": "contracts/libraries/Math.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function absUint(int256 x) internal pure returns (uint256) {\n        unchecked {\n            return x > 0 ? uint256(x) : uint256(-x);\n        }\n    }"
}