42057
|
1 ;;; code-pages.el --- coding systems for assorted codepages -*-coding: utf-8;-*-
|
|
2
|
47911
|
3 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
42057
|
4
|
|
5 ;; Author: Dave Love <fx@gnu.org>
|
|
6 ;; Keywords: i18n
|
|
7
|
42320
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
45357
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
42057
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
45357
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
42057
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
45357
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
42057
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; Definitions of miscellaneous 8-bit coding systems based on ASCII
|
|
28 ;; (we can't cope properly with EBCDIC, for instance), mainly for PC
|
|
29 ;; `code pages'. They are decoded into Latin-1 and mule-unicode
|
|
30 ;; charsets rather than (lossily) into single iso8859 charsets à la
|
|
31 ;; codepage.el. The utility `cp-make-coding-system' derives them from
|
|
32 ;; simple tables.
|
|
33
|
|
34 ;; Those covered are: cp437, cp737, cp720, cp775, cp850, cp851, cp852,
|
|
35 ;; cp855, cp857, cp860, cp861, cp862, cp863, cp864, cp865, cp866,
|
|
36 ;; cp869, cp874, cp1125, windows-1250, windows-1251, windows-1252,
|
|
37 ;; windows-1253, windows-1254, windows-1255, windows-1256,
|
47911
|
38 ;; windows-1257, windows-1258, next, koi8-u, iso-8859-6,
|
48022
|
39 ;; iso-8859-10, iso-8859-11, iso-8859-16, koi8-t, georgian-ps. This
|
42057
|
40 ;; is meant to include all the single-byte ones relevant to GNU (used
|
|
41 ;; in glibc-defined locales); we don't yet get all the multibyte ones
|
|
42 ;; in base Emacs.
|
|
43
|
47911
|
44 ;; Note that various of these can clash with definitions in
|
|
45 ;; codepage.el; we try to avoid damage from that. A few CPs from
|
|
46 ;; codepage.el (770, 773, 774) aren't covered (in the absence of
|
|
47 ;; translation tables to Unicode).
|
42057
|
48
|
|
49 ;; Compile this, to avoid loading `ccl' at runtime.
|
|
50
|
|
51 ;; Although the tables used here aren't very big, it might be worth
|
|
52 ;; splitting the file and autoloading the coding systems if/when my
|
|
53 ;; (or similar) autoloading code is installed.
|
|
54
|
|
55 ;;; Code:
|
|
56
|
|
57 (defun cp-make-translation-table (v)
|
|
58 "Return a translation table made from 128-long vector V.
|
|
59 V comprises characters encodable by mule-utf-8."
|
|
60 (let ((encoding-vector (make-vector 256 0)))
|
|
61 (dotimes (i 128)
|
|
62 (aset encoding-vector i i))
|
|
63 (dotimes (i 128)
|
|
64 (aset encoding-vector (+ i 128) (aref v i)))
|
47911
|
65 ;; Add equivalent characters to the encoder so that we can unify
|
|
66 ;; on encoding.
|
|
67 (let* ((tab (make-translation-table-from-vector encoding-vector))
|
|
68 ;; Translation table used for encoding:
|
|
69 (encode-table (char-table-extra-slot tab 0)))
|
|
70 (map-char-table (lambda (c v)
|
|
71 (if v
|
|
72 (let ((c1 (aref encode-table v)))
|
|
73 (if c1 ; we encode that unicode
|
|
74 (aset encode-table c c1)))))
|
|
75 ucs-mule-to-mule-unicode)
|
|
76 tab)))
|
42057
|
77
|
|
78 (defun cp-valid-codes (v)
|
|
79 "Derive a valid-codes list for translation vector V.
|
|
80 See `make-coding-system'."
|
|
81 (let (pairs
|
|
82 (i 128) ; index into v
|
|
83 (start 0) ; start of a valid range
|
|
84 (end 127)) ; end of a valid range
|
|
85 (while (< i 256)
|
|
86 (if (aref v (- i 128)) ; start or extend range
|
|
87 (progn
|
|
88 (setq end i)
|
|
89 (unless start (setq start i)))
|
|
90 (if start
|
|
91 (push (cons start end) pairs))
|
|
92 (setq start nil))
|
|
93 (setq i (1+ i)))
|
|
94 (if start (push (cons start end) pairs))
|
|
95 (nreverse pairs)))
|
|
96
|
|
97 (defun cp-fix-safe-chars (cs)
|
|
98 "Remove `char-coding-system-table' entries from previous definition of CS.
|
|
99 CS is a base coding system or alias."
|
|
100 (when (coding-system-p cs)
|
|
101 (let ((chars (coding-system-get cs 'safe-chars)))
|
|
102 (map-char-table
|
|
103 (lambda (k v)
|
|
104 (if (and v (not (eq v t)))
|
|
105 (aset char-coding-system-table
|
|
106 k
|
47911
|
107 (remq cs (aref char-coding-system-table k)))))
|
42057
|
108 chars))))
|
|
109
|
49143
|
110 ;; Fix things that have been, or might be, done by codepage.el.
|
42057
|
111 (eval-after-load "codepage"
|
|
112 '(progn
|
|
113
|
|
114 (dolist (cs '(cp857 cp861 cp1253 cp852 cp866 cp437 cp855 cp869 cp775
|
|
115 cp862 cp864 cp1250 cp863 cp865 cp1251 cp737 cp1257 cp850
|
|
116 cp860 cp851 720))
|
|
117 (cp-fix-safe-chars cs))
|
|
118
|
|
119 ;; Semi-dummy version for the stuff in codepage.el which we don't
|
|
120 ;; define here. (Used by mule-diag.)
|
|
121 (defun cp-supported-codepages ()
|
|
122 "Return an alist of supported codepages.
|
|
123
|
|
124 Each association in the alist has the form (NNN . CHARSET), where NNN is the
|
|
125 codepage number, and CHARSET is the MULE charset which is the closest match
|
|
126 for the character set supported by that codepage.
|
|
127
|
|
128 A codepage NNN is supported if a variable called `cpNNN-decode-table' exists,
|
|
129 is a vector, and has a charset property."
|
|
130 '(("774" . latin-iso8859-4) ("770" . latin-iso8859-4)
|
|
131 ("773" . latin-iso8859-4)))
|
|
132
|
|
133 ;; A version which doesn't override the coding systems set up by this
|
|
134 ;; file. It could still be used for the few missing ones from
|
|
135 ;; codepage.el.
|
|
136 (defun codepage-setup (codepage)
|
|
137 "Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE.
|
|
138
|
|
139 These coding systems are meant for encoding and decoding 8-bit non-ASCII
|
|
140 characters used by the IBM codepages, typically in conjunction with files
|
|
141 read/written by MS-DOS software, or for display on the MS-DOS terminal."
|
|
142 (interactive
|
|
143 (let ((completion-ignore-case t)
|
|
144 (candidates (cp-supported-codepages)))
|
|
145 (list (completing-read "Setup DOS Codepage: (default 437) " candidates
|
|
146 nil t nil nil "437"))))
|
|
147 (let ((cp (format "cp%s" codepage)))
|
|
148 (unless (coding-system-p (intern cp))
|
|
149 (cp-make-coding-systems-for-codepage
|
|
150 cp (cp-charset-for-codepage cp) (cp-offset-for-codepage cp))))))
|
|
151 ) ; eval-after-load
|
|
152
|
48753
|
153 ;; For `non-iso-charset-alist'. Do this after redefining
|
|
154 ;; `cp-supported-codepages', which is called through loading
|
|
155 ;; mule-diag.
|
|
156 (require 'mule-diag)
|
|
157
|
42057
|
158 ;; Macro to allow ccl compilation at byte-compile time, avoiding
|
|
159 ;; loading ccl.
|
|
160 ;;;###autoload
|
|
161 (defmacro cp-make-coding-system (name v &optional doc-string mnemonic)
|
|
162 "Make coding system NAME for and 8-bit, extended-ASCII character set.
|
|
163 V is a 128-long vector of characters to translate the upper half of
|
|
164 the charactert set. DOC-STRING and MNEMONIC are used as the
|
|
165 corresponding args of `make-coding-system'. If MNEMONIC isn't given,
|
|
166 ?* is used."
|
|
167 (let* ((encoder (intern (format "encode-%s" name)))
|
|
168 (decoder (intern (format "decode-%s" name)))
|
|
169 (ccl-decoder
|
|
170 (ccl-compile
|
|
171 `(4
|
|
172 ((loop
|
|
173 (read r1)
|
|
174 (if (r1 < 128) ;; ASCII
|
|
175 (r0 = ,(charset-id 'ascii))
|
|
176 (if (r1 < 160)
|
|
177 (r0 = ,(charset-id 'eight-bit-control))
|
|
178 (r0 = ,(charset-id 'eight-bit-graphic))))
|
|
179 (translate-character ,decoder r0 r1)
|
47911
|
180 ;; Allow fragmentation on decoding -- relevant for
|
|
181 ;; Cyrillic, Greek and, possibly Arabic and Hebrew.
|
48049
|
182 (translate-character utf-translation-table-for-decode r0 r1)
|
42057
|
183 (write-multibyte-character r0 r1)
|
|
184 (repeat))))))
|
|
185 (ccl-encoder
|
|
186 (ccl-compile
|
|
187 `(1
|
|
188 ((loop
|
|
189 (read-multibyte-character r0 r1)
|
|
190 (translate-character ,encoder r0 r1)
|
49143
|
191 (if (r0 != ,(charset-id 'ascii))
|
|
192 (if (r0 != ,(charset-id 'eight-bit-graphic))
|
|
193 (if (r0 != ,(charset-id 'eight-bit-control))
|
|
194 (r1 = ??))))
|
42057
|
195 (write-repeat r1)))))))
|
|
196 `(let ((translation-table (cp-make-translation-table ,v))
|
|
197 (codes (cp-valid-codes ,v)))
|
|
198 (define-translation-table ',decoder translation-table)
|
|
199 (define-translation-table ',encoder
|
|
200 (char-table-extra-slot translation-table 0))
|
|
201 (cp-fix-safe-chars ',name)
|
|
202 (make-coding-system
|
|
203 ',name 4 ,(or mnemonic ?*)
|
|
204 (or ,doc-string (format "%s encoding" ',name))
|
|
205 (cons ,ccl-decoder ,ccl-encoder)
|
|
206 (list (cons 'safe-chars (get ',encoder 'translation-table))
|
|
207 (cons 'valid-codes codes)
|
47911
|
208 (cons 'mime-charset ',name)
|
|
209 ;; For Quail translation. Fixme: this should really be
|
|
210 ;; a separate table that only translates the coding
|
|
211 ;; system's safe-chars.
|
|
212 (cons 'translation-table-for-input ,ucs-mule-to-mule-unicode)))
|
42057
|
213 (push (list ',name
|
|
214 nil ; charset list
|
|
215 ',decoder
|
|
216 (let (l) ; code range
|
|
217 (dolist (elt (reverse codes))
|
|
218 (push (cdr elt) l)
|
|
219 (push (car elt) l))
|
|
220 (list l)))
|
|
221 non-iso-charset-alist))))
|
|
222
|
|
223
|
|
224 ;; These tables were mostly derived by running somthing like
|
|
225 ;; `recode -f cpxxx/..utf-8' on a binary file filled by
|
|
226 ;; `(dotimes (i 128) (insert ?? ?\\ (+ 128 i) ?\n))' and then
|
|
227 ;; exchanging the ?\� entries for nil. iconv was used instead in some
|
|
228 ;; cases.
|
|
229
|
|
230 ;; Fixme: Do better for mode-line mnemonics?
|
|
231
|
|
232 (cp-make-coding-system
|
|
233 cp437
|
|
234 [?\Ç
|
|
235 ?\ü
|
|
236 ?\é
|
|
237 ?\â
|
|
238 ?\ä
|
|
239 ?\à
|
|
240 ?\å
|
|
241 ?\ç
|
|
242 ?\ê
|
|
243 ?\ë
|
|
244 ?\è
|
|
245 ?\ï
|
|
246 ?\î
|
|
247 ?\ì
|
|
248 ?\Ä
|
|
249 ?\Å
|
|
250 ?\É
|
|
251 ?\æ
|
|
252 ?\Æ
|
|
253 ?\ô
|
|
254 ?\ö
|
|
255 ?\ò
|
|
256 ?\û
|
|
257 ?\ù
|
|
258 ?\ÿ
|
|
259 ?\Ö
|
|
260 ?\Ü
|
|
261 ?\¢
|
|
262 ?\£
|
|
263 ?\¥
|
|
264 ?\₧
|
|
265 ?\ƒ
|
|
266 ?\á
|
|
267 ?\í
|
|
268 ?\ó
|
|
269 ?\ú
|
|
270 ?\ñ
|
|
271 ?\Ñ
|
|
272 ?\ª
|
|
273 ?\º
|
|
274 ?\¿
|
|
275 ?\⌐
|
|
276 ?\¬
|
|
277 ?\½
|
|
278 ?\¼
|
|
279 ?\¡
|
|
280 ?\«
|
|
281 ?\»
|
|
282 ?\░
|
|
283 ?\▒
|
|
284 ?\▓
|
|
285 ?\│
|
|
286 ?\┤
|
|
287 ?\╡
|
|
288 ?\╢
|
|
289 ?\╖
|
|
290 ?\╕
|
|
291 ?\╣
|
|
292 ?\║
|
|
293 ?\╗
|
|
294 ?\╝
|
|
295 ?\╜
|
|
296 ?\╛
|
|
297 ?\┐
|
|
298 ?\└
|
|
299 ?\┴
|
|
300 ?\┬
|
|
301 ?\├
|
|
302 ?\─
|
|
303 ?\┼
|
|
304 ?\╞
|
|
305 ?\╟
|
|
306 ?\╚
|
|
307 ?\╔
|
|
308 ?\╩
|
|
309 ?\╦
|
|
310 ?\╠
|
|
311 ?\═
|
|
312 ?\╬
|
|
313 ?\╧
|
|
314 ?\╨
|
|
315 ?\╤
|
|
316 ?\╥
|
|
317 ?\╙
|
|
318 ?\╘
|
|
319 ?\╒
|
|
320 ?\╓
|
|
321 ?\╫
|
|
322 ?\╪
|
|
323 ?\┘
|
|
324 ?\┌
|
|
325 ?\█
|
|
326 ?\▄
|
|
327 ?\▌
|
|
328 ?\▐
|
|
329 ?\▀
|
|
330 ?\α
|
|
331 ?\ß
|
|
332 ?\Γ
|
|
333 ?\π
|
|
334 ?\Σ
|
|
335 ?\σ
|
|
336 ?\µ
|
|
337 ?\τ
|
|
338 ?\Φ
|
|
339 ?\Θ
|
|
340 ?\Ω
|
|
341 ?\δ
|
|
342 ?\∞
|
|
343 ?\φ
|
|
344 ?\ε
|
|
345 ?\∩
|
|
346 ?\≡
|
|
347 ?\±
|
|
348 ?\≥
|
|
349 ?\≤
|
|
350 ?\⌠
|
|
351 ?\⌡
|
|
352 ?\÷
|
|
353 ?\≈
|
|
354 ?\°
|
|
355 ?\·
|
|
356 ?\•
|
|
357 ?\√
|
|
358 ?\ⁿ
|
|
359 ?\²
|
|
360 ?\■
|
|
361 ?\ ])
|
|
362
|
|
363 (cp-make-coding-system
|
|
364 cp737
|
|
365 [?\Α
|
|
366 ?\Β
|
|
367 ?\Γ
|
|
368 ?\Δ
|
|
369 ?\Ε
|
|
370 ?\Ζ
|
|
371 ?\Η
|
|
372 ?\Θ
|
|
373 ?\Ι
|
|
374 ?\Κ
|
|
375 ?\Λ
|
|
376 ?\Μ
|
|
377 ?\Ν
|
|
378 ?\Ξ
|
|
379 ?\Ο
|
|
380 ?\Π
|
|
381 ?\Ρ
|
|
382 ?\Σ
|
|
383 ?\Τ
|
|
384 ?\Υ
|
|
385 ?\Φ
|
|
386 ?\Χ
|
|
387 ?\Ψ
|
|
388 ?\Ω
|
|
389 ?\α
|
|
390 ?\β
|
|
391 ?\γ
|
|
392 ?\δ
|
|
393 ?\ε
|
|
394 ?\ζ
|
|
395 ?\η
|
|
396 ?\θ
|
|
397 ?\ι
|
|
398 ?\κ
|
|
399 ?\λ
|
|
400 ?\μ
|
|
401 ?\ν
|
|
402 ?\ξ
|
|
403 ?\ο
|
|
404 ?\π
|
|
405 ?\ρ
|
|
406 ?\σ
|
|
407 ?\ς
|
|
408 ?\τ
|
|
409 ?\υ
|
|
410 ?\φ
|
|
411 ?\χ
|
|
412 ?\ψ
|
|
413 ?\░
|
|
414 ?\▒
|
|
415 ?\▓
|
|
416 ?\│
|
|
417 ?\┤
|
|
418 ?\╡
|
|
419 ?\╢
|
|
420 ?\╖
|
|
421 ?\╕
|
|
422 ?\╣
|
|
423 ?\║
|
|
424 ?\╗
|
|
425 ?\╝
|
|
426 ?\╜
|
|
427 ?\╛
|
|
428 ?\┐
|
|
429 ?\└
|
|
430 ?\┴
|
|
431 ?\┬
|
|
432 ?\├
|
|
433 ?\─
|
|
434 ?\┼
|
|
435 ?\╞
|
|
436 ?\╟
|
|
437 ?\╚
|
|
438 ?\╔
|
|
439 ?\╩
|
|
440 ?\╦
|
|
441 ?\╠
|
|
442 ?\═
|
|
443 ?\╬
|
|
444 ?\╧
|
|
445 ?\╨
|
|
446 ?\╤
|
|
447 ?\╥
|
|
448 ?\╙
|
|
449 ?\╘
|
|
450 ?\╒
|
|
451 ?\╓
|
|
452 ?\╫
|
|
453 ?\╪
|
|
454 ?\┘
|
|
455 ?\┌
|
|
456 ?\█
|
|
457 ?\▄
|
|
458 ?\▌
|
|
459 ?\▐
|
|
460 ?\▀
|
|
461 ?\ω
|
|
462 ?\ά
|
|
463 ?\έ
|
|
464 ?\ή
|
|
465 ?\ϊ
|
|
466 ?\ί
|
|
467 ?\ό
|
|
468 ?\ύ
|
|
469 ?\ϋ
|
|
470 ?\ώ
|
|
471 ?\Ά
|
|
472 ?\Έ
|
|
473 ?\Ή
|
|
474 ?\Ί
|
|
475 ?\Ό
|
|
476 ?\Ύ
|
|
477 ?\Ώ
|
|
478 ?\±
|
|
479 ?\≥
|
|
480 ?\≤
|
|
481 ?\Ϊ
|
|
482 ?\Ϋ
|
|
483 ?\÷
|
|
484 ?\≈
|
|
485 ?\°
|
|
486 ?\∙
|
|
487 ?\·
|
|
488 ?\√
|
|
489 ?\ⁿ
|
|
490 ?\²
|
|
491 ?\■
|
|
492 ?\ ])
|
|
493 (coding-system-put 'cp737 'mime-charset nil) ; not in IANA list
|
|
494
|
|
495 (cp-make-coding-system
|
|
496 cp775
|
|
497 [?\Ć
|
|
498 ?\ü
|
|
499 ?\é
|
|
500 ?\ā
|
|
501 ?\ä
|
|
502 ?\ģ
|
|
503 ?\å
|
|
504 ?\ć
|
|
505 ?\ł
|
|
506 ?\ē
|
|
507 ?\Ŗ
|
|
508 ?\ŗ
|
|
509 ?\ī
|
|
510 ?\Ź
|
|
511 ?\Ä
|
|
512 ?\Å
|
|
513 ?\É
|
|
514 ?\æ
|
|
515 ?\Æ
|
|
516 ?\ō
|
|
517 ?\ö
|
|
518 ?\Ģ
|
|
519 ?\¢
|
|
520 ?\Ś
|
|
521 ?\ś
|
|
522 ?\Ö
|
|
523 ?\Ü
|
|
524 ?\ø
|
|
525 ?\£
|
|
526 ?\Ø
|
|
527 ?\×
|
|
528 ?\¤
|
|
529 ?\Ā
|
|
530 ?\Ī
|
|
531 ?\ó
|
|
532 ?\Ż
|
|
533 ?\ż
|
|
534 ?\ź
|
|
535 ?\”
|
|
536 ?\¦
|
|
537 ?\©
|
|
538 ?\®
|
|
539 ?\¬
|
|
540 ?\½
|
|
541 ?\¼
|
|
542 ?\Ł
|
|
543 ?\«
|
|
544 ?\»
|
|
545 ?\░
|
|
546 ?\▒
|
|
547 ?\▓
|
|
548 ?\│
|
|
549 ?\┤
|
|
550 ?\Ą
|
|
551 ?\Č
|
|
552 ?\Ę
|
|
553 ?\Ė
|
|
554 ?\╣
|
|
555 ?\║
|
|
556 ?\╗
|
|
557 ?\╝
|
|
558 ?\Į
|
|
559 ?\Š
|
|
560 ?\┐
|
|
561 ?\└
|
|
562 ?\┴
|
|
563 ?\┬
|
|
564 ?\├
|
|
565 ?\─
|
|
566 ?\┼
|
|
567 ?\Ų
|
|
568 ?\Ū
|
|
569 ?\╚
|
|
570 ?\╔
|
|
571 ?\╩
|
|
572 ?\╦
|
|
573 ?\╠
|
|
574 ?\═
|
|
575 ?\╬
|
|
576 ?\Ž
|
|
577 ?\ą
|
|
578 ?\č
|
|
579 ?\ę
|
|
580 ?\ė
|
|
581 ?\į
|
|
582 ?\š
|
|
583 ?\ų
|
|
584 ?\ū
|
|
585 ?\ž
|
|
586 ?\┘
|
|
587 ?\┌
|
|
588 ?\█
|
|
589 ?\▄
|
|
590 ?\▌
|
|
591 ?\▐
|
|
592 ?\▀
|
|
593 ?\Ó
|
|
594 ?\ß
|
|
595 ?\Ō
|
|
596 ?\Ń
|
|
597 ?\õ
|
|
598 ?\Õ
|
|
599 ?\µ
|
|
600 ?\ń
|
|
601 ?\Ķ
|
|
602 ?\ķ
|
|
603 ?\Ļ
|
|
604 ?\ļ
|
|
605 ?\ņ
|
|
606 ?\Ē
|
|
607 ?\Ņ
|
|
608 ?\’
|
|
609 ?\
|
|
610 ?\±
|
|
611 ?\“
|
|
612 ?\¾
|
|
613 ?\¶
|
|
614 ?\§
|
|
615 ?\÷
|
|
616 ?\„
|
|
617 ?\°
|
|
618 ?\∙
|
|
619 ?\·
|
|
620 ?\¹
|
|
621 ?\³
|
|
622 ?\²
|
|
623 ?\■
|
|
624 ?\ ])
|
|
625
|
|
626 (cp-make-coding-system
|
|
627 cp850
|
|
628 [?\Ç
|
|
629 ?\ü
|
|
630 ?\é
|
|
631 ?\â
|
|
632 ?\ä
|
|
633 ?\à
|
|
634 ?\å
|
|
635 ?\ç
|
|
636 ?\ê
|
|
637 ?\ë
|
|
638 ?\è
|
|
639 ?\ï
|
|
640 ?\î
|
|
641 ?\ì
|
|
642 ?\Ä
|
|
643 ?\Å
|
|
644 ?\É
|
|
645 ?\æ
|
|
646 ?\Æ
|
|
647 ?\ô
|
|
648 ?\ö
|
|
649 ?\ò
|
|
650 ?\û
|
|
651 ?\ù
|
|
652 ?\ÿ
|
|
653 ?\Ö
|
|
654 ?\Ü
|
|
655 ?\ø
|
|
656 ?\£
|
|
657 ?\Ø
|
|
658 ?\×
|
|
659 ?\ƒ
|
|
660 ?\á
|
|
661 ?\í
|
|
662 ?\ó
|
|
663 ?\ú
|
|
664 ?\ñ
|
|
665 ?\Ñ
|
|
666 ?\ª
|
|
667 ?\º
|
|
668 ?\¿
|
|
669 ?\®
|
|
670 ?\¬
|
|
671 ?\½
|
|
672 ?\¼
|
|
673 ?\¡
|
|
674 ?\«
|
|
675 ?\»
|
|
676 ?\░
|
|
677 ?\▒
|
|
678 ?\▓
|
|
679 ?\│
|
|
680 ?\┤
|
|
681 ?\Á
|
|
682 ?\Â
|
|
683 ?\À
|
|
684 ?\©
|
|
685 ?\╣
|
|
686 ?\║
|
|
687 ?\╗
|
|
688 ?\╝
|
|
689 ?\¢
|
|
690 ?\¥
|
|
691 ?\┐
|
|
692 ?\└
|
|
693 ?\┴
|
|
694 ?\┬
|
|
695 ?\├
|
|
696 ?\─
|
|
697 ?\┼
|
|
698 ?\ã
|
|
699 ?\Ã
|
|
700 ?\╚
|
|
701 ?\╔
|
|
702 ?\╩
|
|
703 ?\╦
|
|
704 ?\╠
|
|
705 ?\═
|
|
706 ?\╬
|
|
707 ?\¤
|
|
708 ?\ð
|
|
709 ?\Ð
|
|
710 ?\Ê
|
|
711 ?\Ë
|
|
712 ?\È
|
|
713 ?\ı
|
|
714 ?\Í
|
|
715 ?\Î
|
|
716 ?\Ï
|
|
717 ?\┘
|
|
718 ?\┌
|
|
719 ?\█
|
|
720 ?\▄
|
|
721 ?\¦
|
|
722 ?\Ì
|
|
723 ?\▀
|
|
724 ?\Ó
|
|
725 ?\ß
|
|
726 ?\Ô
|
|
727 ?\Ò
|
|
728 ?\õ
|
|
729 ?\Õ
|
|
730 ?\µ
|
|
731 ?\þ
|
|
732 ?\Þ
|
|
733 ?\Ú
|
|
734 ?\Û
|
|
735 ?\Ù
|
|
736 ?\ý
|
|
737 ?\Ý
|
|
738 ?\¯
|
|
739 ?\´
|
|
740 ?\
|
|
741 ?\±
|
|
742 ?\‗
|
|
743 ?\¾
|
|
744 ?\¶
|
|
745 ?\§
|
|
746 ?\÷
|
|
747 ?\¸
|
|
748 ?\°
|
|
749 ?\¨
|
|
750 ?\·
|
|
751 ?\¹
|
|
752 ?\³
|
|
753 ?\²
|
|
754 ?\■
|
|
755 ?\ ])
|
|
756
|
|
757 (cp-make-coding-system
|
|
758 cp851
|
|
759 [?\Ç
|
|
760 ?\ü
|
|
761 ?\é
|
|
762 ?\â
|
|
763 ?\ä
|
|
764 ?\à
|
|
765 ?\Ά
|
|
766 ?\ç
|
|
767 ?\ê
|
|
768 ?\ë
|
|
769 ?\è
|
|
770 ?\ï
|
|
771 ?\î
|
|
772 ?\Έ
|
|
773 ?\Ä
|
|
774 ?\Ή
|
|
775 ?\Ί
|
|
776 nil
|
|
777 ?\Ό
|
|
778 ?\ô
|
|
779 ?\ö
|
|
780 ?\Ύ
|
|
781 ?\û
|
|
782 ?\ù
|
|
783 ?\Ώ
|
|
784 ?\Ö
|
|
785 ?\Ü
|
|
786 ?\ά
|
|
787 ?\£
|
|
788 ?\έ
|
|
789 ?\ή
|
|
790 ?\ί
|
|
791 ?\ϊ
|
|
792 ?\ΐ
|
|
793 ?\ό
|
|
794 ?\ύ
|
|
795 ?\Α
|
|
796 ?\Β
|
|
797 ?\Γ
|
|
798 ?\Δ
|
|
799 ?\Ε
|
|
800 ?\Ζ
|
|
801 ?\Η
|
|
802 ?\½
|
|
803 ?\Θ
|
|
804 ?\Ι
|
|
805 ?\«
|
|
806 ?\»
|
|
807 ?\░
|
|
808 ?\▒
|
|
809 ?\▓
|
|
810 ?\│
|
|
811 ?\┤
|
|
812 ?\Κ
|
|
813 ?\Λ
|
|
814 ?\Ν
|
|
815 ?\Μ
|
|
816 ?\╣
|
|
817 ?\║
|
|
818 ?\╗
|
|
819 ?\╝
|
|
820 ?\Ξ
|
|
821 ?\Ο
|
|
822 ?\┐
|
|
823 ?\└
|
|
824 ?\┴
|
|
825 ?\┬
|
|
826 ?\├
|
|
827 ?\─
|
|
828 ?\┼
|
|
829 ?\Π
|
|
830 ?\Ρ
|
|
831 ?\╚
|
|
832 ?\╔
|
|
833 ?\╩
|
|
834 ?\╦
|
|
835 ?\╠
|
|
836 ?\═
|
|
837 ?\╬
|
|
838 ?\Σ
|
|
839 ?\Τ
|
|
840 ?\Υ
|
|
841 ?\Φ
|
|
842 ?\Χ
|
|
843 ?\Ψ
|
|
844 ?\Ω
|
|
845 ?\α
|
|
846 ?\β
|
|
847 ?\γ
|
|
848 ?\┘
|
|
849 ?\┌
|
|
850 ?\█
|
|
851 ?\▄
|
|
852 ?\δ
|
|
853 ?\ε
|
|
854 ?\▀
|
|
855 ?\ζ
|
|
856 ?\η
|
|
857 ?\θ
|
|
858 ?\ι
|
|
859 ?\κ
|
|
860 ?\λ
|
|
861 ?\μ
|
|
862 ?\ν
|
|
863 ?\ξ
|
|
864 ?\ο
|
|
865 ?\π
|
|
866 ?\ρ
|
|
867 ?\σ
|
|
868 ?\ς
|
|
869 ?\τ
|
|
870 ?\´
|
|
871 ?\
|
|
872 ?\±
|
|
873 ?\υ
|
|
874 ?\φ
|
|
875 ?\χ
|
|
876 ?\§
|
|
877 ?\ψ
|
|
878 ?\˛
|
|
879 ?\°
|
|
880 ?\¨
|
|
881 ?\ω
|
|
882 ?\ϋ
|
|
883 ?\ΰ
|
|
884 ?\ώ
|
|
885 ?\■
|
|
886 ?\ ])
|
|
887
|
|
888 (cp-make-coding-system
|
|
889 cp852
|
|
890 [?\Ç
|
|
891 ?\ü
|
|
892 ?\é
|
|
893 ?\â
|
|
894 ?\ä
|
|
895 ?\ů
|
|
896 ?\ć
|
|
897 ?\ç
|
|
898 ?\ł
|
|
899 ?\ë
|
|
900 ?\Ő
|
|
901 ?\ő
|
|
902 ?\î
|
|
903 ?\Ź
|
|
904 ?\Ä
|
|
905 ?\Ć
|
|
906 ?\É
|
|
907 ?\Ĺ
|
|
908 ?\ĺ
|
|
909 ?\ô
|
|
910 ?\ö
|
|
911 ?\Ľ
|
|
912 ?\ľ
|
|
913 ?\Ś
|
|
914 ?\ś
|
|
915 ?\Ö
|
|
916 ?\Ü
|
|
917 ?\Ť
|
|
918 ?\ť
|
|
919 ?\Ł
|
|
920 ?\×
|
|
921 ?\č
|
|
922 ?\á
|
|
923 ?\í
|
|
924 ?\ó
|
|
925 ?\ú
|
|
926 ?\Ą
|
|
927 ?\ą
|
|
928 ?\Ž
|
|
929 ?\ž
|
|
930 ?\Ę
|
|
931 ?\ę
|
|
932 ?\¬
|
|
933 ?\ź
|
|
934 ?\Č
|
|
935 ?\ş
|
|
936 ?\«
|
|
937 ?\»
|
|
938 ?\░
|
|
939 ?\▒
|
|
940 ?\▓
|
|
941 ?\│
|
|
942 ?\┤
|
|
943 ?\Á
|
|
944 ?\Â
|
|
945 ?\Ě
|
|
946 ?\Ş
|
|
947 ?\╣
|
|
948 ?\║
|
|
949 ?\╗
|
|
950 ?\╝
|
|
951 ?\Ż
|
|
952 ?\ż
|
|
953 ?\┐
|
|
954 ?\└
|
|
955 ?\┴
|
|
956 ?\┬
|
|
957 ?\├
|
|
958 ?\─
|
|
959 ?\┼
|
|
960 ?\Ă
|
|
961 ?\ă
|
|
962 ?\╚
|
|
963 ?\╔
|
|
964 ?\╩
|
|
965 ?\╦
|
|
966 ?\╠
|
|
967 ?\═
|
|
968 ?\╬
|
|
969 ?\¤
|
|
970 ?\đ
|
|
971 ?\Đ
|
|
972 ?\Ď
|
|
973 ?\Ë
|
|
974 ?\ď
|
|
975 ?\Ň
|
|
976 ?\Í
|
|
977 ?\Î
|
|
978 ?\ě
|
|
979 ?\┘
|
|
980 ?\┌
|
|
981 ?\█
|
|
982 ?\▄
|
|
983 ?\Ţ
|
|
984 ?\Ů
|
|
985 ?\▀
|
|
986 ?\Ó
|
|
987 ?\ß
|
|
988 ?\Ô
|
|
989 ?\Ń
|
|
990 ?\ń
|
|
991 ?\ň
|
|
992 ?\Š
|
|
993 ?\š
|
|
994 ?\Ŕ
|
|
995 ?\Ú
|
|
996 ?\ŕ
|
|
997 ?\Ű
|
|
998 ?\ý
|
|
999 ?\Ý
|
|
1000 ?\ţ
|
|
1001 ?\´
|
|
1002 ?\
|
|
1003 ?\˝
|
|
1004 ?\˛
|
|
1005 ?\ˇ
|
|
1006 ?\˘
|
|
1007 ?\§
|
|
1008 ?\÷
|
|
1009 ?\¸
|
|
1010 ?\°
|
|
1011 ?\¨
|
|
1012 ?\˙
|
|
1013 ?\ű
|
|
1014 ?\Ř
|
|
1015 ?\ř
|
|
1016 ?\■
|
|
1017 ?\ ])
|
|
1018
|
|
1019 (cp-make-coding-system
|
|
1020 cp855
|
|
1021 [?\ђ
|
|
1022 ?\Ђ
|
|
1023 ?\ѓ
|
|
1024 ?\Ѓ
|
|
1025 ?\ё
|
|
1026 ?\Ё
|
|
1027 ?\є
|
|
1028 ?\Є
|
|
1029 ?\ѕ
|
|
1030 ?\Ѕ
|
|
1031 ?\і
|
|
1032 ?\І
|
|
1033 ?\ї
|
|
1034 ?\Ї
|
|
1035 ?\ј
|
|
1036 ?\Ј
|
|
1037 ?\љ
|
|
1038 ?\Љ
|
|
1039 ?\њ
|
|
1040 ?\Њ
|
|
1041 ?\ћ
|
|
1042 ?\Ћ
|
|
1043 ?\ќ
|
|
1044 ?\Ќ
|
|
1045 ?\ў
|
|
1046 ?\Ў
|
|
1047 ?\џ
|
|
1048 ?\Џ
|
|
1049 ?\ю
|
|
1050 ?\Ю
|
|
1051 ?\ъ
|
|
1052 ?\Ъ
|
|
1053 ?\а
|
|
1054 ?\А
|
|
1055 ?\б
|
|
1056 ?\Б
|
|
1057 ?\ц
|
|
1058 ?\Ц
|
|
1059 ?\д
|
|
1060 ?\Д
|
|
1061 ?\е
|
|
1062 ?\Е
|
|
1063 ?\ф
|
|
1064 ?\Ф
|
|
1065 ?\г
|
|
1066 ?\Г
|
|
1067 ?\«
|
|
1068 ?\»
|
|
1069 ?\░
|
|
1070 ?\▒
|
|
1071 ?\▓
|
|
1072 ?\│
|
|
1073 ?\┤
|
|
1074 ?\х
|
|
1075 ?\Х
|
|
1076 ?\и
|
|
1077 ?\И
|
|
1078 ?\╣
|
|
1079 ?\║
|
|
1080 ?\╗
|
|
1081 ?\╝
|
|
1082 ?\й
|
|
1083 ?\Й
|
|
1084 ?\┐
|
|
1085 ?\└
|
|
1086 ?\┴
|
|
1087 ?\┬
|
|
1088 ?\├
|
|
1089 ?\─
|
|
1090 ?\┼
|
|
1091 ?\к
|
|
1092 ?\К
|
|
1093 ?\╚
|
|
1094 ?\╔
|
|
1095 ?\╩
|
|
1096 ?\╦
|
|
1097 ?\╠
|
|
1098 ?\═
|
|
1099 ?\╬
|
|
1100 ?\¤
|
|
1101 ?\л
|
|
1102 ?\Л
|
|
1103 ?\м
|
|
1104 ?\М
|
|
1105 ?\н
|
|
1106 ?\Н
|
|
1107 ?\о
|
|
1108 ?\О
|
|
1109 ?\п
|
|
1110 ?\┘
|
|
1111 ?\┌
|
|
1112 ?\█
|
|
1113 ?\▄
|
|
1114 ?\П
|
|
1115 ?\я
|
|
1116 ?\▀
|
|
1117 ?\Я
|
|
1118 ?\р
|
|
1119 ?\Р
|
|
1120 ?\с
|
|
1121 ?\С
|
|
1122 ?\т
|
|
1123 ?\Т
|
|
1124 ?\у
|
|
1125 ?\У
|
|
1126 ?\ж
|
|
1127 ?\Ж
|
|
1128 ?\в
|
|
1129 ?\В
|
|
1130 ?\ь
|
|
1131 ?\Ь
|
|
1132 ?\´
|
|
1133 ?\
|
|
1134 ?\ы
|
|
1135 ?\Ы
|
|
1136 ?\з
|
|
1137 ?\З
|
|
1138 ?\ш
|
|
1139 ?\Ш
|
|
1140 ?\э
|
|
1141 ?\Э
|
|
1142 ?\щ
|
|
1143 ?\Щ
|
|
1144 ?\ч
|
|
1145 ?\Ч
|
|
1146 nil
|
|
1147 ?\■
|
|
1148 ?\ ])
|
|
1149
|
|
1150 (cp-make-coding-system
|
|
1151 cp857
|
|
1152 [?\Ç
|
|
1153 ?\ü
|
|
1154 ?\é
|
|
1155 ?\â
|
|
1156 ?\ä
|
|
1157 ?\à
|
|
1158 ?\å
|
|
1159 ?\ç
|
|
1160 ?\ê
|
|
1161 ?\ë
|
|
1162 ?\è
|
|
1163 ?\ï
|
|
1164 ?\î
|
|
1165 ?\ı
|
|
1166 ?\Ä
|
|
1167 ?\Å
|
|
1168 ?\É
|
|
1169 ?\æ
|
|
1170 ?\Æ
|
|
1171 ?\ô
|
|
1172 ?\ö
|
|
1173 ?\ò
|
|
1174 ?\û
|
|
1175 ?\ù
|
|
1176 ?\İ
|
|
1177 ?\Ö
|
|
1178 ?\Ü
|
|
1179 ?\ø
|
|
1180 ?\£
|
|
1181 ?\Ø
|
|
1182 ?\Ş
|
|
1183 ?\ş
|
|
1184 ?\á
|
|
1185 ?\í
|
|
1186 ?\ó
|
|
1187 ?\ú
|
|
1188 ?\ñ
|
|
1189 ?\Ñ
|
|
1190 ?\Ğ
|
|
1191 ?\ğ
|
|
1192 ?\¿
|
|
1193 ?\®
|
|
1194 ?\¬
|
|
1195 ?\½
|
|
1196 ?\¼
|
|
1197 ?\¡
|
|
1198 ?\«
|
|
1199 ?\»
|
|
1200 ?\░
|
|
1201 ?\▒
|
|
1202 ?\▓
|
|
1203 ?\│
|
|
1204 ?\┤
|
|
1205 ?\Á
|
|
1206 ?\Â
|
|
1207 ?\À
|
|
1208 ?\©
|
|
1209 ?\╣
|
|
1210 ?\║
|
|
1211 ?\╗
|
|
1212 ?\╝
|
|
1213 ?\¢
|
|
1214 ?\¥
|
|
1215 ?\┐
|
|
1216 ?\└
|
|
1217 ?\┴
|
|
1218 ?\┬
|
|
1219 ?\├
|
|
1220 ?\─
|
|
1221 ?\┼
|
|
1222 ?\ã
|
|
1223 ?\Ã
|
|
1224 ?\╚
|
|
1225 ?\╔
|
|
1226 ?\╩
|
|
1227 ?\╦
|
|
1228 ?\╠
|
|
1229 ?\═
|
|
1230 ?\╬
|
|
1231 ?\¤
|
|
1232 ?\º
|
|
1233 ?\ª
|
|
1234 ?\Ê
|
|
1235 ?\Ë
|
|
1236 ?\È
|
|
1237 nil
|
|
1238 ?\Í
|
|
1239 ?\Î
|
|
1240 ?\Ï
|
|
1241 ?\┘
|
|
1242 ?\┌
|
|
1243 ?\█
|
|
1244 ?\▄
|
|
1245 ?\¦
|
|
1246 ?\Ì
|
|
1247 ?\▀
|
|
1248 ?\Ó
|
|
1249 ?\ß
|
|
1250 ?\Ô
|
|
1251 ?\Ò
|
|
1252 ?\õ
|
|
1253 ?\Õ
|
|
1254 ?\µ
|
|
1255 nil
|
|
1256 ?\×
|
|
1257 ?\Ú
|
|
1258 ?\Û
|
|
1259 ?\Ù
|
|
1260 ?\ì
|
|
1261 ?\ÿ
|
|
1262 ?\—
|
|
1263 ?\´
|
|
1264 ?\
|
|
1265 ?\±
|
|
1266 nil
|
|
1267 ?\¾
|
|
1268 ?\¶
|
|
1269 ?\§
|
|
1270 ?\÷
|
|
1271 ?\˛
|
|
1272 ?\°
|
|
1273 ?\¨
|
|
1274 ?\˙
|
|
1275 ?\¹
|
|
1276 ?\³
|
|
1277 ?\²
|
|
1278 ?\■
|
|
1279 ?\ ])
|
|
1280
|
|
1281 (cp-make-coding-system
|
|
1282 cp860
|
|
1283 [?\Ç
|
|
1284 ?\ü
|
|
1285 ?\é
|
|
1286 ?\â
|
|
1287 ?\ã
|
|
1288 ?\à
|
|
1289 ?\Á
|
|
1290 ?\ç
|
|
1291 ?\ê
|
|
1292 ?\Ê
|
|
1293 ?\è
|
|
1294 ?\Î
|
|
1295 ?\Ô
|
|
1296 ?\ì
|
|
1297 ?\Ã
|
|
1298 ?\Â
|
|
1299 ?\É
|
|
1300 ?\À
|
|
1301 ?\È
|
|
1302 ?\ô
|
|
1303 ?\õ
|
|
1304 ?\ò
|
|
1305 ?\Ú
|
|
1306 ?\ù
|
|
1307 ?\Ì
|
|
1308 ?\Õ
|
|
1309 ?\Ü
|
|
1310 ?\¢
|
|
1311 ?\£
|
|
1312 ?\Ù
|
|
1313 ?\₧
|
|
1314 ?\Ò
|
|
1315 ?\á
|
|
1316 ?\í
|
|
1317 ?\ó
|
|
1318 ?\ú
|
|
1319 ?\ñ
|
|
1320 ?\Ñ
|
|
1321 ?\ª
|
|
1322 ?\º
|
|
1323 ?\¿
|
|
1324 ?\Ó
|
|
1325 ?\¬
|
|
1326 ?\½
|
|
1327 ?\¼
|
|
1328 ?\¡
|
|
1329 ?\«
|
|
1330 ?\»
|
|
1331 ?\░
|
|
1332 ?\▒
|
|
1333 ?\▓
|
|
1334 ?\│
|
|
1335 ?\┤
|
|
1336 ?\╡
|
|
1337 ?\╢
|
|
1338 ?\╖
|
|
1339 ?\╕
|
|
1340 ?\╣
|
|
1341 ?\║
|
|
1342 ?\╗
|
|
1343 ?\╝
|
|
1344 ?\╜
|
|
1345 ?\╛
|
|
1346 ?\┐
|
|
1347 ?\└
|
|
1348 ?\┴
|
|
1349 ?\┬
|
|
1350 ?\├
|
|
1351 ?\─
|
|
1352 ?\┼
|
|
1353 ?\╞
|
|
1354 ?\╟
|
|
1355 ?\╚
|
|
1356 ?\╔
|
|
1357 ?\╩
|
|
1358 ?\╦
|
|
1359 ?\╠
|
|
1360 ?\═
|
|
1361 ?\╬
|
|
1362 ?\╧
|
|
1363 ?\╨
|
|
1364 ?\╤
|
|
1365 ?\╥
|
|
1366 ?\╙
|
|
1367 ?\╘
|
|
1368 ?\╒
|
|
1369 ?\╓
|
|
1370 ?\╫
|
|
1371 ?\╪
|
|
1372 ?\┘
|
|
1373 ?\┌
|
|
1374 ?\█
|
|
1375 ?\▄
|
|
1376 ?\▌
|
|
1377 ?\▐
|
|
1378 ?\▀
|
|
1379 ?\α
|
|
1380 ?\ß
|
|
1381 ?\Γ
|
|
1382 ?\π
|
|
1383 ?\Σ
|
|
1384 ?\σ
|
|
1385 ?\µ
|
|
1386 ?\τ
|
|
1387 ?\Φ
|
|
1388 ?\Θ
|
|
1389 ?\Ω
|
|
1390 ?\δ
|
|
1391 ?\∞
|
|
1392 ?\φ
|
|
1393 ?\ε
|
|
1394 ?\∩
|
|
1395 ?\≡
|
|
1396 ?\±
|
|
1397 ?\≥
|
|
1398 ?\≤
|
|
1399 ?\⌠
|
|
1400 ?\⌡
|
|
1401 ?\÷
|
|
1402 ?\≈
|
|
1403 ?\°
|
|
1404 ?\·
|
|
1405 ?\•
|
|
1406 ?\√
|
|
1407 ?\ⁿ
|
|
1408 ?\²
|
|
1409 ?\■
|
|
1410 ?\ ])
|
|
1411
|
|
1412 (cp-make-coding-system
|
|
1413 cp861
|
|
1414 [?\Ç
|
|
1415 ?\ü
|
|
1416 ?\é
|
|
1417 ?\â
|
|
1418 ?\ä
|
|
1419 ?\à
|
|
1420 ?\å
|
|
1421 ?\ç
|
|
1422 ?\ê
|
|
1423 ?\ë
|
|
1424 ?\è
|
|
1425 ?\Ð
|
|
1426 ?\ð
|
|
1427 ?\Þ
|
|
1428 ?\Ä
|
|
1429 ?\Å
|
|
1430 ?\É
|
|
1431 ?\æ
|
|
1432 ?\Æ
|
|
1433 ?\ô
|
|
1434 ?\ö
|
|
1435 ?\þ
|
|
1436 ?\û
|
|
1437 ?\Ý
|
|
1438 ?\ý
|
|
1439 ?\Ö
|
|
1440 ?\Ü
|
|
1441 ?\ø
|
|
1442 ?\£
|
|
1443 ?\Ø
|
|
1444 ?\₧
|
|
1445 ?\Ò
|
|
1446 ?\á
|
|
1447 ?\í
|
|
1448 ?\ó
|
|
1449 ?\ú
|
|
1450 ?\Á
|
|
1451 ?\Í
|
|
1452 ?\Ó
|
|
1453 ?\Ú
|
|
1454 ?\¿
|
|
1455 nil
|
|
1456 ?\¬
|
|
1457 ?\½
|
|
1458 ?\¼
|
|
1459 ?\¡
|
|
1460 ?\«
|
|
1461 ?\»
|
|
1462 ?\░
|
|
1463 ?\▒
|
|
1464 ?\▓
|
|
1465 ?\│
|
|
1466 ?\┤
|
|
1467 ?\╡
|
|
1468 ?\╢
|
|
1469 ?\╖
|
|
1470 ?\╕
|
|
1471 ?\╣
|
|
1472 ?\║
|
|
1473 ?\╗
|
|
1474 ?\╝
|
|
1475 ?\╜
|
|
1476 ?\╛
|
|
1477 ?\┐
|
|
1478 ?\└
|
|
1479 ?\┴
|
|
1480 ?\┬
|
|
1481 ?\├
|
|
1482 ?\─
|
|
1483 ?\┼
|
|
1484 ?\╞
|
|
1485 ?\╟
|
|
1486 ?\╚
|
|
1487 ?\╔
|
|
1488 ?\╩
|
|
1489 ?\╦
|
|
1490 ?\╠
|
|
1491 ?\═
|
|
1492 ?\╬
|
|
1493 ?\╧
|
|
1494 ?\╨
|
|
1495 ?\╤
|
|
1496 ?\╥
|
|
1497 ?\╙
|
|
1498 ?\╘
|
|
1499 ?\╒
|
|
1500 ?\╓
|
|
1501 ?\╫
|
|
1502 ?\╪
|
|
1503 ?\┘
|
|
1504 ?\┌
|
|
1505 ?\█
|
|
1506 ?\▄
|
|
1507 ?\▌
|
|
1508 ?\▐
|
|
1509 ?\▀
|
|
1510 ?\α
|
|
1511 ?\ß
|
|
1512 ?\Γ
|
|
1513 ?\π
|
|
1514 ?\Σ
|
|
1515 ?\σ
|
|
1516 ?\µ
|
|
1517 ?\τ
|
|
1518 ?\Φ
|
|
1519 ?\Θ
|
|
1520 ?\Ω
|
|
1521 ?\δ
|
|
1522 ?\∞
|
|
1523 ?\φ
|
|
1524 ?\ε
|
|
1525 ?\∩
|
|
1526 ?\≡
|
|
1527 ?\±
|
|
1528 ?\≥
|
|
1529 ?\≤
|
|
1530 ?\⌠
|
|
1531 ?\⌡
|
|
1532 ?\÷
|
|
1533 ?\≈
|
|
1534 ?\°
|
|
1535 ?\·
|
|
1536 ?\•
|
|
1537 ?\√
|
|
1538 ?\ⁿ
|
|
1539 ?\²
|
|
1540 ?\■
|
|
1541 ?\ ])
|
|
1542
|
|
1543 (cp-make-coding-system
|
|
1544 cp862
|
|
1545 [?\א
|
|
1546 ?\ב
|
|
1547 ?\ג
|
|
1548 ?\ד
|
|
1549 ?\ה
|
|
1550 ?\ו
|
|
1551 ?\ז
|
|
1552 ?\ח
|
|
1553 ?\ט
|
|
1554 ?\י
|
|
1555 ?\ך
|
|
1556 ?\כ
|
|
1557 ?\ל
|
|
1558 ?\ם
|
|
1559 ?\מ
|
|
1560 ?\ן
|
|
1561 ?\נ
|
|
1562 ?\ס
|
|
1563 ?\ע
|
|
1564 ?\ף
|
|
1565 ?\פ
|
|
1566 ?\ץ
|
|
1567 ?\צ
|
|
1568 ?\ק
|
|
1569 ?\ר
|
|
1570 ?\ש
|
|
1571 ?\ת
|
|
1572 ?\¢
|
|
1573 ?\£
|
|
1574 ?\Ù
|
|
1575 ?\₧
|
|
1576 ?\Ò
|
|
1577 ?\á
|
|
1578 ?\í
|
|
1579 ?\ó
|
|
1580 ?\ú
|
|
1581 ?\ñ
|
|
1582 ?\Ñ
|
|
1583 ?\ª
|
|
1584 ?\º
|
|
1585 ?\¿
|
|
1586 nil
|
|
1587 ?\¬
|
|
1588 ?\½
|
|
1589 ?\¼
|
|
1590 ?\¡
|
|
1591 ?\«
|
|
1592 ?\»
|
|
1593 ?\░
|
|
1594 ?\▒
|
|
1595 ?\▓
|
|
1596 ?\│
|
|
1597 ?\┤
|
|
1598 ?\╡
|
|
1599 ?\╢
|
|
1600 ?\╖
|
|
1601 ?\╕
|
|
1602 ?\╣
|
|
1603 ?\║
|
|
1604 ?\╗
|
|
1605 ?\╝
|
|
1606 ?\╜
|
|
1607 ?\╛
|
|
1608 ?\┐
|
|
1609 ?\└
|
|
1610 ?\┴
|
|
1611 ?\┬
|
|
1612 ?\├
|
|
1613 ?\─
|
|
1614 ?\┼
|
|
1615 ?\╞
|
|
1616 ?\╟
|
|
1617 ?\╚
|
|
1618 ?\╔
|
|
1619 ?\╩
|
|
1620 ?\╦
|
|
1621 ?\╠
|
|
1622 ?\═
|
|
1623 ?\╬
|
|
1624 ?\╧
|
|
1625 ?\╨
|
|
1626 ?\╤
|
|
1627 ?\╥
|
|
1628 ?\╙
|
|
1629 ?\╘
|
|
1630 ?\╒
|
|
1631 ?\╓
|
|
1632 ?\╫
|
|
1633 ?\╪
|
|
1634 ?\┘
|
|
1635 ?\┌
|
|
1636 ?\█
|
|
1637 ?\▄
|
|
1638 ?\▌
|
|
1639 ?\▐
|
|
1640 ?\▀
|
|
1641 ?\α
|
|
1642 ?\ß
|
|
1643 ?\Γ
|
|
1644 ?\π
|
|
1645 ?\Σ
|
|
1646 ?\σ
|
|
1647 ?\µ
|
|
1648 ?\τ
|
|
1649 ?\Φ
|
|
1650 ?\Θ
|
|
1651 ?\Ω
|
|
1652 ?\δ
|
|
1653 ?\∞
|
|
1654 ?\φ
|
|
1655 ?\ε
|
|
1656 ?\∩
|
|
1657 ?\≡
|
|
1658 ?\±
|
|
1659 ?\≥
|
|
1660 ?\≤
|
|
1661 ?\⌠
|
|
1662 ?\⌡
|
|
1663 ?\÷
|
|
1664 ?\≈
|
|
1665 ?\°
|
|
1666 ?\·
|
|
1667 ?\•
|
|
1668 ?\√
|
|
1669 ?\ⁿ
|
|
1670 ?\²
|
|
1671 ?\■
|
|
1672 ?\ ])
|
|
1673
|
|
1674 (cp-make-coding-system
|
|
1675 cp863
|
|
1676 [?\Ç
|
|
1677 ?\ü
|
|
1678 ?\é
|
|
1679 ?\â
|
|
1680 ?\Â
|
|
1681 ?\à
|
|
1682 ?\¶
|
|
1683 ?\ç
|
|
1684 ?\ê
|
|
1685 ?\ë
|
|
1686 ?\è
|
|
1687 ?\ï
|
|
1688 ?\î
|
|
1689 ?\ì
|
|
1690 ?\À
|
|
1691 ?\§
|
|
1692 ?\É
|
|
1693 ?\È
|
|
1694 ?\Ê
|
|
1695 ?\ô
|
|
1696 ?\Ë
|
|
1697 ?\Ï
|
|
1698 ?\û
|
|
1699 ?\ù
|
|
1700 ?\¤
|
|
1701 ?\Ô
|
|
1702 ?\Ü
|
|
1703 ?\¢
|
|
1704 ?\£
|
|
1705 ?\Ù
|
|
1706 ?\Û
|
|
1707 ?\ƒ
|
|
1708 ?\¦
|
|
1709 ?\´
|
|
1710 ?\ó
|
|
1711 ?\ú
|
|
1712 ?\¨
|
|
1713 ?\¸
|
|
1714 ?\³
|
|
1715 ?\¯
|
|
1716 ?\Î
|
|
1717 ?\⌐
|
|
1718 ?\¬
|
|
1719 ?\½
|
|
1720 ?\¼
|
|
1721 ?\¾
|
|
1722 ?\«
|
|
1723 ?\»
|
|
1724 ?\░
|
|
1725 ?\▒
|
|
1726 ?\▓
|
|
1727 ?\│
|
|
1728 ?\┤
|
|
1729 ?\╡
|
|
1730 ?\╢
|
|
1731 ?\╖
|
|
1732 ?\╕
|
|
1733 ?\╣
|
|
1734 ?\║
|
|
1735 ?\╗
|
|
1736 ?\╝
|
|
1737 ?\╜
|
|
1738 ?\╛
|
|
1739 ?\┐
|
|
1740 ?\└
|
|
1741 ?\┴
|
|
1742 ?\┬
|
|
1743 ?\├
|
|
1744 ?\─
|
|
1745 ?\┼
|
|
1746 ?\╞
|
|
1747 ?\╟
|
|
1748 ?\╚
|
|
1749 ?\╔
|
|
1750 ?\╩
|
|
1751 ?\╦
|
|
1752 ?\╠
|
|
1753 ?\═
|
|
1754 ?\╬
|
|
1755 ?\╧
|
|
1756 ?\╨
|
|
1757 ?\╤
|
|
1758 ?\╥
|
|
1759 ?\╙
|
|
1760 ?\╘
|
|
1761 ?\╒
|
|
1762 ?\╓
|
|
1763 ?\╫
|
|
1764 ?\╪
|
|
1765 ?\┘
|
|
1766 ?\┌
|
|
1767 ?\█
|
|
1768 ?\▄
|
|
1769 ?\▌
|
|
1770 ?\▐
|
|
1771 ?\▀
|
|
1772 ?\α
|
|
1773 ?\ß
|
|
1774 ?\Γ
|
|
1775 ?\π
|
|
1776 ?\Σ
|
|
1777 ?\σ
|
|
1778 ?\µ
|
|
1779 ?\τ
|
|
1780 ?\Φ
|
|
1781 ?\Θ
|
|
1782 ?\Ω
|
|
1783 ?\δ
|
|
1784 ?\∞
|
|
1785 ?\∅
|
|
1786 ?\ε
|
|
1787 ?\∩
|
|
1788 ?\≡
|
|
1789 ?\±
|
|
1790 ?\≥
|
|
1791 ?\≤
|
|
1792 ?\⌠
|
|
1793 ?\⌡
|
|
1794 ?\÷
|
|
1795 ?\≈
|
|
1796 ?\∘
|
|
1797 ?\·
|
|
1798 ?\•
|
|
1799 ?\√
|
|
1800 ?\ⁿ
|
|
1801 ?\²
|
|
1802 ?\■
|
|
1803 ?\ ])
|
|
1804
|
|
1805 (cp-make-coding-system
|
|
1806 cp864
|
|
1807 [?\°
|
|
1808 ?\·
|
|
1809 ?\∘
|
|
1810 ?\√
|
|
1811 ?\▒
|
|
1812 ?\─
|
|
1813 ?\│
|
|
1814 ?\┼
|
|
1815 ?\┤
|
|
1816 ?\┬
|
|
1817 ?\├
|
|
1818 ?\┴
|
|
1819 ?\┐
|
|
1820 ?\┌
|
|
1821 ?\└
|
|
1822 ?\┘
|
|
1823 ?\ß
|
|
1824 ?\∞
|
|
1825 ?\ø
|
|
1826 ?\±
|
|
1827 ?\½
|
|
1828 ?\¼
|
|
1829 ?\≈
|
|
1830 ?\«
|
|
1831 ?\»
|
|
1832 ?\ﻷ
|
|
1833 ?\ﻸ
|
|
1834 nil
|
|
1835 nil
|
|
1836 ?\ﻻ
|
|
1837 ?\ﻼ
|
|
1838 ?\
|
|
1839 nil
|
|
1840 ?\
|
|
1841 ?\ﺂ
|
|
1842 ?\£
|
|
1843 ?\¤
|
|
1844 ?\ﺄ
|
|
1845 nil
|
|
1846 nil
|
|
1847 ?\ﺎ
|
|
1848 ?\ب
|
|
1849 ?\ت
|
|
1850 ?\ث
|
|
1851 ?\،
|
|
1852 ?\ج
|
|
1853 ?\ح
|
|
1854 ?\خ
|
|
1855 ?\٠
|
|
1856 ?\١
|
|
1857 ?\٢
|
|
1858 ?\٣
|
|
1859 ?\٤
|
|
1860 ?\٥
|
|
1861 ?\٦
|
|
1862 ?\٧
|
|
1863 ?\٨
|
|
1864 ?\٩
|
|
1865 ?\ڤ
|
|
1866 ?\؛
|
|
1867 ?\س
|
|
1868 ?\ش
|
|
1869 ?\ص
|
|
1870 ?\؟
|
|
1871 ?\¢
|
|
1872 ?\ء
|
|
1873 ?\آ
|
|
1874 ?\أ
|
|
1875 ?\ؤ
|
|
1876 ?\ﻊ
|
|
1877 ?\ئ
|
|
1878 ?\ا
|
|
1879 ?\ﺑ
|
|
1880 ?\ة
|
|
1881 ?\ﺗ
|
|
1882 ?\ﺛ
|
|
1883 ?\ﺟ
|
|
1884 ?\ﺣ
|
|
1885 ?\ﺧ
|
|
1886 ?\د
|
|
1887 ?\ذ
|
|
1888 ?\ر
|
|
1889 ?\ز
|
|
1890 ?\ﺳ
|
|
1891 ?\ﺷ
|
|
1892 ?\ﺻ
|
|
1893 ?\ﺿ
|
|
1894 ?\ط
|
|
1895 ?\ظ
|
|
1896 ?\ﻋ
|
|
1897 ?\ﻏ
|
|
1898 ?\¦
|
|
1899 ?\¬
|
|
1900 ?\÷
|
|
1901 ?\×
|
|
1902 ?\ع
|
|
1903 ?\ـ
|
|
1904 ?\ﻒ
|
|
1905 ?\ﻖ
|
|
1906 ?\ﻛ
|
|
1907 ?\ﻞ
|
|
1908 ?\ﻣ
|
|
1909 ?\ﻦ
|
|
1910 ?\ﻫ
|
|
1911 ?\و
|
|
1912 ?\ى
|
|
1913 ?\ﻳ
|
|
1914 ?\ض
|
|
1915 ?\ﻢ
|
|
1916 ?\ﻎ
|
|
1917 ?\غ
|
|
1918 ?\م
|
|
1919 ?\ﹽ
|
|
1920 ?\ّ
|
|
1921 ?\ن
|
|
1922 ?\ه
|
|
1923 ?\ﻬ
|
|
1924 ?\ﻰ
|
|
1925 ?\ﻲ
|
|
1926 ?\ف
|
|
1927 ?\ق
|
|
1928 ?\ﻵ
|
|
1929 ?\ﻶ
|
|
1930 ?\ل
|
|
1931 ?\ك
|
|
1932 ?\ي
|
|
1933 ?\■
|
|
1934 ?\ ])
|
|
1935
|
|
1936 (cp-make-coding-system
|
|
1937 cp865
|
|
1938 [?\Ç
|
|
1939 ?\ü
|
|
1940 ?\é
|
|
1941 ?\â
|
|
1942 ?\ä
|
|
1943 ?\à
|
|
1944 ?\å
|
|
1945 ?\ç
|
|
1946 ?\ê
|
|
1947 ?\ë
|
|
1948 ?\è
|
|
1949 ?\ï
|
|
1950 ?\î
|
|
1951 ?\ì
|
|
1952 ?\Ä
|
|
1953 ?\Å
|
|
1954 ?\É
|
|
1955 ?\æ
|
|
1956 ?\Æ
|
|
1957 ?\ô
|
|
1958 ?\ö
|
|
1959 ?\ò
|
|
1960 ?\û
|
|
1961 ?\ù
|
|
1962 ?\ÿ
|
|
1963 ?\Ö
|
|
1964 ?\Ü
|
|
1965 ?\ø
|
|
1966 ?\£
|
|
1967 ?\Ø
|
|
1968 ?\₧
|
|
1969 ?\ƒ
|
|
1970 ?\á
|
|
1971 ?\í
|
|
1972 ?\ó
|
|
1973 ?\ú
|
|
1974 ?\ñ
|
|
1975 ?\Ñ
|
|
1976 ?\ª
|
|
1977 ?\º
|
|
1978 ?\¿
|
|
1979 ?\⌐
|
|
1980 ?\¬
|
|
1981 ?\½
|
|
1982 ?\¼
|
|
1983 ?\¡
|
|
1984 ?\«
|
|
1985 ?\»
|
|
1986 ?\░
|
|
1987 ?\▒
|
|
1988 ?\▓
|
|
1989 ?\│
|
|
1990 ?\┤
|
|
1991 ?\╡
|
|
1992 ?\╢
|
|
1993 ?\╖
|
|
1994 ?\╕
|
|
1995 ?\╣
|
|
1996 ?\║
|
|
1997 ?\╗
|
|
1998 ?\╝
|
|
1999 ?\╜
|
|
2000 ?\╛
|
|
2001 ?\┐
|
|
2002 ?\└
|
|
2003 ?\┴
|
|
2004 ?\┬
|
|
2005 ?\├
|
|
2006 ?\─
|
|
2007 ?\┼
|
|
2008 ?\╞
|
|
2009 ?\╟
|
|
2010 ?\╚
|
|
2011 ?\╔
|
|
2012 ?\╩
|
|
2013 ?\╦
|
|
2014 ?\╠
|
|
2015 ?\═
|
|
2016 ?\╬
|
|
2017 ?\╧
|
|
2018 ?\╨
|
|
2019 ?\╤
|
|
2020 ?\╥
|
|
2021 ?\╙
|
|
2022 ?\╘
|
|
2023 ?\╒
|
|
2024 ?\╓
|
|
2025 ?\╫
|
|
2026 ?\╪
|
|
2027 ?\┘
|
|
2028 ?\┌
|
|
2029 ?\█
|
|
2030 ?\▄
|
|
2031 ?\▌
|
|
2032 ?\▐
|
|
2033 ?\▀
|
|
2034 ?\α
|
|
2035 ?\ß
|
|
2036 ?\Γ
|
|
2037 ?\π
|
|
2038 ?\Σ
|
|
2039 ?\σ
|
|
2040 ?\µ
|
|
2041 ?\τ
|
|
2042 ?\Φ
|
|
2043 ?\Θ
|
|
2044 ?\Ω
|
|
2045 ?\δ
|
|
2046 ?\∞
|
|
2047 ?\∅
|
|
2048 ?\ε
|
|
2049 ?\∩
|
|
2050 ?\≡
|
|
2051 ?\±
|
|
2052 ?\≥
|
|
2053 ?\≤
|
|
2054 ?\⌠
|
|
2055 ?\⌡
|
|
2056 ?\÷
|
|
2057 ?\≈
|
|
2058 ?\∘
|
|
2059 ?\·
|
|
2060 ?\•
|
|
2061 ?\√
|
|
2062 ?\ⁿ
|
|
2063 ?\²
|
|
2064 ?\■
|
|
2065 ?\ ])
|
|
2066
|
47911
|
2067 (cp-make-coding-system
|
|
2068 cp866
|
|
2069 [?\А
|
|
2070 ?\Б
|
|
2071 ?\В
|
|
2072 ?\Г
|
|
2073 ?\Д
|
|
2074 ?\Е
|
|
2075 ?\Ж
|
|
2076 ?\З
|
|
2077 ?\И
|
|
2078 ?\Й
|
|
2079 ?\К
|
|
2080 ?\Л
|
|
2081 ?\М
|
|
2082 ?\Н
|
|
2083 ?\О
|
|
2084 ?\П
|
|
2085 ?\Р
|
|
2086 ?\С
|
|
2087 ?\Т
|
|
2088 ?\У
|
|
2089 ?\Ф
|
|
2090 ?\Х
|
|
2091 ?\Ц
|
|
2092 ?\Ч
|
|
2093 ?\Ш
|
|
2094 ?\Щ
|
|
2095 ?\Ъ
|
|
2096 ?\Ы
|
|
2097 ?\Ь
|
|
2098 ?\Э
|
|
2099 ?\Ю
|
|
2100 ?\Я
|
|
2101 ?\а
|
|
2102 ?\б
|
|
2103 ?\в
|
|
2104 ?\г
|
|
2105 ?\д
|
|
2106 ?\е
|
|
2107 ?\ж
|
|
2108 ?\з
|
|
2109 ?\и
|
|
2110 ?\й
|
|
2111 ?\к
|
|
2112 ?\л
|
|
2113 ?\м
|
|
2114 ?\н
|
|
2115 ?\о
|
|
2116 ?\п
|
|
2117 ?\░
|
|
2118 ?\▒
|
|
2119 ?\▓
|
|
2120 ?\│
|
|
2121 ?\┤
|
|
2122 ?\╡
|
|
2123 ?\╢
|
|
2124 ?\╖
|
|
2125 ?\╕
|
|
2126 ?\╣
|
|
2127 ?\║
|
|
2128 ?\╗
|
|
2129 ?\╝
|
|
2130 ?\╜
|
|
2131 ?\╛
|
|
2132 ?\┐
|
|
2133 ?\└
|
|
2134 ?\┴
|
|
2135 ?\┬
|
|
2136 ?\├
|
|
2137 ?\─
|
|
2138 ?\┼
|
|
2139 ?\╞
|
|
2140 ?\╟
|
|
2141 ?\╚
|
|
2142 ?\╔
|
|
2143 ?\╩
|
|
2144 ?\╦
|
|
2145 ?\╠
|
|
2146 ?\═
|
|
2147 ?\╬
|
|
2148 ?\╧
|
|
2149 ?\╨
|
|
2150 ?\╤
|
|
2151 ?\╥
|
|
2152 ?\╙
|
|
2153 ?\╘
|
|
2154 ?\╒
|
|
2155 ?\╓
|
|
2156 ?\╫
|
|
2157 ?\╪
|
|
2158 ?\┘
|
|
2159 ?\┌
|
|
2160 ?\█
|
|
2161 ?\▄
|
|
2162 ?\▌
|
|
2163 ?\▐
|
|
2164 ?\▀
|
|
2165 ?\р
|
|
2166 ?\с
|
|
2167 ?\т
|
|
2168 ?\у
|
|
2169 ?\ф
|
|
2170 ?\х
|
|
2171 ?\ц
|
|
2172 ?\ч
|
|
2173 ?\ш
|
|
2174 ?\щ
|
|
2175 ?\ъ
|
|
2176 ?\ы
|
|
2177 ?\ь
|
|
2178 ?\э
|
|
2179 ?\ю
|
|
2180 ?\я
|
|
2181 ?\Ё
|
|
2182 ?\ё
|
|
2183 ?\Є
|
|
2184 ?\є
|
|
2185 ?\Ї
|
|
2186 ?\ї
|
|
2187 ?\Ў
|
|
2188 ?\ў
|
|
2189 ?\°
|
|
2190 ?\∙
|
|
2191 ?\·
|
|
2192 ?\√
|
|
2193 ?\№
|
|
2194 ?\¤
|
|
2195 ?\■
|
|
2196 ?\ ]
|
|
2197 "CP866 (Cyrillic)."
|
|
2198 ?A)
|
42057
|
2199
|
|
2200 (cp-make-coding-system
|
|
2201 cp869
|
|
2202 [nil
|
|
2203 nil
|
|
2204 nil
|
|
2205 nil
|
|
2206 nil
|
|
2207 nil
|
|
2208 ?\Ά
|
|
2209 nil
|
|
2210 ?\·
|
|
2211 ?\¬
|
|
2212 ?\¦
|
|
2213 ?\‛
|
|
2214 ?\’
|
|
2215 ?\Έ
|
|
2216 ?\—
|
|
2217 ?\Ή
|
|
2218 ?\Ί
|
|
2219 ?\Ϊ
|
|
2220 ?\Ό
|
|
2221 nil
|
|
2222 nil
|
|
2223 ?\Ύ
|
|
2224 ?\Ϋ
|
|
2225 ?\©
|
|
2226 ?\Ώ
|
|
2227 ?\²
|
|
2228 ?\³
|
|
2229 ?\ά
|
|
2230 ?\£
|
|
2231 ?\έ
|
|
2232 ?\ή
|
|
2233 ?\ί
|
|
2234 ?\ϊ
|
|
2235 ?\ΐ
|
|
2236 ?\ό
|
|
2237 ?\ύ
|
|
2238 ?\Α
|
|
2239 ?\Β
|
|
2240 ?\Γ
|
|
2241 ?\Δ
|
|
2242 ?\Ε
|
|
2243 ?\Ζ
|
|
2244 ?\Η
|
|
2245 ?\½
|
|
2246 ?\Θ
|
|
2247 ?\Ι
|
|
2248 ?\«
|
|
2249 ?\»
|
|
2250 ?\░
|
|
2251 ?\▒
|
|
2252 ?\▓
|
|
2253 ?\│
|
|
2254 ?\┤
|
|
2255 ?\Κ
|
|
2256 ?\Λ
|
|
2257 ?\Μ
|
|
2258 ?\Ν
|
|
2259 ?\╣
|
|
2260 ?\║
|
|
2261 ?\╗
|
|
2262 ?\╝
|
|
2263 ?\Ξ
|
|
2264 ?\Ο
|
|
2265 ?\┐
|
|
2266 ?\└
|
|
2267 ?\┴
|
|
2268 ?\┬
|
|
2269 ?\├
|
|
2270 ?\─
|
|
2271 ?\┼
|
|
2272 ?\Π
|
|
2273 ?\Ρ
|
|
2274 ?\╚
|
|
2275 ?\╔
|
|
2276 ?\╩
|
|
2277 ?\╦
|
|
2278 ?\╠
|
|
2279 ?\═
|
|
2280 ?\╬
|
|
2281 ?\Σ
|
|
2282 ?\Τ
|
|
2283 ?\Υ
|
|
2284 ?\Φ
|
|
2285 ?\Χ
|
|
2286 ?\Ψ
|
|
2287 ?\Ω
|
|
2288 ?\α
|
|
2289 ?\β
|
|
2290 ?\γ
|
|
2291 ?\┘
|
|
2292 ?\┌
|
|
2293 ?\█
|
|
2294 ?\▄
|
|
2295 ?\δ
|
|
2296 ?\ε
|
|
2297 ?\▀
|
|
2298 ?\ζ
|
|
2299 ?\η
|
|
2300 ?\θ
|
|
2301 ?\ι
|
|
2302 ?\κ
|
|
2303 ?\λ
|
|
2304 ?\μ
|
|
2305 ?\ν
|
|
2306 ?\ξ
|
|
2307 ?\ο
|
|
2308 ?\π
|
|
2309 ?\ρ
|
|
2310 ?\σ
|
|
2311 ?\ς
|
|
2312 ?\τ
|
|
2313 ?\´
|
|
2314 ?\
|
|
2315 ?\±
|
|
2316 ?\υ
|
|
2317 ?\φ
|
|
2318 ?\χ
|
|
2319 ?\§
|
|
2320 ?\ψ
|
|
2321 ?\΅
|
|
2322 ?\°
|
|
2323 ?\¨
|
|
2324 ?\ω
|
|
2325 ?\ϋ
|
|
2326 ?\ΰ
|
|
2327 ?\ώ
|
|
2328 ?\■
|
|
2329 ?\ ])
|
|
2330
|
|
2331 (cp-make-coding-system
|
|
2332 cp874
|
|
2333 [?\€
|
|
2334 nil
|
|
2335 nil
|
|
2336 nil
|
|
2337 nil
|
|
2338 ?\…
|
|
2339 nil
|
|
2340 nil
|
|
2341 nil
|
|
2342 nil
|
|
2343 nil
|
|
2344 nil
|
|
2345 nil
|
|
2346 nil
|
|
2347 nil
|
|
2348 nil
|
|
2349 nil
|
|
2350 ?\‘
|
|
2351 ?\’
|
|
2352 ?\“
|
|
2353 ?\”
|
|
2354 ?\•
|
|
2355 ?\–
|
|
2356 ?\—
|
|
2357 nil
|
|
2358 nil
|
|
2359 nil
|
|
2360 nil
|
|
2361 nil
|
|
2362 nil
|
|
2363 nil
|
|
2364 nil
|
|
2365 ?\
|
|
2366 ?\ก
|
|
2367 ?\ข
|
|
2368 ?\ฃ
|
|
2369 ?\ค
|
|
2370 ?\ฅ
|
|
2371 ?\ฆ
|
|
2372 ?\ง
|
|
2373 ?\จ
|
|
2374 ?\ฉ
|
|
2375 ?\ช
|
|
2376 ?\ซ
|
|
2377 ?\ฌ
|
|
2378 ?\ญ
|
|
2379 ?\ฎ
|
|
2380 ?\ฏ
|
|
2381 ?\ฐ
|
|
2382 ?\ฑ
|
|
2383 ?\ฒ
|
|
2384 ?\ณ
|
|
2385 ?\ด
|
|
2386 ?\ต
|
|
2387 ?\ถ
|
|
2388 ?\ท
|
|
2389 ?\ธ
|
|
2390 ?\น
|
|
2391 ?\บ
|
|
2392 ?\ป
|
|
2393 ?\ผ
|
|
2394 ?\ฝ
|
|
2395 ?\พ
|
|
2396 ?\ฟ
|
|
2397 ?\ภ
|
|
2398 ?\ม
|
|
2399 ?\ย
|
|
2400 ?\ร
|
|
2401 ?\ฤ
|
|
2402 ?\ล
|
|
2403 ?\ฦ
|
|
2404 ?\ว
|
|
2405 ?\ศ
|
|
2406 ?\ษ
|
|
2407 ?\ส
|
|
2408 ?\ห
|
|
2409 ?\ฬ
|
|
2410 ?\อ
|
|
2411 ?\ฮ
|
|
2412 ?\ฯ
|
|
2413 ?\ะ
|
|
2414 ?\ั
|
|
2415 ?\า
|
|
2416 ?\ำ
|
|
2417 ?\ิ
|
|
2418 ?\ี
|
|
2419 ?\ึ
|
|
2420 ?\ื
|
|
2421 ?\ุ
|
|
2422 ?\ู
|
|
2423 ?\ฺ
|
|
2424 nil
|
|
2425 nil
|
|
2426 nil
|
|
2427 nil
|
|
2428 ?\฿
|
|
2429 ?\เ
|
|
2430 ?\แ
|
|
2431 ?\โ
|
|
2432 ?\ใ
|
|
2433 ?\ไ
|
|
2434 ?\ๅ
|
|
2435 ?\ๆ
|
|
2436 ?\็
|
|
2437 ?\่
|
|
2438 ?\้
|
|
2439 ?\๊
|
|
2440 ?\๋
|
|
2441 ?\์
|
|
2442 ?\ํ
|
|
2443 ?\๎
|
|
2444 ?\๏
|
|
2445 ?\๐
|
|
2446 ?\๑
|
|
2447 ?\๒
|
|
2448 ?\๓
|
|
2449 ?\๔
|
|
2450 ?\๕
|
|
2451 ?\๖
|
|
2452 ?\๗
|
|
2453 ?\๘
|
|
2454 ?\๙
|
|
2455 ?\๚
|
|
2456 ?\๛
|
|
2457 nil
|
|
2458 nil
|
|
2459 nil
|
|
2460 nil])
|
|
2461
|
|
2462 (cp-make-coding-system
|
|
2463 windows-1250
|
|
2464 [?\€
|
|
2465 nil
|
|
2466 ?\‚
|
|
2467 nil
|
|
2468 ?\„
|
|
2469 ?\…
|
|
2470 ?\†
|
|
2471 ?\‡
|
|
2472 nil
|
|
2473 ?\‰
|
|
2474 ?\Š
|
|
2475 ?\‹
|
|
2476 ?\Ś
|
|
2477 ?\Ť
|
|
2478 ?\Ž
|
|
2479 ?\Ź
|
|
2480 nil
|
|
2481 ?\‘
|
|
2482 ?\’
|
|
2483 ?\“
|
|
2484 ?\”
|
|
2485 ?\•
|
|
2486 ?\–
|
|
2487 ?\—
|
|
2488 nil
|
|
2489 ?\™
|
|
2490 ?\š
|
|
2491 ?\›
|
|
2492 ?\ś
|
|
2493 ?\ť
|
|
2494 ?\ž
|
|
2495 ?\ź
|
|
2496 ?\
|
|
2497 ?\ˇ
|
|
2498 ?\˘
|
|
2499 ?\Ł
|
|
2500 ?\¤
|
|
2501 ?\Ą
|
|
2502 ?\¦
|
|
2503 ?\§
|
|
2504 ?\¨
|
|
2505 ?\©
|
|
2506 ?\Ş
|
|
2507 ?\«
|
|
2508 ?\¬
|
|
2509 ?\
|
|
2510 ?\®
|
|
2511 ?\Ż
|
|
2512 ?\°
|
|
2513 ?\±
|
|
2514 ?\˛
|
|
2515 ?\ł
|
|
2516 ?\´
|
|
2517 ?\µ
|
|
2518 ?\¶
|
|
2519 ?\·
|
|
2520 ?\¸
|
|
2521 ?\ą
|
|
2522 ?\ş
|
|
2523 ?\»
|
|
2524 ?\Ľ
|
|
2525 ?\˝
|
|
2526 ?\ľ
|
|
2527 ?\ż
|
|
2528 ?\Ŕ
|
|
2529 ?\Á
|
|
2530 ?\Â
|
|
2531 ?\Ă
|
|
2532 ?\Ä
|
|
2533 ?\Ĺ
|
|
2534 ?\Ć
|
|
2535 ?\Ç
|
|
2536 ?\Č
|
|
2537 ?\É
|
|
2538 ?\Ę
|
|
2539 ?\Ë
|
|
2540 ?\Ě
|
|
2541 ?\Í
|
|
2542 ?\Î
|
|
2543 ?\Ď
|
|
2544 ?\Đ
|
|
2545 ?\Ń
|
|
2546 ?\Ň
|
|
2547 ?\Ó
|
|
2548 ?\Ô
|
|
2549 ?\Ő
|
|
2550 ?\Ö
|
|
2551 ?\×
|
|
2552 ?\Ř
|
|
2553 ?\Ů
|
|
2554 ?\Ú
|
|
2555 ?\Ű
|
|
2556 ?\Ü
|
|
2557 ?\Ý
|
|
2558 ?\Ţ
|
|
2559 ?\ß
|
|
2560 ?\ŕ
|
|
2561 ?\á
|
|
2562 ?\â
|
|
2563 ?\ă
|
|
2564 ?\ä
|
|
2565 ?\ĺ
|
|
2566 ?\ć
|
|
2567 ?\ç
|
|
2568 ?\č
|
|
2569 ?\é
|
|
2570 ?\ę
|
|
2571 ?\ë
|
|
2572 ?\ě
|
|
2573 ?\í
|
|
2574 ?\î
|
|
2575 ?\ď
|
|
2576 ?\đ
|
|
2577 ?\ń
|
|
2578 ?\ň
|
|
2579 ?\ó
|
|
2580 ?\ô
|
|
2581 ?\ő
|
|
2582 ?\ö
|
|
2583 ?\÷
|
|
2584 ?\ř
|
|
2585 ?\ů
|
|
2586 ?\ú
|
|
2587 ?\ű
|
|
2588 ?\ü
|
|
2589 ?\ý
|
|
2590 ?\ţ
|
|
2591 ?\˙])
|
|
2592
|
|
2593 ;; be_BY, bg_BG
|
|
2594 (cp-make-coding-system
|
|
2595 windows-1251
|
|
2596 [?\Ђ
|
|
2597 ?\Ѓ
|
|
2598 ?\‚
|
|
2599 ?\ѓ
|
|
2600 ?\„
|
|
2601 ?\…
|
|
2602 ?\†
|
|
2603 ?\‡
|
|
2604 ?\€
|
|
2605 ?\‰
|
|
2606 ?\Љ
|
|
2607 ?\‹
|
|
2608 ?\Њ
|
|
2609 ?\Ќ
|
|
2610 ?\Ћ
|
|
2611 ?\Џ
|
|
2612 ?\ђ
|
|
2613 ?\‘
|
|
2614 ?\’
|
|
2615 ?\“
|
|
2616 ?\”
|
|
2617 ?\•
|
|
2618 ?\–
|
|
2619 ?\—
|
|
2620 nil
|
|
2621 ?\™
|
|
2622 ?\љ
|
|
2623 ?\›
|
|
2624 ?\њ
|
|
2625 ?\ќ
|
|
2626 ?\ћ
|
|
2627 ?\џ
|
|
2628 ?\
|
|
2629 ?\Ў
|
|
2630 ?\ў
|
|
2631 ?\Ј
|
|
2632 ?\¤
|
|
2633 ?\Ґ
|
|
2634 ?\¦
|
|
2635 ?\§
|
|
2636 ?\Ё
|
|
2637 ?\©
|
|
2638 ?\Є
|
|
2639 ?\«
|
|
2640 ?\¬
|
|
2641 ?\
|
|
2642 ?\®
|
|
2643 ?\Ї
|
|
2644 ?\°
|
|
2645 ?\±
|
|
2646 ?\І
|
|
2647 ?\і
|
|
2648 ?\ґ
|
|
2649 ?\µ
|
|
2650 ?\¶
|
|
2651 ?\·
|
|
2652 ?\ё
|
|
2653 ?\№
|
|
2654 ?\є
|
|
2655 ?\»
|
|
2656 ?\ј
|
|
2657 ?\Ѕ
|
|
2658 ?\ѕ
|
|
2659 ?\ї
|
|
2660 ?\А
|
|
2661 ?\Б
|
|
2662 ?\В
|
|
2663 ?\Г
|
|
2664 ?\Д
|
|
2665 ?\Е
|
|
2666 ?\Ж
|
|
2667 ?\З
|
|
2668 ?\И
|
|
2669 ?\Й
|
|
2670 ?\К
|
|
2671 ?\Л
|
|
2672 ?\М
|
|
2673 ?\Н
|
|
2674 ?\О
|
|
2675 ?\П
|
|
2676 ?\Р
|
|
2677 ?\С
|
|
2678 ?\Т
|
|
2679 ?\У
|
|
2680 ?\Ф
|
|
2681 ?\Х
|
|
2682 ?\Ц
|
|
2683 ?\Ч
|
|
2684 ?\Ш
|
|
2685 ?\Щ
|
|
2686 ?\Ъ
|
|
2687 ?\Ы
|
|
2688 ?\Ь
|
|
2689 ?\Э
|
|
2690 ?\Ю
|
|
2691 ?\Я
|
|
2692 ?\а
|
|
2693 ?\б
|
|
2694 ?\в
|
|
2695 ?\г
|
|
2696 ?\д
|
|
2697 ?\е
|
|
2698 ?\ж
|
|
2699 ?\з
|
|
2700 ?\и
|
|
2701 ?\й
|
|
2702 ?\к
|
|
2703 ?\л
|
|
2704 ?\м
|
|
2705 ?\н
|
|
2706 ?\о
|
|
2707 ?\п
|
|
2708 ?\р
|
|
2709 ?\с
|
|
2710 ?\т
|
|
2711 ?\у
|
|
2712 ?\ф
|
|
2713 ?\х
|
|
2714 ?\ц
|
|
2715 ?\ч
|
|
2716 ?\ш
|
|
2717 ?\щ
|
|
2718 ?\ъ
|
|
2719 ?\ы
|
|
2720 ?\ь
|
|
2721 ?\э
|
|
2722 ?\ю
|
|
2723 ?\я]
|
|
2724 nil ?b)
|
|
2725
|
|
2726 (cp-make-coding-system
|
|
2727 windows-1252
|
|
2728 [?\€
|
|
2729 nil
|
|
2730 ?\‚
|
|
2731 ?\ƒ
|
|
2732 ?\„
|
|
2733 ?\…
|
|
2734 ?\†
|
|
2735 ?\‡
|
|
2736 ?\ˆ
|
|
2737 ?\‰
|
|
2738 ?\Š
|
|
2739 ?\‹
|
|
2740 ?\Œ
|
|
2741 nil
|
|
2742 ?\Ž
|
|
2743 ?\ž
|
|
2744 nil
|
|
2745 ?\‘
|
|
2746 ?\’
|
|
2747 ?\“
|
|
2748 ?\”
|
|
2749 ?\•
|
|
2750 ?\–
|
|
2751 ?\—
|
|
2752 ?\˜
|
|
2753 ?\™
|
|
2754 ?\š
|
|
2755 ?\›
|
|
2756 ?\œ
|
|
2757 nil
|
|
2758 nil
|
|
2759 ?\Ÿ
|
|
2760 ?\
|
|
2761 ?\¡
|
|
2762 ?\¢
|
|
2763 ?\£
|
|
2764 ?\¤
|
|
2765 ?\¥
|
|
2766 ?\¦
|
|
2767 ?\§
|
|
2768 ?\¨
|
|
2769 ?\©
|
|
2770 ?\ª
|
|
2771 ?\«
|
|
2772 ?\¬
|
|
2773 ?\
|
|
2774 ?\®
|
|
2775 ?\¯
|
|
2776 ?\°
|
|
2777 ?\±
|
|
2778 ?\²
|
|
2779 ?\³
|
|
2780 ?\´
|
|
2781 ?\µ
|
|
2782 ?\¶
|
|
2783 ?\·
|
|
2784 ?\¸
|
|
2785 ?\¹
|
|
2786 ?\º
|
|
2787 ?\»
|
|
2788 ?\¼
|
|
2789 ?\½
|
|
2790 ?\¾
|
|
2791 ?\¿
|
|
2792 ?\À
|
|
2793 ?\Á
|
|
2794 ?\Â
|
|
2795 ?\Ã
|
|
2796 ?\Ä
|
|
2797 ?\Å
|
|
2798 ?\Æ
|
|
2799 ?\Ç
|
|
2800 ?\È
|
|
2801 ?\É
|
|
2802 ?\Ê
|
|
2803 ?\Ë
|
|
2804 ?\Ì
|
|
2805 ?\Í
|
|
2806 ?\Î
|
|
2807 ?\Ï
|
|
2808 ?\Ð
|
|
2809 ?\Ñ
|
|
2810 ?\Ò
|
|
2811 ?\Ó
|
|
2812 ?\Ô
|
|
2813 ?\Õ
|
|
2814 ?\Ö
|
|
2815 ?\×
|
|
2816 ?\Ø
|
|
2817 ?\Ù
|
|
2818 ?\Ú
|
|
2819 ?\Û
|
|
2820 ?\Ü
|
|
2821 ?\Ý
|
|
2822 ?\Þ
|
|
2823 ?\ß
|
|
2824 ?\à
|
|
2825 ?\á
|
|
2826 ?\â
|
|
2827 ?\ã
|
|
2828 ?\ä
|
|
2829 ?\å
|
|
2830 ?\æ
|
|
2831 ?\ç
|
|
2832 ?\è
|
|
2833 ?\é
|
|
2834 ?\ê
|
|
2835 ?\ë
|
|
2836 ?\ì
|
|
2837 ?\í
|
|
2838 ?\î
|
|
2839 ?\ï
|
|
2840 ?\ð
|
|
2841 ?\ñ
|
|
2842 ?\ò
|
|
2843 ?\ó
|
|
2844 ?\ô
|
|
2845 ?\õ
|
|
2846 ?\ö
|
|
2847 ?\÷
|
|
2848 ?\ø
|
|
2849 ?\ù
|
|
2850 ?\ú
|
|
2851 ?\û
|
|
2852 ?\ü
|
|
2853 ?\ý
|
|
2854 ?\þ
|
|
2855 ?\ÿ])
|
|
2856
|
|
2857 (cp-make-coding-system
|
|
2858 windows-1253
|
|
2859 [?\€
|
|
2860 nil
|
|
2861 ?\‚
|
|
2862 ?\ƒ
|
|
2863 ?\„
|
|
2864 ?\…
|
|
2865 ?\†
|
|
2866 ?\‡
|
|
2867 nil
|
|
2868 ?\‰
|
|
2869 nil
|
|
2870 ?\‹
|
|
2871 nil
|
|
2872 nil
|
|
2873 nil
|
|
2874 nil
|
|
2875 nil
|
|
2876 ?\‘
|
|
2877 ?\’
|
|
2878 ?\“
|
|
2879 ?\”
|
|
2880 ?\•
|
|
2881 ?\–
|
|
2882 ?\—
|
|
2883 nil
|
|
2884 ?\™
|
|
2885 nil
|
|
2886 ?\›
|
|
2887 nil
|
|
2888 nil
|
|
2889 nil
|
|
2890 nil
|
|
2891 ?\
|
|
2892 ?\΅
|
|
2893 ?\Ά
|
|
2894 ?\£
|
|
2895 ?\¤
|
|
2896 ?\¥
|
|
2897 ?\¦
|
|
2898 ?\§
|
|
2899 ?\¨
|
|
2900 ?\©
|
|
2901 nil
|
|
2902 ?\«
|
|
2903 ?\¬
|
|
2904 ?\
|
|
2905 ?\®
|
|
2906 ?\―
|
|
2907 ?\°
|
|
2908 ?\±
|
|
2909 ?\²
|
|
2910 ?\³
|
|
2911 ?\΄
|
|
2912 ?\µ
|
|
2913 ?\¶
|
|
2914 ?\·
|
|
2915 ?\Έ
|
|
2916 ?\Ή
|
|
2917 ?\Ί
|
|
2918 ?\»
|
|
2919 ?\Ό
|
|
2920 ?\½
|
|
2921 ?\Ύ
|
|
2922 ?\Ώ
|
|
2923 ?\ΐ
|
|
2924 ?\Α
|
|
2925 ?\Β
|
|
2926 ?\Γ
|
|
2927 ?\Δ
|
|
2928 ?\Ε
|
|
2929 ?\Ζ
|
|
2930 ?\Η
|
|
2931 ?\Θ
|
|
2932 ?\Ι
|
|
2933 ?\Κ
|
|
2934 ?\Λ
|
|
2935 ?\Μ
|
|
2936 ?\Ν
|
|
2937 ?\Ξ
|
|
2938 ?\Ο
|
|
2939 ?\Π
|
|
2940 ?\Ρ
|
|
2941 nil
|
|
2942 ?\Σ
|
|
2943 ?\Τ
|
|
2944 ?\Υ
|
|
2945 ?\Φ
|
|
2946 ?\Χ
|
|
2947 ?\Ψ
|
|
2948 ?\Ω
|
|
2949 ?\Ϊ
|
|
2950 ?\Ϋ
|
|
2951 ?\ά
|
|
2952 ?\έ
|
|
2953 ?\ή
|
|
2954 ?\ί
|
|
2955 ?\ΰ
|
|
2956 ?\α
|
|
2957 ?\β
|
|
2958 ?\γ
|
|
2959 ?\δ
|
|
2960 ?\ε
|
|
2961 ?\ζ
|
|
2962 ?\η
|
|
2963 ?\θ
|
|
2964 ?\ι
|
|
2965 ?\κ
|
|
2966 ?\λ
|
|
2967 ?\μ
|
|
2968 ?\ν
|
|
2969 ?\ξ
|
|
2970 ?\ο
|
|
2971 ?\π
|
|
2972 ?\ρ
|
|
2973 ?\ς
|
|
2974 ?\σ
|
|
2975 ?\τ
|
|
2976 ?\υ
|
|
2977 ?\φ
|
|
2978 ?\χ
|
|
2979 ?\ψ
|
|
2980 ?\ω
|
|
2981 ?\ϊ
|
|
2982 ?\ϋ
|
|
2983 ?\ό
|
|
2984 ?\ύ
|
|
2985 ?\ώ
|
|
2986 nil]
|
|
2987 nil ?g) ;; Greek
|
|
2988
|
|
2989 (cp-make-coding-system
|
|
2990 windows-1254
|
|
2991 [?\€
|
|
2992 nil
|
|
2993 ?\‚
|
|
2994 ?\ƒ
|
|
2995 ?\„
|
|
2996 ?\…
|
|
2997 ?\†
|
|
2998 ?\‡
|
|
2999 ?\ˆ
|
|
3000 ?\‰
|
|
3001 ?\Š
|
|
3002 ?\‹
|
|
3003 ?\Œ
|
|
3004 nil
|
|
3005 nil
|
|
3006 nil
|
|
3007 nil
|
|
3008 ?\‘
|
|
3009 ?\’
|
|
3010 ?\“
|
|
3011 ?\”
|
|
3012 ?\•
|
|
3013 ?\–
|
|
3014 ?\—
|
|
3015 ?\˜
|
|
3016 ?\™
|
|
3017 ?\š
|
|
3018 ?\›
|
|
3019 ?\œ
|
|
3020 nil
|
|
3021 nil
|
|
3022 ?\Ÿ
|
|
3023 ?\
|
|
3024 ?\¡
|
|
3025 ?\¢
|
|
3026 ?\£
|
|
3027 ?\¤
|
|
3028 ?\¥
|
|
3029 ?\¦
|
|
3030 ?\§
|
|
3031 ?\¨
|
|
3032 ?\©
|
|
3033 ?\ª
|
|
3034 ?\«
|
|
3035 ?\¬
|
|
3036 ?\
|
|
3037 ?\®
|
|
3038 ?\¯
|
|
3039 ?\°
|
|
3040 ?\±
|
|
3041 ?\²
|
|
3042 ?\³
|
|
3043 ?\´
|
|
3044 ?\µ
|
|
3045 ?\¶
|
|
3046 ?\·
|
|
3047 ?\¸
|
|
3048 ?\¹
|
|
3049 ?\º
|
|
3050 ?\»
|
|
3051 ?\¼
|
|
3052 ?\½
|
|
3053 ?\¾
|
|
3054 ?\¿
|
|
3055 ?\À
|
|
3056 ?\Á
|
|
3057 ?\Â
|
|
3058 ?\Ã
|
|
3059 ?\Ä
|
|
3060 ?\Å
|
|
3061 ?\Æ
|
|
3062 ?\Ç
|
|
3063 ?\È
|
|
3064 ?\É
|
|
3065 ?\Ê
|
|
3066 ?\Ë
|
|
3067 ?\Ì
|
|
3068 ?\Í
|
|
3069 ?\Î
|
|
3070 ?\Ï
|
|
3071 ?\Ğ
|
|
3072 ?\Ñ
|
|
3073 ?\Ò
|
|
3074 ?\Ó
|
|
3075 ?\Ô
|
|
3076 ?\Õ
|
|
3077 ?\Ö
|
|
3078 ?\×
|
|
3079 ?\Ø
|
|
3080 ?\Ù
|
|
3081 ?\Ú
|
|
3082 ?\Û
|
|
3083 ?\Ü
|
|
3084 ?\İ
|
|
3085 ?\Ş
|
|
3086 ?\ß
|
|
3087 ?\à
|
|
3088 ?\á
|
|
3089 ?\â
|
|
3090 ?\ã
|
|
3091 ?\ä
|
|
3092 ?\å
|
|
3093 ?\æ
|
|
3094 ?\ç
|
|
3095 ?\è
|
|
3096 ?\é
|
|
3097 ?\ę
|
|
3098 ?\ë
|
|
3099 ?\ė
|
|
3100 ?\í
|
|
3101 ?\î
|
|
3102 ?\ī
|
|
3103 ?\ğ
|
|
3104 ?\ñ
|
|
3105 ?\ò
|
|
3106 ?\ó
|
|
3107 ?\ô
|
|
3108 ?\õ
|
|
3109 ?\ö
|
|
3110 ?\÷
|
|
3111 ?\ø
|
|
3112 ?\ù
|
|
3113 ?\ú
|
|
3114 ?\û
|
|
3115 ?\ü
|
|
3116 ?\ı
|
|
3117 ?\ş
|
|
3118 ?\ÿ])
|
|
3119
|
|
3120 ;; yi_US
|
|
3121 (cp-make-coding-system
|
|
3122 windows-1255
|
|
3123 [?\€
|
|
3124 nil
|
|
3125 ?\‚
|
|
3126 ?\ƒ
|
|
3127 ?\„
|
|
3128 ?\…
|
|
3129 ?\†
|
|
3130 ?\‡
|
|
3131 ?\ˆ
|
|
3132 ?\‰
|
|
3133 nil
|
|
3134 ?\‹
|
|
3135 nil
|
|
3136 nil
|
|
3137 nil
|
|
3138 nil
|
|
3139 nil
|
|
3140 ?\‘
|
|
3141 ?\’
|
|
3142 ?\“
|
|
3143 ?\”
|
|
3144 ?\•
|
|
3145 ?\–
|
|
3146 ?\—
|
|
3147 ?\˜
|
|
3148 ?\™
|
|
3149 nil
|
|
3150 ?\›
|
|
3151 nil
|
|
3152 nil
|
|
3153 nil
|
|
3154 nil
|
|
3155 ?\
|
|
3156 ?\¡
|
|
3157 ?\¢
|
|
3158 ?\£
|
|
3159 ?\₪
|
|
3160 ?\¥
|
|
3161 ?\¦
|
|
3162 ?\§
|
|
3163 ?\¨
|
|
3164 ?\©
|
|
3165 ?\×
|
|
3166 ?\«
|
|
3167 ?\¬
|
|
3168 ?\
|
|
3169 ?\®
|
|
3170 ?\¯
|
|
3171 ?\°
|
|
3172 ?\±
|
|
3173 ?\²
|
|
3174 ?\³
|
|
3175 ?\´
|
|
3176 ?\µ
|
|
3177 ?\¶
|
|
3178 ?\·
|
|
3179 ?\¸
|
|
3180 ?\¹
|
|
3181 ?\÷
|
|
3182 ?\»
|
|
3183 ?\¼
|
|
3184 ?\½
|
|
3185 ?\¾
|
|
3186 ?\¿
|
|
3187 ?\ְ
|
|
3188 ?\ֱ
|
|
3189 ?\ֲ
|
|
3190 ?\ֳ
|
|
3191 ?\ִ
|
|
3192 ?\ֵ
|
|
3193 ?\ֶ
|
|
3194 ?\ַ
|
|
3195 ?\ָ
|
|
3196 ?\ֹ
|
|
3197 nil
|
|
3198 ?\ֻ
|
|
3199 ?\ּ
|
|
3200 ?\ֽ
|
|
3201 ?\־
|
|
3202 ?\ֿ
|
|
3203 ?\׀
|
|
3204 ?\ׁ
|
|
3205 ?\ׂ
|
|
3206 ?\׃
|
|
3207 ?\װ
|
|
3208 ?\ױ
|
|
3209 ?\ײ
|
|
3210 ?\׳
|
|
3211 ?\״
|
|
3212 nil
|
|
3213 nil
|
|
3214 nil
|
|
3215 nil
|
|
3216 nil
|
|
3217 nil
|
|
3218 nil
|
|
3219 ?\א
|
|
3220 ?\ב
|
|
3221 ?\ג
|
|
3222 ?\ד
|
|
3223 ?\ה
|
|
3224 ?\ו
|
|
3225 ?\ז
|
|
3226 ?\ח
|
|
3227 ?\ט
|
|
3228 ?\י
|
|
3229 ?\ך
|
|
3230 ?\כ
|
|
3231 ?\ל
|
|
3232 ?\ם
|
|
3233 ?\מ
|
|
3234 ?\ן
|
|
3235 ?\נ
|
|
3236 ?\ס
|
|
3237 ?\ע
|
|
3238 ?\ף
|
|
3239 ?\פ
|
|
3240 ?\ץ
|
|
3241 ?\צ
|
|
3242 ?\ק
|
|
3243 ?\ר
|
|
3244 ?\ש
|
|
3245 ?\ת
|
|
3246 nil
|
|
3247 nil
|
|
3248 ?\
|
|
3249 ?\
|
|
3250 nil]
|
|
3251 nil ?h) ;; Hebrew
|
|
3252
|
|
3253 (cp-make-coding-system
|
|
3254 windows-1256
|
|
3255 [?\€
|
|
3256 ?\٠
|
|
3257 ?\‚
|
|
3258 ?\١
|
|
3259 ?\„
|
|
3260 ?\…
|
|
3261 ?\†
|
|
3262 ?\‡
|
|
3263 ?\٢
|
|
3264 ?\٣
|
|
3265 ?\٤
|
|
3266 ?\‹
|
|
3267 ?\٥
|
|
3268 ?\٦
|
|
3269 ?\٧
|
|
3270 ?\٨
|
|
3271 ?\٩
|
|
3272 ?\‘
|
|
3273 ?\’
|
|
3274 ?\“
|
|
3275 ?\”
|
|
3276 ?\•
|
|
3277 ?\–
|
|
3278 ?\—
|
|
3279 ?\؛
|
|
3280 ?\™
|
|
3281 ?\؟
|
|
3282 ?\›
|
|
3283 ?\ء
|
|
3284 ?\آ
|
|
3285 ?\أ
|
|
3286 ?\Ÿ
|
|
3287 ?\
|
|
3288 ?\ؤ
|
|
3289 ?\إ
|
|
3290 ?\£
|
|
3291 ?\¤
|
|
3292 ?\ئ
|
|
3293 ?\¦
|
|
3294 ?\§
|
|
3295 ?\ا
|
|
3296 ?\©
|
|
3297 ?\ب
|
|
3298 ?\«
|
|
3299 ?\¬
|
|
3300 ?\
|
|
3301 ?\®
|
|
3302 ?\پ
|
|
3303 ?\°
|
|
3304 ?\±
|
|
3305 ?\ة
|
|
3306 ?\ت
|
|
3307 ?\ث
|
|
3308 ?\µ
|
|
3309 ?\¶
|
|
3310 ?\·
|
|
3311 ?\ج
|
|
3312 ?\چ
|
|
3313 ?\ح
|
|
3314 ?\»
|
|
3315 ?\خ
|
|
3316 ?\د
|
|
3317 ?\ذ
|
|
3318 ?\ر
|
|
3319 ?\À
|
|
3320 ?\ز
|
|
3321 ?\Â
|
|
3322 ?\ژ
|
|
3323 ?\س
|
|
3324 ?\ش
|
|
3325 ?\ص
|
|
3326 ?\Ç
|
|
3327 ?\È
|
|
3328 ?\É
|
|
3329 ?\Ê
|
|
3330 ?\Ë
|
|
3331 ?\ض
|
|
3332 ?\ط
|
|
3333 ?\Î
|
|
3334 ?\Ï
|
|
3335 ?\ㄓ
|
|
3336 ?\ع
|
|
3337 ?\غ
|
|
3338 ?\ـ
|
|
3339 ?\Ô
|
|
3340 ?\ف
|
|
3341 ?\ق
|
|
3342 ?\×
|
|
3343 ?\ك
|
|
3344 ?\Ù
|
|
3345 ?\گ
|
|
3346 ?\Û
|
|
3347 ?\Ü
|
|
3348 ?\ل
|
|
3349 ?\م
|
|
3350 ?\ن
|
|
3351 ?\à
|
|
3352 ?\ه
|
|
3353 ?\â
|
|
3354 ?\ځ
|
|
3355 ?\و
|
|
3356 ?\ى
|
|
3357 ?\ي
|
|
3358 ?\ç
|
|
3359 ?\è
|
|
3360 ?\é
|
|
3361 ?\ê
|
|
3362 ?\ë
|
|
3363 ?\ً
|
|
3364 ?\ٌ
|
|
3365 ?\î
|
|
3366 ?\ï
|
|
3367 ?\ٍ
|
|
3368 ?\َ
|
|
3369 ?\ُ
|
|
3370 ?\ِ
|
|
3371 ?\ô
|
|
3372 ?\ّ
|
|
3373 ?\ْ
|
|
3374 ?\÷
|
|
3375 nil
|
|
3376 ?\ù
|
|
3377 nil
|
|
3378 ?\û
|
|
3379 ?\ü
|
|
3380 ?\
|
|
3381 ?\
|
|
3382 ?\ÿ]
|
|
3383 nil ?a) ;; Arabic
|
|
3384
|
|
3385 (cp-make-coding-system
|
|
3386 windows-1257
|
|
3387 [?\€
|
|
3388 nil
|
|
3389 ?\‚
|
|
3390 nil
|
|
3391 ?\„
|
|
3392 ?\…
|
|
3393 ?\†
|
|
3394 ?\‡
|
|
3395 nil
|
|
3396 ?\‰
|
|
3397 nil
|
|
3398 ?\‹
|
|
3399 nil
|
|
3400 nil
|
|
3401 nil
|
|
3402 nil
|
|
3403 nil
|
|
3404 ?\‘
|
|
3405 ?\’
|
|
3406 ?\“
|
|
3407 ?\”
|
|
3408 ?\•
|
|
3409 ?\–
|
|
3410 ?\—
|
|
3411 nil
|
|
3412 ?\™
|
|
3413 nil
|
|
3414 ?\›
|
|
3415 nil
|
|
3416 nil
|
|
3417 nil
|
|
3418 nil
|
|
3419 ?\
|
|
3420 nil
|
|
3421 ?\¢
|
|
3422 ?\£
|
|
3423 ?\¤
|
|
3424 nil
|
|
3425 ?\¦
|
|
3426 ?\§
|
|
3427 ?\Ø
|
|
3428 ?\©
|
|
3429 ?\Ŗ
|
|
3430 ?\«
|
|
3431 ?\¬
|
|
3432 ?\
|
|
3433 ?\®
|
|
3434 ?\Æ
|
|
3435 ?\°
|
|
3436 ?\±
|
|
3437 ?\²
|
|
3438 ?\³
|
|
3439 nil
|
|
3440 ?\µ
|
|
3441 ?\¶
|
|
3442 ?\·
|
|
3443 ?\ø
|
|
3444 ?\¹
|
|
3445 ?\ŗ
|
|
3446 ?\»
|
|
3447 ?\¼
|
|
3448 ?\½
|
|
3449 ?\¾
|
|
3450 ?\æ
|
|
3451 ?\Ą
|
|
3452 ?\Į
|
|
3453 ?\Ā
|
|
3454 ?\Ć
|
|
3455 ?\Ä
|
|
3456 ?\Å
|
|
3457 ?\Ę
|
|
3458 ?\Ē
|
|
3459 ?\Č
|
|
3460 ?\É
|
|
3461 ?\Ź
|
|
3462 ?\Ė
|
|
3463 ?\Ģ
|
|
3464 ?\Ķ
|
|
3465 ?\Ī
|
|
3466 ?\Ļ
|
|
3467 ?\Š
|
|
3468 ?\Ń
|
|
3469 ?\Ņ
|
|
3470 ?\Ó
|
|
3471 ?\Ō
|
|
3472 ?\Õ
|
|
3473 ?\Ö
|
|
3474 ?\×
|
|
3475 ?\Ų
|
|
3476 ?\Ł
|
|
3477 ?\Ś
|
|
3478 ?\Ū
|
|
3479 ?\Ü
|
|
3480 ?\Ż
|
|
3481 ?\Ž
|
|
3482 ?\ß
|
|
3483 ?\ą
|
|
3484 ?\į
|
|
3485 ?\ā
|
|
3486 ?\ć
|
|
3487 ?\ä
|
|
3488 ?\å
|
|
3489 ?\ę
|
|
3490 ?\ē
|
|
3491 ?\č
|
|
3492 ?\é
|
|
3493 ?\ź
|
|
3494 ?\ė
|
|
3495 ?\ģ
|
|
3496 ?\ķ
|
|
3497 ?\ī
|
|
3498 ?\ļ
|
|
3499 ?\š
|
|
3500 ?\ń
|
|
3501 ?\ņ
|
|
3502 ?\ó
|
|
3503 ?\ō
|
|
3504 ?\õ
|
|
3505 ?\ö
|
|
3506 ?\÷
|
|
3507 ?\ų
|
|
3508 ?\ł
|
|
3509 ?\ś
|
|
3510 ?\ū
|
|
3511 ?\ü
|
|
3512 ?\ż
|
|
3513 ?\ž
|
|
3514 nil])
|
|
3515
|
|
3516 (cp-make-coding-system
|
|
3517 windows-1258
|
|
3518 [?\€
|
|
3519 nil
|
|
3520 ?\‚
|
|
3521 ?\ƒ
|
|
3522 ?\„
|
|
3523 ?\…
|
|
3524 ?\†
|
|
3525 ?\‡
|
|
3526 ?\ˆ
|
|
3527 ?\‰
|
|
3528 nil
|
|
3529 ?\‹
|
|
3530 ?\Œ
|
|
3531 nil
|
|
3532 nil
|
|
3533 nil
|
|
3534 nil
|
|
3535 ?\‘
|
|
3536 ?\’
|
|
3537 ?\“
|
|
3538 ?\”
|
|
3539 ?\•
|
|
3540 ?\–
|
|
3541 ?\—
|
|
3542 ?\˜
|
|
3543 ?\™
|
|
3544 nil
|
|
3545 ?\›
|
|
3546 ?\œ
|
|
3547 nil
|
|
3548 nil
|
|
3549 ?\Ÿ
|
|
3550 ?\
|
|
3551 ?\¡
|
|
3552 ?\¢
|
|
3553 ?\£
|
|
3554 ?\¤
|
|
3555 ?\¥
|
|
3556 ?\¦
|
|
3557 ?\§
|
|
3558 ?\¨
|
|
3559 ?\©
|
|
3560 ?\ª
|
|
3561 ?\«
|
|
3562 ?\¬
|
|
3563 ?\
|
|
3564 ?\®
|
|
3565 ?\¯
|
|
3566 ?\°
|
|
3567 ?\±
|
|
3568 ?\²
|
|
3569 ?\³
|
|
3570 ?\´
|
|
3571 ?\µ
|
|
3572 ?\¶
|
|
3573 ?\·
|
|
3574 ?\¸
|
|
3575 ?\¹
|
|
3576 ?\º
|
|
3577 ?\»
|
|
3578 ?\¼
|
|
3579 ?\½
|
|
3580 ?\¾
|
|
3581 ?\¿
|
|
3582 ?\À
|
|
3583 ?\Á
|
|
3584 ?\Â
|
|
3585 ?\Ă
|
|
3586 ?\Ä
|
|
3587 ?\Å
|
|
3588 ?\Æ
|
|
3589 ?\Ç
|
|
3590 ?\È
|
|
3591 ?\É
|
|
3592 ?\Ê
|
|
3593 ?\Ë
|
|
3594 ?\̀
|
|
3595 ?\Í
|
|
3596 ?\Î
|
|
3597 ?\Ï
|
|
3598 ?\Đ
|
|
3599 ?\Ñ
|
|
3600 ?\̉
|
|
3601 ?\Ó
|
|
3602 ?\Ô
|
|
3603 ?\Ơ
|
|
3604 ?\Ö
|
|
3605 ?\×
|
|
3606 ?\Ø
|
|
3607 ?\Ù
|
|
3608 ?\Ú
|
|
3609 ?\Û
|
|
3610 ?\Ü
|
|
3611 ?\Ư
|
|
3612 ?\̃
|
|
3613 ?\ß
|
|
3614 ?\à
|
|
3615 ?\á
|
|
3616 ?\â
|
|
3617 ?\ă
|
|
3618 ?\ä
|
|
3619 ?\å
|
|
3620 ?\æ
|
|
3621 ?\ç
|
|
3622 ?\è
|
|
3623 ?\é
|
|
3624 ?\ê
|
|
3625 ?\ë
|
|
3626 ?\́
|
|
3627 ?\í
|
|
3628 ?\î
|
|
3629 ?\ï
|
|
3630 ?\đ
|
|
3631 ?\ñ
|
|
3632 ?\̣
|
|
3633 ?\ó
|
|
3634 ?\ô
|
|
3635 ?\ơ
|
|
3636 ?\ö
|
|
3637 ?\÷
|
|
3638 ?\ø
|
|
3639 ?\ù
|
|
3640 ?\ú
|
|
3641 ?\û
|
|
3642 ?\ü
|
|
3643 ?\ư
|
|
3644 ?\₫
|
|
3645 ?\ÿ])
|
|
3646
|
|
3647 (cp-make-coding-system
|
|
3648 next
|
|
3649 [?\
|
|
3650 ?\À
|
|
3651 ?\Á
|
|
3652 ?\Â
|
|
3653 ?\Ã
|
|
3654 ?\Ä
|
|
3655 ?\Å
|
|
3656 ?\Ç
|
|
3657 ?\È
|
|
3658 ?\É
|
|
3659 ?\Ê
|
|
3660 ?\Ë
|
|
3661 ?\Ì
|
|
3662 ?\Í
|
|
3663 ?\Î
|
|
3664 ?\Ï
|
|
3665 ?\Ð
|
|
3666 ?\Ñ
|
|
3667 ?\Ò
|
|
3668 ?\Ó
|
|
3669 ?\Ô
|
|
3670 ?\Õ
|
|
3671 ?\Ö
|
|
3672 ?\Ù
|
|
3673 ?\Ú
|
|
3674 ?\Û
|
|
3675 ?\Ü
|
|
3676 ?\Ý
|
|
3677 ?\Þ
|
|
3678 ?\µ
|
|
3679 ?\×
|
|
3680 ?\÷
|
|
3681 ?\©
|
|
3682 ?\¡
|
|
3683 ?\¢
|
|
3684 ?\£
|
|
3685 ?\⁄
|
|
3686 ?\¥
|
|
3687 ?\ƒ
|
|
3688 ?\§
|
|
3689 ?\¤
|
|
3690 nil
|
|
3691 ?\“
|
|
3692 ?\«
|
|
3693 nil
|
|
3694 nil
|
|
3695 ?\fi
|
|
3696 ?\fl
|
|
3697 ?\®
|
|
3698 ?\–
|
|
3699 ?\†
|
|
3700 ?\‡
|
|
3701 ?\·
|
|
3702 ?\¦
|
|
3703 ?\¶
|
|
3704 ?\•
|
|
3705 nil
|
|
3706 nil
|
|
3707 ?\”
|
|
3708 ?\»
|
|
3709 ?\…
|
|
3710 ?\‰
|
|
3711 ?\¬
|
|
3712 ?\¿
|
|
3713 ?\¹
|
|
3714 ?\ˋ
|
|
3715 ?\´
|
|
3716 ?\ˆ
|
|
3717 ?\˜
|
|
3718 ?\¯
|
|
3719 ?\˘
|
|
3720 ?\˙
|
|
3721 ?\¨
|
|
3722 ?\²
|
|
3723 ?\˚
|
|
3724 ?\¸
|
|
3725 ?\³
|
|
3726 ?\˝
|
|
3727 ?\˛
|
|
3728 ?\ˇ
|
|
3729 ?\—
|
|
3730 ?\±
|
|
3731 ?\¼
|
|
3732 ?\½
|
|
3733 ?\¾
|
|
3734 ?\à
|
|
3735 ?\á
|
|
3736 ?\â
|
|
3737 ?\ã
|
|
3738 ?\ä
|
|
3739 ?\å
|
|
3740 ?\ç
|
|
3741 ?\è
|
|
3742 ?\é
|
|
3743 ?\ê
|
|
3744 ?\ë
|
|
3745 ?\ì
|
|
3746 ?\Æ
|
|
3747 ?\í
|
|
3748 ?\ª
|
|
3749 ?\î
|
|
3750 ?\ï
|
|
3751 ?\ð
|
|
3752 ?\ñ
|
|
3753 ?\Ł
|
|
3754 ?\Ø
|
|
3755 ?\Œ
|
|
3756 ?\º
|
|
3757 ?\ò
|
|
3758 ?\ó
|
|
3759 ?\ô
|
|
3760 ?\õ
|
|
3761 ?\ö
|
|
3762 ?\æ
|
|
3763 ?\ù
|
|
3764 ?\ú
|
|
3765 ?\û
|
|
3766 ?\ı
|
|
3767 ?\ü
|
|
3768 ?\ý
|
|
3769 ?\ł
|
|
3770 ?\ø
|
|
3771 ?\œ
|
|
3772 ?\ß
|
|
3773 ?\þ
|
|
3774 ?\ÿ
|
|
3775 nil
|
|
3776 nil]
|
|
3777 "NeXTstep encoding." ?N)
|
|
3778
|
|
3779 (cp-make-coding-system
|
|
3780 koi8-t ; used by glibc for tg_TJ
|
|
3781 [?\қ
|
|
3782 ?\ғ
|
|
3783 ?\‚
|
|
3784 ?\Ғ
|
|
3785 ?\„
|
|
3786 ?\…
|
|
3787 ?\†
|
|
3788 ?\‡
|
|
3789 nil
|
|
3790 ?\‰
|
|
3791 ?\ҳ
|
|
3792 ?\‹
|
|
3793 ?\Ҳ
|
|
3794 ?\ҷ
|
|
3795 ?\Ҷ
|
|
3796 nil
|
|
3797 ?\Қ
|
|
3798 ?\‘
|
|
3799 ?\’
|
|
3800 ?\“
|
|
3801 ?\”
|
|
3802 ?\•
|
|
3803 ?\–
|
|
3804 ?\—
|
|
3805 nil
|
|
3806 ?\™
|
|
3807 nil
|
|
3808 ?\›
|
|
3809 nil
|
|
3810 nil
|
|
3811 nil
|
|
3812 nil
|
|
3813 nil
|
|
3814 ?\ӯ
|
|
3815 ?\Ӯ
|
|
3816 ?\ё
|
|
3817 ?\¤
|
|
3818 ?\ӣ
|
|
3819 ?\¦
|
|
3820 ?\§
|
|
3821 nil
|
|
3822 nil
|
|
3823 nil
|
|
3824 ?\«
|
|
3825 ?\¬
|
|
3826 ?\
|
|
3827 ?\®
|
|
3828 nil
|
|
3829 ?\°
|
|
3830 ?\±
|
|
3831 ?\²
|
|
3832 ?\Ё
|
|
3833 nil
|
|
3834 ?\Ӣ
|
|
3835 ?\¶
|
|
3836 ?\·
|
|
3837 nil
|
|
3838 ?\№
|
|
3839 nil
|
|
3840 ?\»
|
|
3841 nil
|
|
3842 nil
|
|
3843 nil
|
|
3844 ?\©
|
|
3845 ?\ю
|
|
3846 ?\а
|
|
3847 ?\б
|
|
3848 ?\ц
|
|
3849 ?\д
|
|
3850 ?\е
|
|
3851 ?\ф
|
|
3852 ?\г
|
|
3853 ?\х
|
|
3854 ?\и
|
|
3855 ?\й
|
|
3856 ?\к
|
|
3857 ?\л
|
|
3858 ?\м
|
|
3859 ?\н
|
|
3860 ?\о
|
|
3861 ?\п
|
|
3862 ?\я
|
|
3863 ?\р
|
|
3864 ?\с
|
|
3865 ?\т
|
|
3866 ?\у
|
|
3867 ?\ж
|
|
3868 ?\в
|
|
3869 ?\ь
|
|
3870 ?\ы
|
|
3871 ?\з
|
|
3872 ?\ш
|
|
3873 ?\э
|
|
3874 ?\щ
|
|
3875 ?\ч
|
|
3876 ?\ъ
|
|
3877 ?\Ю
|
|
3878 ?\А
|
|
3879 ?\Б
|
|
3880 ?\Ц
|
|
3881 ?\Д
|
|
3882 ?\Е
|
|
3883 ?\Ф
|
|
3884 ?\Г
|
|
3885 ?\Х
|
|
3886 ?\И
|
|
3887 ?\Й
|
|
3888 ?\К
|
|
3889 ?\Л
|
|
3890 ?\М
|
|
3891 ?\Н
|
|
3892 ?\О
|
|
3893 ?\П
|
|
3894 ?\Я
|
|
3895 ?\Р
|
|
3896 ?\С
|
|
3897 ?\Т
|
|
3898 ?\У
|
|
3899 ?\Ж
|
|
3900 ?\В
|
|
3901 ?\Ь
|
|
3902 ?\Ы
|
|
3903 ?\З
|
|
3904 ?\Ш
|
|
3905 ?\Э
|
|
3906 ?\Щ
|
|
3907 ?\Ч
|
|
3908 ?\Ъ]
|
|
3909 "Unicode-based KOI8-T encoding for Cyrillic")
|
|
3910 (coding-system-put 'koi8-t 'mime-charset nil) ; not in the IANA list
|
|
3911
|
|
3912 ;; Online final ISO draft:
|
|
3913
|
47911
|
3914 ;; http://www.evertype.com/standards/iso8859/fdis8859-16-en.pdf
|
42057
|
3915
|
|
3916 ;; Equivalent National Standard:
|
|
3917 ;; Romanian Standard SR 14111:1998, Romanian Standards Institution
|
|
3918 ;; (ASRO).
|
|
3919
|
|
3920 ;; Intended usage:
|
|
3921
|
|
3922 ;; "This set of coded graphic characters is intended for use in data and
|
|
3923 ;; text processing applications and also for information interchange. The
|
|
3924 ;; set contains graphic characters used for general purpose applications in
|
|
3925 ;; typical office environments in at least the following languages:
|
|
3926 ;; Albanian, Croatian, English, Finnish, French, German, Hungarian, Irish
|
|
3927 ;; Gaelic (new orthography), Italian, Latin, Polish, Romanian, and
|
|
3928 ;; Slovenian. This set of coded graphic characters may be regarded as a
|
|
3929 ;; version of an 8-bit code according to ISO/IEC 2022 or ISO/IEC 4873 at
|
|
3930 ;; level 1." [ISO 8859-16:2001(E), p. 1]
|
|
3931
|
|
3932 ;; This charset is suitable for use in MIME text body parts.
|
|
3933
|
|
3934 ;; ISO 8859-16 was primarily designed for single-byte encoding the Romanian
|
|
3935 ;; language. The UTF-8 charset is the preferred and in today's MIME software
|
|
3936 ;; more widely implemented encoding suitable for Romanian.
|
|
3937 (cp-make-coding-system
|
|
3938 iso-latin-10 ; consistent with, e.g. Latin-1
|
|
3939 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
3940 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
3941 ?\
|
|
3942 ?\Ą
|
|
3943 ?\ą
|
|
3944 ?\Ł
|
|
3945 ?\€
|
|
3946 ?\„
|
|
3947 ?\Š
|
|
3948 ?\§
|
|
3949 ?\š
|
|
3950 ?\©
|
|
3951 ?\Ș
|
|
3952 ?\«
|
|
3953 ?\Ź
|
|
3954 ?\
|
|
3955 ?\ź
|
|
3956 ?\Ż
|
|
3957 ?\°
|
|
3958 ?\±
|
|
3959 ?\Č
|
|
3960 ?\ł
|
|
3961 ?\Ž
|
|
3962 ?\”
|
|
3963 ?\¶
|
|
3964 ?\·
|
|
3965 ?\ž
|
|
3966 ?\č
|
|
3967 ?\ș
|
|
3968 ?\»
|
|
3969 ?\Œ
|
|
3970 ?\œ
|
|
3971 ?\Ÿ
|
|
3972 ?\ż
|
|
3973 ?\À
|
|
3974 ?\Á
|
|
3975 ?\Â
|
|
3976 ?\Ă
|
|
3977 ?\Ä
|
|
3978 ?\Ć
|
|
3979 ?\Æ
|
|
3980 ?\Ç
|
|
3981 ?\È
|
|
3982 ?\É
|
|
3983 ?\Ê
|
|
3984 ?\Ë
|
|
3985 ?\Ì
|
|
3986 ?\Í
|
|
3987 ?\Î
|
|
3988 ?\Ï
|
|
3989 ?\Đ
|
|
3990 ?\Ń
|
|
3991 ?\Ò
|
|
3992 ?\Ó
|
|
3993 ?\Ô
|
|
3994 ?\Ő
|
|
3995 ?\Ö
|
|
3996 ?\Ś
|
|
3997 ?\Ű
|
|
3998 ?\Ù
|
|
3999 ?\Ú
|
|
4000 ?\Û
|
|
4001 ?\Ü
|
|
4002 ?\Ę
|
|
4003 ?\Ț
|
|
4004 ?\ß
|
|
4005 ?\à
|
|
4006 ?\á
|
|
4007 ?\â
|
|
4008 ?\ă
|
|
4009 ?\ä
|
|
4010 ?\ć
|
|
4011 ?\æ
|
|
4012 ?\ç
|
|
4013 ?\è
|
|
4014 ?\é
|
|
4015 ?\ê
|
|
4016 ?\ë
|
|
4017 ?\ì
|
|
4018 ?\í
|
|
4019 ?\î
|
|
4020 ?\ï
|
|
4021 ?\đ
|
|
4022 ?\ń
|
|
4023 ?\ò
|
|
4024 ?\ó
|
|
4025 ?\ô
|
|
4026 ?\ő
|
|
4027 ?\ö
|
|
4028 ?\ś
|
|
4029 ?\ű
|
|
4030 ?\ù
|
|
4031 ?\ú
|
|
4032 ?\û
|
|
4033 ?\ü
|
|
4034 ?\ę
|
|
4035 ?\ț
|
|
4036 ?\ÿ]
|
|
4037 "Unicode-based encoding for Latin-10 (MIME: ISO-8859-16)"
|
|
4038 ?r) ;; Romanian
|
|
4039 (coding-system-put 'iso-latin-10 'mime-charset 'iso-8859-16)
|
|
4040 (define-coding-system-alias 'iso-8859-16 'iso-latin-10)
|
|
4041 (define-coding-system-alias 'latin-10 'iso-latin-10)
|
|
4042
|
|
4043 ;; Unicode-based alternative which has the possible advantage of
|
|
4044 ;; having its relative sparseness specified.
|
|
4045 (cp-make-coding-system
|
|
4046 ;; The base system uses arabic-iso-8bit, but that's not a MIME charset.
|
|
4047 iso-8859-6
|
|
4048 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4049 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4050 ?\
|
|
4051 ?\¤
|
|
4052 ?\،
|
|
4053 ?\
|
|
4054 ?\؛
|
|
4055 ?\؟
|
|
4056 ?\ء
|
|
4057 ?\آ
|
|
4058 ?\أ
|
|
4059 ?\ؤ
|
|
4060 ?\إ
|
|
4061 ?\ئ
|
|
4062 ?\ا
|
|
4063 ?\ب
|
|
4064 ?\ة
|
|
4065 ?\ت
|
|
4066 ?\ث
|
|
4067 ?\ج
|
|
4068 ?\ح
|
|
4069 ?\خ
|
|
4070 ?\د
|
|
4071 ?\ذ
|
|
4072 ?\ر
|
|
4073 ?\ز
|
|
4074 ?\س
|
|
4075 ?\ش
|
|
4076 ?\ص
|
|
4077 ?\ض
|
|
4078 ?\ط
|
|
4079 ?\ظ
|
|
4080 ?\ع
|
|
4081 ?\غ
|
|
4082 ?\ـ
|
|
4083 ?\ف
|
|
4084 ?\ق
|
|
4085 ?\ك
|
|
4086 ?\ل
|
|
4087 ?\م
|
|
4088 ?\ن
|
|
4089 ?\ه
|
|
4090 ?\و
|
|
4091 ?\ى
|
|
4092 ?\ي
|
|
4093 ?\ً
|
|
4094 ?\ٌ
|
|
4095 ?\ٍ
|
|
4096 ?\َ
|
|
4097 ?\ُ
|
|
4098 ?\ِ
|
|
4099 ?\ّ
|
|
4100 ?\ْ
|
|
4101 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4102 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4103 nil nil nil nil nil nil nil nil nil nil nil]
|
|
4104 "Unicode-based Arabic ISO/IEC 8859-6 (MIME: ISO-8859-6)"
|
|
4105 ?6)
|
|
4106 (define-coding-system-alias 'arabic-iso-8bit 'iso-8859-6)
|
|
4107
|
|
4108 (cp-make-coding-system
|
|
4109 iso-latin-6
|
|
4110 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4111 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4112 ?\
|
|
4113 ?\Ą
|
|
4114 ?\Ē
|
|
4115 ?\Ģ
|
|
4116 ?\Ī
|
|
4117 ?\Ĩ
|
|
4118 ?\Ķ
|
|
4119 ?\§
|
|
4120 ?\Ļ
|
|
4121 ?\Đ
|
|
4122 ?\Š
|
|
4123 ?\Ŧ
|
|
4124 ?\Ž
|
|
4125 ?\
|
|
4126 ?\Ū
|
|
4127 ?\Ŋ
|
|
4128 ?\°
|
|
4129 ?\ą
|
|
4130 ?\ē
|
|
4131 ?\ģ
|
|
4132 ?\ī
|
|
4133 ?\ĩ
|
|
4134 ?\ķ
|
|
4135 ?\·
|
|
4136 ?\ļ
|
|
4137 ?\đ
|
|
4138 ?\š
|
|
4139 ?\ŧ
|
|
4140 ?\ž
|
|
4141 ?\―
|
|
4142 ?\ū
|
|
4143 ?\ŋ
|
|
4144 ?\Ā
|
|
4145 ?\Á
|
|
4146 ?\Â
|
|
4147 ?\Ã
|
|
4148 ?\Ä
|
|
4149 ?\Å
|
|
4150 ?\Æ
|
|
4151 ?\Į
|
|
4152 ?\Č
|
|
4153 ?\É
|
|
4154 ?\Ę
|
|
4155 ?\Ë
|
|
4156 ?\Ė
|
|
4157 ?\Í
|
|
4158 ?\Î
|
|
4159 ?\Ï
|
|
4160 ?\Ð
|
|
4161 ?\Ņ
|
|
4162 ?\Ō
|
|
4163 ?\Ó
|
|
4164 ?\Ô
|
|
4165 ?\Õ
|
|
4166 ?\Ö
|
|
4167 ?\Ũ
|
|
4168 ?\Ø
|
|
4169 ?\Ų
|
|
4170 ?\Ú
|
|
4171 ?\Û
|
|
4172 ?\Ü
|
|
4173 ?\Ý
|
|
4174 ?\Þ
|
|
4175 ?\ß
|
|
4176 ?\ā
|
|
4177 ?\á
|
|
4178 ?\â
|
|
4179 ?\ã
|
|
4180 ?\ä
|
|
4181 ?\å
|
|
4182 ?\æ
|
|
4183 ?\į
|
|
4184 ?\č
|
|
4185 ?\é
|
|
4186 ?\ę
|
|
4187 ?\ë
|
|
4188 ?\ė
|
|
4189 ?\í
|
|
4190 ?\î
|
|
4191 ?\ï
|
|
4192 ?\ð
|
|
4193 ?\ņ
|
|
4194 ?\ō
|
|
4195 ?\ó
|
|
4196 ?\ô
|
|
4197 ?\õ
|
|
4198 ?\ö
|
|
4199 ?\ũ
|
|
4200 ?\ø
|
|
4201 ?\ų
|
|
4202 ?\ú
|
|
4203 ?\û
|
|
4204 ?\ü
|
|
4205 ?\ý
|
|
4206 ?\þ
|
|
4207 ?\ĸ]
|
|
4208 "Unicode-based encoding for Latin-6 (MIME: ISO-8859-10)")
|
|
4209 (coding-system-put 'iso-latin-6 'mime-charset 'iso-8859-10)
|
|
4210 (define-coding-system-alias 'iso-8859-10 'iso-latin-6)
|
|
4211 (define-coding-system-alias 'latin-6 'iso-latin-6)
|
|
4212
|
|
4213 ;; used by lt_LT, lv_LV, mi_NZ
|
|
4214 (cp-make-coding-system
|
|
4215 iso-latin-7
|
|
4216 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4217 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4218 ?\
|
|
4219 ?\¡
|
|
4220 ?\¢
|
|
4221 ?\£
|
|
4222 ?\¤
|
|
4223 ?\„
|
|
4224 ?\¦
|
|
4225 ?\§
|
|
4226 ?\¨
|
|
4227 ?\©
|
|
4228 ?\ª
|
|
4229 ?\«
|
|
4230 ?\¬
|
|
4231 ?\
|
|
4232 ?\®
|
|
4233 ?\¯
|
|
4234 ?\°
|
|
4235 ?\±
|
|
4236 ?\²
|
|
4237 ?\³
|
|
4238 ?\“
|
|
4239 ?\µ
|
|
4240 ?\¶
|
|
4241 ?\·
|
|
4242 ?\¸
|
|
4243 ?\¹
|
|
4244 ?\º
|
|
4245 ?\»
|
|
4246 ?\¼
|
|
4247 ?\½
|
|
4248 ?\¾
|
|
4249 ?\¿
|
|
4250 ?\Ą
|
|
4251 ?\Į
|
|
4252 ?\Ā
|
|
4253 ?\Ć
|
|
4254 ?\Ä
|
|
4255 ?\Å
|
|
4256 ?\Ę
|
|
4257 ?\Ē
|
|
4258 ?\Č
|
|
4259 ?\É
|
|
4260 ?\Ź
|
|
4261 ?\Ė
|
|
4262 ?\Ģ
|
|
4263 ?\Ķ
|
|
4264 ?\Ī
|
|
4265 ?\Ļ
|
|
4266 ?\Š
|
|
4267 ?\Ń
|
|
4268 ?\Ņ
|
|
4269 ?\Ó
|
|
4270 ?\Ō
|
|
4271 ?\Õ
|
|
4272 ?\Ö
|
|
4273 ?\×
|
|
4274 ?\Ų
|
|
4275 ?\Ł
|
|
4276 ?\Ś
|
|
4277 ?\Ū
|
|
4278 ?\Ü
|
|
4279 ?\Ż
|
|
4280 ?\Ž
|
|
4281 ?\ß
|
|
4282 ?\ą
|
|
4283 ?\į
|
|
4284 ?\ā
|
|
4285 ?\ć
|
|
4286 ?\ä
|
|
4287 ?\å
|
|
4288 ?\ę
|
|
4289 ?\ē
|
|
4290 ?\č
|
|
4291 ?\é
|
|
4292 ?\ź
|
|
4293 ?\ė
|
|
4294 ?\ģ
|
|
4295 ?\ķ
|
|
4296 ?\ī
|
|
4297 ?\ļ
|
|
4298 ?\š
|
|
4299 ?\ń
|
|
4300 ?\ņ
|
|
4301 ?\ó
|
|
4302 ?\ō
|
|
4303 ?\õ
|
|
4304 ?\ö
|
|
4305 ?\÷
|
|
4306 ?\ų
|
|
4307 ?\ł
|
|
4308 ?\ś
|
|
4309 ?\ū
|
|
4310 ?\ü
|
|
4311 ?\ż
|
|
4312 ?\ž
|
|
4313 ?\’
|
|
4314 ]
|
|
4315 "Unicode-based encoding for Latin-7 (MIME: ISO-8859-13)"
|
|
4316 ?l) ;; Lithuanian/Latvian
|
|
4317 (coding-system-put 'iso-latin-7 'mime-charset 'iso-8859-13)
|
|
4318 (define-coding-system-alias 'iso-8859-13 'iso-latin-7)
|
|
4319 (define-coding-system-alias 'latin-7 'iso-latin-7)
|
|
4320
|
|
4321 (cp-make-coding-system
|
|
4322 georgian-ps ; used by glibc for ka_GE
|
|
4323 [?\
|
|
4324 ?\
|
|
4325 ?\‚
|
|
4326 ?\ƒ
|
|
4327 ?\„
|
|
4328 ?\…
|
|
4329 ?\†
|
|
4330 ?\‡
|
|
4331 ?\ˆ
|
|
4332 ?\‰
|
|
4333 ?\Š
|
|
4334 ?\‹
|
|
4335 ?\Œ
|
|
4336 ?\
|
|
4337 ?\
|
|
4338 ?\
|
|
4339 ?\
|
|
4340 ?\‘
|
|
4341 ?\’
|
|
4342 ?\“
|
|
4343 ?\”
|
|
4344 ?\•
|
|
4345 ?\–
|
|
4346 ?\—
|
|
4347 ?\˜
|
|
4348 ?\™
|
|
4349 ?\š
|
|
4350 ?\›
|
|
4351 ?\œ
|
|
4352 ?\
|
|
4353 ?\
|
|
4354 ?\Ÿ
|
|
4355 ?\
|
|
4356 ?\¡
|
|
4357 ?\¢
|
|
4358 ?\£
|
|
4359 ?\¤
|
|
4360 ?\¥
|
|
4361 ?\¦
|
|
4362 ?\§
|
|
4363 ?\¨
|
|
4364 ?\©
|
|
4365 ?\ª
|
|
4366 ?\«
|
|
4367 ?\¬
|
|
4368 ?\
|
|
4369 ?\®
|
|
4370 ?\¯
|
|
4371 ?\°
|
|
4372 ?\±
|
|
4373 ?\²
|
|
4374 ?\³
|
|
4375 ?\´
|
|
4376 ?\µ
|
|
4377 ?\¶
|
|
4378 ?\·
|
|
4379 ?\¸
|
|
4380 ?\¹
|
|
4381 ?\º
|
|
4382 ?\»
|
|
4383 ?\¼
|
|
4384 ?\½
|
|
4385 ?\¾
|
|
4386 ?\¿
|
|
4387 ?\ა
|
|
4388 ?\ბ
|
|
4389 ?\გ
|
|
4390 ?\დ
|
|
4391 ?\ე
|
|
4392 ?\ვ
|
|
4393 ?\ზ
|
|
4394 ?\ჱ
|
|
4395 ?\თ
|
|
4396 ?\ი
|
|
4397 ?\კ
|
|
4398 ?\ლ
|
|
4399 ?\მ
|
|
4400 ?\ნ
|
|
4401 ?\ჲ
|
|
4402 ?\ო
|
|
4403 ?\პ
|
|
4404 ?\ჟ
|
|
4405 ?\რ
|
|
4406 ?\ს
|
|
4407 ?\ტ
|
|
4408 ?\ჳ
|
|
4409 ?\უ
|
|
4410 ?\ფ
|
|
4411 ?\ქ
|
|
4412 ?\ღ
|
|
4413 ?\ყ
|
|
4414 ?\შ
|
|
4415 ?\ჩ
|
|
4416 ?\ც
|
|
4417 ?\ძ
|
|
4418 ?\წ
|
|
4419 ?\ჭ
|
|
4420 ?\ხ
|
|
4421 ?\ჴ
|
|
4422 ?\ჯ
|
|
4423 ?\ჰ
|
|
4424 ?\ჵ
|
|
4425 ?\æ
|
|
4426 ?\ç
|
|
4427 ?\è
|
|
4428 ?\é
|
|
4429 ?\ê
|
|
4430 ?\ë
|
|
4431 ?\ì
|
|
4432 ?\í
|
|
4433 ?\î
|
|
4434 ?\ï
|
|
4435 ?\ð
|
|
4436 ?\ñ
|
|
4437 ?\ò
|
|
4438 ?\ó
|
|
4439 ?\ô
|
|
4440 ?\õ
|
|
4441 ?\ö
|
|
4442 ?\÷
|
|
4443 ?\ø
|
|
4444 ?\ù
|
|
4445 ?\ú
|
|
4446 ?\û
|
|
4447 ?\ü
|
|
4448 ?\ý
|
|
4449 ?\þ
|
|
4450 ?\ÿ]
|
|
4451 nil ?G)
|
|
4452 (coding-system-put 'georgian-ps 'mime-charset nil) ; not in IANA list
|
|
4453
|
|
4454 ;; From http://www.microsoft.com/globaldev/reference/oem/720.htm
|
|
4455 (cp-make-coding-system
|
|
4456 cp720
|
|
4457 [nil
|
|
4458 nil
|
|
4459 ?\é
|
|
4460 ?\â
|
|
4461 nil
|
|
4462 ?\à
|
|
4463 nil
|
|
4464 ?\ç
|
|
4465 ?\ê
|
|
4466 ?\ë
|
|
4467 ?\è
|
|
4468 ?\ï
|
|
4469 ?\î
|
|
4470 nil
|
|
4471 nil
|
|
4472 nil
|
|
4473 nil
|
|
4474 ?\ّ
|
|
4475 ?\ْ
|
|
4476 ?\ô
|
|
4477 ?\¤
|
|
4478 ?\ـ
|
|
4479 ?\û
|
|
4480 ?\ù
|
|
4481 ?\ء
|
|
4482 ?\آ
|
|
4483 ?\أ
|
|
4484 ?\ؤ
|
|
4485 ?\£
|
|
4486 ?\إ
|
|
4487 ?\ئ
|
|
4488 ?\ا
|
|
4489 ?\ب
|
|
4490 ?\ة
|
|
4491 ?\ت
|
|
4492 ?\ث
|
|
4493 ?\ج
|
|
4494 ?\ح
|
|
4495 ?\خ
|
|
4496 ?\د
|
|
4497 ?\ذ
|
|
4498 ?\ر
|
|
4499 ?\ز
|
|
4500 ?\س
|
|
4501 ?\ش
|
|
4502 ?\ص
|
|
4503 ?\«
|
|
4504 ?\»
|
|
4505 ?\░
|
|
4506 ?\▒
|
|
4507 ?\▓
|
|
4508 ?\│
|
|
4509 ?\┤
|
|
4510 ?\╡
|
|
4511 ?\╢
|
|
4512 ?\╖
|
|
4513 ?\╕
|
|
4514 ?\╣
|
|
4515 ?\║
|
|
4516 ?\╗
|
|
4517 ?\╝
|
|
4518 ?\╜
|
|
4519 ?\╛
|
|
4520 ?\┐
|
|
4521 ?\└
|
|
4522 ?\┴
|
|
4523 ?\┬
|
|
4524 ?\├
|
|
4525 ?\─
|
|
4526 ?\┼
|
|
4527 ?\╞
|
|
4528 ?\╟
|
|
4529 ?\╚
|
|
4530 ?\╔
|
|
4531 ?\╩
|
|
4532 ?\╦
|
|
4533 ?\╠
|
|
4534 ?\═
|
|
4535 ?\╬
|
|
4536 ?\╧
|
|
4537 ?\╨
|
|
4538 ?\╤
|
|
4539 ?\╥
|
|
4540 ?\╙
|
|
4541 ?\╘
|
|
4542 ?\╒
|
|
4543 ?\╓
|
|
4544 ?\╫
|
|
4545 ?\╪
|
|
4546 ?\┘
|
|
4547 ?\┌
|
|
4548 ?\█
|
|
4549 ?\▄
|
|
4550 ?\▌
|
|
4551 ?\▐
|
|
4552 ?\▀
|
|
4553 ?\ض
|
|
4554 ?\ط
|
|
4555 ?\ظ
|
|
4556 ?\ع
|
|
4557 ?\غ
|
|
4558 ?\ف
|
|
4559 ?\µ
|
|
4560 ?\ق
|
|
4561 ?\ك
|
|
4562 ?\ل
|
|
4563 ?\م
|
|
4564 ?\ن
|
|
4565 ?\ه
|
|
4566 ?\و
|
|
4567 ?\ى
|
|
4568 ?\ي
|
|
4569 ?\≡
|
|
4570 ?\ً
|
|
4571 ?\ٌ
|
|
4572 ?\ٍ
|
|
4573 ?\َ
|
|
4574 ?\ُ
|
|
4575 ?\ِ
|
|
4576 ?\≈
|
|
4577 ?\°
|
|
4578 ?\∙
|
|
4579 ?\·
|
|
4580 ?\√
|
|
4581 ?\ⁿ
|
|
4582 ?\²
|
|
4583 ?\■
|
|
4584 ?\ ])
|
|
4585 (coding-system-put 'cp720 'mime-charset nil) ; not in IANA list
|
|
4586
|
|
4587 ;; http://oss.software.ibm.com/cvs/icu/charset/data/ucm/ibm-1125_P100-2000.ucm
|
|
4588 (cp-make-coding-system
|
|
4589 cp1125
|
|
4590 [?\А
|
|
4591 ?\Б
|
|
4592 ?\В
|
|
4593 ?\Г
|
|
4594 ?\Д
|
|
4595 ?\Е
|
|
4596 ?\Ж
|
|
4597 ?\З
|
|
4598 ?\И
|
|
4599 ?\Й
|
|
4600 ?\К
|
|
4601 ?\Л
|
|
4602 ?\М
|
|
4603 ?\Н
|
|
4604 ?\О
|
|
4605 ?\П
|
|
4606 ?\Р
|
|
4607 ?\С
|
|
4608 ?\Т
|
|
4609 ?\У
|
|
4610 ?\Ф
|
|
4611 ?\Х
|
|
4612 ?\Ц
|
|
4613 ?\Ч
|
|
4614 ?\Ш
|
|
4615 ?\Щ
|
|
4616 ?\Ъ
|
|
4617 ?\Ы
|
|
4618 ?\Ь
|
|
4619 ?\Э
|
|
4620 ?\Ю
|
|
4621 ?\Я
|
|
4622 ?\а
|
|
4623 ?\б
|
|
4624 ?\в
|
|
4625 ?\г
|
|
4626 ?\д
|
|
4627 ?\е
|
|
4628 ?\ж
|
|
4629 ?\з
|
|
4630 ?\и
|
|
4631 ?\й
|
|
4632 ?\к
|
|
4633 ?\л
|
|
4634 ?\м
|
|
4635 ?\н
|
|
4636 ?\о
|
|
4637 ?\п
|
|
4638 ?\░
|
|
4639 ?\▒
|
|
4640 ?\▓
|
|
4641 ?\│
|
|
4642 ?\┤
|
|
4643 ?\╡
|
|
4644 ?\╢
|
|
4645 ?\╖
|
|
4646 ?\╕
|
|
4647 ?\╣
|
|
4648 ?\║
|
|
4649 ?\╗
|
|
4650 ?\╝
|
|
4651 ?\╜
|
|
4652 ?\╛
|
|
4653 ?\┐
|
|
4654 ?\└
|
|
4655 ?\┴
|
|
4656 ?\┬
|
|
4657 ?\├
|
|
4658 ?\─
|
|
4659 ?\┼
|
|
4660 ?\╞
|
|
4661 ?\╟
|
|
4662 ?\╚
|
|
4663 ?\╔
|
|
4664 ?\╩
|
|
4665 ?\╦
|
|
4666 ?\╠
|
|
4667 ?\═
|
|
4668 ?\╬
|
|
4669 ?\╧
|
|
4670 ?\╨
|
|
4671 ?\╤
|
|
4672 ?\╥
|
|
4673 ?\╙
|
|
4674 ?\╘
|
|
4675 ?\╒
|
|
4676 ?\╓
|
|
4677 ?\╫
|
|
4678 ?\╪
|
|
4679 ?\┘
|
|
4680 ?\┌
|
|
4681 ?\█
|
|
4682 ?\▄
|
|
4683 ?\▌
|
|
4684 ?\▐
|
|
4685 ?\▀
|
|
4686 ?\р
|
|
4687 ?\с
|
|
4688 ?\т
|
|
4689 ?\у
|
|
4690 ?\ф
|
|
4691 ?\х
|
|
4692 ?\ц
|
|
4693 ?\ч
|
|
4694 ?\ш
|
|
4695 ?\щ
|
|
4696 ?\ъ
|
|
4697 ?\ы
|
|
4698 ?\ь
|
|
4699 ?\э
|
|
4700 ?\ю
|
|
4701 ?\я
|
|
4702 ?\Ё
|
|
4703 ?\ё
|
|
4704 ?\Ґ
|
|
4705 ?\ґ
|
|
4706 ?\Є
|
|
4707 ?\є
|
|
4708 ?\І
|
|
4709 ?\і
|
|
4710 ?\Ї
|
|
4711 ?\ї
|
|
4712 ?\÷
|
|
4713 ?\±
|
|
4714 ?\№
|
|
4715 ?\¤
|
|
4716 ?\■
|
|
4717 ?\ ])
|
47911
|
4718 (define-coding-system-alias 'ruscii 'cp1125)
|
|
4719 ;; Original name for cp1125, says Serhii Hlodin <hlodin@lutsk.bank.gov.ua>
|
42057
|
4720 (define-coding-system-alias 'cp866u 'cp1125)
|
|
4721
|
48774
|
4722 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: Bulgarian DOS
|
|
4723 ;; codepage. Table at
|
|
4724 ;; <URL:http://czyborra.com/charsets/bulgarian-mik.txt.gz>.
|
|
4725 (cp-make-coding-system
|
|
4726 mik
|
|
4727 [?А ?Б ?В ?Г ?Д ?Е ?Ж ?З ?И ?Й ?К ?Л ?М ?Н ?О ?П ?Р ?С ?Т ?У ?Ф ?Х ?Ц
|
|
4728 ?Ч ?Ш ?Щ ?Ъ ?Ы ?Ь ?Э ?Ю ?Я ?а ?б ?в ?г ?д ?е ?ж ?з ?и ?й ?к ?л ?м ?н
|
|
4729 ?о ?п ?р ?с ?т ?у ?ф ?х ?ц ?ч ?ш ?щ ?ъ ?ы ?ь ?э ?ю ?я ?└ ?┴ ?┬ ?├ ?─
|
|
4730 ?┼ ?╣ ?║ ?╚ ?╔ ?╩ ?╦ ?╠ ?═ ?╬ ?┐ ?░ ?▒ ?▓ ?│ ?┤ ?№ ?§ ?╗ ?╝ ?┘ ?┌ ?█
|
|
4731 ?▄ ?▌ ?▐ ?▀ ?α ?β ?Γ ?π ?Σ ?σ ?μ ?τ ?Φ ?Θ ?Ω ?δ ?∞ ?∅ ?∈ ?∩ ?≡ ?± ?≥
|
|
4732 ?≤ ?⌠ ?⌡ ?÷ ?≈ ?° ?∙ ?· ?√ ?ⁿ ?² ?■ ? ])
|
|
4733
|
|
4734 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: similar to CP1251
|
|
4735 ;; and used for some non-Slavic Cyrillic languages. Table found at
|
|
4736 ;; <URL:ftp://ftp.logic.ru/pub/logic/linux/cyr-asian/PT154>. See also
|
|
4737 ;; <URL:http://lists.w3.org/Archives/Public/ietf-charsets/2002AprJun/0092.html,
|
|
4738 ;; which suggests it's used in an Asian Cyrillic context.
|
|
4739 (cp-make-coding-system
|
|
4740 pt154
|
|
4741 [?Җ ?Ғ ?Ӯ ?ғ ?„ ?… ?Ҷ ?Ү ?Ҳ ?ү ?Ҡ ?Ӣ ?Ң ?Қ ?Һ ?Ҹ ?җ ?‘ ?’ ?“ ?” ?• ?–
|
|
4742 ?— ?ҳ ?ҷ ?ҡ ?ӣ ?ң ?қ ?һ ?ҹ ? ?Ў ?ў ?Ј ?Ө ?Ҙ ?Ұ ?§ ?Ё ?© ?Ә ?\« ?¬ ?ӯ
|
|
4743 ?® ?Ҝ ?° ?ұ ?І ?і ?ҙ ?ө ?¶ ?· ?ё ?№ ?ә ?» ?ј ?Ҫ ?ҫ ?ҝ ?А ?Б ?В ?Г ?Д
|
|
4744 ?Е ?Ж ?З ?И ?Й ?К ?Л ?М ?Н ?О ?П ?Р ?С ?Т ?У ?Ф ?Х ?Ц ?Ч ?Ш ?Щ ?Ъ ?Ы
|
|
4745 ?Ь ?Э ?Ю ?Я ?а ?б ?в ?г ?д ?е ?ж ?з ?и ?й ?к ?л ?м ?н ?о ?п ?р ?с ?т
|
|
4746 ?у ?ф ?х ?ц ?ч ?ш ?щ ?ъ ?ы ?ь ?э ?ю ?я])
|
|
4747
|
48022
|
4748 (cp-make-coding-system
|
|
4749 iso-8859-11
|
48774
|
4750 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4751 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
|
|
4752 ? ?ก ?ข ?ฃ ?ค ?ฅ ?ฆ ?ง ?จ ?ฉ ?ช ?ซ ?ฌ ?ญ ?ฎ ?ฏ
|
|
4753 ?ฐ ?ฑ ?ฒ ?ณ ?ด ?ต ?ถ ?ท ?ธ ?น ?บ ?ป ?ผ ?ฝ ?พ ?ฟ
|
|
4754 ?ภ ?ม ?ย ?ร ?ฤ ?ล ?ฦ ?ว ?ศ ?ษ ?ส ?ห ?ฬ ?อ ?ฮ ?ฯ
|
|
4755 ?ะ ?ั ?า ?ำ ?ิ ?ี ?ึ ?ื ?ุ ?ู ?ฺ nil nil nil nil ?฿
|
|
4756 ?เ ?แ ?โ ?ใ ?ไ ?ๅ ?ๆ ?็ ?่ ?้ ?๊ ?๋ ?์ ?ํ ?๎ ?๏
|
|
4757 ?๐ ?๑ ?๒ ?๓ ?๔ ?๕ ?๖ ?๗ ?๘ ?๙ ?๚ ?๛ nil nil nil nil]
|
48022
|
4758 "ISO-8859-11. This is `thai-tis620' with the addition of no-break-space.")
|
|
4759
|
42057
|
4760 (dotimes (i 8)
|
|
4761 (let ((w (intern (format "windows-125%d" i)))
|
|
4762 (c (intern (format "cp125%d" i))))
|
|
4763 (define-coding-system-alias c w)
|
|
4764 ;; Compatibility with codepage.el, though cp... are not the
|
|
4765 ;; canonical names.
|
|
4766 (push (assoc w non-iso-charset-alist) non-iso-charset-alist)))
|
|
4767
|
|
4768 ;; Use Unicode font under Windows. Jason Rumney fecit.
|
|
4769 (if (and (fboundp 'w32-add-charset-info)
|
|
4770 (not (boundp 'w32-unicode-charset-defined)))
|
|
4771 (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t))
|
|
4772
|
|
4773 (provide 'code-pages)
|
|
4774
|
|
4775 ;;; code-pages.el ends here
|