xref: /third_party/python/Lib/encodings/cp1125.py (revision 7db96d56)
17db96d56Sopenharmony_ci""" Python Character Mapping Codec for CP1125
27db96d56Sopenharmony_ci
37db96d56Sopenharmony_ci"""#"
47db96d56Sopenharmony_ci
57db96d56Sopenharmony_ciimport codecs
67db96d56Sopenharmony_ci
77db96d56Sopenharmony_ci### Codec APIs
87db96d56Sopenharmony_ci
97db96d56Sopenharmony_ciclass Codec(codecs.Codec):
107db96d56Sopenharmony_ci
117db96d56Sopenharmony_ci    def encode(self,input,errors='strict'):
127db96d56Sopenharmony_ci        return codecs.charmap_encode(input,errors,encoding_map)
137db96d56Sopenharmony_ci
147db96d56Sopenharmony_ci    def decode(self,input,errors='strict'):
157db96d56Sopenharmony_ci        return codecs.charmap_decode(input,errors,decoding_table)
167db96d56Sopenharmony_ci
177db96d56Sopenharmony_ciclass IncrementalEncoder(codecs.IncrementalEncoder):
187db96d56Sopenharmony_ci    def encode(self, input, final=False):
197db96d56Sopenharmony_ci        return codecs.charmap_encode(input,self.errors,encoding_map)[0]
207db96d56Sopenharmony_ci
217db96d56Sopenharmony_ciclass IncrementalDecoder(codecs.IncrementalDecoder):
227db96d56Sopenharmony_ci    def decode(self, input, final=False):
237db96d56Sopenharmony_ci        return codecs.charmap_decode(input,self.errors,decoding_table)[0]
247db96d56Sopenharmony_ci
257db96d56Sopenharmony_ciclass StreamWriter(Codec,codecs.StreamWriter):
267db96d56Sopenharmony_ci    pass
277db96d56Sopenharmony_ci
287db96d56Sopenharmony_ciclass StreamReader(Codec,codecs.StreamReader):
297db96d56Sopenharmony_ci    pass
307db96d56Sopenharmony_ci
317db96d56Sopenharmony_ci### encodings module API
327db96d56Sopenharmony_ci
337db96d56Sopenharmony_cidef getregentry():
347db96d56Sopenharmony_ci    return codecs.CodecInfo(
357db96d56Sopenharmony_ci        name='cp1125',
367db96d56Sopenharmony_ci        encode=Codec().encode,
377db96d56Sopenharmony_ci        decode=Codec().decode,
387db96d56Sopenharmony_ci        incrementalencoder=IncrementalEncoder,
397db96d56Sopenharmony_ci        incrementaldecoder=IncrementalDecoder,
407db96d56Sopenharmony_ci        streamreader=StreamReader,
417db96d56Sopenharmony_ci        streamwriter=StreamWriter,
427db96d56Sopenharmony_ci    )
437db96d56Sopenharmony_ci
447db96d56Sopenharmony_ci### Decoding Map
457db96d56Sopenharmony_ci
467db96d56Sopenharmony_cidecoding_map = codecs.make_identity_dict(range(256))
477db96d56Sopenharmony_cidecoding_map.update({
487db96d56Sopenharmony_ci    0x0080: 0x0410,     #  CYRILLIC CAPITAL LETTER A
497db96d56Sopenharmony_ci    0x0081: 0x0411,     #  CYRILLIC CAPITAL LETTER BE
507db96d56Sopenharmony_ci    0x0082: 0x0412,     #  CYRILLIC CAPITAL LETTER VE
517db96d56Sopenharmony_ci    0x0083: 0x0413,     #  CYRILLIC CAPITAL LETTER GHE
527db96d56Sopenharmony_ci    0x0084: 0x0414,     #  CYRILLIC CAPITAL LETTER DE
537db96d56Sopenharmony_ci    0x0085: 0x0415,     #  CYRILLIC CAPITAL LETTER IE
547db96d56Sopenharmony_ci    0x0086: 0x0416,     #  CYRILLIC CAPITAL LETTER ZHE
557db96d56Sopenharmony_ci    0x0087: 0x0417,     #  CYRILLIC CAPITAL LETTER ZE
567db96d56Sopenharmony_ci    0x0088: 0x0418,     #  CYRILLIC CAPITAL LETTER I
577db96d56Sopenharmony_ci    0x0089: 0x0419,     #  CYRILLIC CAPITAL LETTER SHORT I
587db96d56Sopenharmony_ci    0x008a: 0x041a,     #  CYRILLIC CAPITAL LETTER KA
597db96d56Sopenharmony_ci    0x008b: 0x041b,     #  CYRILLIC CAPITAL LETTER EL
607db96d56Sopenharmony_ci    0x008c: 0x041c,     #  CYRILLIC CAPITAL LETTER EM
617db96d56Sopenharmony_ci    0x008d: 0x041d,     #  CYRILLIC CAPITAL LETTER EN
627db96d56Sopenharmony_ci    0x008e: 0x041e,     #  CYRILLIC CAPITAL LETTER O
637db96d56Sopenharmony_ci    0x008f: 0x041f,     #  CYRILLIC CAPITAL LETTER PE
647db96d56Sopenharmony_ci    0x0090: 0x0420,     #  CYRILLIC CAPITAL LETTER ER
657db96d56Sopenharmony_ci    0x0091: 0x0421,     #  CYRILLIC CAPITAL LETTER ES
667db96d56Sopenharmony_ci    0x0092: 0x0422,     #  CYRILLIC CAPITAL LETTER TE
677db96d56Sopenharmony_ci    0x0093: 0x0423,     #  CYRILLIC CAPITAL LETTER U
687db96d56Sopenharmony_ci    0x0094: 0x0424,     #  CYRILLIC CAPITAL LETTER EF
697db96d56Sopenharmony_ci    0x0095: 0x0425,     #  CYRILLIC CAPITAL LETTER HA
707db96d56Sopenharmony_ci    0x0096: 0x0426,     #  CYRILLIC CAPITAL LETTER TSE
717db96d56Sopenharmony_ci    0x0097: 0x0427,     #  CYRILLIC CAPITAL LETTER CHE
727db96d56Sopenharmony_ci    0x0098: 0x0428,     #  CYRILLIC CAPITAL LETTER SHA
737db96d56Sopenharmony_ci    0x0099: 0x0429,     #  CYRILLIC CAPITAL LETTER SHCHA
747db96d56Sopenharmony_ci    0x009a: 0x042a,     #  CYRILLIC CAPITAL LETTER HARD SIGN
757db96d56Sopenharmony_ci    0x009b: 0x042b,     #  CYRILLIC CAPITAL LETTER YERU
767db96d56Sopenharmony_ci    0x009c: 0x042c,     #  CYRILLIC CAPITAL LETTER SOFT SIGN
777db96d56Sopenharmony_ci    0x009d: 0x042d,     #  CYRILLIC CAPITAL LETTER E
787db96d56Sopenharmony_ci    0x009e: 0x042e,     #  CYRILLIC CAPITAL LETTER YU
797db96d56Sopenharmony_ci    0x009f: 0x042f,     #  CYRILLIC CAPITAL LETTER YA
807db96d56Sopenharmony_ci    0x00a0: 0x0430,     #  CYRILLIC SMALL LETTER A
817db96d56Sopenharmony_ci    0x00a1: 0x0431,     #  CYRILLIC SMALL LETTER BE
827db96d56Sopenharmony_ci    0x00a2: 0x0432,     #  CYRILLIC SMALL LETTER VE
837db96d56Sopenharmony_ci    0x00a3: 0x0433,     #  CYRILLIC SMALL LETTER GHE
847db96d56Sopenharmony_ci    0x00a4: 0x0434,     #  CYRILLIC SMALL LETTER DE
857db96d56Sopenharmony_ci    0x00a5: 0x0435,     #  CYRILLIC SMALL LETTER IE
867db96d56Sopenharmony_ci    0x00a6: 0x0436,     #  CYRILLIC SMALL LETTER ZHE
877db96d56Sopenharmony_ci    0x00a7: 0x0437,     #  CYRILLIC SMALL LETTER ZE
887db96d56Sopenharmony_ci    0x00a8: 0x0438,     #  CYRILLIC SMALL LETTER I
897db96d56Sopenharmony_ci    0x00a9: 0x0439,     #  CYRILLIC SMALL LETTER SHORT I
907db96d56Sopenharmony_ci    0x00aa: 0x043a,     #  CYRILLIC SMALL LETTER KA
917db96d56Sopenharmony_ci    0x00ab: 0x043b,     #  CYRILLIC SMALL LETTER EL
927db96d56Sopenharmony_ci    0x00ac: 0x043c,     #  CYRILLIC SMALL LETTER EM
937db96d56Sopenharmony_ci    0x00ad: 0x043d,     #  CYRILLIC SMALL LETTER EN
947db96d56Sopenharmony_ci    0x00ae: 0x043e,     #  CYRILLIC SMALL LETTER O
957db96d56Sopenharmony_ci    0x00af: 0x043f,     #  CYRILLIC SMALL LETTER PE
967db96d56Sopenharmony_ci    0x00b0: 0x2591,     #  LIGHT SHADE
977db96d56Sopenharmony_ci    0x00b1: 0x2592,     #  MEDIUM SHADE
987db96d56Sopenharmony_ci    0x00b2: 0x2593,     #  DARK SHADE
997db96d56Sopenharmony_ci    0x00b3: 0x2502,     #  BOX DRAWINGS LIGHT VERTICAL
1007db96d56Sopenharmony_ci    0x00b4: 0x2524,     #  BOX DRAWINGS LIGHT VERTICAL AND LEFT
1017db96d56Sopenharmony_ci    0x00b5: 0x2561,     #  BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
1027db96d56Sopenharmony_ci    0x00b6: 0x2562,     #  BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
1037db96d56Sopenharmony_ci    0x00b7: 0x2556,     #  BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
1047db96d56Sopenharmony_ci    0x00b8: 0x2555,     #  BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
1057db96d56Sopenharmony_ci    0x00b9: 0x2563,     #  BOX DRAWINGS DOUBLE VERTICAL AND LEFT
1067db96d56Sopenharmony_ci    0x00ba: 0x2551,     #  BOX DRAWINGS DOUBLE VERTICAL
1077db96d56Sopenharmony_ci    0x00bb: 0x2557,     #  BOX DRAWINGS DOUBLE DOWN AND LEFT
1087db96d56Sopenharmony_ci    0x00bc: 0x255d,     #  BOX DRAWINGS DOUBLE UP AND LEFT
1097db96d56Sopenharmony_ci    0x00bd: 0x255c,     #  BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
1107db96d56Sopenharmony_ci    0x00be: 0x255b,     #  BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
1117db96d56Sopenharmony_ci    0x00bf: 0x2510,     #  BOX DRAWINGS LIGHT DOWN AND LEFT
1127db96d56Sopenharmony_ci    0x00c0: 0x2514,     #  BOX DRAWINGS LIGHT UP AND RIGHT
1137db96d56Sopenharmony_ci    0x00c1: 0x2534,     #  BOX DRAWINGS LIGHT UP AND HORIZONTAL
1147db96d56Sopenharmony_ci    0x00c2: 0x252c,     #  BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
1157db96d56Sopenharmony_ci    0x00c3: 0x251c,     #  BOX DRAWINGS LIGHT VERTICAL AND RIGHT
1167db96d56Sopenharmony_ci    0x00c4: 0x2500,     #  BOX DRAWINGS LIGHT HORIZONTAL
1177db96d56Sopenharmony_ci    0x00c5: 0x253c,     #  BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
1187db96d56Sopenharmony_ci    0x00c6: 0x255e,     #  BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
1197db96d56Sopenharmony_ci    0x00c7: 0x255f,     #  BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
1207db96d56Sopenharmony_ci    0x00c8: 0x255a,     #  BOX DRAWINGS DOUBLE UP AND RIGHT
1217db96d56Sopenharmony_ci    0x00c9: 0x2554,     #  BOX DRAWINGS DOUBLE DOWN AND RIGHT
1227db96d56Sopenharmony_ci    0x00ca: 0x2569,     #  BOX DRAWINGS DOUBLE UP AND HORIZONTAL
1237db96d56Sopenharmony_ci    0x00cb: 0x2566,     #  BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
1247db96d56Sopenharmony_ci    0x00cc: 0x2560,     #  BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
1257db96d56Sopenharmony_ci    0x00cd: 0x2550,     #  BOX DRAWINGS DOUBLE HORIZONTAL
1267db96d56Sopenharmony_ci    0x00ce: 0x256c,     #  BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
1277db96d56Sopenharmony_ci    0x00cf: 0x2567,     #  BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
1287db96d56Sopenharmony_ci    0x00d0: 0x2568,     #  BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
1297db96d56Sopenharmony_ci    0x00d1: 0x2564,     #  BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
1307db96d56Sopenharmony_ci    0x00d2: 0x2565,     #  BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
1317db96d56Sopenharmony_ci    0x00d3: 0x2559,     #  BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
1327db96d56Sopenharmony_ci    0x00d4: 0x2558,     #  BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
1337db96d56Sopenharmony_ci    0x00d5: 0x2552,     #  BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
1347db96d56Sopenharmony_ci    0x00d6: 0x2553,     #  BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
1357db96d56Sopenharmony_ci    0x00d7: 0x256b,     #  BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
1367db96d56Sopenharmony_ci    0x00d8: 0x256a,     #  BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
1377db96d56Sopenharmony_ci    0x00d9: 0x2518,     #  BOX DRAWINGS LIGHT UP AND LEFT
1387db96d56Sopenharmony_ci    0x00da: 0x250c,     #  BOX DRAWINGS LIGHT DOWN AND RIGHT
1397db96d56Sopenharmony_ci    0x00db: 0x2588,     #  FULL BLOCK
1407db96d56Sopenharmony_ci    0x00dc: 0x2584,     #  LOWER HALF BLOCK
1417db96d56Sopenharmony_ci    0x00dd: 0x258c,     #  LEFT HALF BLOCK
1427db96d56Sopenharmony_ci    0x00de: 0x2590,     #  RIGHT HALF BLOCK
1437db96d56Sopenharmony_ci    0x00df: 0x2580,     #  UPPER HALF BLOCK
1447db96d56Sopenharmony_ci    0x00e0: 0x0440,     #  CYRILLIC SMALL LETTER ER
1457db96d56Sopenharmony_ci    0x00e1: 0x0441,     #  CYRILLIC SMALL LETTER ES
1467db96d56Sopenharmony_ci    0x00e2: 0x0442,     #  CYRILLIC SMALL LETTER TE
1477db96d56Sopenharmony_ci    0x00e3: 0x0443,     #  CYRILLIC SMALL LETTER U
1487db96d56Sopenharmony_ci    0x00e4: 0x0444,     #  CYRILLIC SMALL LETTER EF
1497db96d56Sopenharmony_ci    0x00e5: 0x0445,     #  CYRILLIC SMALL LETTER HA
1507db96d56Sopenharmony_ci    0x00e6: 0x0446,     #  CYRILLIC SMALL LETTER TSE
1517db96d56Sopenharmony_ci    0x00e7: 0x0447,     #  CYRILLIC SMALL LETTER CHE
1527db96d56Sopenharmony_ci    0x00e8: 0x0448,     #  CYRILLIC SMALL LETTER SHA
1537db96d56Sopenharmony_ci    0x00e9: 0x0449,     #  CYRILLIC SMALL LETTER SHCHA
1547db96d56Sopenharmony_ci    0x00ea: 0x044a,     #  CYRILLIC SMALL LETTER HARD SIGN
1557db96d56Sopenharmony_ci    0x00eb: 0x044b,     #  CYRILLIC SMALL LETTER YERU
1567db96d56Sopenharmony_ci    0x00ec: 0x044c,     #  CYRILLIC SMALL LETTER SOFT SIGN
1577db96d56Sopenharmony_ci    0x00ed: 0x044d,     #  CYRILLIC SMALL LETTER E
1587db96d56Sopenharmony_ci    0x00ee: 0x044e,     #  CYRILLIC SMALL LETTER YU
1597db96d56Sopenharmony_ci    0x00ef: 0x044f,     #  CYRILLIC SMALL LETTER YA
1607db96d56Sopenharmony_ci    0x00f0: 0x0401,     #  CYRILLIC CAPITAL LETTER IO
1617db96d56Sopenharmony_ci    0x00f1: 0x0451,     #  CYRILLIC SMALL LETTER IO
1627db96d56Sopenharmony_ci    0x00f2: 0x0490,     #  CYRILLIC CAPITAL LETTER GHE WITH UPTURN
1637db96d56Sopenharmony_ci    0x00f3: 0x0491,     #  CYRILLIC SMALL LETTER GHE WITH UPTURN
1647db96d56Sopenharmony_ci    0x00f4: 0x0404,     #  CYRILLIC CAPITAL LETTER UKRAINIAN IE
1657db96d56Sopenharmony_ci    0x00f5: 0x0454,     #  CYRILLIC SMALL LETTER UKRAINIAN IE
1667db96d56Sopenharmony_ci    0x00f6: 0x0406,     #  CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
1677db96d56Sopenharmony_ci    0x00f7: 0x0456,     #  CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
1687db96d56Sopenharmony_ci    0x00f8: 0x0407,     #  CYRILLIC CAPITAL LETTER YI
1697db96d56Sopenharmony_ci    0x00f9: 0x0457,     #  CYRILLIC SMALL LETTER YI
1707db96d56Sopenharmony_ci    0x00fa: 0x00b7,     #  MIDDLE DOT
1717db96d56Sopenharmony_ci    0x00fb: 0x221a,     #  SQUARE ROOT
1727db96d56Sopenharmony_ci    0x00fc: 0x2116,     #  NUMERO SIGN
1737db96d56Sopenharmony_ci    0x00fd: 0x00a4,     #  CURRENCY SIGN
1747db96d56Sopenharmony_ci    0x00fe: 0x25a0,     #  BLACK SQUARE
1757db96d56Sopenharmony_ci    0x00ff: 0x00a0,     #  NO-BREAK SPACE
1767db96d56Sopenharmony_ci})
1777db96d56Sopenharmony_ci
1787db96d56Sopenharmony_ci### Decoding Table
1797db96d56Sopenharmony_ci
1807db96d56Sopenharmony_cidecoding_table = (
1817db96d56Sopenharmony_ci    '\x00'     #  0x0000 -> NULL
1827db96d56Sopenharmony_ci    '\x01'     #  0x0001 -> START OF HEADING
1837db96d56Sopenharmony_ci    '\x02'     #  0x0002 -> START OF TEXT
1847db96d56Sopenharmony_ci    '\x03'     #  0x0003 -> END OF TEXT
1857db96d56Sopenharmony_ci    '\x04'     #  0x0004 -> END OF TRANSMISSION
1867db96d56Sopenharmony_ci    '\x05'     #  0x0005 -> ENQUIRY
1877db96d56Sopenharmony_ci    '\x06'     #  0x0006 -> ACKNOWLEDGE
1887db96d56Sopenharmony_ci    '\x07'     #  0x0007 -> BELL
1897db96d56Sopenharmony_ci    '\x08'     #  0x0008 -> BACKSPACE
1907db96d56Sopenharmony_ci    '\t'       #  0x0009 -> HORIZONTAL TABULATION
1917db96d56Sopenharmony_ci    '\n'       #  0x000a -> LINE FEED
1927db96d56Sopenharmony_ci    '\x0b'     #  0x000b -> VERTICAL TABULATION
1937db96d56Sopenharmony_ci    '\x0c'     #  0x000c -> FORM FEED
1947db96d56Sopenharmony_ci    '\r'       #  0x000d -> CARRIAGE RETURN
1957db96d56Sopenharmony_ci    '\x0e'     #  0x000e -> SHIFT OUT
1967db96d56Sopenharmony_ci    '\x0f'     #  0x000f -> SHIFT IN
1977db96d56Sopenharmony_ci    '\x10'     #  0x0010 -> DATA LINK ESCAPE
1987db96d56Sopenharmony_ci    '\x11'     #  0x0011 -> DEVICE CONTROL ONE
1997db96d56Sopenharmony_ci    '\x12'     #  0x0012 -> DEVICE CONTROL TWO
2007db96d56Sopenharmony_ci    '\x13'     #  0x0013 -> DEVICE CONTROL THREE
2017db96d56Sopenharmony_ci    '\x14'     #  0x0014 -> DEVICE CONTROL FOUR
2027db96d56Sopenharmony_ci    '\x15'     #  0x0015 -> NEGATIVE ACKNOWLEDGE
2037db96d56Sopenharmony_ci    '\x16'     #  0x0016 -> SYNCHRONOUS IDLE
2047db96d56Sopenharmony_ci    '\x17'     #  0x0017 -> END OF TRANSMISSION BLOCK
2057db96d56Sopenharmony_ci    '\x18'     #  0x0018 -> CANCEL
2067db96d56Sopenharmony_ci    '\x19'     #  0x0019 -> END OF MEDIUM
2077db96d56Sopenharmony_ci    '\x1a'     #  0x001a -> SUBSTITUTE
2087db96d56Sopenharmony_ci    '\x1b'     #  0x001b -> ESCAPE
2097db96d56Sopenharmony_ci    '\x1c'     #  0x001c -> FILE SEPARATOR
2107db96d56Sopenharmony_ci    '\x1d'     #  0x001d -> GROUP SEPARATOR
2117db96d56Sopenharmony_ci    '\x1e'     #  0x001e -> RECORD SEPARATOR
2127db96d56Sopenharmony_ci    '\x1f'     #  0x001f -> UNIT SEPARATOR
2137db96d56Sopenharmony_ci    ' '        #  0x0020 -> SPACE
2147db96d56Sopenharmony_ci    '!'        #  0x0021 -> EXCLAMATION MARK
2157db96d56Sopenharmony_ci    '"'        #  0x0022 -> QUOTATION MARK
2167db96d56Sopenharmony_ci    '#'        #  0x0023 -> NUMBER SIGN
2177db96d56Sopenharmony_ci    '$'        #  0x0024 -> DOLLAR SIGN
2187db96d56Sopenharmony_ci    '%'        #  0x0025 -> PERCENT SIGN
2197db96d56Sopenharmony_ci    '&'        #  0x0026 -> AMPERSAND
2207db96d56Sopenharmony_ci    "'"        #  0x0027 -> APOSTROPHE
2217db96d56Sopenharmony_ci    '('        #  0x0028 -> LEFT PARENTHESIS
2227db96d56Sopenharmony_ci    ')'        #  0x0029 -> RIGHT PARENTHESIS
2237db96d56Sopenharmony_ci    '*'        #  0x002a -> ASTERISK
2247db96d56Sopenharmony_ci    '+'        #  0x002b -> PLUS SIGN
2257db96d56Sopenharmony_ci    ','        #  0x002c -> COMMA
2267db96d56Sopenharmony_ci    '-'        #  0x002d -> HYPHEN-MINUS
2277db96d56Sopenharmony_ci    '.'        #  0x002e -> FULL STOP
2287db96d56Sopenharmony_ci    '/'        #  0x002f -> SOLIDUS
2297db96d56Sopenharmony_ci    '0'        #  0x0030 -> DIGIT ZERO
2307db96d56Sopenharmony_ci    '1'        #  0x0031 -> DIGIT ONE
2317db96d56Sopenharmony_ci    '2'        #  0x0032 -> DIGIT TWO
2327db96d56Sopenharmony_ci    '3'        #  0x0033 -> DIGIT THREE
2337db96d56Sopenharmony_ci    '4'        #  0x0034 -> DIGIT FOUR
2347db96d56Sopenharmony_ci    '5'        #  0x0035 -> DIGIT FIVE
2357db96d56Sopenharmony_ci    '6'        #  0x0036 -> DIGIT SIX
2367db96d56Sopenharmony_ci    '7'        #  0x0037 -> DIGIT SEVEN
2377db96d56Sopenharmony_ci    '8'        #  0x0038 -> DIGIT EIGHT
2387db96d56Sopenharmony_ci    '9'        #  0x0039 -> DIGIT NINE
2397db96d56Sopenharmony_ci    ':'        #  0x003a -> COLON
2407db96d56Sopenharmony_ci    ';'        #  0x003b -> SEMICOLON
2417db96d56Sopenharmony_ci    '<'        #  0x003c -> LESS-THAN SIGN
2427db96d56Sopenharmony_ci    '='        #  0x003d -> EQUALS SIGN
2437db96d56Sopenharmony_ci    '>'        #  0x003e -> GREATER-THAN SIGN
2447db96d56Sopenharmony_ci    '?'        #  0x003f -> QUESTION MARK
2457db96d56Sopenharmony_ci    '@'        #  0x0040 -> COMMERCIAL AT
2467db96d56Sopenharmony_ci    'A'        #  0x0041 -> LATIN CAPITAL LETTER A
2477db96d56Sopenharmony_ci    'B'        #  0x0042 -> LATIN CAPITAL LETTER B
2487db96d56Sopenharmony_ci    'C'        #  0x0043 -> LATIN CAPITAL LETTER C
2497db96d56Sopenharmony_ci    'D'        #  0x0044 -> LATIN CAPITAL LETTER D
2507db96d56Sopenharmony_ci    'E'        #  0x0045 -> LATIN CAPITAL LETTER E
2517db96d56Sopenharmony_ci    'F'        #  0x0046 -> LATIN CAPITAL LETTER F
2527db96d56Sopenharmony_ci    'G'        #  0x0047 -> LATIN CAPITAL LETTER G
2537db96d56Sopenharmony_ci    'H'        #  0x0048 -> LATIN CAPITAL LETTER H
2547db96d56Sopenharmony_ci    'I'        #  0x0049 -> LATIN CAPITAL LETTER I
2557db96d56Sopenharmony_ci    'J'        #  0x004a -> LATIN CAPITAL LETTER J
2567db96d56Sopenharmony_ci    'K'        #  0x004b -> LATIN CAPITAL LETTER K
2577db96d56Sopenharmony_ci    'L'        #  0x004c -> LATIN CAPITAL LETTER L
2587db96d56Sopenharmony_ci    'M'        #  0x004d -> LATIN CAPITAL LETTER M
2597db96d56Sopenharmony_ci    'N'        #  0x004e -> LATIN CAPITAL LETTER N
2607db96d56Sopenharmony_ci    'O'        #  0x004f -> LATIN CAPITAL LETTER O
2617db96d56Sopenharmony_ci    'P'        #  0x0050 -> LATIN CAPITAL LETTER P
2627db96d56Sopenharmony_ci    'Q'        #  0x0051 -> LATIN CAPITAL LETTER Q
2637db96d56Sopenharmony_ci    'R'        #  0x0052 -> LATIN CAPITAL LETTER R
2647db96d56Sopenharmony_ci    'S'        #  0x0053 -> LATIN CAPITAL LETTER S
2657db96d56Sopenharmony_ci    'T'        #  0x0054 -> LATIN CAPITAL LETTER T
2667db96d56Sopenharmony_ci    'U'        #  0x0055 -> LATIN CAPITAL LETTER U
2677db96d56Sopenharmony_ci    'V'        #  0x0056 -> LATIN CAPITAL LETTER V
2687db96d56Sopenharmony_ci    'W'        #  0x0057 -> LATIN CAPITAL LETTER W
2697db96d56Sopenharmony_ci    'X'        #  0x0058 -> LATIN CAPITAL LETTER X
2707db96d56Sopenharmony_ci    'Y'        #  0x0059 -> LATIN CAPITAL LETTER Y
2717db96d56Sopenharmony_ci    'Z'        #  0x005a -> LATIN CAPITAL LETTER Z
2727db96d56Sopenharmony_ci    '['        #  0x005b -> LEFT SQUARE BRACKET
2737db96d56Sopenharmony_ci    '\\'       #  0x005c -> REVERSE SOLIDUS
2747db96d56Sopenharmony_ci    ']'        #  0x005d -> RIGHT SQUARE BRACKET
2757db96d56Sopenharmony_ci    '^'        #  0x005e -> CIRCUMFLEX ACCENT
2767db96d56Sopenharmony_ci    '_'        #  0x005f -> LOW LINE
2777db96d56Sopenharmony_ci    '`'        #  0x0060 -> GRAVE ACCENT
2787db96d56Sopenharmony_ci    'a'        #  0x0061 -> LATIN SMALL LETTER A
2797db96d56Sopenharmony_ci    'b'        #  0x0062 -> LATIN SMALL LETTER B
2807db96d56Sopenharmony_ci    'c'        #  0x0063 -> LATIN SMALL LETTER C
2817db96d56Sopenharmony_ci    'd'        #  0x0064 -> LATIN SMALL LETTER D
2827db96d56Sopenharmony_ci    'e'        #  0x0065 -> LATIN SMALL LETTER E
2837db96d56Sopenharmony_ci    'f'        #  0x0066 -> LATIN SMALL LETTER F
2847db96d56Sopenharmony_ci    'g'        #  0x0067 -> LATIN SMALL LETTER G
2857db96d56Sopenharmony_ci    'h'        #  0x0068 -> LATIN SMALL LETTER H
2867db96d56Sopenharmony_ci    'i'        #  0x0069 -> LATIN SMALL LETTER I
2877db96d56Sopenharmony_ci    'j'        #  0x006a -> LATIN SMALL LETTER J
2887db96d56Sopenharmony_ci    'k'        #  0x006b -> LATIN SMALL LETTER K
2897db96d56Sopenharmony_ci    'l'        #  0x006c -> LATIN SMALL LETTER L
2907db96d56Sopenharmony_ci    'm'        #  0x006d -> LATIN SMALL LETTER M
2917db96d56Sopenharmony_ci    'n'        #  0x006e -> LATIN SMALL LETTER N
2927db96d56Sopenharmony_ci    'o'        #  0x006f -> LATIN SMALL LETTER O
2937db96d56Sopenharmony_ci    'p'        #  0x0070 -> LATIN SMALL LETTER P
2947db96d56Sopenharmony_ci    'q'        #  0x0071 -> LATIN SMALL LETTER Q
2957db96d56Sopenharmony_ci    'r'        #  0x0072 -> LATIN SMALL LETTER R
2967db96d56Sopenharmony_ci    's'        #  0x0073 -> LATIN SMALL LETTER S
2977db96d56Sopenharmony_ci    't'        #  0x0074 -> LATIN SMALL LETTER T
2987db96d56Sopenharmony_ci    'u'        #  0x0075 -> LATIN SMALL LETTER U
2997db96d56Sopenharmony_ci    'v'        #  0x0076 -> LATIN SMALL LETTER V
3007db96d56Sopenharmony_ci    'w'        #  0x0077 -> LATIN SMALL LETTER W
3017db96d56Sopenharmony_ci    'x'        #  0x0078 -> LATIN SMALL LETTER X
3027db96d56Sopenharmony_ci    'y'        #  0x0079 -> LATIN SMALL LETTER Y
3037db96d56Sopenharmony_ci    'z'        #  0x007a -> LATIN SMALL LETTER Z
3047db96d56Sopenharmony_ci    '{'        #  0x007b -> LEFT CURLY BRACKET
3057db96d56Sopenharmony_ci    '|'        #  0x007c -> VERTICAL LINE
3067db96d56Sopenharmony_ci    '}'        #  0x007d -> RIGHT CURLY BRACKET
3077db96d56Sopenharmony_ci    '~'        #  0x007e -> TILDE
3087db96d56Sopenharmony_ci    '\x7f'     #  0x007f -> DELETE
3097db96d56Sopenharmony_ci    '\u0410'   #  0x0080 -> CYRILLIC CAPITAL LETTER A
3107db96d56Sopenharmony_ci    '\u0411'   #  0x0081 -> CYRILLIC CAPITAL LETTER BE
3117db96d56Sopenharmony_ci    '\u0412'   #  0x0082 -> CYRILLIC CAPITAL LETTER VE
3127db96d56Sopenharmony_ci    '\u0413'   #  0x0083 -> CYRILLIC CAPITAL LETTER GHE
3137db96d56Sopenharmony_ci    '\u0414'   #  0x0084 -> CYRILLIC CAPITAL LETTER DE
3147db96d56Sopenharmony_ci    '\u0415'   #  0x0085 -> CYRILLIC CAPITAL LETTER IE
3157db96d56Sopenharmony_ci    '\u0416'   #  0x0086 -> CYRILLIC CAPITAL LETTER ZHE
3167db96d56Sopenharmony_ci    '\u0417'   #  0x0087 -> CYRILLIC CAPITAL LETTER ZE
3177db96d56Sopenharmony_ci    '\u0418'   #  0x0088 -> CYRILLIC CAPITAL LETTER I
3187db96d56Sopenharmony_ci    '\u0419'   #  0x0089 -> CYRILLIC CAPITAL LETTER SHORT I
3197db96d56Sopenharmony_ci    '\u041a'   #  0x008a -> CYRILLIC CAPITAL LETTER KA
3207db96d56Sopenharmony_ci    '\u041b'   #  0x008b -> CYRILLIC CAPITAL LETTER EL
3217db96d56Sopenharmony_ci    '\u041c'   #  0x008c -> CYRILLIC CAPITAL LETTER EM
3227db96d56Sopenharmony_ci    '\u041d'   #  0x008d -> CYRILLIC CAPITAL LETTER EN
3237db96d56Sopenharmony_ci    '\u041e'   #  0x008e -> CYRILLIC CAPITAL LETTER O
3247db96d56Sopenharmony_ci    '\u041f'   #  0x008f -> CYRILLIC CAPITAL LETTER PE
3257db96d56Sopenharmony_ci    '\u0420'   #  0x0090 -> CYRILLIC CAPITAL LETTER ER
3267db96d56Sopenharmony_ci    '\u0421'   #  0x0091 -> CYRILLIC CAPITAL LETTER ES
3277db96d56Sopenharmony_ci    '\u0422'   #  0x0092 -> CYRILLIC CAPITAL LETTER TE
3287db96d56Sopenharmony_ci    '\u0423'   #  0x0093 -> CYRILLIC CAPITAL LETTER U
3297db96d56Sopenharmony_ci    '\u0424'   #  0x0094 -> CYRILLIC CAPITAL LETTER EF
3307db96d56Sopenharmony_ci    '\u0425'   #  0x0095 -> CYRILLIC CAPITAL LETTER HA
3317db96d56Sopenharmony_ci    '\u0426'   #  0x0096 -> CYRILLIC CAPITAL LETTER TSE
3327db96d56Sopenharmony_ci    '\u0427'   #  0x0097 -> CYRILLIC CAPITAL LETTER CHE
3337db96d56Sopenharmony_ci    '\u0428'   #  0x0098 -> CYRILLIC CAPITAL LETTER SHA
3347db96d56Sopenharmony_ci    '\u0429'   #  0x0099 -> CYRILLIC CAPITAL LETTER SHCHA
3357db96d56Sopenharmony_ci    '\u042a'   #  0x009a -> CYRILLIC CAPITAL LETTER HARD SIGN
3367db96d56Sopenharmony_ci    '\u042b'   #  0x009b -> CYRILLIC CAPITAL LETTER YERU
3377db96d56Sopenharmony_ci    '\u042c'   #  0x009c -> CYRILLIC CAPITAL LETTER SOFT SIGN
3387db96d56Sopenharmony_ci    '\u042d'   #  0x009d -> CYRILLIC CAPITAL LETTER E
3397db96d56Sopenharmony_ci    '\u042e'   #  0x009e -> CYRILLIC CAPITAL LETTER YU
3407db96d56Sopenharmony_ci    '\u042f'   #  0x009f -> CYRILLIC CAPITAL LETTER YA
3417db96d56Sopenharmony_ci    '\u0430'   #  0x00a0 -> CYRILLIC SMALL LETTER A
3427db96d56Sopenharmony_ci    '\u0431'   #  0x00a1 -> CYRILLIC SMALL LETTER BE
3437db96d56Sopenharmony_ci    '\u0432'   #  0x00a2 -> CYRILLIC SMALL LETTER VE
3447db96d56Sopenharmony_ci    '\u0433'   #  0x00a3 -> CYRILLIC SMALL LETTER GHE
3457db96d56Sopenharmony_ci    '\u0434'   #  0x00a4 -> CYRILLIC SMALL LETTER DE
3467db96d56Sopenharmony_ci    '\u0435'   #  0x00a5 -> CYRILLIC SMALL LETTER IE
3477db96d56Sopenharmony_ci    '\u0436'   #  0x00a6 -> CYRILLIC SMALL LETTER ZHE
3487db96d56Sopenharmony_ci    '\u0437'   #  0x00a7 -> CYRILLIC SMALL LETTER ZE
3497db96d56Sopenharmony_ci    '\u0438'   #  0x00a8 -> CYRILLIC SMALL LETTER I
3507db96d56Sopenharmony_ci    '\u0439'   #  0x00a9 -> CYRILLIC SMALL LETTER SHORT I
3517db96d56Sopenharmony_ci    '\u043a'   #  0x00aa -> CYRILLIC SMALL LETTER KA
3527db96d56Sopenharmony_ci    '\u043b'   #  0x00ab -> CYRILLIC SMALL LETTER EL
3537db96d56Sopenharmony_ci    '\u043c'   #  0x00ac -> CYRILLIC SMALL LETTER EM
3547db96d56Sopenharmony_ci    '\u043d'   #  0x00ad -> CYRILLIC SMALL LETTER EN
3557db96d56Sopenharmony_ci    '\u043e'   #  0x00ae -> CYRILLIC SMALL LETTER O
3567db96d56Sopenharmony_ci    '\u043f'   #  0x00af -> CYRILLIC SMALL LETTER PE
3577db96d56Sopenharmony_ci    '\u2591'   #  0x00b0 -> LIGHT SHADE
3587db96d56Sopenharmony_ci    '\u2592'   #  0x00b1 -> MEDIUM SHADE
3597db96d56Sopenharmony_ci    '\u2593'   #  0x00b2 -> DARK SHADE
3607db96d56Sopenharmony_ci    '\u2502'   #  0x00b3 -> BOX DRAWINGS LIGHT VERTICAL
3617db96d56Sopenharmony_ci    '\u2524'   #  0x00b4 -> BOX DRAWINGS LIGHT VERTICAL AND LEFT
3627db96d56Sopenharmony_ci    '\u2561'   #  0x00b5 -> BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
3637db96d56Sopenharmony_ci    '\u2562'   #  0x00b6 -> BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
3647db96d56Sopenharmony_ci    '\u2556'   #  0x00b7 -> BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
3657db96d56Sopenharmony_ci    '\u2555'   #  0x00b8 -> BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
3667db96d56Sopenharmony_ci    '\u2563'   #  0x00b9 -> BOX DRAWINGS DOUBLE VERTICAL AND LEFT
3677db96d56Sopenharmony_ci    '\u2551'   #  0x00ba -> BOX DRAWINGS DOUBLE VERTICAL
3687db96d56Sopenharmony_ci    '\u2557'   #  0x00bb -> BOX DRAWINGS DOUBLE DOWN AND LEFT
3697db96d56Sopenharmony_ci    '\u255d'   #  0x00bc -> BOX DRAWINGS DOUBLE UP AND LEFT
3707db96d56Sopenharmony_ci    '\u255c'   #  0x00bd -> BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
3717db96d56Sopenharmony_ci    '\u255b'   #  0x00be -> BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
3727db96d56Sopenharmony_ci    '\u2510'   #  0x00bf -> BOX DRAWINGS LIGHT DOWN AND LEFT
3737db96d56Sopenharmony_ci    '\u2514'   #  0x00c0 -> BOX DRAWINGS LIGHT UP AND RIGHT
3747db96d56Sopenharmony_ci    '\u2534'   #  0x00c1 -> BOX DRAWINGS LIGHT UP AND HORIZONTAL
3757db96d56Sopenharmony_ci    '\u252c'   #  0x00c2 -> BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
3767db96d56Sopenharmony_ci    '\u251c'   #  0x00c3 -> BOX DRAWINGS LIGHT VERTICAL AND RIGHT
3777db96d56Sopenharmony_ci    '\u2500'   #  0x00c4 -> BOX DRAWINGS LIGHT HORIZONTAL
3787db96d56Sopenharmony_ci    '\u253c'   #  0x00c5 -> BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
3797db96d56Sopenharmony_ci    '\u255e'   #  0x00c6 -> BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
3807db96d56Sopenharmony_ci    '\u255f'   #  0x00c7 -> BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
3817db96d56Sopenharmony_ci    '\u255a'   #  0x00c8 -> BOX DRAWINGS DOUBLE UP AND RIGHT
3827db96d56Sopenharmony_ci    '\u2554'   #  0x00c9 -> BOX DRAWINGS DOUBLE DOWN AND RIGHT
3837db96d56Sopenharmony_ci    '\u2569'   #  0x00ca -> BOX DRAWINGS DOUBLE UP AND HORIZONTAL
3847db96d56Sopenharmony_ci    '\u2566'   #  0x00cb -> BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
3857db96d56Sopenharmony_ci    '\u2560'   #  0x00cc -> BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
3867db96d56Sopenharmony_ci    '\u2550'   #  0x00cd -> BOX DRAWINGS DOUBLE HORIZONTAL
3877db96d56Sopenharmony_ci    '\u256c'   #  0x00ce -> BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
3887db96d56Sopenharmony_ci    '\u2567'   #  0x00cf -> BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
3897db96d56Sopenharmony_ci    '\u2568'   #  0x00d0 -> BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
3907db96d56Sopenharmony_ci    '\u2564'   #  0x00d1 -> BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
3917db96d56Sopenharmony_ci    '\u2565'   #  0x00d2 -> BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
3927db96d56Sopenharmony_ci    '\u2559'   #  0x00d3 -> BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
3937db96d56Sopenharmony_ci    '\u2558'   #  0x00d4 -> BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
3947db96d56Sopenharmony_ci    '\u2552'   #  0x00d5 -> BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
3957db96d56Sopenharmony_ci    '\u2553'   #  0x00d6 -> BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
3967db96d56Sopenharmony_ci    '\u256b'   #  0x00d7 -> BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
3977db96d56Sopenharmony_ci    '\u256a'   #  0x00d8 -> BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
3987db96d56Sopenharmony_ci    '\u2518'   #  0x00d9 -> BOX DRAWINGS LIGHT UP AND LEFT
3997db96d56Sopenharmony_ci    '\u250c'   #  0x00da -> BOX DRAWINGS LIGHT DOWN AND RIGHT
4007db96d56Sopenharmony_ci    '\u2588'   #  0x00db -> FULL BLOCK
4017db96d56Sopenharmony_ci    '\u2584'   #  0x00dc -> LOWER HALF BLOCK
4027db96d56Sopenharmony_ci    '\u258c'   #  0x00dd -> LEFT HALF BLOCK
4037db96d56Sopenharmony_ci    '\u2590'   #  0x00de -> RIGHT HALF BLOCK
4047db96d56Sopenharmony_ci    '\u2580'   #  0x00df -> UPPER HALF BLOCK
4057db96d56Sopenharmony_ci    '\u0440'   #  0x00e0 -> CYRILLIC SMALL LETTER ER
4067db96d56Sopenharmony_ci    '\u0441'   #  0x00e1 -> CYRILLIC SMALL LETTER ES
4077db96d56Sopenharmony_ci    '\u0442'   #  0x00e2 -> CYRILLIC SMALL LETTER TE
4087db96d56Sopenharmony_ci    '\u0443'   #  0x00e3 -> CYRILLIC SMALL LETTER U
4097db96d56Sopenharmony_ci    '\u0444'   #  0x00e4 -> CYRILLIC SMALL LETTER EF
4107db96d56Sopenharmony_ci    '\u0445'   #  0x00e5 -> CYRILLIC SMALL LETTER HA
4117db96d56Sopenharmony_ci    '\u0446'   #  0x00e6 -> CYRILLIC SMALL LETTER TSE
4127db96d56Sopenharmony_ci    '\u0447'   #  0x00e7 -> CYRILLIC SMALL LETTER CHE
4137db96d56Sopenharmony_ci    '\u0448'   #  0x00e8 -> CYRILLIC SMALL LETTER SHA
4147db96d56Sopenharmony_ci    '\u0449'   #  0x00e9 -> CYRILLIC SMALL LETTER SHCHA
4157db96d56Sopenharmony_ci    '\u044a'   #  0x00ea -> CYRILLIC SMALL LETTER HARD SIGN
4167db96d56Sopenharmony_ci    '\u044b'   #  0x00eb -> CYRILLIC SMALL LETTER YERU
4177db96d56Sopenharmony_ci    '\u044c'   #  0x00ec -> CYRILLIC SMALL LETTER SOFT SIGN
4187db96d56Sopenharmony_ci    '\u044d'   #  0x00ed -> CYRILLIC SMALL LETTER E
4197db96d56Sopenharmony_ci    '\u044e'   #  0x00ee -> CYRILLIC SMALL LETTER YU
4207db96d56Sopenharmony_ci    '\u044f'   #  0x00ef -> CYRILLIC SMALL LETTER YA
4217db96d56Sopenharmony_ci    '\u0401'   #  0x00f0 -> CYRILLIC CAPITAL LETTER IO
4227db96d56Sopenharmony_ci    '\u0451'   #  0x00f1 -> CYRILLIC SMALL LETTER IO
4237db96d56Sopenharmony_ci    '\u0490'   #  0x00f2 -> CYRILLIC CAPITAL LETTER GHE WITH UPTURN
4247db96d56Sopenharmony_ci    '\u0491'   #  0x00f3 -> CYRILLIC SMALL LETTER GHE WITH UPTURN
4257db96d56Sopenharmony_ci    '\u0404'   #  0x00f4 -> CYRILLIC CAPITAL LETTER UKRAINIAN IE
4267db96d56Sopenharmony_ci    '\u0454'   #  0x00f5 -> CYRILLIC SMALL LETTER UKRAINIAN IE
4277db96d56Sopenharmony_ci    '\u0406'   #  0x00f6 -> CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
4287db96d56Sopenharmony_ci    '\u0456'   #  0x00f7 -> CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
4297db96d56Sopenharmony_ci    '\u0407'   #  0x00f8 -> CYRILLIC CAPITAL LETTER YI
4307db96d56Sopenharmony_ci    '\u0457'   #  0x00f9 -> CYRILLIC SMALL LETTER YI
4317db96d56Sopenharmony_ci    '\xb7'     #  0x00fa -> MIDDLE DOT
4327db96d56Sopenharmony_ci    '\u221a'   #  0x00fb -> SQUARE ROOT
4337db96d56Sopenharmony_ci    '\u2116'   #  0x00fc -> NUMERO SIGN
4347db96d56Sopenharmony_ci    '\xa4'     #  0x00fd -> CURRENCY SIGN
4357db96d56Sopenharmony_ci    '\u25a0'   #  0x00fe -> BLACK SQUARE
4367db96d56Sopenharmony_ci    '\xa0'     #  0x00ff -> NO-BREAK SPACE
4377db96d56Sopenharmony_ci)
4387db96d56Sopenharmony_ci
4397db96d56Sopenharmony_ci### Encoding Map
4407db96d56Sopenharmony_ci
4417db96d56Sopenharmony_ciencoding_map = {
4427db96d56Sopenharmony_ci    0x0000: 0x0000,     #  NULL
4437db96d56Sopenharmony_ci    0x0001: 0x0001,     #  START OF HEADING
4447db96d56Sopenharmony_ci    0x0002: 0x0002,     #  START OF TEXT
4457db96d56Sopenharmony_ci    0x0003: 0x0003,     #  END OF TEXT
4467db96d56Sopenharmony_ci    0x0004: 0x0004,     #  END OF TRANSMISSION
4477db96d56Sopenharmony_ci    0x0005: 0x0005,     #  ENQUIRY
4487db96d56Sopenharmony_ci    0x0006: 0x0006,     #  ACKNOWLEDGE
4497db96d56Sopenharmony_ci    0x0007: 0x0007,     #  BELL
4507db96d56Sopenharmony_ci    0x0008: 0x0008,     #  BACKSPACE
4517db96d56Sopenharmony_ci    0x0009: 0x0009,     #  HORIZONTAL TABULATION
4527db96d56Sopenharmony_ci    0x000a: 0x000a,     #  LINE FEED
4537db96d56Sopenharmony_ci    0x000b: 0x000b,     #  VERTICAL TABULATION
4547db96d56Sopenharmony_ci    0x000c: 0x000c,     #  FORM FEED
4557db96d56Sopenharmony_ci    0x000d: 0x000d,     #  CARRIAGE RETURN
4567db96d56Sopenharmony_ci    0x000e: 0x000e,     #  SHIFT OUT
4577db96d56Sopenharmony_ci    0x000f: 0x000f,     #  SHIFT IN
4587db96d56Sopenharmony_ci    0x0010: 0x0010,     #  DATA LINK ESCAPE
4597db96d56Sopenharmony_ci    0x0011: 0x0011,     #  DEVICE CONTROL ONE
4607db96d56Sopenharmony_ci    0x0012: 0x0012,     #  DEVICE CONTROL TWO
4617db96d56Sopenharmony_ci    0x0013: 0x0013,     #  DEVICE CONTROL THREE
4627db96d56Sopenharmony_ci    0x0014: 0x0014,     #  DEVICE CONTROL FOUR
4637db96d56Sopenharmony_ci    0x0015: 0x0015,     #  NEGATIVE ACKNOWLEDGE
4647db96d56Sopenharmony_ci    0x0016: 0x0016,     #  SYNCHRONOUS IDLE
4657db96d56Sopenharmony_ci    0x0017: 0x0017,     #  END OF TRANSMISSION BLOCK
4667db96d56Sopenharmony_ci    0x0018: 0x0018,     #  CANCEL
4677db96d56Sopenharmony_ci    0x0019: 0x0019,     #  END OF MEDIUM
4687db96d56Sopenharmony_ci    0x001a: 0x001a,     #  SUBSTITUTE
4697db96d56Sopenharmony_ci    0x001b: 0x001b,     #  ESCAPE
4707db96d56Sopenharmony_ci    0x001c: 0x001c,     #  FILE SEPARATOR
4717db96d56Sopenharmony_ci    0x001d: 0x001d,     #  GROUP SEPARATOR
4727db96d56Sopenharmony_ci    0x001e: 0x001e,     #  RECORD SEPARATOR
4737db96d56Sopenharmony_ci    0x001f: 0x001f,     #  UNIT SEPARATOR
4747db96d56Sopenharmony_ci    0x0020: 0x0020,     #  SPACE
4757db96d56Sopenharmony_ci    0x0021: 0x0021,     #  EXCLAMATION MARK
4767db96d56Sopenharmony_ci    0x0022: 0x0022,     #  QUOTATION MARK
4777db96d56Sopenharmony_ci    0x0023: 0x0023,     #  NUMBER SIGN
4787db96d56Sopenharmony_ci    0x0024: 0x0024,     #  DOLLAR SIGN
4797db96d56Sopenharmony_ci    0x0025: 0x0025,     #  PERCENT SIGN
4807db96d56Sopenharmony_ci    0x0026: 0x0026,     #  AMPERSAND
4817db96d56Sopenharmony_ci    0x0027: 0x0027,     #  APOSTROPHE
4827db96d56Sopenharmony_ci    0x0028: 0x0028,     #  LEFT PARENTHESIS
4837db96d56Sopenharmony_ci    0x0029: 0x0029,     #  RIGHT PARENTHESIS
4847db96d56Sopenharmony_ci    0x002a: 0x002a,     #  ASTERISK
4857db96d56Sopenharmony_ci    0x002b: 0x002b,     #  PLUS SIGN
4867db96d56Sopenharmony_ci    0x002c: 0x002c,     #  COMMA
4877db96d56Sopenharmony_ci    0x002d: 0x002d,     #  HYPHEN-MINUS
4887db96d56Sopenharmony_ci    0x002e: 0x002e,     #  FULL STOP
4897db96d56Sopenharmony_ci    0x002f: 0x002f,     #  SOLIDUS
4907db96d56Sopenharmony_ci    0x0030: 0x0030,     #  DIGIT ZERO
4917db96d56Sopenharmony_ci    0x0031: 0x0031,     #  DIGIT ONE
4927db96d56Sopenharmony_ci    0x0032: 0x0032,     #  DIGIT TWO
4937db96d56Sopenharmony_ci    0x0033: 0x0033,     #  DIGIT THREE
4947db96d56Sopenharmony_ci    0x0034: 0x0034,     #  DIGIT FOUR
4957db96d56Sopenharmony_ci    0x0035: 0x0035,     #  DIGIT FIVE
4967db96d56Sopenharmony_ci    0x0036: 0x0036,     #  DIGIT SIX
4977db96d56Sopenharmony_ci    0x0037: 0x0037,     #  DIGIT SEVEN
4987db96d56Sopenharmony_ci    0x0038: 0x0038,     #  DIGIT EIGHT
4997db96d56Sopenharmony_ci    0x0039: 0x0039,     #  DIGIT NINE
5007db96d56Sopenharmony_ci    0x003a: 0x003a,     #  COLON
5017db96d56Sopenharmony_ci    0x003b: 0x003b,     #  SEMICOLON
5027db96d56Sopenharmony_ci    0x003c: 0x003c,     #  LESS-THAN SIGN
5037db96d56Sopenharmony_ci    0x003d: 0x003d,     #  EQUALS SIGN
5047db96d56Sopenharmony_ci    0x003e: 0x003e,     #  GREATER-THAN SIGN
5057db96d56Sopenharmony_ci    0x003f: 0x003f,     #  QUESTION MARK
5067db96d56Sopenharmony_ci    0x0040: 0x0040,     #  COMMERCIAL AT
5077db96d56Sopenharmony_ci    0x0041: 0x0041,     #  LATIN CAPITAL LETTER A
5087db96d56Sopenharmony_ci    0x0042: 0x0042,     #  LATIN CAPITAL LETTER B
5097db96d56Sopenharmony_ci    0x0043: 0x0043,     #  LATIN CAPITAL LETTER C
5107db96d56Sopenharmony_ci    0x0044: 0x0044,     #  LATIN CAPITAL LETTER D
5117db96d56Sopenharmony_ci    0x0045: 0x0045,     #  LATIN CAPITAL LETTER E
5127db96d56Sopenharmony_ci    0x0046: 0x0046,     #  LATIN CAPITAL LETTER F
5137db96d56Sopenharmony_ci    0x0047: 0x0047,     #  LATIN CAPITAL LETTER G
5147db96d56Sopenharmony_ci    0x0048: 0x0048,     #  LATIN CAPITAL LETTER H
5157db96d56Sopenharmony_ci    0x0049: 0x0049,     #  LATIN CAPITAL LETTER I
5167db96d56Sopenharmony_ci    0x004a: 0x004a,     #  LATIN CAPITAL LETTER J
5177db96d56Sopenharmony_ci    0x004b: 0x004b,     #  LATIN CAPITAL LETTER K
5187db96d56Sopenharmony_ci    0x004c: 0x004c,     #  LATIN CAPITAL LETTER L
5197db96d56Sopenharmony_ci    0x004d: 0x004d,     #  LATIN CAPITAL LETTER M
5207db96d56Sopenharmony_ci    0x004e: 0x004e,     #  LATIN CAPITAL LETTER N
5217db96d56Sopenharmony_ci    0x004f: 0x004f,     #  LATIN CAPITAL LETTER O
5227db96d56Sopenharmony_ci    0x0050: 0x0050,     #  LATIN CAPITAL LETTER P
5237db96d56Sopenharmony_ci    0x0051: 0x0051,     #  LATIN CAPITAL LETTER Q
5247db96d56Sopenharmony_ci    0x0052: 0x0052,     #  LATIN CAPITAL LETTER R
5257db96d56Sopenharmony_ci    0x0053: 0x0053,     #  LATIN CAPITAL LETTER S
5267db96d56Sopenharmony_ci    0x0054: 0x0054,     #  LATIN CAPITAL LETTER T
5277db96d56Sopenharmony_ci    0x0055: 0x0055,     #  LATIN CAPITAL LETTER U
5287db96d56Sopenharmony_ci    0x0056: 0x0056,     #  LATIN CAPITAL LETTER V
5297db96d56Sopenharmony_ci    0x0057: 0x0057,     #  LATIN CAPITAL LETTER W
5307db96d56Sopenharmony_ci    0x0058: 0x0058,     #  LATIN CAPITAL LETTER X
5317db96d56Sopenharmony_ci    0x0059: 0x0059,     #  LATIN CAPITAL LETTER Y
5327db96d56Sopenharmony_ci    0x005a: 0x005a,     #  LATIN CAPITAL LETTER Z
5337db96d56Sopenharmony_ci    0x005b: 0x005b,     #  LEFT SQUARE BRACKET
5347db96d56Sopenharmony_ci    0x005c: 0x005c,     #  REVERSE SOLIDUS
5357db96d56Sopenharmony_ci    0x005d: 0x005d,     #  RIGHT SQUARE BRACKET
5367db96d56Sopenharmony_ci    0x005e: 0x005e,     #  CIRCUMFLEX ACCENT
5377db96d56Sopenharmony_ci    0x005f: 0x005f,     #  LOW LINE
5387db96d56Sopenharmony_ci    0x0060: 0x0060,     #  GRAVE ACCENT
5397db96d56Sopenharmony_ci    0x0061: 0x0061,     #  LATIN SMALL LETTER A
5407db96d56Sopenharmony_ci    0x0062: 0x0062,     #  LATIN SMALL LETTER B
5417db96d56Sopenharmony_ci    0x0063: 0x0063,     #  LATIN SMALL LETTER C
5427db96d56Sopenharmony_ci    0x0064: 0x0064,     #  LATIN SMALL LETTER D
5437db96d56Sopenharmony_ci    0x0065: 0x0065,     #  LATIN SMALL LETTER E
5447db96d56Sopenharmony_ci    0x0066: 0x0066,     #  LATIN SMALL LETTER F
5457db96d56Sopenharmony_ci    0x0067: 0x0067,     #  LATIN SMALL LETTER G
5467db96d56Sopenharmony_ci    0x0068: 0x0068,     #  LATIN SMALL LETTER H
5477db96d56Sopenharmony_ci    0x0069: 0x0069,     #  LATIN SMALL LETTER I
5487db96d56Sopenharmony_ci    0x006a: 0x006a,     #  LATIN SMALL LETTER J
5497db96d56Sopenharmony_ci    0x006b: 0x006b,     #  LATIN SMALL LETTER K
5507db96d56Sopenharmony_ci    0x006c: 0x006c,     #  LATIN SMALL LETTER L
5517db96d56Sopenharmony_ci    0x006d: 0x006d,     #  LATIN SMALL LETTER M
5527db96d56Sopenharmony_ci    0x006e: 0x006e,     #  LATIN SMALL LETTER N
5537db96d56Sopenharmony_ci    0x006f: 0x006f,     #  LATIN SMALL LETTER O
5547db96d56Sopenharmony_ci    0x0070: 0x0070,     #  LATIN SMALL LETTER P
5557db96d56Sopenharmony_ci    0x0071: 0x0071,     #  LATIN SMALL LETTER Q
5567db96d56Sopenharmony_ci    0x0072: 0x0072,     #  LATIN SMALL LETTER R
5577db96d56Sopenharmony_ci    0x0073: 0x0073,     #  LATIN SMALL LETTER S
5587db96d56Sopenharmony_ci    0x0074: 0x0074,     #  LATIN SMALL LETTER T
5597db96d56Sopenharmony_ci    0x0075: 0x0075,     #  LATIN SMALL LETTER U
5607db96d56Sopenharmony_ci    0x0076: 0x0076,     #  LATIN SMALL LETTER V
5617db96d56Sopenharmony_ci    0x0077: 0x0077,     #  LATIN SMALL LETTER W
5627db96d56Sopenharmony_ci    0x0078: 0x0078,     #  LATIN SMALL LETTER X
5637db96d56Sopenharmony_ci    0x0079: 0x0079,     #  LATIN SMALL LETTER Y
5647db96d56Sopenharmony_ci    0x007a: 0x007a,     #  LATIN SMALL LETTER Z
5657db96d56Sopenharmony_ci    0x007b: 0x007b,     #  LEFT CURLY BRACKET
5667db96d56Sopenharmony_ci    0x007c: 0x007c,     #  VERTICAL LINE
5677db96d56Sopenharmony_ci    0x007d: 0x007d,     #  RIGHT CURLY BRACKET
5687db96d56Sopenharmony_ci    0x007e: 0x007e,     #  TILDE
5697db96d56Sopenharmony_ci    0x007f: 0x007f,     #  DELETE
5707db96d56Sopenharmony_ci    0x00a0: 0x00ff,     #  NO-BREAK SPACE
5717db96d56Sopenharmony_ci    0x00a4: 0x00fd,     #  CURRENCY SIGN
5727db96d56Sopenharmony_ci    0x00b7: 0x00fa,     #  MIDDLE DOT
5737db96d56Sopenharmony_ci    0x0401: 0x00f0,     #  CYRILLIC CAPITAL LETTER IO
5747db96d56Sopenharmony_ci    0x0404: 0x00f4,     #  CYRILLIC CAPITAL LETTER UKRAINIAN IE
5757db96d56Sopenharmony_ci    0x0406: 0x00f6,     #  CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
5767db96d56Sopenharmony_ci    0x0407: 0x00f8,     #  CYRILLIC CAPITAL LETTER YI
5777db96d56Sopenharmony_ci    0x0410: 0x0080,     #  CYRILLIC CAPITAL LETTER A
5787db96d56Sopenharmony_ci    0x0411: 0x0081,     #  CYRILLIC CAPITAL LETTER BE
5797db96d56Sopenharmony_ci    0x0412: 0x0082,     #  CYRILLIC CAPITAL LETTER VE
5807db96d56Sopenharmony_ci    0x0413: 0x0083,     #  CYRILLIC CAPITAL LETTER GHE
5817db96d56Sopenharmony_ci    0x0414: 0x0084,     #  CYRILLIC CAPITAL LETTER DE
5827db96d56Sopenharmony_ci    0x0415: 0x0085,     #  CYRILLIC CAPITAL LETTER IE
5837db96d56Sopenharmony_ci    0x0416: 0x0086,     #  CYRILLIC CAPITAL LETTER ZHE
5847db96d56Sopenharmony_ci    0x0417: 0x0087,     #  CYRILLIC CAPITAL LETTER ZE
5857db96d56Sopenharmony_ci    0x0418: 0x0088,     #  CYRILLIC CAPITAL LETTER I
5867db96d56Sopenharmony_ci    0x0419: 0x0089,     #  CYRILLIC CAPITAL LETTER SHORT I
5877db96d56Sopenharmony_ci    0x041a: 0x008a,     #  CYRILLIC CAPITAL LETTER KA
5887db96d56Sopenharmony_ci    0x041b: 0x008b,     #  CYRILLIC CAPITAL LETTER EL
5897db96d56Sopenharmony_ci    0x041c: 0x008c,     #  CYRILLIC CAPITAL LETTER EM
5907db96d56Sopenharmony_ci    0x041d: 0x008d,     #  CYRILLIC CAPITAL LETTER EN
5917db96d56Sopenharmony_ci    0x041e: 0x008e,     #  CYRILLIC CAPITAL LETTER O
5927db96d56Sopenharmony_ci    0x041f: 0x008f,     #  CYRILLIC CAPITAL LETTER PE
5937db96d56Sopenharmony_ci    0x0420: 0x0090,     #  CYRILLIC CAPITAL LETTER ER
5947db96d56Sopenharmony_ci    0x0421: 0x0091,     #  CYRILLIC CAPITAL LETTER ES
5957db96d56Sopenharmony_ci    0x0422: 0x0092,     #  CYRILLIC CAPITAL LETTER TE
5967db96d56Sopenharmony_ci    0x0423: 0x0093,     #  CYRILLIC CAPITAL LETTER U
5977db96d56Sopenharmony_ci    0x0424: 0x0094,     #  CYRILLIC CAPITAL LETTER EF
5987db96d56Sopenharmony_ci    0x0425: 0x0095,     #  CYRILLIC CAPITAL LETTER HA
5997db96d56Sopenharmony_ci    0x0426: 0x0096,     #  CYRILLIC CAPITAL LETTER TSE
6007db96d56Sopenharmony_ci    0x0427: 0x0097,     #  CYRILLIC CAPITAL LETTER CHE
6017db96d56Sopenharmony_ci    0x0428: 0x0098,     #  CYRILLIC CAPITAL LETTER SHA
6027db96d56Sopenharmony_ci    0x0429: 0x0099,     #  CYRILLIC CAPITAL LETTER SHCHA
6037db96d56Sopenharmony_ci    0x042a: 0x009a,     #  CYRILLIC CAPITAL LETTER HARD SIGN
6047db96d56Sopenharmony_ci    0x042b: 0x009b,     #  CYRILLIC CAPITAL LETTER YERU
6057db96d56Sopenharmony_ci    0x042c: 0x009c,     #  CYRILLIC CAPITAL LETTER SOFT SIGN
6067db96d56Sopenharmony_ci    0x042d: 0x009d,     #  CYRILLIC CAPITAL LETTER E
6077db96d56Sopenharmony_ci    0x042e: 0x009e,     #  CYRILLIC CAPITAL LETTER YU
6087db96d56Sopenharmony_ci    0x042f: 0x009f,     #  CYRILLIC CAPITAL LETTER YA
6097db96d56Sopenharmony_ci    0x0430: 0x00a0,     #  CYRILLIC SMALL LETTER A
6107db96d56Sopenharmony_ci    0x0431: 0x00a1,     #  CYRILLIC SMALL LETTER BE
6117db96d56Sopenharmony_ci    0x0432: 0x00a2,     #  CYRILLIC SMALL LETTER VE
6127db96d56Sopenharmony_ci    0x0433: 0x00a3,     #  CYRILLIC SMALL LETTER GHE
6137db96d56Sopenharmony_ci    0x0434: 0x00a4,     #  CYRILLIC SMALL LETTER DE
6147db96d56Sopenharmony_ci    0x0435: 0x00a5,     #  CYRILLIC SMALL LETTER IE
6157db96d56Sopenharmony_ci    0x0436: 0x00a6,     #  CYRILLIC SMALL LETTER ZHE
6167db96d56Sopenharmony_ci    0x0437: 0x00a7,     #  CYRILLIC SMALL LETTER ZE
6177db96d56Sopenharmony_ci    0x0438: 0x00a8,     #  CYRILLIC SMALL LETTER I
6187db96d56Sopenharmony_ci    0x0439: 0x00a9,     #  CYRILLIC SMALL LETTER SHORT I
6197db96d56Sopenharmony_ci    0x043a: 0x00aa,     #  CYRILLIC SMALL LETTER KA
6207db96d56Sopenharmony_ci    0x043b: 0x00ab,     #  CYRILLIC SMALL LETTER EL
6217db96d56Sopenharmony_ci    0x043c: 0x00ac,     #  CYRILLIC SMALL LETTER EM
6227db96d56Sopenharmony_ci    0x043d: 0x00ad,     #  CYRILLIC SMALL LETTER EN
6237db96d56Sopenharmony_ci    0x043e: 0x00ae,     #  CYRILLIC SMALL LETTER O
6247db96d56Sopenharmony_ci    0x043f: 0x00af,     #  CYRILLIC SMALL LETTER PE
6257db96d56Sopenharmony_ci    0x0440: 0x00e0,     #  CYRILLIC SMALL LETTER ER
6267db96d56Sopenharmony_ci    0x0441: 0x00e1,     #  CYRILLIC SMALL LETTER ES
6277db96d56Sopenharmony_ci    0x0442: 0x00e2,     #  CYRILLIC SMALL LETTER TE
6287db96d56Sopenharmony_ci    0x0443: 0x00e3,     #  CYRILLIC SMALL LETTER U
6297db96d56Sopenharmony_ci    0x0444: 0x00e4,     #  CYRILLIC SMALL LETTER EF
6307db96d56Sopenharmony_ci    0x0445: 0x00e5,     #  CYRILLIC SMALL LETTER HA
6317db96d56Sopenharmony_ci    0x0446: 0x00e6,     #  CYRILLIC SMALL LETTER TSE
6327db96d56Sopenharmony_ci    0x0447: 0x00e7,     #  CYRILLIC SMALL LETTER CHE
6337db96d56Sopenharmony_ci    0x0448: 0x00e8,     #  CYRILLIC SMALL LETTER SHA
6347db96d56Sopenharmony_ci    0x0449: 0x00e9,     #  CYRILLIC SMALL LETTER SHCHA
6357db96d56Sopenharmony_ci    0x044a: 0x00ea,     #  CYRILLIC SMALL LETTER HARD SIGN
6367db96d56Sopenharmony_ci    0x044b: 0x00eb,     #  CYRILLIC SMALL LETTER YERU
6377db96d56Sopenharmony_ci    0x044c: 0x00ec,     #  CYRILLIC SMALL LETTER SOFT SIGN
6387db96d56Sopenharmony_ci    0x044d: 0x00ed,     #  CYRILLIC SMALL LETTER E
6397db96d56Sopenharmony_ci    0x044e: 0x00ee,     #  CYRILLIC SMALL LETTER YU
6407db96d56Sopenharmony_ci    0x044f: 0x00ef,     #  CYRILLIC SMALL LETTER YA
6417db96d56Sopenharmony_ci    0x0451: 0x00f1,     #  CYRILLIC SMALL LETTER IO
6427db96d56Sopenharmony_ci    0x0454: 0x00f5,     #  CYRILLIC SMALL LETTER UKRAINIAN IE
6437db96d56Sopenharmony_ci    0x0456: 0x00f7,     #  CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
6447db96d56Sopenharmony_ci    0x0457: 0x00f9,     #  CYRILLIC SMALL LETTER YI
6457db96d56Sopenharmony_ci    0x0490: 0x00f2,     #  CYRILLIC CAPITAL LETTER GHE WITH UPTURN
6467db96d56Sopenharmony_ci    0x0491: 0x00f3,     #  CYRILLIC SMALL LETTER GHE WITH UPTURN
6477db96d56Sopenharmony_ci    0x2116: 0x00fc,     #  NUMERO SIGN
6487db96d56Sopenharmony_ci    0x221a: 0x00fb,     #  SQUARE ROOT
6497db96d56Sopenharmony_ci    0x2500: 0x00c4,     #  BOX DRAWINGS LIGHT HORIZONTAL
6507db96d56Sopenharmony_ci    0x2502: 0x00b3,     #  BOX DRAWINGS LIGHT VERTICAL
6517db96d56Sopenharmony_ci    0x250c: 0x00da,     #  BOX DRAWINGS LIGHT DOWN AND RIGHT
6527db96d56Sopenharmony_ci    0x2510: 0x00bf,     #  BOX DRAWINGS LIGHT DOWN AND LEFT
6537db96d56Sopenharmony_ci    0x2514: 0x00c0,     #  BOX DRAWINGS LIGHT UP AND RIGHT
6547db96d56Sopenharmony_ci    0x2518: 0x00d9,     #  BOX DRAWINGS LIGHT UP AND LEFT
6557db96d56Sopenharmony_ci    0x251c: 0x00c3,     #  BOX DRAWINGS LIGHT VERTICAL AND RIGHT
6567db96d56Sopenharmony_ci    0x2524: 0x00b4,     #  BOX DRAWINGS LIGHT VERTICAL AND LEFT
6577db96d56Sopenharmony_ci    0x252c: 0x00c2,     #  BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
6587db96d56Sopenharmony_ci    0x2534: 0x00c1,     #  BOX DRAWINGS LIGHT UP AND HORIZONTAL
6597db96d56Sopenharmony_ci    0x253c: 0x00c5,     #  BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
6607db96d56Sopenharmony_ci    0x2550: 0x00cd,     #  BOX DRAWINGS DOUBLE HORIZONTAL
6617db96d56Sopenharmony_ci    0x2551: 0x00ba,     #  BOX DRAWINGS DOUBLE VERTICAL
6627db96d56Sopenharmony_ci    0x2552: 0x00d5,     #  BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
6637db96d56Sopenharmony_ci    0x2553: 0x00d6,     #  BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
6647db96d56Sopenharmony_ci    0x2554: 0x00c9,     #  BOX DRAWINGS DOUBLE DOWN AND RIGHT
6657db96d56Sopenharmony_ci    0x2555: 0x00b8,     #  BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
6667db96d56Sopenharmony_ci    0x2556: 0x00b7,     #  BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
6677db96d56Sopenharmony_ci    0x2557: 0x00bb,     #  BOX DRAWINGS DOUBLE DOWN AND LEFT
6687db96d56Sopenharmony_ci    0x2558: 0x00d4,     #  BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
6697db96d56Sopenharmony_ci    0x2559: 0x00d3,     #  BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
6707db96d56Sopenharmony_ci    0x255a: 0x00c8,     #  BOX DRAWINGS DOUBLE UP AND RIGHT
6717db96d56Sopenharmony_ci    0x255b: 0x00be,     #  BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
6727db96d56Sopenharmony_ci    0x255c: 0x00bd,     #  BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
6737db96d56Sopenharmony_ci    0x255d: 0x00bc,     #  BOX DRAWINGS DOUBLE UP AND LEFT
6747db96d56Sopenharmony_ci    0x255e: 0x00c6,     #  BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
6757db96d56Sopenharmony_ci    0x255f: 0x00c7,     #  BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
6767db96d56Sopenharmony_ci    0x2560: 0x00cc,     #  BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
6777db96d56Sopenharmony_ci    0x2561: 0x00b5,     #  BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
6787db96d56Sopenharmony_ci    0x2562: 0x00b6,     #  BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
6797db96d56Sopenharmony_ci    0x2563: 0x00b9,     #  BOX DRAWINGS DOUBLE VERTICAL AND LEFT
6807db96d56Sopenharmony_ci    0x2564: 0x00d1,     #  BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
6817db96d56Sopenharmony_ci    0x2565: 0x00d2,     #  BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
6827db96d56Sopenharmony_ci    0x2566: 0x00cb,     #  BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
6837db96d56Sopenharmony_ci    0x2567: 0x00cf,     #  BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
6847db96d56Sopenharmony_ci    0x2568: 0x00d0,     #  BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
6857db96d56Sopenharmony_ci    0x2569: 0x00ca,     #  BOX DRAWINGS DOUBLE UP AND HORIZONTAL
6867db96d56Sopenharmony_ci    0x256a: 0x00d8,     #  BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
6877db96d56Sopenharmony_ci    0x256b: 0x00d7,     #  BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
6887db96d56Sopenharmony_ci    0x256c: 0x00ce,     #  BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
6897db96d56Sopenharmony_ci    0x2580: 0x00df,     #  UPPER HALF BLOCK
6907db96d56Sopenharmony_ci    0x2584: 0x00dc,     #  LOWER HALF BLOCK
6917db96d56Sopenharmony_ci    0x2588: 0x00db,     #  FULL BLOCK
6927db96d56Sopenharmony_ci    0x258c: 0x00dd,     #  LEFT HALF BLOCK
6937db96d56Sopenharmony_ci    0x2590: 0x00de,     #  RIGHT HALF BLOCK
6947db96d56Sopenharmony_ci    0x2591: 0x00b0,     #  LIGHT SHADE
6957db96d56Sopenharmony_ci    0x2592: 0x00b1,     #  MEDIUM SHADE
6967db96d56Sopenharmony_ci    0x2593: 0x00b2,     #  DARK SHADE
6977db96d56Sopenharmony_ci    0x25a0: 0x00fe,     #  BLACK SQUARE
6987db96d56Sopenharmony_ci}
699