{
    "Function": "width",
    "File": "contracts/types/TokenId.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function width(uint256 self, uint256 legIndex) internal pure returns (int24) {\n        unchecked {\n            return int24(int256((self >> (64 + legIndex * 48 + 36)) % 4096));\n        } // \"% 4096\" = take last (2 ** 12 = 4096) 12 bits\n    }"
}