17db96d56Sopenharmony_ci""" Python Character Mapping Codec cp856 generated from 'MAPPINGS/VENDORS/MISC/CP856.TXT' with gencodec.py.
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_table)
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_table)[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='cp856',
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
457db96d56Sopenharmony_ci### Decoding Table
467db96d56Sopenharmony_ci
477db96d56Sopenharmony_cidecoding_table = (
487db96d56Sopenharmony_ci    '\x00'     #  0x00 -> NULL
497db96d56Sopenharmony_ci    '\x01'     #  0x01 -> START OF HEADING
507db96d56Sopenharmony_ci    '\x02'     #  0x02 -> START OF TEXT
517db96d56Sopenharmony_ci    '\x03'     #  0x03 -> END OF TEXT
527db96d56Sopenharmony_ci    '\x04'     #  0x04 -> END OF TRANSMISSION
537db96d56Sopenharmony_ci    '\x05'     #  0x05 -> ENQUIRY
547db96d56Sopenharmony_ci    '\x06'     #  0x06 -> ACKNOWLEDGE
557db96d56Sopenharmony_ci    '\x07'     #  0x07 -> BELL
567db96d56Sopenharmony_ci    '\x08'     #  0x08 -> BACKSPACE
577db96d56Sopenharmony_ci    '\t'       #  0x09 -> HORIZONTAL TABULATION
587db96d56Sopenharmony_ci    '\n'       #  0x0A -> LINE FEED
597db96d56Sopenharmony_ci    '\x0b'     #  0x0B -> VERTICAL TABULATION
607db96d56Sopenharmony_ci    '\x0c'     #  0x0C -> FORM FEED
617db96d56Sopenharmony_ci    '\r'       #  0x0D -> CARRIAGE RETURN
627db96d56Sopenharmony_ci    '\x0e'     #  0x0E -> SHIFT OUT
637db96d56Sopenharmony_ci    '\x0f'     #  0x0F -> SHIFT IN
647db96d56Sopenharmony_ci    '\x10'     #  0x10 -> DATA LINK ESCAPE
657db96d56Sopenharmony_ci    '\x11'     #  0x11 -> DEVICE CONTROL ONE
667db96d56Sopenharmony_ci    '\x12'     #  0x12 -> DEVICE CONTROL TWO
677db96d56Sopenharmony_ci    '\x13'     #  0x13 -> DEVICE CONTROL THREE
687db96d56Sopenharmony_ci    '\x14'     #  0x14 -> DEVICE CONTROL FOUR
697db96d56Sopenharmony_ci    '\x15'     #  0x15 -> NEGATIVE ACKNOWLEDGE
707db96d56Sopenharmony_ci    '\x16'     #  0x16 -> SYNCHRONOUS IDLE
717db96d56Sopenharmony_ci    '\x17'     #  0x17 -> END OF TRANSMISSION BLOCK
727db96d56Sopenharmony_ci    '\x18'     #  0x18 -> CANCEL
737db96d56Sopenharmony_ci    '\x19'     #  0x19 -> END OF MEDIUM
747db96d56Sopenharmony_ci    '\x1a'     #  0x1A -> SUBSTITUTE
757db96d56Sopenharmony_ci    '\x1b'     #  0x1B -> ESCAPE
767db96d56Sopenharmony_ci    '\x1c'     #  0x1C -> FILE SEPARATOR
777db96d56Sopenharmony_ci    '\x1d'     #  0x1D -> GROUP SEPARATOR
787db96d56Sopenharmony_ci    '\x1e'     #  0x1E -> RECORD SEPARATOR
797db96d56Sopenharmony_ci    '\x1f'     #  0x1F -> UNIT SEPARATOR
807db96d56Sopenharmony_ci    ' '        #  0x20 -> SPACE
817db96d56Sopenharmony_ci    '!'        #  0x21 -> EXCLAMATION MARK
827db96d56Sopenharmony_ci    '"'        #  0x22 -> QUOTATION MARK
837db96d56Sopenharmony_ci    '#'        #  0x23 -> NUMBER SIGN
847db96d56Sopenharmony_ci    '$'        #  0x24 -> DOLLAR SIGN
857db96d56Sopenharmony_ci    '%'        #  0x25 -> PERCENT SIGN
867db96d56Sopenharmony_ci    '&'        #  0x26 -> AMPERSAND
877db96d56Sopenharmony_ci    "'"        #  0x27 -> APOSTROPHE
887db96d56Sopenharmony_ci    '('        #  0x28 -> LEFT PARENTHESIS
897db96d56Sopenharmony_ci    ')'        #  0x29 -> RIGHT PARENTHESIS
907db96d56Sopenharmony_ci    '*'        #  0x2A -> ASTERISK
917db96d56Sopenharmony_ci    '+'        #  0x2B -> PLUS SIGN
927db96d56Sopenharmony_ci    ','        #  0x2C -> COMMA
937db96d56Sopenharmony_ci    '-'        #  0x2D -> HYPHEN-MINUS
947db96d56Sopenharmony_ci    '.'        #  0x2E -> FULL STOP
957db96d56Sopenharmony_ci    '/'        #  0x2F -> SOLIDUS
967db96d56Sopenharmony_ci    '0'        #  0x30 -> DIGIT ZERO
977db96d56Sopenharmony_ci    '1'        #  0x31 -> DIGIT ONE
987db96d56Sopenharmony_ci    '2'        #  0x32 -> DIGIT TWO
997db96d56Sopenharmony_ci    '3'        #  0x33 -> DIGIT THREE
1007db96d56Sopenharmony_ci    '4'        #  0x34 -> DIGIT FOUR
1017db96d56Sopenharmony_ci    '5'        #  0x35 -> DIGIT FIVE
1027db96d56Sopenharmony_ci    '6'        #  0x36 -> DIGIT SIX
1037db96d56Sopenharmony_ci    '7'        #  0x37 -> DIGIT SEVEN
1047db96d56Sopenharmony_ci    '8'        #  0x38 -> DIGIT EIGHT
1057db96d56Sopenharmony_ci    '9'        #  0x39 -> DIGIT NINE
1067db96d56Sopenharmony_ci    ':'        #  0x3A -> COLON
1077db96d56Sopenharmony_ci    ';'        #  0x3B -> SEMICOLON
1087db96d56Sopenharmony_ci    '<'        #  0x3C -> LESS-THAN SIGN
1097db96d56Sopenharmony_ci    '='        #  0x3D -> EQUALS SIGN
1107db96d56Sopenharmony_ci    '>'        #  0x3E -> GREATER-THAN SIGN
1117db96d56Sopenharmony_ci    '?'        #  0x3F -> QUESTION MARK
1127db96d56Sopenharmony_ci    '@'        #  0x40 -> COMMERCIAL AT
1137db96d56Sopenharmony_ci    'A'        #  0x41 -> LATIN CAPITAL LETTER A
1147db96d56Sopenharmony_ci    'B'        #  0x42 -> LATIN CAPITAL LETTER B
1157db96d56Sopenharmony_ci    'C'        #  0x43 -> LATIN CAPITAL LETTER C
1167db96d56Sopenharmony_ci    'D'        #  0x44 -> LATIN CAPITAL LETTER D
1177db96d56Sopenharmony_ci    'E'        #  0x45 -> LATIN CAPITAL LETTER E
1187db96d56Sopenharmony_ci    'F'        #  0x46 -> LATIN CAPITAL LETTER F
1197db96d56Sopenharmony_ci    'G'        #  0x47 -> LATIN CAPITAL LETTER G
1207db96d56Sopenharmony_ci    'H'        #  0x48 -> LATIN CAPITAL LETTER H
1217db96d56Sopenharmony_ci    'I'        #  0x49 -> LATIN CAPITAL LETTER I
1227db96d56Sopenharmony_ci    'J'        #  0x4A -> LATIN CAPITAL LETTER J
1237db96d56Sopenharmony_ci    'K'        #  0x4B -> LATIN CAPITAL LETTER K
1247db96d56Sopenharmony_ci    'L'        #  0x4C -> LATIN CAPITAL LETTER L
1257db96d56Sopenharmony_ci    'M'        #  0x4D -> LATIN CAPITAL LETTER M
1267db96d56Sopenharmony_ci    'N'        #  0x4E -> LATIN CAPITAL LETTER N
1277db96d56Sopenharmony_ci    'O'        #  0x4F -> LATIN CAPITAL LETTER O
1287db96d56Sopenharmony_ci    'P'        #  0x50 -> LATIN CAPITAL LETTER P
1297db96d56Sopenharmony_ci    'Q'        #  0x51 -> LATIN CAPITAL LETTER Q
1307db96d56Sopenharmony_ci    'R'        #  0x52 -> LATIN CAPITAL LETTER R
1317db96d56Sopenharmony_ci    'S'        #  0x53 -> LATIN CAPITAL LETTER S
1327db96d56Sopenharmony_ci    'T'        #  0x54 -> LATIN CAPITAL LETTER T
1337db96d56Sopenharmony_ci    'U'        #  0x55 -> LATIN CAPITAL LETTER U
1347db96d56Sopenharmony_ci    'V'        #  0x56 -> LATIN CAPITAL LETTER V
1357db96d56Sopenharmony_ci    'W'        #  0x57 -> LATIN CAPITAL LETTER W
1367db96d56Sopenharmony_ci    'X'        #  0x58 -> LATIN CAPITAL LETTER X
1377db96d56Sopenharmony_ci    'Y'        #  0x59 -> LATIN CAPITAL LETTER Y
1387db96d56Sopenharmony_ci    'Z'        #  0x5A -> LATIN CAPITAL LETTER Z
1397db96d56Sopenharmony_ci    '['        #  0x5B -> LEFT SQUARE BRACKET
1407db96d56Sopenharmony_ci    '\\'       #  0x5C -> REVERSE SOLIDUS
1417db96d56Sopenharmony_ci    ']'        #  0x5D -> RIGHT SQUARE BRACKET
1427db96d56Sopenharmony_ci    '^'        #  0x5E -> CIRCUMFLEX ACCENT
1437db96d56Sopenharmony_ci    '_'        #  0x5F -> LOW LINE
1447db96d56Sopenharmony_ci    '`'        #  0x60 -> GRAVE ACCENT
1457db96d56Sopenharmony_ci    'a'        #  0x61 -> LATIN SMALL LETTER A
1467db96d56Sopenharmony_ci    'b'        #  0x62 -> LATIN SMALL LETTER B
1477db96d56Sopenharmony_ci    'c'        #  0x63 -> LATIN SMALL LETTER C
1487db96d56Sopenharmony_ci    'd'        #  0x64 -> LATIN SMALL LETTER D
1497db96d56Sopenharmony_ci    'e'        #  0x65 -> LATIN SMALL LETTER E
1507db96d56Sopenharmony_ci    'f'        #  0x66 -> LATIN SMALL LETTER F
1517db96d56Sopenharmony_ci    'g'        #  0x67 -> LATIN SMALL LETTER G
1527db96d56Sopenharmony_ci    'h'        #  0x68 -> LATIN SMALL LETTER H
1537db96d56Sopenharmony_ci    'i'        #  0x69 -> LATIN SMALL LETTER I
1547db96d56Sopenharmony_ci    'j'        #  0x6A -> LATIN SMALL LETTER J
1557db96d56Sopenharmony_ci    'k'        #  0x6B -> LATIN SMALL LETTER K
1567db96d56Sopenharmony_ci    'l'        #  0x6C -> LATIN SMALL LETTER L
1577db96d56Sopenharmony_ci    'm'        #  0x6D -> LATIN SMALL LETTER M
1587db96d56Sopenharmony_ci    'n'        #  0x6E -> LATIN SMALL LETTER N
1597db96d56Sopenharmony_ci    'o'        #  0x6F -> LATIN SMALL LETTER O
1607db96d56Sopenharmony_ci    'p'        #  0x70 -> LATIN SMALL LETTER P
1617db96d56Sopenharmony_ci    'q'        #  0x71 -> LATIN SMALL LETTER Q
1627db96d56Sopenharmony_ci    'r'        #  0x72 -> LATIN SMALL LETTER R
1637db96d56Sopenharmony_ci    's'        #  0x73 -> LATIN SMALL LETTER S
1647db96d56Sopenharmony_ci    't'        #  0x74 -> LATIN SMALL LETTER T
1657db96d56Sopenharmony_ci    'u'        #  0x75 -> LATIN SMALL LETTER U
1667db96d56Sopenharmony_ci    'v'        #  0x76 -> LATIN SMALL LETTER V
1677db96d56Sopenharmony_ci    'w'        #  0x77 -> LATIN SMALL LETTER W
1687db96d56Sopenharmony_ci    'x'        #  0x78 -> LATIN SMALL LETTER X
1697db96d56Sopenharmony_ci    'y'        #  0x79 -> LATIN SMALL LETTER Y
1707db96d56Sopenharmony_ci    'z'        #  0x7A -> LATIN SMALL LETTER Z
1717db96d56Sopenharmony_ci    '{'        #  0x7B -> LEFT CURLY BRACKET
1727db96d56Sopenharmony_ci    '|'        #  0x7C -> VERTICAL LINE
1737db96d56Sopenharmony_ci    '}'        #  0x7D -> RIGHT CURLY BRACKET
1747db96d56Sopenharmony_ci    '~'        #  0x7E -> TILDE
1757db96d56Sopenharmony_ci    '\x7f'     #  0x7F -> DELETE
1767db96d56Sopenharmony_ci    '\u05d0'   #  0x80 -> HEBREW LETTER ALEF
1777db96d56Sopenharmony_ci    '\u05d1'   #  0x81 -> HEBREW LETTER BET
1787db96d56Sopenharmony_ci    '\u05d2'   #  0x82 -> HEBREW LETTER GIMEL
1797db96d56Sopenharmony_ci    '\u05d3'   #  0x83 -> HEBREW LETTER DALET
1807db96d56Sopenharmony_ci    '\u05d4'   #  0x84 -> HEBREW LETTER HE
1817db96d56Sopenharmony_ci    '\u05d5'   #  0x85 -> HEBREW LETTER VAV
1827db96d56Sopenharmony_ci    '\u05d6'   #  0x86 -> HEBREW LETTER ZAYIN
1837db96d56Sopenharmony_ci    '\u05d7'   #  0x87 -> HEBREW LETTER HET
1847db96d56Sopenharmony_ci    '\u05d8'   #  0x88 -> HEBREW LETTER TET
1857db96d56Sopenharmony_ci    '\u05d9'   #  0x89 -> HEBREW LETTER YOD
1867db96d56Sopenharmony_ci    '\u05da'   #  0x8A -> HEBREW LETTER FINAL KAF
1877db96d56Sopenharmony_ci    '\u05db'   #  0x8B -> HEBREW LETTER KAF
1887db96d56Sopenharmony_ci    '\u05dc'   #  0x8C -> HEBREW LETTER LAMED
1897db96d56Sopenharmony_ci    '\u05dd'   #  0x8D -> HEBREW LETTER FINAL MEM
1907db96d56Sopenharmony_ci    '\u05de'   #  0x8E -> HEBREW LETTER MEM
1917db96d56Sopenharmony_ci    '\u05df'   #  0x8F -> HEBREW LETTER FINAL NUN
1927db96d56Sopenharmony_ci    '\u05e0'   #  0x90 -> HEBREW LETTER NUN
1937db96d56Sopenharmony_ci    '\u05e1'   #  0x91 -> HEBREW LETTER SAMEKH
1947db96d56Sopenharmony_ci    '\u05e2'   #  0x92 -> HEBREW LETTER AYIN
1957db96d56Sopenharmony_ci    '\u05e3'   #  0x93 -> HEBREW LETTER FINAL PE
1967db96d56Sopenharmony_ci    '\u05e4'   #  0x94 -> HEBREW LETTER PE
1977db96d56Sopenharmony_ci    '\u05e5'   #  0x95 -> HEBREW LETTER FINAL TSADI
1987db96d56Sopenharmony_ci    '\u05e6'   #  0x96 -> HEBREW LETTER TSADI
1997db96d56Sopenharmony_ci    '\u05e7'   #  0x97 -> HEBREW LETTER QOF
2007db96d56Sopenharmony_ci    '\u05e8'   #  0x98 -> HEBREW LETTER RESH
2017db96d56Sopenharmony_ci    '\u05e9'   #  0x99 -> HEBREW LETTER SHIN
2027db96d56Sopenharmony_ci    '\u05ea'   #  0x9A -> HEBREW LETTER TAV
2037db96d56Sopenharmony_ci    '\ufffe'   #  0x9B -> UNDEFINED
2047db96d56Sopenharmony_ci    '\xa3'     #  0x9C -> POUND SIGN
2057db96d56Sopenharmony_ci    '\ufffe'   #  0x9D -> UNDEFINED
2067db96d56Sopenharmony_ci    '\xd7'     #  0x9E -> MULTIPLICATION SIGN
2077db96d56Sopenharmony_ci    '\ufffe'   #  0x9F -> UNDEFINED
2087db96d56Sopenharmony_ci    '\ufffe'   #  0xA0 -> UNDEFINED
2097db96d56Sopenharmony_ci    '\ufffe'   #  0xA1 -> UNDEFINED
2107db96d56Sopenharmony_ci    '\ufffe'   #  0xA2 -> UNDEFINED
2117db96d56Sopenharmony_ci    '\ufffe'   #  0xA3 -> UNDEFINED
2127db96d56Sopenharmony_ci    '\ufffe'   #  0xA4 -> UNDEFINED
2137db96d56Sopenharmony_ci    '\ufffe'   #  0xA5 -> UNDEFINED
2147db96d56Sopenharmony_ci    '\ufffe'   #  0xA6 -> UNDEFINED
2157db96d56Sopenharmony_ci    '\ufffe'   #  0xA7 -> UNDEFINED
2167db96d56Sopenharmony_ci    '\ufffe'   #  0xA8 -> UNDEFINED
2177db96d56Sopenharmony_ci    '\xae'     #  0xA9 -> REGISTERED SIGN
2187db96d56Sopenharmony_ci    '\xac'     #  0xAA -> NOT SIGN
2197db96d56Sopenharmony_ci    '\xbd'     #  0xAB -> VULGAR FRACTION ONE HALF
2207db96d56Sopenharmony_ci    '\xbc'     #  0xAC -> VULGAR FRACTION ONE QUARTER
2217db96d56Sopenharmony_ci    '\ufffe'   #  0xAD -> UNDEFINED
2227db96d56Sopenharmony_ci    '\xab'     #  0xAE -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
2237db96d56Sopenharmony_ci    '\xbb'     #  0xAF -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
2247db96d56Sopenharmony_ci    '\u2591'   #  0xB0 -> LIGHT SHADE
2257db96d56Sopenharmony_ci    '\u2592'   #  0xB1 -> MEDIUM SHADE
2267db96d56Sopenharmony_ci    '\u2593'   #  0xB2 -> DARK SHADE
2277db96d56Sopenharmony_ci    '\u2502'   #  0xB3 -> BOX DRAWINGS LIGHT VERTICAL
2287db96d56Sopenharmony_ci    '\u2524'   #  0xB4 -> BOX DRAWINGS LIGHT VERTICAL AND LEFT
2297db96d56Sopenharmony_ci    '\ufffe'   #  0xB5 -> UNDEFINED
2307db96d56Sopenharmony_ci    '\ufffe'   #  0xB6 -> UNDEFINED
2317db96d56Sopenharmony_ci    '\ufffe'   #  0xB7 -> UNDEFINED
2327db96d56Sopenharmony_ci    '\xa9'     #  0xB8 -> COPYRIGHT SIGN
2337db96d56Sopenharmony_ci    '\u2563'   #  0xB9 -> BOX DRAWINGS DOUBLE VERTICAL AND LEFT
2347db96d56Sopenharmony_ci    '\u2551'   #  0xBA -> BOX DRAWINGS DOUBLE VERTICAL
2357db96d56Sopenharmony_ci    '\u2557'   #  0xBB -> BOX DRAWINGS DOUBLE DOWN AND LEFT
2367db96d56Sopenharmony_ci    '\u255d'   #  0xBC -> BOX DRAWINGS DOUBLE UP AND LEFT
2377db96d56Sopenharmony_ci    '\xa2'     #  0xBD -> CENT SIGN
2387db96d56Sopenharmony_ci    '\xa5'     #  0xBE -> YEN SIGN
2397db96d56Sopenharmony_ci    '\u2510'   #  0xBF -> BOX DRAWINGS LIGHT DOWN AND LEFT
2407db96d56Sopenharmony_ci    '\u2514'   #  0xC0 -> BOX DRAWINGS LIGHT UP AND RIGHT
2417db96d56Sopenharmony_ci    '\u2534'   #  0xC1 -> BOX DRAWINGS LIGHT UP AND HORIZONTAL
2427db96d56Sopenharmony_ci    '\u252c'   #  0xC2 -> BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
2437db96d56Sopenharmony_ci    '\u251c'   #  0xC3 -> BOX DRAWINGS LIGHT VERTICAL AND RIGHT
2447db96d56Sopenharmony_ci    '\u2500'   #  0xC4 -> BOX DRAWINGS LIGHT HORIZONTAL
2457db96d56Sopenharmony_ci    '\u253c'   #  0xC5 -> BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
2467db96d56Sopenharmony_ci    '\ufffe'   #  0xC6 -> UNDEFINED
2477db96d56Sopenharmony_ci    '\ufffe'   #  0xC7 -> UNDEFINED
2487db96d56Sopenharmony_ci    '\u255a'   #  0xC8 -> BOX DRAWINGS DOUBLE UP AND RIGHT
2497db96d56Sopenharmony_ci    '\u2554'   #  0xC9 -> BOX DRAWINGS DOUBLE DOWN AND RIGHT
2507db96d56Sopenharmony_ci    '\u2569'   #  0xCA -> BOX DRAWINGS DOUBLE UP AND HORIZONTAL
2517db96d56Sopenharmony_ci    '\u2566'   #  0xCB -> BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
2527db96d56Sopenharmony_ci    '\u2560'   #  0xCC -> BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
2537db96d56Sopenharmony_ci    '\u2550'   #  0xCD -> BOX DRAWINGS DOUBLE HORIZONTAL
2547db96d56Sopenharmony_ci    '\u256c'   #  0xCE -> BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
2557db96d56Sopenharmony_ci    '\xa4'     #  0xCF -> CURRENCY SIGN
2567db96d56Sopenharmony_ci    '\ufffe'   #  0xD0 -> UNDEFINED
2577db96d56Sopenharmony_ci    '\ufffe'   #  0xD1 -> UNDEFINED
2587db96d56Sopenharmony_ci    '\ufffe'   #  0xD2 -> UNDEFINED
2597db96d56Sopenharmony_ci    '\ufffe'   #  0xD3 -> UNDEFINEDS
2607db96d56Sopenharmony_ci    '\ufffe'   #  0xD4 -> UNDEFINED
2617db96d56Sopenharmony_ci    '\ufffe'   #  0xD5 -> UNDEFINED
2627db96d56Sopenharmony_ci    '\ufffe'   #  0xD6 -> UNDEFINEDE
2637db96d56Sopenharmony_ci    '\ufffe'   #  0xD7 -> UNDEFINED
2647db96d56Sopenharmony_ci    '\ufffe'   #  0xD8 -> UNDEFINED
2657db96d56Sopenharmony_ci    '\u2518'   #  0xD9 -> BOX DRAWINGS LIGHT UP AND LEFT
2667db96d56Sopenharmony_ci    '\u250c'   #  0xDA -> BOX DRAWINGS LIGHT DOWN AND RIGHT
2677db96d56Sopenharmony_ci    '\u2588'   #  0xDB -> FULL BLOCK
2687db96d56Sopenharmony_ci    '\u2584'   #  0xDC -> LOWER HALF BLOCK
2697db96d56Sopenharmony_ci    '\xa6'     #  0xDD -> BROKEN BAR
2707db96d56Sopenharmony_ci    '\ufffe'   #  0xDE -> UNDEFINED
2717db96d56Sopenharmony_ci    '\u2580'   #  0xDF -> UPPER HALF BLOCK
2727db96d56Sopenharmony_ci    '\ufffe'   #  0xE0 -> UNDEFINED
2737db96d56Sopenharmony_ci    '\ufffe'   #  0xE1 -> UNDEFINED
2747db96d56Sopenharmony_ci    '\ufffe'   #  0xE2 -> UNDEFINED
2757db96d56Sopenharmony_ci    '\ufffe'   #  0xE3 -> UNDEFINED
2767db96d56Sopenharmony_ci    '\ufffe'   #  0xE4 -> UNDEFINED
2777db96d56Sopenharmony_ci    '\ufffe'   #  0xE5 -> UNDEFINED
2787db96d56Sopenharmony_ci    '\xb5'     #  0xE6 -> MICRO SIGN
2797db96d56Sopenharmony_ci    '\ufffe'   #  0xE7 -> UNDEFINED
2807db96d56Sopenharmony_ci    '\ufffe'   #  0xE8 -> UNDEFINED
2817db96d56Sopenharmony_ci    '\ufffe'   #  0xE9 -> UNDEFINED
2827db96d56Sopenharmony_ci    '\ufffe'   #  0xEA -> UNDEFINED
2837db96d56Sopenharmony_ci    '\ufffe'   #  0xEB -> UNDEFINED
2847db96d56Sopenharmony_ci    '\ufffe'   #  0xEC -> UNDEFINED
2857db96d56Sopenharmony_ci    '\ufffe'   #  0xED -> UNDEFINED
2867db96d56Sopenharmony_ci    '\xaf'     #  0xEE -> MACRON
2877db96d56Sopenharmony_ci    '\xb4'     #  0xEF -> ACUTE ACCENT
2887db96d56Sopenharmony_ci    '\xad'     #  0xF0 -> SOFT HYPHEN
2897db96d56Sopenharmony_ci    '\xb1'     #  0xF1 -> PLUS-MINUS SIGN
2907db96d56Sopenharmony_ci    '\u2017'   #  0xF2 -> DOUBLE LOW LINE
2917db96d56Sopenharmony_ci    '\xbe'     #  0xF3 -> VULGAR FRACTION THREE QUARTERS
2927db96d56Sopenharmony_ci    '\xb6'     #  0xF4 -> PILCROW SIGN
2937db96d56Sopenharmony_ci    '\xa7'     #  0xF5 -> SECTION SIGN
2947db96d56Sopenharmony_ci    '\xf7'     #  0xF6 -> DIVISION SIGN
2957db96d56Sopenharmony_ci    '\xb8'     #  0xF7 -> CEDILLA
2967db96d56Sopenharmony_ci    '\xb0'     #  0xF8 -> DEGREE SIGN
2977db96d56Sopenharmony_ci    '\xa8'     #  0xF9 -> DIAERESIS
2987db96d56Sopenharmony_ci    '\xb7'     #  0xFA -> MIDDLE DOT
2997db96d56Sopenharmony_ci    '\xb9'     #  0xFB -> SUPERSCRIPT ONE
3007db96d56Sopenharmony_ci    '\xb3'     #  0xFC -> SUPERSCRIPT THREE
3017db96d56Sopenharmony_ci    '\xb2'     #  0xFD -> SUPERSCRIPT TWO
3027db96d56Sopenharmony_ci    '\u25a0'   #  0xFE -> BLACK SQUARE
3037db96d56Sopenharmony_ci    '\xa0'     #  0xFF -> NO-BREAK SPACE
3047db96d56Sopenharmony_ci)
3057db96d56Sopenharmony_ci
3067db96d56Sopenharmony_ci### Encoding table
3077db96d56Sopenharmony_ciencoding_table=codecs.charmap_build(decoding_table)
308