{
    "Function": "unpackFrom56Bits",
    "File": "contracts/math/FloatingPoint56.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function unpackFrom56Bits(uint256 value) internal pure returns (uint256) {\n        // The least significant 8 bits will be the amount to bit shift\n        uint256 bitShift = uint256(uint8(value));\n        return ((value >> 8) << bitShift);\n    }"
}