{
    "Function": "decode",
    "File": "src/libraries/Decoder.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function decode(\n        bytes32 _sample,\n        uint256 _mask,\n        uint256 _offset\n    ) internal pure returns (uint256 value) {\n        assembly {\n            value := and(shr(_offset, _sample), _mask)\n        }\n    }"
}