{
    "Function": "_char",
    "File": "contracts/libraries/AccountMigrationLibrary.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _char(bytes1 b) private pure returns (bytes1 c) {\n    unchecked {\n      if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);\n      else return bytes1(uint8(b) + 0x57);\n    }\n  }"
}