{
    "Function": "_toAsciiString",
    "File": "contracts/libraries/AccountMigrationLibrary.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_char",
        "_char"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _toAsciiString(address x) private pure returns (string memory) {\n    unchecked {\n      bytes memory s = new bytes(42);\n      s[0] = \"0\";\n      s[1] = \"x\";\n      for (uint256 i = 0; i < 20; ++i) {\n        bytes1 b = bytes1(uint8(uint256(uint160(x)) / (2**(8 * (19 - i)))));\n        bytes1 hi = bytes1(uint8(b) / 16);\n        bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));\n        s[2 * i + 2] = _char(hi);\n        s[2 * i + 3] = _char(lo);\n      }\n      return string(s);\n    }\n  }"
}