15796c8dcSSimon Schubert /* List of character set names for GDB. 25796c8dcSSimon Schubert 3*ef5ccd6cSJohn Marino Copyright (C) 2009-2013 Free Software Foundation, Inc. 45796c8dcSSimon Schubert 55796c8dcSSimon Schubert This file is part of GDB. 65796c8dcSSimon Schubert 75796c8dcSSimon Schubert This program is free software; you can redistribute it and/or modify 85796c8dcSSimon Schubert it under the terms of the GNU General Public License as published by 95796c8dcSSimon Schubert the Free Software Foundation; either version 3 of the License, or 105796c8dcSSimon Schubert (at your option) any later version. 115796c8dcSSimon Schubert 125796c8dcSSimon Schubert This program is distributed in the hope that it will be useful, 135796c8dcSSimon Schubert but WITHOUT ANY WARRANTY; without even the implied warranty of 145796c8dcSSimon Schubert MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 155796c8dcSSimon Schubert GNU General Public License for more details. 165796c8dcSSimon Schubert 175796c8dcSSimon Schubert You should have received a copy of the GNU General Public License 185796c8dcSSimon Schubert along with this program. If not, see <http://www.gnu.org/licenses/>. */ 195796c8dcSSimon Schubert 205796c8dcSSimon Schubert /* Note that the first entry must always be "auto". 215796c8dcSSimon Schubert The remaining entries were created by running this script: 225796c8dcSSimon Schubert 235796c8dcSSimon Schubert iconv -l | sed -e '/[/]...*$/d' -e 's@^\(.*\)//$@"\1", \\@' 245796c8dcSSimon Schubert 255796c8dcSSimon Schubert .. and then removing the final backslash. It would be nice to 265796c8dcSSimon Schubert separate narrow and wide character sets, but there is no good way 275796c8dcSSimon Schubert to do that. */ 285796c8dcSSimon Schubert #define DEFAULT_CHARSET_NAMES \ 295796c8dcSSimon Schubert "auto", \ 305796c8dcSSimon Schubert "437", \ 315796c8dcSSimon Schubert "500", \ 325796c8dcSSimon Schubert "500V1", \ 335796c8dcSSimon Schubert "850", \ 345796c8dcSSimon Schubert "851", \ 355796c8dcSSimon Schubert "852", \ 365796c8dcSSimon Schubert "855", \ 375796c8dcSSimon Schubert "856", \ 385796c8dcSSimon Schubert "857", \ 395796c8dcSSimon Schubert "860", \ 405796c8dcSSimon Schubert "861", \ 415796c8dcSSimon Schubert "862", \ 425796c8dcSSimon Schubert "863", \ 435796c8dcSSimon Schubert "864", \ 445796c8dcSSimon Schubert "865", \ 455796c8dcSSimon Schubert "866", \ 465796c8dcSSimon Schubert "866NAV", \ 475796c8dcSSimon Schubert "869", \ 485796c8dcSSimon Schubert "874", \ 495796c8dcSSimon Schubert "904", \ 505796c8dcSSimon Schubert "1026", \ 515796c8dcSSimon Schubert "1046", \ 525796c8dcSSimon Schubert "1047", \ 535796c8dcSSimon Schubert "8859_1", \ 545796c8dcSSimon Schubert "8859_2", \ 555796c8dcSSimon Schubert "8859_3", \ 565796c8dcSSimon Schubert "8859_4", \ 575796c8dcSSimon Schubert "8859_5", \ 585796c8dcSSimon Schubert "8859_6", \ 595796c8dcSSimon Schubert "8859_7", \ 605796c8dcSSimon Schubert "8859_8", \ 615796c8dcSSimon Schubert "8859_9", \ 625796c8dcSSimon Schubert "10646-1:1993", \ 635796c8dcSSimon Schubert "ANSI_X3.4-1968", \ 645796c8dcSSimon Schubert "ANSI_X3.4-1986", \ 655796c8dcSSimon Schubert "ANSI_X3.4", \ 665796c8dcSSimon Schubert "ANSI_X3.110-1983", \ 675796c8dcSSimon Schubert "ANSI_X3.110", \ 685796c8dcSSimon Schubert "ARABIC", \ 695796c8dcSSimon Schubert "ARABIC7", \ 705796c8dcSSimon Schubert "ARMSCII-8", \ 715796c8dcSSimon Schubert "ASCII", \ 725796c8dcSSimon Schubert "ASMO-708", \ 735796c8dcSSimon Schubert "ASMO_449", \ 745796c8dcSSimon Schubert "BALTIC", \ 755796c8dcSSimon Schubert "BIG-5", \ 765796c8dcSSimon Schubert "BIG-FIVE", \ 775796c8dcSSimon Schubert "BIG5-HKSCS", \ 785796c8dcSSimon Schubert "BIG5", \ 795796c8dcSSimon Schubert "BIG5HKSCS", \ 805796c8dcSSimon Schubert "BIGFIVE", \ 815796c8dcSSimon Schubert "BRF", \ 825796c8dcSSimon Schubert "BS_4730", \ 835796c8dcSSimon Schubert "CA", \ 845796c8dcSSimon Schubert "CN-BIG5", \ 855796c8dcSSimon Schubert "CN-GB", \ 865796c8dcSSimon Schubert "CN", \ 875796c8dcSSimon Schubert "CP-AR", \ 885796c8dcSSimon Schubert "CP-GR", \ 895796c8dcSSimon Schubert "CP-HU", \ 905796c8dcSSimon Schubert "CP037", \ 915796c8dcSSimon Schubert "CP038", \ 925796c8dcSSimon Schubert "CP273", \ 935796c8dcSSimon Schubert "CP274", \ 945796c8dcSSimon Schubert "CP275", \ 955796c8dcSSimon Schubert "CP278", \ 965796c8dcSSimon Schubert "CP280", \ 975796c8dcSSimon Schubert "CP281", \ 985796c8dcSSimon Schubert "CP282", \ 995796c8dcSSimon Schubert "CP284", \ 1005796c8dcSSimon Schubert "CP285", \ 1015796c8dcSSimon Schubert "CP290", \ 1025796c8dcSSimon Schubert "CP297", \ 1035796c8dcSSimon Schubert "CP367", \ 1045796c8dcSSimon Schubert "CP420", \ 1055796c8dcSSimon Schubert "CP423", \ 1065796c8dcSSimon Schubert "CP424", \ 1075796c8dcSSimon Schubert "CP437", \ 1085796c8dcSSimon Schubert "CP500", \ 1095796c8dcSSimon Schubert "CP737", \ 1105796c8dcSSimon Schubert "CP775", \ 1115796c8dcSSimon Schubert "CP803", \ 1125796c8dcSSimon Schubert "CP813", \ 1135796c8dcSSimon Schubert "CP819", \ 1145796c8dcSSimon Schubert "CP850", \ 1155796c8dcSSimon Schubert "CP851", \ 1165796c8dcSSimon Schubert "CP852", \ 1175796c8dcSSimon Schubert "CP855", \ 1185796c8dcSSimon Schubert "CP856", \ 1195796c8dcSSimon Schubert "CP857", \ 1205796c8dcSSimon Schubert "CP860", \ 1215796c8dcSSimon Schubert "CP861", \ 1225796c8dcSSimon Schubert "CP862", \ 1235796c8dcSSimon Schubert "CP863", \ 1245796c8dcSSimon Schubert "CP864", \ 1255796c8dcSSimon Schubert "CP865", \ 1265796c8dcSSimon Schubert "CP866", \ 1275796c8dcSSimon Schubert "CP866NAV", \ 1285796c8dcSSimon Schubert "CP868", \ 1295796c8dcSSimon Schubert "CP869", \ 1305796c8dcSSimon Schubert "CP870", \ 1315796c8dcSSimon Schubert "CP871", \ 1325796c8dcSSimon Schubert "CP874", \ 1335796c8dcSSimon Schubert "CP875", \ 1345796c8dcSSimon Schubert "CP880", \ 1355796c8dcSSimon Schubert "CP891", \ 1365796c8dcSSimon Schubert "CP901", \ 1375796c8dcSSimon Schubert "CP902", \ 1385796c8dcSSimon Schubert "CP903", \ 1395796c8dcSSimon Schubert "CP904", \ 1405796c8dcSSimon Schubert "CP905", \ 1415796c8dcSSimon Schubert "CP912", \ 1425796c8dcSSimon Schubert "CP915", \ 1435796c8dcSSimon Schubert "CP916", \ 1445796c8dcSSimon Schubert "CP918", \ 1455796c8dcSSimon Schubert "CP920", \ 1465796c8dcSSimon Schubert "CP921", \ 1475796c8dcSSimon Schubert "CP922", \ 1485796c8dcSSimon Schubert "CP930", \ 1495796c8dcSSimon Schubert "CP932", \ 1505796c8dcSSimon Schubert "CP933", \ 1515796c8dcSSimon Schubert "CP935", \ 1525796c8dcSSimon Schubert "CP936", \ 1535796c8dcSSimon Schubert "CP937", \ 1545796c8dcSSimon Schubert "CP939", \ 1555796c8dcSSimon Schubert "CP949", \ 1565796c8dcSSimon Schubert "CP950", \ 1575796c8dcSSimon Schubert "CP1004", \ 1585796c8dcSSimon Schubert "CP1008", \ 1595796c8dcSSimon Schubert "CP1025", \ 1605796c8dcSSimon Schubert "CP1026", \ 1615796c8dcSSimon Schubert "CP1046", \ 1625796c8dcSSimon Schubert "CP1047", \ 1635796c8dcSSimon Schubert "CP1070", \ 1645796c8dcSSimon Schubert "CP1079", \ 1655796c8dcSSimon Schubert "CP1081", \ 1665796c8dcSSimon Schubert "CP1084", \ 1675796c8dcSSimon Schubert "CP1089", \ 1685796c8dcSSimon Schubert "CP1097", \ 1695796c8dcSSimon Schubert "CP1112", \ 1705796c8dcSSimon Schubert "CP1122", \ 1715796c8dcSSimon Schubert "CP1123", \ 1725796c8dcSSimon Schubert "CP1124", \ 1735796c8dcSSimon Schubert "CP1125", \ 1745796c8dcSSimon Schubert "CP1129", \ 1755796c8dcSSimon Schubert "CP1130", \ 1765796c8dcSSimon Schubert "CP1132", \ 1775796c8dcSSimon Schubert "CP1133", \ 1785796c8dcSSimon Schubert "CP1137", \ 1795796c8dcSSimon Schubert "CP1140", \ 1805796c8dcSSimon Schubert "CP1141", \ 1815796c8dcSSimon Schubert "CP1142", \ 1825796c8dcSSimon Schubert "CP1143", \ 1835796c8dcSSimon Schubert "CP1144", \ 1845796c8dcSSimon Schubert "CP1145", \ 1855796c8dcSSimon Schubert "CP1146", \ 1865796c8dcSSimon Schubert "CP1147", \ 1875796c8dcSSimon Schubert "CP1148", \ 1885796c8dcSSimon Schubert "CP1149", \ 1895796c8dcSSimon Schubert "CP1153", \ 1905796c8dcSSimon Schubert "CP1154", \ 1915796c8dcSSimon Schubert "CP1155", \ 1925796c8dcSSimon Schubert "CP1156", \ 1935796c8dcSSimon Schubert "CP1157", \ 1945796c8dcSSimon Schubert "CP1158", \ 1955796c8dcSSimon Schubert "CP1160", \ 1965796c8dcSSimon Schubert "CP1161", \ 1975796c8dcSSimon Schubert "CP1162", \ 1985796c8dcSSimon Schubert "CP1163", \ 1995796c8dcSSimon Schubert "CP1164", \ 2005796c8dcSSimon Schubert "CP1166", \ 2015796c8dcSSimon Schubert "CP1167", \ 2025796c8dcSSimon Schubert "CP1250", \ 2035796c8dcSSimon Schubert "CP1251", \ 2045796c8dcSSimon Schubert "CP1252", \ 2055796c8dcSSimon Schubert "CP1253", \ 2065796c8dcSSimon Schubert "CP1254", \ 2075796c8dcSSimon Schubert "CP1255", \ 2085796c8dcSSimon Schubert "CP1256", \ 2095796c8dcSSimon Schubert "CP1257", \ 2105796c8dcSSimon Schubert "CP1258", \ 2115796c8dcSSimon Schubert "CP1282", \ 2125796c8dcSSimon Schubert "CP1361", \ 2135796c8dcSSimon Schubert "CP1364", \ 2145796c8dcSSimon Schubert "CP1371", \ 2155796c8dcSSimon Schubert "CP1388", \ 2165796c8dcSSimon Schubert "CP1390", \ 2175796c8dcSSimon Schubert "CP1399", \ 2185796c8dcSSimon Schubert "CP4517", \ 2195796c8dcSSimon Schubert "CP4899", \ 2205796c8dcSSimon Schubert "CP4909", \ 2215796c8dcSSimon Schubert "CP4971", \ 2225796c8dcSSimon Schubert "CP5347", \ 2235796c8dcSSimon Schubert "CP9030", \ 2245796c8dcSSimon Schubert "CP9066", \ 2255796c8dcSSimon Schubert "CP9448", \ 2265796c8dcSSimon Schubert "CP10007", \ 2275796c8dcSSimon Schubert "CP12712", \ 2285796c8dcSSimon Schubert "CP16804", \ 2295796c8dcSSimon Schubert "CPIBM861", \ 2305796c8dcSSimon Schubert "CSA7-1", \ 2315796c8dcSSimon Schubert "CSA7-2", \ 2325796c8dcSSimon Schubert "CSASCII", \ 2335796c8dcSSimon Schubert "CSA_T500-1983", \ 2345796c8dcSSimon Schubert "CSA_T500", \ 2355796c8dcSSimon Schubert "CSA_Z243.4-1985-1", \ 2365796c8dcSSimon Schubert "CSA_Z243.4-1985-2", \ 2375796c8dcSSimon Schubert "CSA_Z243.419851", \ 2385796c8dcSSimon Schubert "CSA_Z243.419852", \ 2395796c8dcSSimon Schubert "CSDECMCS", \ 2405796c8dcSSimon Schubert "CSEBCDICATDE", \ 2415796c8dcSSimon Schubert "CSEBCDICATDEA", \ 2425796c8dcSSimon Schubert "CSEBCDICCAFR", \ 2435796c8dcSSimon Schubert "CSEBCDICDKNO", \ 2445796c8dcSSimon Schubert "CSEBCDICDKNOA", \ 2455796c8dcSSimon Schubert "CSEBCDICES", \ 2465796c8dcSSimon Schubert "CSEBCDICESA", \ 2475796c8dcSSimon Schubert "CSEBCDICESS", \ 2485796c8dcSSimon Schubert "CSEBCDICFISE", \ 2495796c8dcSSimon Schubert "CSEBCDICFISEA", \ 2505796c8dcSSimon Schubert "CSEBCDICFR", \ 2515796c8dcSSimon Schubert "CSEBCDICIT", \ 2525796c8dcSSimon Schubert "CSEBCDICPT", \ 2535796c8dcSSimon Schubert "CSEBCDICUK", \ 2545796c8dcSSimon Schubert "CSEBCDICUS", \ 2555796c8dcSSimon Schubert "CSEUCKR", \ 2565796c8dcSSimon Schubert "CSEUCPKDFMTJAPANESE", \ 2575796c8dcSSimon Schubert "CSGB2312", \ 2585796c8dcSSimon Schubert "CSHPROMAN8", \ 2595796c8dcSSimon Schubert "CSIBM037", \ 2605796c8dcSSimon Schubert "CSIBM038", \ 2615796c8dcSSimon Schubert "CSIBM273", \ 2625796c8dcSSimon Schubert "CSIBM274", \ 2635796c8dcSSimon Schubert "CSIBM275", \ 2645796c8dcSSimon Schubert "CSIBM277", \ 2655796c8dcSSimon Schubert "CSIBM278", \ 2665796c8dcSSimon Schubert "CSIBM280", \ 2675796c8dcSSimon Schubert "CSIBM281", \ 2685796c8dcSSimon Schubert "CSIBM284", \ 2695796c8dcSSimon Schubert "CSIBM285", \ 2705796c8dcSSimon Schubert "CSIBM290", \ 2715796c8dcSSimon Schubert "CSIBM297", \ 2725796c8dcSSimon Schubert "CSIBM420", \ 2735796c8dcSSimon Schubert "CSIBM423", \ 2745796c8dcSSimon Schubert "CSIBM424", \ 2755796c8dcSSimon Schubert "CSIBM500", \ 2765796c8dcSSimon Schubert "CSIBM803", \ 2775796c8dcSSimon Schubert "CSIBM851", \ 2785796c8dcSSimon Schubert "CSIBM855", \ 2795796c8dcSSimon Schubert "CSIBM856", \ 2805796c8dcSSimon Schubert "CSIBM857", \ 2815796c8dcSSimon Schubert "CSIBM860", \ 2825796c8dcSSimon Schubert "CSIBM863", \ 2835796c8dcSSimon Schubert "CSIBM864", \ 2845796c8dcSSimon Schubert "CSIBM865", \ 2855796c8dcSSimon Schubert "CSIBM866", \ 2865796c8dcSSimon Schubert "CSIBM868", \ 2875796c8dcSSimon Schubert "CSIBM869", \ 2885796c8dcSSimon Schubert "CSIBM870", \ 2895796c8dcSSimon Schubert "CSIBM871", \ 2905796c8dcSSimon Schubert "CSIBM880", \ 2915796c8dcSSimon Schubert "CSIBM891", \ 2925796c8dcSSimon Schubert "CSIBM901", \ 2935796c8dcSSimon Schubert "CSIBM902", \ 2945796c8dcSSimon Schubert "CSIBM903", \ 2955796c8dcSSimon Schubert "CSIBM904", \ 2965796c8dcSSimon Schubert "CSIBM905", \ 2975796c8dcSSimon Schubert "CSIBM918", \ 2985796c8dcSSimon Schubert "CSIBM921", \ 2995796c8dcSSimon Schubert "CSIBM922", \ 3005796c8dcSSimon Schubert "CSIBM930", \ 3015796c8dcSSimon Schubert "CSIBM932", \ 3025796c8dcSSimon Schubert "CSIBM933", \ 3035796c8dcSSimon Schubert "CSIBM935", \ 3045796c8dcSSimon Schubert "CSIBM937", \ 3055796c8dcSSimon Schubert "CSIBM939", \ 3065796c8dcSSimon Schubert "CSIBM943", \ 3075796c8dcSSimon Schubert "CSIBM1008", \ 3085796c8dcSSimon Schubert "CSIBM1025", \ 3095796c8dcSSimon Schubert "CSIBM1026", \ 3105796c8dcSSimon Schubert "CSIBM1097", \ 3115796c8dcSSimon Schubert "CSIBM1112", \ 3125796c8dcSSimon Schubert "CSIBM1122", \ 3135796c8dcSSimon Schubert "CSIBM1123", \ 3145796c8dcSSimon Schubert "CSIBM1124", \ 3155796c8dcSSimon Schubert "CSIBM1129", \ 3165796c8dcSSimon Schubert "CSIBM1130", \ 3175796c8dcSSimon Schubert "CSIBM1132", \ 3185796c8dcSSimon Schubert "CSIBM1133", \ 3195796c8dcSSimon Schubert "CSIBM1137", \ 3205796c8dcSSimon Schubert "CSIBM1140", \ 3215796c8dcSSimon Schubert "CSIBM1141", \ 3225796c8dcSSimon Schubert "CSIBM1142", \ 3235796c8dcSSimon Schubert "CSIBM1143", \ 3245796c8dcSSimon Schubert "CSIBM1144", \ 3255796c8dcSSimon Schubert "CSIBM1145", \ 3265796c8dcSSimon Schubert "CSIBM1146", \ 3275796c8dcSSimon Schubert "CSIBM1147", \ 3285796c8dcSSimon Schubert "CSIBM1148", \ 3295796c8dcSSimon Schubert "CSIBM1149", \ 3305796c8dcSSimon Schubert "CSIBM1153", \ 3315796c8dcSSimon Schubert "CSIBM1154", \ 3325796c8dcSSimon Schubert "CSIBM1155", \ 3335796c8dcSSimon Schubert "CSIBM1156", \ 3345796c8dcSSimon Schubert "CSIBM1157", \ 3355796c8dcSSimon Schubert "CSIBM1158", \ 3365796c8dcSSimon Schubert "CSIBM1160", \ 3375796c8dcSSimon Schubert "CSIBM1161", \ 3385796c8dcSSimon Schubert "CSIBM1163", \ 3395796c8dcSSimon Schubert "CSIBM1164", \ 3405796c8dcSSimon Schubert "CSIBM1166", \ 3415796c8dcSSimon Schubert "CSIBM1167", \ 3425796c8dcSSimon Schubert "CSIBM1364", \ 3435796c8dcSSimon Schubert "CSIBM1371", \ 3445796c8dcSSimon Schubert "CSIBM1388", \ 3455796c8dcSSimon Schubert "CSIBM1390", \ 3465796c8dcSSimon Schubert "CSIBM1399", \ 3475796c8dcSSimon Schubert "CSIBM4517", \ 3485796c8dcSSimon Schubert "CSIBM4899", \ 3495796c8dcSSimon Schubert "CSIBM4909", \ 3505796c8dcSSimon Schubert "CSIBM4971", \ 3515796c8dcSSimon Schubert "CSIBM5347", \ 3525796c8dcSSimon Schubert "CSIBM9030", \ 3535796c8dcSSimon Schubert "CSIBM9066", \ 3545796c8dcSSimon Schubert "CSIBM9448", \ 3555796c8dcSSimon Schubert "CSIBM12712", \ 3565796c8dcSSimon Schubert "CSIBM16804", \ 3575796c8dcSSimon Schubert "CSIBM11621162", \ 3585796c8dcSSimon Schubert "CSISO4UNITEDKINGDOM", \ 3595796c8dcSSimon Schubert "CSISO10SWEDISH", \ 3605796c8dcSSimon Schubert "CSISO11SWEDISHFORNAMES", \ 3615796c8dcSSimon Schubert "CSISO14JISC6220RO", \ 3625796c8dcSSimon Schubert "CSISO15ITALIAN", \ 3635796c8dcSSimon Schubert "CSISO16PORTUGESE", \ 3645796c8dcSSimon Schubert "CSISO17SPANISH", \ 3655796c8dcSSimon Schubert "CSISO18GREEK7OLD", \ 3665796c8dcSSimon Schubert "CSISO19LATINGREEK", \ 3675796c8dcSSimon Schubert "CSISO21GERMAN", \ 3685796c8dcSSimon Schubert "CSISO25FRENCH", \ 3695796c8dcSSimon Schubert "CSISO27LATINGREEK1", \ 3705796c8dcSSimon Schubert "CSISO49INIS", \ 3715796c8dcSSimon Schubert "CSISO50INIS8", \ 3725796c8dcSSimon Schubert "CSISO51INISCYRILLIC", \ 3735796c8dcSSimon Schubert "CSISO58GB1988", \ 3745796c8dcSSimon Schubert "CSISO60DANISHNORWEGIAN", \ 3755796c8dcSSimon Schubert "CSISO60NORWEGIAN1", \ 3765796c8dcSSimon Schubert "CSISO61NORWEGIAN2", \ 3775796c8dcSSimon Schubert "CSISO69FRENCH", \ 3785796c8dcSSimon Schubert "CSISO84PORTUGUESE2", \ 3795796c8dcSSimon Schubert "CSISO85SPANISH2", \ 3805796c8dcSSimon Schubert "CSISO86HUNGARIAN", \ 3815796c8dcSSimon Schubert "CSISO88GREEK7", \ 3825796c8dcSSimon Schubert "CSISO89ASMO449", \ 3835796c8dcSSimon Schubert "CSISO90", \ 3845796c8dcSSimon Schubert "CSISO92JISC62991984B", \ 3855796c8dcSSimon Schubert "CSISO99NAPLPS", \ 3865796c8dcSSimon Schubert "CSISO103T618BIT", \ 3875796c8dcSSimon Schubert "CSISO111ECMACYRILLIC", \ 3885796c8dcSSimon Schubert "CSISO121CANADIAN1", \ 3895796c8dcSSimon Schubert "CSISO122CANADIAN2", \ 3905796c8dcSSimon Schubert "CSISO139CSN369103", \ 3915796c8dcSSimon Schubert "CSISO141JUSIB1002", \ 3925796c8dcSSimon Schubert "CSISO143IECP271", \ 3935796c8dcSSimon Schubert "CSISO150", \ 3945796c8dcSSimon Schubert "CSISO150GREEKCCITT", \ 3955796c8dcSSimon Schubert "CSISO151CUBA", \ 3965796c8dcSSimon Schubert "CSISO153GOST1976874", \ 3975796c8dcSSimon Schubert "CSISO646DANISH", \ 3985796c8dcSSimon Schubert "CSISO2022CN", \ 3995796c8dcSSimon Schubert "CSISO2022JP", \ 4005796c8dcSSimon Schubert "CSISO2022JP2", \ 4015796c8dcSSimon Schubert "CSISO2022KR", \ 4025796c8dcSSimon Schubert "CSISO2033", \ 4035796c8dcSSimon Schubert "CSISO5427CYRILLIC", \ 4045796c8dcSSimon Schubert "CSISO5427CYRILLIC1981", \ 4055796c8dcSSimon Schubert "CSISO5428GREEK", \ 4065796c8dcSSimon Schubert "CSISO10367BOX", \ 4075796c8dcSSimon Schubert "CSISOLATIN1", \ 4085796c8dcSSimon Schubert "CSISOLATIN2", \ 4095796c8dcSSimon Schubert "CSISOLATIN3", \ 4105796c8dcSSimon Schubert "CSISOLATIN4", \ 4115796c8dcSSimon Schubert "CSISOLATIN5", \ 4125796c8dcSSimon Schubert "CSISOLATIN6", \ 4135796c8dcSSimon Schubert "CSISOLATINARABIC", \ 4145796c8dcSSimon Schubert "CSISOLATINCYRILLIC", \ 4155796c8dcSSimon Schubert "CSISOLATINGREEK", \ 4165796c8dcSSimon Schubert "CSISOLATINHEBREW", \ 4175796c8dcSSimon Schubert "CSKOI8R", \ 4185796c8dcSSimon Schubert "CSKSC5636", \ 4195796c8dcSSimon Schubert "CSMACINTOSH", \ 4205796c8dcSSimon Schubert "CSNATSDANO", \ 4215796c8dcSSimon Schubert "CSNATSSEFI", \ 4225796c8dcSSimon Schubert "CSN_369103", \ 4235796c8dcSSimon Schubert "CSPC8CODEPAGE437", \ 4245796c8dcSSimon Schubert "CSPC775BALTIC", \ 4255796c8dcSSimon Schubert "CSPC850MULTILINGUAL", \ 4265796c8dcSSimon Schubert "CSPC862LATINHEBREW", \ 4275796c8dcSSimon Schubert "CSPCP852", \ 4285796c8dcSSimon Schubert "CSSHIFTJIS", \ 4295796c8dcSSimon Schubert "CSUCS4", \ 4305796c8dcSSimon Schubert "CSUNICODE", \ 4315796c8dcSSimon Schubert "CSWINDOWS31J", \ 4325796c8dcSSimon Schubert "CUBA", \ 4335796c8dcSSimon Schubert "CWI-2", \ 4345796c8dcSSimon Schubert "CWI", \ 4355796c8dcSSimon Schubert "CYRILLIC", \ 4365796c8dcSSimon Schubert "DE", \ 4375796c8dcSSimon Schubert "DEC-MCS", \ 4385796c8dcSSimon Schubert "DEC", \ 4395796c8dcSSimon Schubert "DECMCS", \ 4405796c8dcSSimon Schubert "DIN_66003", \ 4415796c8dcSSimon Schubert "DK", \ 4425796c8dcSSimon Schubert "DS2089", \ 4435796c8dcSSimon Schubert "DS_2089", \ 4445796c8dcSSimon Schubert "E13B", \ 4455796c8dcSSimon Schubert "EBCDIC-AT-DE-A", \ 4465796c8dcSSimon Schubert "EBCDIC-AT-DE", \ 4475796c8dcSSimon Schubert "EBCDIC-BE", \ 4485796c8dcSSimon Schubert "EBCDIC-BR", \ 4495796c8dcSSimon Schubert "EBCDIC-CA-FR", \ 4505796c8dcSSimon Schubert "EBCDIC-CP-AR1", \ 4515796c8dcSSimon Schubert "EBCDIC-CP-AR2", \ 4525796c8dcSSimon Schubert "EBCDIC-CP-BE", \ 4535796c8dcSSimon Schubert "EBCDIC-CP-CA", \ 4545796c8dcSSimon Schubert "EBCDIC-CP-CH", \ 4555796c8dcSSimon Schubert "EBCDIC-CP-DK", \ 4565796c8dcSSimon Schubert "EBCDIC-CP-ES", \ 4575796c8dcSSimon Schubert "EBCDIC-CP-FI", \ 4585796c8dcSSimon Schubert "EBCDIC-CP-FR", \ 4595796c8dcSSimon Schubert "EBCDIC-CP-GB", \ 4605796c8dcSSimon Schubert "EBCDIC-CP-GR", \ 4615796c8dcSSimon Schubert "EBCDIC-CP-HE", \ 4625796c8dcSSimon Schubert "EBCDIC-CP-IS", \ 4635796c8dcSSimon Schubert "EBCDIC-CP-IT", \ 4645796c8dcSSimon Schubert "EBCDIC-CP-NL", \ 4655796c8dcSSimon Schubert "EBCDIC-CP-NO", \ 4665796c8dcSSimon Schubert "EBCDIC-CP-ROECE", \ 4675796c8dcSSimon Schubert "EBCDIC-CP-SE", \ 4685796c8dcSSimon Schubert "EBCDIC-CP-TR", \ 4695796c8dcSSimon Schubert "EBCDIC-CP-US", \ 4705796c8dcSSimon Schubert "EBCDIC-CP-WT", \ 4715796c8dcSSimon Schubert "EBCDIC-CP-YU", \ 4725796c8dcSSimon Schubert "EBCDIC-CYRILLIC", \ 4735796c8dcSSimon Schubert "EBCDIC-DK-NO-A", \ 4745796c8dcSSimon Schubert "EBCDIC-DK-NO", \ 4755796c8dcSSimon Schubert "EBCDIC-ES-A", \ 4765796c8dcSSimon Schubert "EBCDIC-ES-S", \ 4775796c8dcSSimon Schubert "EBCDIC-ES", \ 4785796c8dcSSimon Schubert "EBCDIC-FI-SE-A", \ 4795796c8dcSSimon Schubert "EBCDIC-FI-SE", \ 4805796c8dcSSimon Schubert "EBCDIC-FR", \ 4815796c8dcSSimon Schubert "EBCDIC-GREEK", \ 4825796c8dcSSimon Schubert "EBCDIC-INT", \ 4835796c8dcSSimon Schubert "EBCDIC-INT1", \ 4845796c8dcSSimon Schubert "EBCDIC-IS-FRISS", \ 4855796c8dcSSimon Schubert "EBCDIC-IT", \ 4865796c8dcSSimon Schubert "EBCDIC-JP-E", \ 4875796c8dcSSimon Schubert "EBCDIC-JP-KANA", \ 4885796c8dcSSimon Schubert "EBCDIC-PT", \ 4895796c8dcSSimon Schubert "EBCDIC-UK", \ 4905796c8dcSSimon Schubert "EBCDIC-US", \ 4915796c8dcSSimon Schubert "EBCDICATDE", \ 4925796c8dcSSimon Schubert "EBCDICATDEA", \ 4935796c8dcSSimon Schubert "EBCDICCAFR", \ 4945796c8dcSSimon Schubert "EBCDICDKNO", \ 4955796c8dcSSimon Schubert "EBCDICDKNOA", \ 4965796c8dcSSimon Schubert "EBCDICES", \ 4975796c8dcSSimon Schubert "EBCDICESA", \ 4985796c8dcSSimon Schubert "EBCDICESS", \ 4995796c8dcSSimon Schubert "EBCDICFISE", \ 5005796c8dcSSimon Schubert "EBCDICFISEA", \ 5015796c8dcSSimon Schubert "EBCDICFR", \ 5025796c8dcSSimon Schubert "EBCDICISFRISS", \ 5035796c8dcSSimon Schubert "EBCDICIT", \ 5045796c8dcSSimon Schubert "EBCDICPT", \ 5055796c8dcSSimon Schubert "EBCDICUK", \ 5065796c8dcSSimon Schubert "EBCDICUS", \ 5075796c8dcSSimon Schubert "ECMA-114", \ 5085796c8dcSSimon Schubert "ECMA-118", \ 5095796c8dcSSimon Schubert "ECMA-128", \ 5105796c8dcSSimon Schubert "ECMA-CYRILLIC", \ 5115796c8dcSSimon Schubert "ECMACYRILLIC", \ 5125796c8dcSSimon Schubert "ELOT_928", \ 5135796c8dcSSimon Schubert "ES", \ 5145796c8dcSSimon Schubert "ES2", \ 5155796c8dcSSimon Schubert "EUC-CN", \ 5165796c8dcSSimon Schubert "EUC-JISX0213", \ 5175796c8dcSSimon Schubert "EUC-JP-MS", \ 5185796c8dcSSimon Schubert "EUC-JP", \ 5195796c8dcSSimon Schubert "EUC-KR", \ 5205796c8dcSSimon Schubert "EUC-TW", \ 5215796c8dcSSimon Schubert "EUCCN", \ 5225796c8dcSSimon Schubert "EUCJP-MS", \ 5235796c8dcSSimon Schubert "EUCJP-OPEN", \ 5245796c8dcSSimon Schubert "EUCJP-WIN", \ 5255796c8dcSSimon Schubert "EUCJP", \ 5265796c8dcSSimon Schubert "EUCKR", \ 5275796c8dcSSimon Schubert "EUCTW", \ 5285796c8dcSSimon Schubert "FI", \ 5295796c8dcSSimon Schubert "FR", \ 5305796c8dcSSimon Schubert "GB", \ 5315796c8dcSSimon Schubert "GB2312", \ 5325796c8dcSSimon Schubert "GB13000", \ 5335796c8dcSSimon Schubert "GB18030", \ 5345796c8dcSSimon Schubert "GBK", \ 5355796c8dcSSimon Schubert "GB_1988-80", \ 5365796c8dcSSimon Schubert "GB_198880", \ 5375796c8dcSSimon Schubert "GEORGIAN-ACADEMY", \ 5385796c8dcSSimon Schubert "GEORGIAN-PS", \ 5395796c8dcSSimon Schubert "GOST_19768-74", \ 5405796c8dcSSimon Schubert "GOST_19768", \ 5415796c8dcSSimon Schubert "GOST_1976874", \ 5425796c8dcSSimon Schubert "GREEK-CCITT", \ 5435796c8dcSSimon Schubert "GREEK", \ 5445796c8dcSSimon Schubert "GREEK7-OLD", \ 5455796c8dcSSimon Schubert "GREEK7", \ 5465796c8dcSSimon Schubert "GREEK7OLD", \ 5475796c8dcSSimon Schubert "GREEK8", \ 5485796c8dcSSimon Schubert "GREEKCCITT", \ 5495796c8dcSSimon Schubert "HEBREW", \ 5505796c8dcSSimon Schubert "HP-GREEK8", \ 5515796c8dcSSimon Schubert "HP-ROMAN8", \ 5525796c8dcSSimon Schubert "HP-ROMAN9", \ 5535796c8dcSSimon Schubert "HP-THAI8", \ 5545796c8dcSSimon Schubert "HP-TURKISH8", \ 5555796c8dcSSimon Schubert "HPGREEK8", \ 5565796c8dcSSimon Schubert "HPROMAN8", \ 5575796c8dcSSimon Schubert "HPROMAN9", \ 5585796c8dcSSimon Schubert "HPTHAI8", \ 5595796c8dcSSimon Schubert "HPTURKISH8", \ 5605796c8dcSSimon Schubert "HU", \ 5615796c8dcSSimon Schubert "IBM-803", \ 5625796c8dcSSimon Schubert "IBM-856", \ 5635796c8dcSSimon Schubert "IBM-901", \ 5645796c8dcSSimon Schubert "IBM-902", \ 5655796c8dcSSimon Schubert "IBM-921", \ 5665796c8dcSSimon Schubert "IBM-922", \ 5675796c8dcSSimon Schubert "IBM-930", \ 5685796c8dcSSimon Schubert "IBM-932", \ 5695796c8dcSSimon Schubert "IBM-933", \ 5705796c8dcSSimon Schubert "IBM-935", \ 5715796c8dcSSimon Schubert "IBM-937", \ 5725796c8dcSSimon Schubert "IBM-939", \ 5735796c8dcSSimon Schubert "IBM-943", \ 5745796c8dcSSimon Schubert "IBM-1008", \ 5755796c8dcSSimon Schubert "IBM-1025", \ 5765796c8dcSSimon Schubert "IBM-1046", \ 5775796c8dcSSimon Schubert "IBM-1047", \ 5785796c8dcSSimon Schubert "IBM-1097", \ 5795796c8dcSSimon Schubert "IBM-1112", \ 5805796c8dcSSimon Schubert "IBM-1122", \ 5815796c8dcSSimon Schubert "IBM-1123", \ 5825796c8dcSSimon Schubert "IBM-1124", \ 5835796c8dcSSimon Schubert "IBM-1129", \ 5845796c8dcSSimon Schubert "IBM-1130", \ 5855796c8dcSSimon Schubert "IBM-1132", \ 5865796c8dcSSimon Schubert "IBM-1133", \ 5875796c8dcSSimon Schubert "IBM-1137", \ 5885796c8dcSSimon Schubert "IBM-1140", \ 5895796c8dcSSimon Schubert "IBM-1141", \ 5905796c8dcSSimon Schubert "IBM-1142", \ 5915796c8dcSSimon Schubert "IBM-1143", \ 5925796c8dcSSimon Schubert "IBM-1144", \ 5935796c8dcSSimon Schubert "IBM-1145", \ 5945796c8dcSSimon Schubert "IBM-1146", \ 5955796c8dcSSimon Schubert "IBM-1147", \ 5965796c8dcSSimon Schubert "IBM-1148", \ 5975796c8dcSSimon Schubert "IBM-1149", \ 5985796c8dcSSimon Schubert "IBM-1153", \ 5995796c8dcSSimon Schubert "IBM-1154", \ 6005796c8dcSSimon Schubert "IBM-1155", \ 6015796c8dcSSimon Schubert "IBM-1156", \ 6025796c8dcSSimon Schubert "IBM-1157", \ 6035796c8dcSSimon Schubert "IBM-1158", \ 6045796c8dcSSimon Schubert "IBM-1160", \ 6055796c8dcSSimon Schubert "IBM-1161", \ 6065796c8dcSSimon Schubert "IBM-1162", \ 6075796c8dcSSimon Schubert "IBM-1163", \ 6085796c8dcSSimon Schubert "IBM-1164", \ 6095796c8dcSSimon Schubert "IBM-1166", \ 6105796c8dcSSimon Schubert "IBM-1167", \ 6115796c8dcSSimon Schubert "IBM-1364", \ 6125796c8dcSSimon Schubert "IBM-1371", \ 6135796c8dcSSimon Schubert "IBM-1388", \ 6145796c8dcSSimon Schubert "IBM-1390", \ 6155796c8dcSSimon Schubert "IBM-1399", \ 6165796c8dcSSimon Schubert "IBM-4517", \ 6175796c8dcSSimon Schubert "IBM-4899", \ 6185796c8dcSSimon Schubert "IBM-4909", \ 6195796c8dcSSimon Schubert "IBM-4971", \ 6205796c8dcSSimon Schubert "IBM-5347", \ 6215796c8dcSSimon Schubert "IBM-9030", \ 6225796c8dcSSimon Schubert "IBM-9066", \ 6235796c8dcSSimon Schubert "IBM-9448", \ 6245796c8dcSSimon Schubert "IBM-12712", \ 6255796c8dcSSimon Schubert "IBM-16804", \ 6265796c8dcSSimon Schubert "IBM037", \ 6275796c8dcSSimon Schubert "IBM038", \ 6285796c8dcSSimon Schubert "IBM256", \ 6295796c8dcSSimon Schubert "IBM273", \ 6305796c8dcSSimon Schubert "IBM274", \ 6315796c8dcSSimon Schubert "IBM275", \ 6325796c8dcSSimon Schubert "IBM277", \ 6335796c8dcSSimon Schubert "IBM278", \ 6345796c8dcSSimon Schubert "IBM280", \ 6355796c8dcSSimon Schubert "IBM281", \ 6365796c8dcSSimon Schubert "IBM284", \ 6375796c8dcSSimon Schubert "IBM285", \ 6385796c8dcSSimon Schubert "IBM290", \ 6395796c8dcSSimon Schubert "IBM297", \ 6405796c8dcSSimon Schubert "IBM367", \ 6415796c8dcSSimon Schubert "IBM420", \ 6425796c8dcSSimon Schubert "IBM423", \ 6435796c8dcSSimon Schubert "IBM424", \ 6445796c8dcSSimon Schubert "IBM437", \ 6455796c8dcSSimon Schubert "IBM500", \ 6465796c8dcSSimon Schubert "IBM775", \ 6475796c8dcSSimon Schubert "IBM803", \ 6485796c8dcSSimon Schubert "IBM813", \ 6495796c8dcSSimon Schubert "IBM819", \ 6505796c8dcSSimon Schubert "IBM848", \ 6515796c8dcSSimon Schubert "IBM850", \ 6525796c8dcSSimon Schubert "IBM851", \ 6535796c8dcSSimon Schubert "IBM852", \ 6545796c8dcSSimon Schubert "IBM855", \ 6555796c8dcSSimon Schubert "IBM856", \ 6565796c8dcSSimon Schubert "IBM857", \ 6575796c8dcSSimon Schubert "IBM860", \ 6585796c8dcSSimon Schubert "IBM861", \ 6595796c8dcSSimon Schubert "IBM862", \ 6605796c8dcSSimon Schubert "IBM863", \ 6615796c8dcSSimon Schubert "IBM864", \ 6625796c8dcSSimon Schubert "IBM865", \ 6635796c8dcSSimon Schubert "IBM866", \ 6645796c8dcSSimon Schubert "IBM866NAV", \ 6655796c8dcSSimon Schubert "IBM868", \ 6665796c8dcSSimon Schubert "IBM869", \ 6675796c8dcSSimon Schubert "IBM870", \ 6685796c8dcSSimon Schubert "IBM871", \ 6695796c8dcSSimon Schubert "IBM874", \ 6705796c8dcSSimon Schubert "IBM875", \ 6715796c8dcSSimon Schubert "IBM880", \ 6725796c8dcSSimon Schubert "IBM891", \ 6735796c8dcSSimon Schubert "IBM901", \ 6745796c8dcSSimon Schubert "IBM902", \ 6755796c8dcSSimon Schubert "IBM903", \ 6765796c8dcSSimon Schubert "IBM904", \ 6775796c8dcSSimon Schubert "IBM905", \ 6785796c8dcSSimon Schubert "IBM912", \ 6795796c8dcSSimon Schubert "IBM915", \ 6805796c8dcSSimon Schubert "IBM916", \ 6815796c8dcSSimon Schubert "IBM918", \ 6825796c8dcSSimon Schubert "IBM920", \ 6835796c8dcSSimon Schubert "IBM921", \ 6845796c8dcSSimon Schubert "IBM922", \ 6855796c8dcSSimon Schubert "IBM930", \ 6865796c8dcSSimon Schubert "IBM932", \ 6875796c8dcSSimon Schubert "IBM933", \ 6885796c8dcSSimon Schubert "IBM935", \ 6895796c8dcSSimon Schubert "IBM937", \ 6905796c8dcSSimon Schubert "IBM939", \ 6915796c8dcSSimon Schubert "IBM943", \ 6925796c8dcSSimon Schubert "IBM1004", \ 6935796c8dcSSimon Schubert "IBM1008", \ 6945796c8dcSSimon Schubert "IBM1025", \ 6955796c8dcSSimon Schubert "IBM1026", \ 6965796c8dcSSimon Schubert "IBM1046", \ 6975796c8dcSSimon Schubert "IBM1047", \ 6985796c8dcSSimon Schubert "IBM1089", \ 6995796c8dcSSimon Schubert "IBM1097", \ 7005796c8dcSSimon Schubert "IBM1112", \ 7015796c8dcSSimon Schubert "IBM1122", \ 7025796c8dcSSimon Schubert "IBM1123", \ 7035796c8dcSSimon Schubert "IBM1124", \ 7045796c8dcSSimon Schubert "IBM1129", \ 7055796c8dcSSimon Schubert "IBM1130", \ 7065796c8dcSSimon Schubert "IBM1132", \ 7075796c8dcSSimon Schubert "IBM1133", \ 7085796c8dcSSimon Schubert "IBM1137", \ 7095796c8dcSSimon Schubert "IBM1140", \ 7105796c8dcSSimon Schubert "IBM1141", \ 7115796c8dcSSimon Schubert "IBM1142", \ 7125796c8dcSSimon Schubert "IBM1143", \ 7135796c8dcSSimon Schubert "IBM1144", \ 7145796c8dcSSimon Schubert "IBM1145", \ 7155796c8dcSSimon Schubert "IBM1146", \ 7165796c8dcSSimon Schubert "IBM1147", \ 7175796c8dcSSimon Schubert "IBM1148", \ 7185796c8dcSSimon Schubert "IBM1149", \ 7195796c8dcSSimon Schubert "IBM1153", \ 7205796c8dcSSimon Schubert "IBM1154", \ 7215796c8dcSSimon Schubert "IBM1155", \ 7225796c8dcSSimon Schubert "IBM1156", \ 7235796c8dcSSimon Schubert "IBM1157", \ 7245796c8dcSSimon Schubert "IBM1158", \ 7255796c8dcSSimon Schubert "IBM1160", \ 7265796c8dcSSimon Schubert "IBM1161", \ 7275796c8dcSSimon Schubert "IBM1162", \ 7285796c8dcSSimon Schubert "IBM1163", \ 7295796c8dcSSimon Schubert "IBM1164", \ 7305796c8dcSSimon Schubert "IBM1166", \ 7315796c8dcSSimon Schubert "IBM1167", \ 7325796c8dcSSimon Schubert "IBM1364", \ 7335796c8dcSSimon Schubert "IBM1371", \ 7345796c8dcSSimon Schubert "IBM1388", \ 7355796c8dcSSimon Schubert "IBM1390", \ 7365796c8dcSSimon Schubert "IBM1399", \ 7375796c8dcSSimon Schubert "IBM4517", \ 7385796c8dcSSimon Schubert "IBM4899", \ 7395796c8dcSSimon Schubert "IBM4909", \ 7405796c8dcSSimon Schubert "IBM4971", \ 7415796c8dcSSimon Schubert "IBM5347", \ 7425796c8dcSSimon Schubert "IBM9030", \ 7435796c8dcSSimon Schubert "IBM9066", \ 7445796c8dcSSimon Schubert "IBM9448", \ 7455796c8dcSSimon Schubert "IBM12712", \ 7465796c8dcSSimon Schubert "IBM16804", \ 7475796c8dcSSimon Schubert "IEC_P27-1", \ 7485796c8dcSSimon Schubert "IEC_P271", \ 7495796c8dcSSimon Schubert "INIS-8", \ 7505796c8dcSSimon Schubert "INIS-CYRILLIC", \ 7515796c8dcSSimon Schubert "INIS", \ 7525796c8dcSSimon Schubert "INIS8", \ 7535796c8dcSSimon Schubert "INISCYRILLIC", \ 7545796c8dcSSimon Schubert "ISIRI-3342", \ 7555796c8dcSSimon Schubert "ISIRI3342", \ 7565796c8dcSSimon Schubert "ISO-2022-CN-EXT", \ 7575796c8dcSSimon Schubert "ISO-2022-CN", \ 7585796c8dcSSimon Schubert "ISO-2022-JP-2", \ 7595796c8dcSSimon Schubert "ISO-2022-JP-3", \ 7605796c8dcSSimon Schubert "ISO-2022-JP", \ 7615796c8dcSSimon Schubert "ISO-2022-KR", \ 7625796c8dcSSimon Schubert "ISO-8859-1", \ 7635796c8dcSSimon Schubert "ISO-8859-2", \ 7645796c8dcSSimon Schubert "ISO-8859-3", \ 7655796c8dcSSimon Schubert "ISO-8859-4", \ 7665796c8dcSSimon Schubert "ISO-8859-5", \ 7675796c8dcSSimon Schubert "ISO-8859-6", \ 7685796c8dcSSimon Schubert "ISO-8859-7", \ 7695796c8dcSSimon Schubert "ISO-8859-8", \ 7705796c8dcSSimon Schubert "ISO-8859-9", \ 7715796c8dcSSimon Schubert "ISO-8859-9E", \ 7725796c8dcSSimon Schubert "ISO-8859-10", \ 7735796c8dcSSimon Schubert "ISO-8859-11", \ 7745796c8dcSSimon Schubert "ISO-8859-13", \ 7755796c8dcSSimon Schubert "ISO-8859-14", \ 7765796c8dcSSimon Schubert "ISO-8859-15", \ 7775796c8dcSSimon Schubert "ISO-8859-16", \ 7785796c8dcSSimon Schubert "ISO-10646", \ 7795796c8dcSSimon Schubert "ISO-CELTIC", \ 7805796c8dcSSimon Schubert "ISO-IR-4", \ 7815796c8dcSSimon Schubert "ISO-IR-6", \ 7825796c8dcSSimon Schubert "ISO-IR-8-1", \ 7835796c8dcSSimon Schubert "ISO-IR-9-1", \ 7845796c8dcSSimon Schubert "ISO-IR-10", \ 7855796c8dcSSimon Schubert "ISO-IR-11", \ 7865796c8dcSSimon Schubert "ISO-IR-14", \ 7875796c8dcSSimon Schubert "ISO-IR-15", \ 7885796c8dcSSimon Schubert "ISO-IR-16", \ 7895796c8dcSSimon Schubert "ISO-IR-17", \ 7905796c8dcSSimon Schubert "ISO-IR-18", \ 7915796c8dcSSimon Schubert "ISO-IR-19", \ 7925796c8dcSSimon Schubert "ISO-IR-21", \ 7935796c8dcSSimon Schubert "ISO-IR-25", \ 7945796c8dcSSimon Schubert "ISO-IR-27", \ 7955796c8dcSSimon Schubert "ISO-IR-37", \ 7965796c8dcSSimon Schubert "ISO-IR-49", \ 7975796c8dcSSimon Schubert "ISO-IR-50", \ 7985796c8dcSSimon Schubert "ISO-IR-51", \ 7995796c8dcSSimon Schubert "ISO-IR-54", \ 8005796c8dcSSimon Schubert "ISO-IR-55", \ 8015796c8dcSSimon Schubert "ISO-IR-57", \ 8025796c8dcSSimon Schubert "ISO-IR-60", \ 8035796c8dcSSimon Schubert "ISO-IR-61", \ 8045796c8dcSSimon Schubert "ISO-IR-69", \ 8055796c8dcSSimon Schubert "ISO-IR-84", \ 8065796c8dcSSimon Schubert "ISO-IR-85", \ 8075796c8dcSSimon Schubert "ISO-IR-86", \ 8085796c8dcSSimon Schubert "ISO-IR-88", \ 8095796c8dcSSimon Schubert "ISO-IR-89", \ 8105796c8dcSSimon Schubert "ISO-IR-90", \ 8115796c8dcSSimon Schubert "ISO-IR-92", \ 8125796c8dcSSimon Schubert "ISO-IR-98", \ 8135796c8dcSSimon Schubert "ISO-IR-99", \ 8145796c8dcSSimon Schubert "ISO-IR-100", \ 8155796c8dcSSimon Schubert "ISO-IR-101", \ 8165796c8dcSSimon Schubert "ISO-IR-103", \ 8175796c8dcSSimon Schubert "ISO-IR-109", \ 8185796c8dcSSimon Schubert "ISO-IR-110", \ 8195796c8dcSSimon Schubert "ISO-IR-111", \ 8205796c8dcSSimon Schubert "ISO-IR-121", \ 8215796c8dcSSimon Schubert "ISO-IR-122", \ 8225796c8dcSSimon Schubert "ISO-IR-126", \ 8235796c8dcSSimon Schubert "ISO-IR-127", \ 8245796c8dcSSimon Schubert "ISO-IR-138", \ 8255796c8dcSSimon Schubert "ISO-IR-139", \ 8265796c8dcSSimon Schubert "ISO-IR-141", \ 8275796c8dcSSimon Schubert "ISO-IR-143", \ 8285796c8dcSSimon Schubert "ISO-IR-144", \ 8295796c8dcSSimon Schubert "ISO-IR-148", \ 8305796c8dcSSimon Schubert "ISO-IR-150", \ 8315796c8dcSSimon Schubert "ISO-IR-151", \ 8325796c8dcSSimon Schubert "ISO-IR-153", \ 8335796c8dcSSimon Schubert "ISO-IR-155", \ 8345796c8dcSSimon Schubert "ISO-IR-156", \ 8355796c8dcSSimon Schubert "ISO-IR-157", \ 8365796c8dcSSimon Schubert "ISO-IR-166", \ 8375796c8dcSSimon Schubert "ISO-IR-179", \ 8385796c8dcSSimon Schubert "ISO-IR-193", \ 8395796c8dcSSimon Schubert "ISO-IR-197", \ 8405796c8dcSSimon Schubert "ISO-IR-199", \ 8415796c8dcSSimon Schubert "ISO-IR-203", \ 8425796c8dcSSimon Schubert "ISO-IR-209", \ 8435796c8dcSSimon Schubert "ISO-IR-226", \ 8445796c8dcSSimon Schubert "ISO646-CA", \ 8455796c8dcSSimon Schubert "ISO646-CA2", \ 8465796c8dcSSimon Schubert "ISO646-CN", \ 8475796c8dcSSimon Schubert "ISO646-CU", \ 8485796c8dcSSimon Schubert "ISO646-DE", \ 8495796c8dcSSimon Schubert "ISO646-DK", \ 8505796c8dcSSimon Schubert "ISO646-ES", \ 8515796c8dcSSimon Schubert "ISO646-ES2", \ 8525796c8dcSSimon Schubert "ISO646-FI", \ 8535796c8dcSSimon Schubert "ISO646-FR", \ 8545796c8dcSSimon Schubert "ISO646-FR1", \ 8555796c8dcSSimon Schubert "ISO646-GB", \ 8565796c8dcSSimon Schubert "ISO646-HU", \ 8575796c8dcSSimon Schubert "ISO646-IT", \ 8585796c8dcSSimon Schubert "ISO646-JP-OCR-B", \ 8595796c8dcSSimon Schubert "ISO646-JP", \ 8605796c8dcSSimon Schubert "ISO646-KR", \ 8615796c8dcSSimon Schubert "ISO646-NO", \ 8625796c8dcSSimon Schubert "ISO646-NO2", \ 8635796c8dcSSimon Schubert "ISO646-PT", \ 8645796c8dcSSimon Schubert "ISO646-PT2", \ 8655796c8dcSSimon Schubert "ISO646-SE", \ 8665796c8dcSSimon Schubert "ISO646-SE2", \ 8675796c8dcSSimon Schubert "ISO646-US", \ 8685796c8dcSSimon Schubert "ISO646-YU", \ 8695796c8dcSSimon Schubert "ISO2022CN", \ 8705796c8dcSSimon Schubert "ISO2022CNEXT", \ 8715796c8dcSSimon Schubert "ISO2022JP", \ 8725796c8dcSSimon Schubert "ISO2022JP2", \ 8735796c8dcSSimon Schubert "ISO2022KR", \ 8745796c8dcSSimon Schubert "ISO6937", \ 8755796c8dcSSimon Schubert "ISO8859-1", \ 8765796c8dcSSimon Schubert "ISO8859-2", \ 8775796c8dcSSimon Schubert "ISO8859-3", \ 8785796c8dcSSimon Schubert "ISO8859-4", \ 8795796c8dcSSimon Schubert "ISO8859-5", \ 8805796c8dcSSimon Schubert "ISO8859-6", \ 8815796c8dcSSimon Schubert "ISO8859-7", \ 8825796c8dcSSimon Schubert "ISO8859-8", \ 8835796c8dcSSimon Schubert "ISO8859-9", \ 8845796c8dcSSimon Schubert "ISO8859-9E", \ 8855796c8dcSSimon Schubert "ISO8859-10", \ 8865796c8dcSSimon Schubert "ISO8859-11", \ 8875796c8dcSSimon Schubert "ISO8859-13", \ 8885796c8dcSSimon Schubert "ISO8859-14", \ 8895796c8dcSSimon Schubert "ISO8859-15", \ 8905796c8dcSSimon Schubert "ISO8859-16", \ 8915796c8dcSSimon Schubert "ISO11548-1", \ 8925796c8dcSSimon Schubert "ISO88591", \ 8935796c8dcSSimon Schubert "ISO88592", \ 8945796c8dcSSimon Schubert "ISO88593", \ 8955796c8dcSSimon Schubert "ISO88594", \ 8965796c8dcSSimon Schubert "ISO88595", \ 8975796c8dcSSimon Schubert "ISO88596", \ 8985796c8dcSSimon Schubert "ISO88597", \ 8995796c8dcSSimon Schubert "ISO88598", \ 9005796c8dcSSimon Schubert "ISO88599", \ 9015796c8dcSSimon Schubert "ISO88599E", \ 9025796c8dcSSimon Schubert "ISO885910", \ 9035796c8dcSSimon Schubert "ISO885911", \ 9045796c8dcSSimon Schubert "ISO885913", \ 9055796c8dcSSimon Schubert "ISO885914", \ 9065796c8dcSSimon Schubert "ISO885915", \ 9075796c8dcSSimon Schubert "ISO885916", \ 9085796c8dcSSimon Schubert "ISO_646.IRV:1991", \ 9095796c8dcSSimon Schubert "ISO_2033-1983", \ 9105796c8dcSSimon Schubert "ISO_2033", \ 9115796c8dcSSimon Schubert "ISO_5427-EXT", \ 9125796c8dcSSimon Schubert "ISO_5427", \ 9135796c8dcSSimon Schubert "ISO_5427:1981", \ 9145796c8dcSSimon Schubert "ISO_5427EXT", \ 9155796c8dcSSimon Schubert "ISO_5428", \ 9165796c8dcSSimon Schubert "ISO_5428:1980", \ 9175796c8dcSSimon Schubert "ISO_6937-2", \ 9185796c8dcSSimon Schubert "ISO_6937-2:1983", \ 9195796c8dcSSimon Schubert "ISO_6937", \ 9205796c8dcSSimon Schubert "ISO_6937:1992", \ 9215796c8dcSSimon Schubert "ISO_8859-1", \ 9225796c8dcSSimon Schubert "ISO_8859-1:1987", \ 9235796c8dcSSimon Schubert "ISO_8859-2", \ 9245796c8dcSSimon Schubert "ISO_8859-2:1987", \ 9255796c8dcSSimon Schubert "ISO_8859-3", \ 9265796c8dcSSimon Schubert "ISO_8859-3:1988", \ 9275796c8dcSSimon Schubert "ISO_8859-4", \ 9285796c8dcSSimon Schubert "ISO_8859-4:1988", \ 9295796c8dcSSimon Schubert "ISO_8859-5", \ 9305796c8dcSSimon Schubert "ISO_8859-5:1988", \ 9315796c8dcSSimon Schubert "ISO_8859-6", \ 9325796c8dcSSimon Schubert "ISO_8859-6:1987", \ 9335796c8dcSSimon Schubert "ISO_8859-7", \ 9345796c8dcSSimon Schubert "ISO_8859-7:1987", \ 9355796c8dcSSimon Schubert "ISO_8859-7:2003", \ 9365796c8dcSSimon Schubert "ISO_8859-8", \ 9375796c8dcSSimon Schubert "ISO_8859-8:1988", \ 9385796c8dcSSimon Schubert "ISO_8859-9", \ 9395796c8dcSSimon Schubert "ISO_8859-9:1989", \ 9405796c8dcSSimon Schubert "ISO_8859-9E", \ 9415796c8dcSSimon Schubert "ISO_8859-10", \ 9425796c8dcSSimon Schubert "ISO_8859-10:1992", \ 9435796c8dcSSimon Schubert "ISO_8859-14", \ 9445796c8dcSSimon Schubert "ISO_8859-14:1998", \ 9455796c8dcSSimon Schubert "ISO_8859-15", \ 9465796c8dcSSimon Schubert "ISO_8859-15:1998", \ 9475796c8dcSSimon Schubert "ISO_8859-16", \ 9485796c8dcSSimon Schubert "ISO_8859-16:2001", \ 9495796c8dcSSimon Schubert "ISO_9036", \ 9505796c8dcSSimon Schubert "ISO_10367-BOX", \ 9515796c8dcSSimon Schubert "ISO_10367BOX", \ 9525796c8dcSSimon Schubert "ISO_11548-1", \ 9535796c8dcSSimon Schubert "ISO_69372", \ 9545796c8dcSSimon Schubert "IT", \ 9555796c8dcSSimon Schubert "JIS_C6220-1969-RO", \ 9565796c8dcSSimon Schubert "JIS_C6229-1984-B", \ 9575796c8dcSSimon Schubert "JIS_C62201969RO", \ 9585796c8dcSSimon Schubert "JIS_C62291984B", \ 9595796c8dcSSimon Schubert "JOHAB", \ 9605796c8dcSSimon Schubert "JP-OCR-B", \ 9615796c8dcSSimon Schubert "JP", \ 9625796c8dcSSimon Schubert "JS", \ 9635796c8dcSSimon Schubert "JUS_I.B1.002", \ 9645796c8dcSSimon Schubert "KOI-7", \ 9655796c8dcSSimon Schubert "KOI-8", \ 9665796c8dcSSimon Schubert "KOI8-R", \ 9675796c8dcSSimon Schubert "KOI8-RU", \ 9685796c8dcSSimon Schubert "KOI8-T", \ 9695796c8dcSSimon Schubert "KOI8-U", \ 9705796c8dcSSimon Schubert "KOI8", \ 9715796c8dcSSimon Schubert "KOI8R", \ 9725796c8dcSSimon Schubert "KOI8U", \ 9735796c8dcSSimon Schubert "KSC5636", \ 9745796c8dcSSimon Schubert "L1", \ 9755796c8dcSSimon Schubert "L2", \ 9765796c8dcSSimon Schubert "L3", \ 9775796c8dcSSimon Schubert "L4", \ 9785796c8dcSSimon Schubert "L5", \ 9795796c8dcSSimon Schubert "L6", \ 9805796c8dcSSimon Schubert "L7", \ 9815796c8dcSSimon Schubert "L8", \ 9825796c8dcSSimon Schubert "L10", \ 9835796c8dcSSimon Schubert "LATIN-9", \ 9845796c8dcSSimon Schubert "LATIN-GREEK-1", \ 9855796c8dcSSimon Schubert "LATIN-GREEK", \ 9865796c8dcSSimon Schubert "LATIN1", \ 9875796c8dcSSimon Schubert "LATIN2", \ 9885796c8dcSSimon Schubert "LATIN3", \ 9895796c8dcSSimon Schubert "LATIN4", \ 9905796c8dcSSimon Schubert "LATIN5", \ 9915796c8dcSSimon Schubert "LATIN6", \ 9925796c8dcSSimon Schubert "LATIN7", \ 9935796c8dcSSimon Schubert "LATIN8", \ 9945796c8dcSSimon Schubert "LATIN10", \ 9955796c8dcSSimon Schubert "LATINGREEK", \ 9965796c8dcSSimon Schubert "LATINGREEK1", \ 9975796c8dcSSimon Schubert "MAC-CENTRALEUROPE", \ 9985796c8dcSSimon Schubert "MAC-CYRILLIC", \ 9995796c8dcSSimon Schubert "MAC-IS", \ 10005796c8dcSSimon Schubert "MAC-SAMI", \ 10015796c8dcSSimon Schubert "MAC-UK", \ 10025796c8dcSSimon Schubert "MAC", \ 10035796c8dcSSimon Schubert "MACCYRILLIC", \ 10045796c8dcSSimon Schubert "MACINTOSH", \ 10055796c8dcSSimon Schubert "MACIS", \ 10065796c8dcSSimon Schubert "MACUK", \ 10075796c8dcSSimon Schubert "MACUKRAINIAN", \ 10085796c8dcSSimon Schubert "MIK", \ 10095796c8dcSSimon Schubert "MS-ANSI", \ 10105796c8dcSSimon Schubert "MS-ARAB", \ 10115796c8dcSSimon Schubert "MS-CYRL", \ 10125796c8dcSSimon Schubert "MS-EE", \ 10135796c8dcSSimon Schubert "MS-GREEK", \ 10145796c8dcSSimon Schubert "MS-HEBR", \ 10155796c8dcSSimon Schubert "MS-MAC-CYRILLIC", \ 10165796c8dcSSimon Schubert "MS-TURK", \ 10175796c8dcSSimon Schubert "MS932", \ 10185796c8dcSSimon Schubert "MS936", \ 10195796c8dcSSimon Schubert "MSCP949", \ 10205796c8dcSSimon Schubert "MSCP1361", \ 10215796c8dcSSimon Schubert "MSMACCYRILLIC", \ 10225796c8dcSSimon Schubert "MSZ_7795.3", \ 10235796c8dcSSimon Schubert "MS_KANJI", \ 10245796c8dcSSimon Schubert "NAPLPS", \ 10255796c8dcSSimon Schubert "NATS-DANO", \ 10265796c8dcSSimon Schubert "NATS-SEFI", \ 10275796c8dcSSimon Schubert "NATSDANO", \ 10285796c8dcSSimon Schubert "NATSSEFI", \ 10295796c8dcSSimon Schubert "NC_NC0010", \ 10305796c8dcSSimon Schubert "NC_NC00-10", \ 10315796c8dcSSimon Schubert "NC_NC00-10:81", \ 10325796c8dcSSimon Schubert "NF_Z_62-010", \ 10335796c8dcSSimon Schubert "NF_Z_62-010_(1973)", \ 10345796c8dcSSimon Schubert "NF_Z_62-010_1973", \ 10355796c8dcSSimon Schubert "NF_Z_62010", \ 10365796c8dcSSimon Schubert "NF_Z_62010_1973", \ 10375796c8dcSSimon Schubert "NO", \ 10385796c8dcSSimon Schubert "NO2", \ 10395796c8dcSSimon Schubert "NS_4551-1", \ 10405796c8dcSSimon Schubert "NS_4551-2", \ 10415796c8dcSSimon Schubert "NS_45511", \ 10425796c8dcSSimon Schubert "NS_45512", \ 10435796c8dcSSimon Schubert "OS2LATIN1", \ 10445796c8dcSSimon Schubert "OSF00010001", \ 10455796c8dcSSimon Schubert "OSF00010002", \ 10465796c8dcSSimon Schubert "OSF00010003", \ 10475796c8dcSSimon Schubert "OSF00010004", \ 10485796c8dcSSimon Schubert "OSF00010005", \ 10495796c8dcSSimon Schubert "OSF00010006", \ 10505796c8dcSSimon Schubert "OSF00010007", \ 10515796c8dcSSimon Schubert "OSF00010008", \ 10525796c8dcSSimon Schubert "OSF00010009", \ 10535796c8dcSSimon Schubert "OSF0001000A", \ 10545796c8dcSSimon Schubert "OSF00010020", \ 10555796c8dcSSimon Schubert "OSF00010100", \ 10565796c8dcSSimon Schubert "OSF00010101", \ 10575796c8dcSSimon Schubert "OSF00010102", \ 10585796c8dcSSimon Schubert "OSF00010104", \ 10595796c8dcSSimon Schubert "OSF00010105", \ 10605796c8dcSSimon Schubert "OSF00010106", \ 10615796c8dcSSimon Schubert "OSF00030010", \ 10625796c8dcSSimon Schubert "OSF0004000A", \ 10635796c8dcSSimon Schubert "OSF0005000A", \ 10645796c8dcSSimon Schubert "OSF05010001", \ 10655796c8dcSSimon Schubert "OSF100201A4", \ 10665796c8dcSSimon Schubert "OSF100201A8", \ 10675796c8dcSSimon Schubert "OSF100201B5", \ 10685796c8dcSSimon Schubert "OSF100201F4", \ 10695796c8dcSSimon Schubert "OSF100203B5", \ 10705796c8dcSSimon Schubert "OSF1002011C", \ 10715796c8dcSSimon Schubert "OSF1002011D", \ 10725796c8dcSSimon Schubert "OSF1002035D", \ 10735796c8dcSSimon Schubert "OSF1002035E", \ 10745796c8dcSSimon Schubert "OSF1002035F", \ 10755796c8dcSSimon Schubert "OSF1002036B", \ 10765796c8dcSSimon Schubert "OSF1002037B", \ 10775796c8dcSSimon Schubert "OSF10010001", \ 10785796c8dcSSimon Schubert "OSF10010004", \ 10795796c8dcSSimon Schubert "OSF10010006", \ 10805796c8dcSSimon Schubert "OSF10020025", \ 10815796c8dcSSimon Schubert "OSF10020111", \ 10825796c8dcSSimon Schubert "OSF10020115", \ 10835796c8dcSSimon Schubert "OSF10020116", \ 10845796c8dcSSimon Schubert "OSF10020118", \ 10855796c8dcSSimon Schubert "OSF10020122", \ 10865796c8dcSSimon Schubert "OSF10020129", \ 10875796c8dcSSimon Schubert "OSF10020352", \ 10885796c8dcSSimon Schubert "OSF10020354", \ 10895796c8dcSSimon Schubert "OSF10020357", \ 10905796c8dcSSimon Schubert "OSF10020359", \ 10915796c8dcSSimon Schubert "OSF10020360", \ 10925796c8dcSSimon Schubert "OSF10020364", \ 10935796c8dcSSimon Schubert "OSF10020365", \ 10945796c8dcSSimon Schubert "OSF10020366", \ 10955796c8dcSSimon Schubert "OSF10020367", \ 10965796c8dcSSimon Schubert "OSF10020370", \ 10975796c8dcSSimon Schubert "OSF10020387", \ 10985796c8dcSSimon Schubert "OSF10020388", \ 10995796c8dcSSimon Schubert "OSF10020396", \ 11005796c8dcSSimon Schubert "OSF10020402", \ 11015796c8dcSSimon Schubert "OSF10020417", \ 11025796c8dcSSimon Schubert "PT", \ 11035796c8dcSSimon Schubert "PT2", \ 11045796c8dcSSimon Schubert "PT154", \ 11055796c8dcSSimon Schubert "R8", \ 11065796c8dcSSimon Schubert "R9", \ 11075796c8dcSSimon Schubert "RK1048", \ 11085796c8dcSSimon Schubert "ROMAN8", \ 11095796c8dcSSimon Schubert "ROMAN9", \ 11105796c8dcSSimon Schubert "RUSCII", \ 11115796c8dcSSimon Schubert "SE", \ 11125796c8dcSSimon Schubert "SE2", \ 11135796c8dcSSimon Schubert "SEN_850200_B", \ 11145796c8dcSSimon Schubert "SEN_850200_C", \ 11155796c8dcSSimon Schubert "SHIFT-JIS", \ 11165796c8dcSSimon Schubert "SHIFT_JIS", \ 11175796c8dcSSimon Schubert "SHIFT_JISX0213", \ 11185796c8dcSSimon Schubert "SJIS-OPEN", \ 11195796c8dcSSimon Schubert "SJIS-WIN", \ 11205796c8dcSSimon Schubert "SJIS", \ 11215796c8dcSSimon Schubert "SS636127", \ 11225796c8dcSSimon Schubert "STRK1048-2002", \ 11235796c8dcSSimon Schubert "ST_SEV_358-88", \ 11245796c8dcSSimon Schubert "T.61-8BIT", \ 11255796c8dcSSimon Schubert "T.61", \ 11265796c8dcSSimon Schubert "T.618BIT", \ 11275796c8dcSSimon Schubert "TCVN-5712", \ 11285796c8dcSSimon Schubert "TCVN", \ 11295796c8dcSSimon Schubert "TCVN5712-1", \ 11305796c8dcSSimon Schubert "TCVN5712-1:1993", \ 11315796c8dcSSimon Schubert "THAI8", \ 11325796c8dcSSimon Schubert "TIS-620", \ 11335796c8dcSSimon Schubert "TIS620-0", \ 11345796c8dcSSimon Schubert "TIS620.2529-1", \ 11355796c8dcSSimon Schubert "TIS620.2533-0", \ 11365796c8dcSSimon Schubert "TIS620", \ 11375796c8dcSSimon Schubert "TS-5881", \ 11385796c8dcSSimon Schubert "TSCII", \ 11395796c8dcSSimon Schubert "TURKISH8", \ 11405796c8dcSSimon Schubert "UCS-2", \ 11415796c8dcSSimon Schubert "UCS-2BE", \ 11425796c8dcSSimon Schubert "UCS-2LE", \ 11435796c8dcSSimon Schubert "UCS-4", \ 11445796c8dcSSimon Schubert "UCS-4BE", \ 11455796c8dcSSimon Schubert "UCS-4LE", \ 11465796c8dcSSimon Schubert "UCS2", \ 11475796c8dcSSimon Schubert "UCS4", \ 11485796c8dcSSimon Schubert "UHC", \ 11495796c8dcSSimon Schubert "UJIS", \ 11505796c8dcSSimon Schubert "UK", \ 11515796c8dcSSimon Schubert "UNICODE", \ 11525796c8dcSSimon Schubert "UNICODEBIG", \ 11535796c8dcSSimon Schubert "UNICODELITTLE", \ 11545796c8dcSSimon Schubert "US-ASCII", \ 11555796c8dcSSimon Schubert "US", \ 11565796c8dcSSimon Schubert "UTF-7", \ 11575796c8dcSSimon Schubert "UTF-8", \ 11585796c8dcSSimon Schubert "UTF-16", \ 11595796c8dcSSimon Schubert "UTF-16BE", \ 11605796c8dcSSimon Schubert "UTF-16LE", \ 11615796c8dcSSimon Schubert "UTF-32", \ 11625796c8dcSSimon Schubert "UTF-32BE", \ 11635796c8dcSSimon Schubert "UTF-32LE", \ 11645796c8dcSSimon Schubert "UTF7", \ 11655796c8dcSSimon Schubert "UTF8", \ 11665796c8dcSSimon Schubert "UTF16", \ 11675796c8dcSSimon Schubert "UTF16BE", \ 11685796c8dcSSimon Schubert "UTF16LE", \ 11695796c8dcSSimon Schubert "UTF32", \ 11705796c8dcSSimon Schubert "UTF32BE", \ 11715796c8dcSSimon Schubert "UTF32LE", \ 11725796c8dcSSimon Schubert "VISCII", \ 11735796c8dcSSimon Schubert "WCHAR_T", \ 11745796c8dcSSimon Schubert "WIN-SAMI-2", \ 11755796c8dcSSimon Schubert "WINBALTRIM", \ 11765796c8dcSSimon Schubert "WINDOWS-31J", \ 11775796c8dcSSimon Schubert "WINDOWS-874", \ 11785796c8dcSSimon Schubert "WINDOWS-936", \ 11795796c8dcSSimon Schubert "WINDOWS-1250", \ 11805796c8dcSSimon Schubert "WINDOWS-1251", \ 11815796c8dcSSimon Schubert "WINDOWS-1252", \ 11825796c8dcSSimon Schubert "WINDOWS-1253", \ 11835796c8dcSSimon Schubert "WINDOWS-1254", \ 11845796c8dcSSimon Schubert "WINDOWS-1255", \ 11855796c8dcSSimon Schubert "WINDOWS-1256", \ 11865796c8dcSSimon Schubert "WINDOWS-1257", \ 11875796c8dcSSimon Schubert "WINDOWS-1258", \ 11885796c8dcSSimon Schubert "WINSAMI2", \ 11895796c8dcSSimon Schubert "WS2", \ 11905796c8dcSSimon Schubert "YU", 1191