{
    "Function": "to96",
    "File": "contracts/AuraMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function to96(uint256 a) internal pure returns (uint96 c) {\n        require(a <= type(uint96).max, \"AuraMath: uint96 Overflow\");\n        c = uint96(a);\n    }"
}