1*13067778SAndreas Gohr<?php 2*13067778SAndreas Gohr/** 3*13067778SAndreas Gohr * UTF-8 Case lookup table 4*13067778SAndreas Gohr * 5*13067778SAndreas Gohr * This lookuptable defines the lower case letters to their corresponding 6*13067778SAndreas Gohr * upper case letter in UTF-8 7*13067778SAndreas Gohr * 8*13067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 9*13067778SAndreas Gohr */ 10*13067778SAndreas Gohrreturn [ 11*13067778SAndreas Gohr 'A' => 'a', 12*13067778SAndreas Gohr 'A' => 'a', 13*13067778SAndreas Gohr 'Á' => 'á', 14*13067778SAndreas Gohr 'À' => 'à', 15*13067778SAndreas Gohr 'Ă' => 'ă', 16*13067778SAndreas Gohr 'Ắ' => 'ắ', 17*13067778SAndreas Gohr 'Ẵ' => 'ẵ', 18*13067778SAndreas Gohr 'Ẳ' => 'ẳ', 19*13067778SAndreas Gohr 'Â' => 'â', 20*13067778SAndreas Gohr 'Ấ' => 'ấ', 21*13067778SAndreas Gohr 'Ầ' => 'ầ', 22*13067778SAndreas Gohr 'Ẫ' => 'ẫ', 23*13067778SAndreas Gohr 'Ǎ' => 'ǎ', 24*13067778SAndreas Gohr 'Å' => 'å', 25*13067778SAndreas Gohr 'Ǻ' => 'ǻ', 26*13067778SAndreas Gohr 'Ä' => 'ä', 27*13067778SAndreas Gohr 'Ǟ' => 'ǟ', 28*13067778SAndreas Gohr 'Ã' => 'ã', 29*13067778SAndreas Gohr 'Ǡ' => 'ǡ', 30*13067778SAndreas Gohr 'Ą' => 'ą', 31*13067778SAndreas Gohr 'Ā' => 'ā', 32*13067778SAndreas Gohr 'Ả' => 'ả', 33*13067778SAndreas Gohr 'Ȁ' => 'ȁ', 34*13067778SAndreas Gohr 'Ȃ' => 'ȃ', 35*13067778SAndreas Gohr 'Ặ' => 'ặ', 36*13067778SAndreas Gohr 'Ậ' => 'ậ', 37*13067778SAndreas Gohr 'Ḁ' => 'ḁ', 38*13067778SAndreas Gohr 'Æ' => 'æ', 39*13067778SAndreas Gohr 'Ǽ' => 'ǽ', 40*13067778SAndreas Gohr 'Ǣ' => 'ǣ', 41*13067778SAndreas Gohr 'B' => 'b', 42*13067778SAndreas Gohr 'Ḃ' => 'ḃ', 43*13067778SAndreas Gohr 'Ḅ' => 'ḅ', 44*13067778SAndreas Gohr 'Ḇ' => 'ḇ', 45*13067778SAndreas Gohr 'Ɓ' => 'ɓ', 46*13067778SAndreas Gohr 'Ƃ' => 'ƃ', 47*13067778SAndreas Gohr 'C' => 'c', 48*13067778SAndreas Gohr 'Ć' => 'ć', 49*13067778SAndreas Gohr 'Ĉ' => 'ĉ', 50*13067778SAndreas Gohr 'Č' => 'č', 51*13067778SAndreas Gohr 'Ċ' => 'ċ', 52*13067778SAndreas Gohr 'Ç' => 'ç', 53*13067778SAndreas Gohr 'Ƈ' => 'ƈ', 54*13067778SAndreas Gohr 'D' => 'd', 55*13067778SAndreas Gohr 'D' => 'd', 56*13067778SAndreas Gohr 'Ď' => 'ď', 57*13067778SAndreas Gohr 'Ḋ' => 'ḋ', 58*13067778SAndreas Gohr 'Ḑ' => 'ḑ', 59*13067778SAndreas Gohr 'Ḍ' => 'ḍ', 60*13067778SAndreas Gohr 'Ḓ' => 'ḓ', 61*13067778SAndreas Gohr 'Ḏ' => 'ḏ', 62*13067778SAndreas Gohr 'Ð' => 'ð', 63*13067778SAndreas Gohr 'Dz' => 'dz', //FIXME 64*13067778SAndreas Gohr 'Dž' => 'dž', //FIXME 65*13067778SAndreas Gohr 'Ɗ' => 'ɗ', 66*13067778SAndreas Gohr 'Ƌ' => 'ƌ', 67*13067778SAndreas Gohr 'E' => 'e', 68*13067778SAndreas Gohr 'E' => 'e', 69*13067778SAndreas Gohr 'É' => 'é', 70*13067778SAndreas Gohr 'È' => 'è', 71*13067778SAndreas Gohr 'Ê' => 'ê', 72*13067778SAndreas Gohr 'Ế' => 'ế', 73*13067778SAndreas Gohr 'Ề' => 'ề', 74*13067778SAndreas Gohr 'Ễ' => 'ễ', 75*13067778SAndreas Gohr 'Ể' => 'ể', 76*13067778SAndreas Gohr 'Ě' => 'ě', 77*13067778SAndreas Gohr 'Ẽ' => 'ẽ', 78*13067778SAndreas Gohr 'Ė' => 'ė', 79*13067778SAndreas Gohr 'Ȩ' => 'ȩ', 80*13067778SAndreas Gohr 'Ḝ' => 'ḝ', 81*13067778SAndreas Gohr 'Ę' => 'ę', 82*13067778SAndreas Gohr 'Ē' => 'ē', 83*13067778SAndreas Gohr 'Ḕ' => 'ḕ', 84*13067778SAndreas Gohr 'Ẻ' => 'ẻ', 85*13067778SAndreas Gohr 'Ȅ' => 'ȅ', 86*13067778SAndreas Gohr 'Ȇ' => 'ȇ', 87*13067778SAndreas Gohr 'Ẹ' => 'ẹ', 88*13067778SAndreas Gohr 'Ệ' => 'ệ', 89*13067778SAndreas Gohr 'Ḛ' => 'ḛ', 90*13067778SAndreas Gohr 'Ǝ' => 'ǝ', 91*13067778SAndreas Gohr 'Ə' => 'ə', 92*13067778SAndreas Gohr 'Ɛ' => 'ɛ', 93*13067778SAndreas Gohr 'F' => 'f', 94*13067778SAndreas Gohr 'F' => 'f', 95*13067778SAndreas Gohr 'Ƒ' => 'ƒ', 96*13067778SAndreas Gohr 'G' => 'g', 97*13067778SAndreas Gohr 'G' => 'g', 98*13067778SAndreas Gohr 'Ǵ' => 'ǵ', 99*13067778SAndreas Gohr 'Ğ' => 'ğ', 100*13067778SAndreas Gohr 'Ĝ' => 'ĝ', 101*13067778SAndreas Gohr 'Ġ' => 'ġ', 102*13067778SAndreas Gohr 'Ģ' => 'ģ', 103*13067778SAndreas Gohr 'Ḡ' => 'ḡ', 104*13067778SAndreas Gohr 'Ǥ' => 'ǥ', 105*13067778SAndreas Gohr 'Ɣ' => 'ɣ', 106*13067778SAndreas Gohr 'Ƣ' => 'ƣ', 107*13067778SAndreas Gohr 'H' => 'h', 108*13067778SAndreas Gohr 'Ĥ' => 'ĥ', 109*13067778SAndreas Gohr 'Ȟ' => 'ȟ', 110*13067778SAndreas Gohr 'Ḧ' => 'ḧ', 111*13067778SAndreas Gohr 'Ḣ' => 'ḣ', 112*13067778SAndreas Gohr 'Ḩ' => 'ḩ', 113*13067778SAndreas Gohr 'Ḥ' => 'ḥ', 114*13067778SAndreas Gohr 'Ḫ' => 'ḫ', 115*13067778SAndreas Gohr 'Ƕ' => 'ƕ', 116*13067778SAndreas Gohr 'I' => 'i', 117*13067778SAndreas Gohr 'I' => 'i', 118*13067778SAndreas Gohr 'Í' => 'í', 119*13067778SAndreas Gohr 'Ĭ' => 'ĭ', 120*13067778SAndreas Gohr 'Î' => 'î', 121*13067778SAndreas Gohr 'Ǐ' => 'ǐ', 122*13067778SAndreas Gohr 'Ï' => 'ï', 123*13067778SAndreas Gohr 'Ḯ' => 'ḯ', 124*13067778SAndreas Gohr 'Ĩ' => 'ĩ', 125*13067778SAndreas Gohr 'Ī' => 'ī', 126*13067778SAndreas Gohr 'Ỉ' => 'ỉ', 127*13067778SAndreas Gohr 'Ȉ' => 'ȉ', 128*13067778SAndreas Gohr 'Ȋ' => 'ȋ', 129*13067778SAndreas Gohr 'Ị' => 'ị', 130*13067778SAndreas Gohr 'Ḭ' => 'ḭ', 131*13067778SAndreas Gohr 'Ɨ' => 'ɨ', 132*13067778SAndreas Gohr 'Ɩ' => 'ɩ', 133*13067778SAndreas Gohr 'J' => 'j', 134*13067778SAndreas Gohr 'J' => 'j', 135*13067778SAndreas Gohr 'Ĵ' => 'ĵ', 136*13067778SAndreas Gohr 'K' => 'k', 137*13067778SAndreas Gohr 'Ḱ' => 'ḱ', 138*13067778SAndreas Gohr 'Ǩ' => 'ǩ', 139*13067778SAndreas Gohr 'Ķ' => 'ķ', 140*13067778SAndreas Gohr 'Ḳ' => 'ḳ', 141*13067778SAndreas Gohr 'Ḵ' => 'ḵ', 142*13067778SAndreas Gohr 'Ƙ' => 'ƙ', 143*13067778SAndreas Gohr 'L' => 'l', 144*13067778SAndreas Gohr 'Ĺ' => 'ĺ', 145*13067778SAndreas Gohr 'Ľ' => 'ľ', 146*13067778SAndreas Gohr 'Ļ' => 'ļ', 147*13067778SAndreas Gohr 'Ł' => 'ł', 148*13067778SAndreas Gohr 'Ḷ' => 'ḷ', 149*13067778SAndreas Gohr 'Ḽ' => 'ḽ', 150*13067778SAndreas Gohr 'Ḻ' => 'ḻ', 151*13067778SAndreas Gohr 'Ŀ' => 'ŀ', 152*13067778SAndreas Gohr 'Lj' => 'lj', // FIXME 153*13067778SAndreas Gohr 'M' => 'm', 154*13067778SAndreas Gohr 'M' => 'm', 155*13067778SAndreas Gohr 'Ṁ' => 'ṁ', 156*13067778SAndreas Gohr 'Ṃ' => 'ṃ', 157*13067778SAndreas Gohr 'N' => 'n', 158*13067778SAndreas Gohr 'N' => 'n', 159*13067778SAndreas Gohr 'Ń' => 'ń', 160*13067778SAndreas Gohr 'Ǹ' => 'ǹ', 161*13067778SAndreas Gohr 'Ñ' => 'ñ', 162*13067778SAndreas Gohr 'Ṅ' => 'ṅ', 163*13067778SAndreas Gohr 'Ņ' => 'ņ', 164*13067778SAndreas Gohr 'Ṇ' => 'ṇ', 165*13067778SAndreas Gohr 'Ṋ' => 'ṋ', 166*13067778SAndreas Gohr 'Ṉ' => 'ṉ', 167*13067778SAndreas Gohr 'Ɲ' => 'ɲ', 168*13067778SAndreas Gohr 'Ƞ' => 'ƞ', 169*13067778SAndreas Gohr 'Ŋ' => 'ŋ', 170*13067778SAndreas Gohr 'O' => 'o', 171*13067778SAndreas Gohr 'O' => 'o', 172*13067778SAndreas Gohr 'Ó' => 'ó', 173*13067778SAndreas Gohr 'Ŏ' => 'ŏ', 174*13067778SAndreas Gohr 'Ô' => 'ô', 175*13067778SAndreas Gohr 'Ố' => 'ố', 176*13067778SAndreas Gohr 'Ồ' => 'ồ', 177*13067778SAndreas Gohr 'Ỗ' => 'ỗ', 178*13067778SAndreas Gohr 'Ổ' => 'ổ', 179*13067778SAndreas Gohr 'Ö' => 'ö', 180*13067778SAndreas Gohr 'Ȫ' => 'ȫ', 181*13067778SAndreas Gohr 'Ő' => 'ő', 182*13067778SAndreas Gohr 'Õ' => 'õ', 183*13067778SAndreas Gohr 'Ṍ' => 'ṍ', 184*13067778SAndreas Gohr 'Ṏ' => 'ṏ', 185*13067778SAndreas Gohr 'Ȯ' => 'ȯ', 186*13067778SAndreas Gohr 'Ȱ' => 'ȱ', 187*13067778SAndreas Gohr 'Ø' => 'ø', 188*13067778SAndreas Gohr 'Ǿ' => 'ǿ', 189*13067778SAndreas Gohr 'Ǫ' => 'ǫ', 190*13067778SAndreas Gohr 'Ǭ' => 'ǭ', 191*13067778SAndreas Gohr 'Ṓ' => 'ṓ', 192*13067778SAndreas Gohr 'Ṑ' => 'ṑ', 193*13067778SAndreas Gohr 'Ỏ' => 'ỏ', 194*13067778SAndreas Gohr 'Ȍ' => 'ȍ', 195*13067778SAndreas Gohr 'Ȏ' => 'ȏ', 196*13067778SAndreas Gohr 'Ơ' => 'ơ', 197*13067778SAndreas Gohr 'Ờ' => 'ờ', 198*13067778SAndreas Gohr 'Ỡ' => 'ỡ', 199*13067778SAndreas Gohr 'Ở' => 'ở', 200*13067778SAndreas Gohr 'Ợ' => 'ợ', 201*13067778SAndreas Gohr 'Ọ' => 'ọ', 202*13067778SAndreas Gohr 'Ộ' => 'ộ', 203*13067778SAndreas Gohr 'Ɔ' => 'ɔ', 204*13067778SAndreas Gohr 'Ɵ' => 'ɵ', 205*13067778SAndreas Gohr 'Ȣ' => 'ȣ', 206*13067778SAndreas Gohr 'P' => 'p', 207*13067778SAndreas Gohr 'P' => 'p', 208*13067778SAndreas Gohr 'Ṕ' => 'ṕ', 209*13067778SAndreas Gohr 'Ƥ' => 'ƥ', 210*13067778SAndreas Gohr 'Q' => 'q', 211*13067778SAndreas Gohr 'Q' => 'q', 212*13067778SAndreas Gohr 'R' => 'r', 213*13067778SAndreas Gohr 'R' => 'r', 214*13067778SAndreas Gohr 'Ŕ' => 'ŕ', 215*13067778SAndreas Gohr 'Ṙ' => 'ṙ', 216*13067778SAndreas Gohr 'Ŗ' => 'ŗ', 217*13067778SAndreas Gohr 'Ȑ' => 'ȑ', 218*13067778SAndreas Gohr 'Ȓ' => 'ȓ', 219*13067778SAndreas Gohr 'Ṛ' => 'ṛ', 220*13067778SAndreas Gohr 'Ṝ' => 'ṝ', 221*13067778SAndreas Gohr 'Ʀ' => 'ʀ', 222*13067778SAndreas Gohr 'S' => 's', 223*13067778SAndreas Gohr 'S' => 's', 224*13067778SAndreas Gohr 'Ś' => 'ś', 225*13067778SAndreas Gohr 'Ṥ' => 'ṥ', 226*13067778SAndreas Gohr 'Ŝ' => 'ŝ', 227*13067778SAndreas Gohr 'Ṧ' => 'ṧ', 228*13067778SAndreas Gohr 'Ṡ' => 'ṡ', 229*13067778SAndreas Gohr 'Ş' => 'ş', 230*13067778SAndreas Gohr 'Ṣ' => 'ṣ', 231*13067778SAndreas Gohr 'Ṩ' => 'ṩ', 232*13067778SAndreas Gohr 'Ș' => 'ș', 233*13067778SAndreas Gohr 'T' => 't', 234*13067778SAndreas Gohr 'T' => 't', 235*13067778SAndreas Gohr 'Ť' => 'ť', 236*13067778SAndreas Gohr 'Ṫ' => 'ṫ', 237*13067778SAndreas Gohr 'Ţ' => 'ţ', 238*13067778SAndreas Gohr 'Ṭ' => 'ṭ', 239*13067778SAndreas Gohr 'Ṱ' => 'ṱ', 240*13067778SAndreas Gohr 'Ṯ' => 'ṯ', 241*13067778SAndreas Gohr 'Ŧ' => 'ŧ', 242*13067778SAndreas Gohr 'Ƭ' => 'ƭ', 243*13067778SAndreas Gohr 'Ʈ' => 'ʈ', 244*13067778SAndreas Gohr 'U' => 'u', 245*13067778SAndreas Gohr 'Ú' => 'ú', 246*13067778SAndreas Gohr 'Ù' => 'ù', 247*13067778SAndreas Gohr 'Ŭ' => 'ŭ', 248*13067778SAndreas Gohr 'Û' => 'û', 249*13067778SAndreas Gohr 'Ǔ' => 'ǔ', 250*13067778SAndreas Gohr 'Ů' => 'ů', 251*13067778SAndreas Gohr 'Ǘ' => 'ǘ', 252*13067778SAndreas Gohr 'Ǜ' => 'ǜ', 253*13067778SAndreas Gohr 'Ǚ' => 'ǚ', 254*13067778SAndreas Gohr 'Ǖ' => 'ǖ', 255*13067778SAndreas Gohr 'Ű' => 'ű', 256*13067778SAndreas Gohr 'Ũ' => 'ũ', 257*13067778SAndreas Gohr 'Ų' => 'ų', 258*13067778SAndreas Gohr 'Ū' => 'ū', 259*13067778SAndreas Gohr 'Ṻ' => 'ṻ', 260*13067778SAndreas Gohr 'Ủ' => 'ủ', 261*13067778SAndreas Gohr 'Ȕ' => 'ȕ', 262*13067778SAndreas Gohr 'Ȗ' => 'ȗ', 263*13067778SAndreas Gohr 'Ứ' => 'ứ', 264*13067778SAndreas Gohr 'Ừ' => 'ừ', 265*13067778SAndreas Gohr 'Ữ' => 'ữ', 266*13067778SAndreas Gohr 'Ử' => 'ử', 267*13067778SAndreas Gohr 'Ự' => 'ự', 268*13067778SAndreas Gohr 'Ụ' => 'ụ', 269*13067778SAndreas Gohr 'Ṷ' => 'ṷ', 270*13067778SAndreas Gohr 'Ṵ' => 'ṵ', 271*13067778SAndreas Gohr 'Ɯ' => 'ɯ', 272*13067778SAndreas Gohr 'Ʊ' => 'ʊ', 273*13067778SAndreas Gohr 'V' => 'v', 274*13067778SAndreas Gohr 'V' => 'v', 275*13067778SAndreas Gohr 'Ṿ' => 'ṿ', 276*13067778SAndreas Gohr 'Ʋ' => 'ʋ', 277*13067778SAndreas Gohr 'W' => 'w', 278*13067778SAndreas Gohr 'W' => 'w', 279*13067778SAndreas Gohr 'Ẃ' => 'ẃ', 280*13067778SAndreas Gohr 'Ẁ' => 'ẁ', 281*13067778SAndreas Gohr 'Ẅ' => 'ẅ', 282*13067778SAndreas Gohr 'Ẇ' => 'ẇ', 283*13067778SAndreas Gohr 'Ẉ' => 'ẉ', 284*13067778SAndreas Gohr 'X' => 'x', 285*13067778SAndreas Gohr 'X' => 'x', 286*13067778SAndreas Gohr 'Ẍ' => 'ẍ', 287*13067778SAndreas Gohr 'Y' => 'y', 288*13067778SAndreas Gohr 'Y' => 'y', 289*13067778SAndreas Gohr 'Ý' => 'ý', 290*13067778SAndreas Gohr 'Ỳ' => 'ỳ', 291*13067778SAndreas Gohr 'Ŷ' => 'ŷ', 292*13067778SAndreas Gohr 'Ÿ' => 'ÿ', 293*13067778SAndreas Gohr 'Ẏ' => 'ẏ', 294*13067778SAndreas Gohr 'Ȳ' => 'ȳ', 295*13067778SAndreas Gohr 'Ỷ' => 'ỷ', 296*13067778SAndreas Gohr 'Ỵ' => 'ỵ', 297*13067778SAndreas Gohr 'Ƴ' => 'ƴ', 298*13067778SAndreas Gohr 'Ȝ' => 'ȝ', 299*13067778SAndreas Gohr 'Z' => 'z', 300*13067778SAndreas Gohr 'Ź' => 'ź', 301*13067778SAndreas Gohr 'Ẑ' => 'ẑ', 302*13067778SAndreas Gohr 'Ž' => 'ž', 303*13067778SAndreas Gohr 'Ż' => 'ż', 304*13067778SAndreas Gohr 'Ẓ' => 'ẓ', 305*13067778SAndreas Gohr 'Ƶ' => 'ƶ', 306*13067778SAndreas Gohr 'Ȥ' => 'ȥ', 307*13067778SAndreas Gohr 'Ʒ' => 'ʒ', 308*13067778SAndreas Gohr 'Ǯ' => 'ǯ', 309*13067778SAndreas Gohr 'Ƹ' => 'ƹ', 310*13067778SAndreas Gohr 'Þ' => 'þ', 311*13067778SAndreas Gohr 'Ƨ' => 'ƨ', 312*13067778SAndreas Gohr 'Ƽ' => 'ƽ', 313*13067778SAndreas Gohr 'Ƅ' => 'ƅ', 314*13067778SAndreas Gohr 'Α' => 'α', 315*13067778SAndreas Gohr 'Ἀ' => 'ἀ', 316*13067778SAndreas Gohr 'Ἄ' => 'ἄ', 317*13067778SAndreas Gohr 'Ἂ' => 'ἂ', 318*13067778SAndreas Gohr 'ᾊ' => 'ᾂ', 319*13067778SAndreas Gohr 'Ἆ' => 'ἆ', 320*13067778SAndreas Gohr 'ᾎ' => 'ᾆ', 321*13067778SAndreas Gohr 'ᾈ' => 'ᾀ', 322*13067778SAndreas Gohr 'Ἁ' => 'ἁ', 323*13067778SAndreas Gohr 'ᾍ' => 'ᾅ', 324*13067778SAndreas Gohr 'Ἃ' => 'ἃ', 325*13067778SAndreas Gohr 'ᾋ' => 'ᾃ', 326*13067778SAndreas Gohr 'Ἇ' => 'ἇ', 327*13067778SAndreas Gohr 'ᾏ' => 'ᾇ', 328*13067778SAndreas Gohr 'ᾉ' => 'ᾁ', 329*13067778SAndreas Gohr 'Ὰ' => 'ὰ', 330*13067778SAndreas Gohr 'Ᾰ' => 'ᾰ', 331*13067778SAndreas Gohr 'Ᾱ' => 'ᾱ', 332*13067778SAndreas Gohr 'ᾼ' => 'ᾳ', 333*13067778SAndreas Gohr 'Β' => 'β', 334*13067778SAndreas Gohr 'Γ' => 'γ', 335*13067778SAndreas Gohr 'Ε' => 'ε', 336*13067778SAndreas Gohr 'Ἐ' => 'ἐ', 337*13067778SAndreas Gohr 'Ἔ' => 'ἔ', 338*13067778SAndreas Gohr 'Ἒ' => 'ἒ', 339*13067778SAndreas Gohr 'Ἑ' => 'ἑ', 340*13067778SAndreas Gohr 'Ἕ' => 'ἕ', 341*13067778SAndreas Gohr 'Έ' => 'έ', 342*13067778SAndreas Gohr 'Ὲ' => 'ὲ', 343*13067778SAndreas Gohr 'Ϝ' => 'ϝ', 344*13067778SAndreas Gohr 'Ϛ' => 'ϛ', 345*13067778SAndreas Gohr 'Ζ' => 'ζ', 346*13067778SAndreas Gohr 'Η' => 'η', 347*13067778SAndreas Gohr 'ᾜ' => 'ᾔ', 348*13067778SAndreas Gohr 'Ἢ' => 'ἢ', 349*13067778SAndreas Gohr 'ᾚ' => 'ᾒ', 350*13067778SAndreas Gohr 'Ἦ' => 'ἦ', 351*13067778SAndreas Gohr 'ᾞ' => 'ᾖ', 352*13067778SAndreas Gohr 'ᾘ' => 'ᾐ', 353*13067778SAndreas Gohr 'Ἥ' => 'ἥ', 354*13067778SAndreas Gohr 'ᾝ' => 'ᾕ', 355*13067778SAndreas Gohr 'Ἣ' => 'ἣ', 356*13067778SAndreas Gohr 'ᾛ' => 'ᾓ', 357*13067778SAndreas Gohr 'Ἧ' => 'ἧ', 358*13067778SAndreas Gohr 'ᾟ' => 'ᾗ', 359*13067778SAndreas Gohr 'Ή' => 'ή', 360*13067778SAndreas Gohr 'Ὴ' => 'ὴ', 361*13067778SAndreas Gohr 'ῌ' => 'ῃ', 362*13067778SAndreas Gohr 'Θ' => 'θ', 363*13067778SAndreas Gohr 'Ι' => 'ι', 364*13067778SAndreas Gohr 'Ἰ' => 'ἰ', 365*13067778SAndreas Gohr 'Ἲ' => 'ἲ', 366*13067778SAndreas Gohr 'Ἶ' => 'ἶ', 367*13067778SAndreas Gohr 'Ἱ' => 'ἱ', 368*13067778SAndreas Gohr 'Ἵ' => 'ἵ', 369*13067778SAndreas Gohr 'Ἳ' => 'ἳ', 370*13067778SAndreas Gohr 'Ἷ' => 'ἷ', 371*13067778SAndreas Gohr 'Ὶ' => 'ὶ', 372*13067778SAndreas Gohr 'Ῐ' => 'ῐ', 373*13067778SAndreas Gohr 'Ϊ' => 'ϊ', 374*13067778SAndreas Gohr 'Ῑ' => 'ῑ', 375*13067778SAndreas Gohr 'Κ' => 'κ', 376*13067778SAndreas Gohr 'Λ' => 'λ', 377*13067778SAndreas Gohr 'Ν' => 'ν', 378*13067778SAndreas Gohr 'Ξ' => 'ξ', 379*13067778SAndreas Gohr 'Ο' => 'ο', 380*13067778SAndreas Gohr 'Ὀ' => 'ὀ', 381*13067778SAndreas Gohr 'Ὄ' => 'ὄ', 382*13067778SAndreas Gohr 'Ὂ' => 'ὂ', 383*13067778SAndreas Gohr 'Ὅ' => 'ὅ', 384*13067778SAndreas Gohr 'Ὃ' => 'ὃ', 385*13067778SAndreas Gohr 'Ό' => 'ό', 386*13067778SAndreas Gohr 'Ὸ' => 'ὸ', 387*13067778SAndreas Gohr 'Π' => 'π', 388*13067778SAndreas Gohr 'Ϟ' => 'ϟ', 389*13067778SAndreas Gohr 'Ρ' => 'ρ', 390*13067778SAndreas Gohr 'Ῥ' => 'ῥ', 391*13067778SAndreas Gohr 'Σ' => 'ς', 392*13067778SAndreas Gohr 'Τ' => 'τ', 393*13067778SAndreas Gohr 'Υ' => 'υ', 394*13067778SAndreas Gohr 'Ὑ' => 'ὑ', 395*13067778SAndreas Gohr 'Ὓ' => 'ὓ', 396*13067778SAndreas Gohr 'Ὗ' => 'ὗ', 397*13067778SAndreas Gohr 'Ύ' => 'ύ', 398*13067778SAndreas Gohr 'Ὺ' => 'ὺ', 399*13067778SAndreas Gohr 'Ϋ' => 'ϋ', 400*13067778SAndreas Gohr 'Ῡ' => 'ῡ', 401*13067778SAndreas Gohr 'Χ' => 'χ', 402*13067778SAndreas Gohr 'Ψ' => 'ψ', 403*13067778SAndreas Gohr 'Ω' => 'ω', 404*13067778SAndreas Gohr 'Ὤ' => 'ὤ', 405*13067778SAndreas Gohr 'ᾬ' => 'ᾤ', 406*13067778SAndreas Gohr 'Ὢ' => 'ὢ', 407*13067778SAndreas Gohr 'Ὦ' => 'ὦ', 408*13067778SAndreas Gohr 'ᾮ' => 'ᾦ', 409*13067778SAndreas Gohr 'Ὡ' => 'ὡ', 410*13067778SAndreas Gohr 'Ὥ' => 'ὥ', 411*13067778SAndreas Gohr 'ᾭ' => 'ᾥ', 412*13067778SAndreas Gohr 'Ὣ' => 'ὣ', 413*13067778SAndreas Gohr 'Ὧ' => 'ὧ', 414*13067778SAndreas Gohr 'ᾯ' => 'ᾧ', 415*13067778SAndreas Gohr 'ᾩ' => 'ᾡ', 416*13067778SAndreas Gohr 'Ώ' => 'ώ', 417*13067778SAndreas Gohr 'Ὼ' => 'ὼ', 418*13067778SAndreas Gohr 'ῼ' => 'ῳ', 419*13067778SAndreas Gohr 'Ϣ' => 'ϣ', 420*13067778SAndreas Gohr 'Ϥ' => 'ϥ', 421*13067778SAndreas Gohr 'Ϧ' => 'ϧ', 422*13067778SAndreas Gohr 'Ϩ' => 'ϩ', 423*13067778SAndreas Gohr 'Ϫ' => 'ϫ', 424*13067778SAndreas Gohr 'Ϭ' => 'ϭ', 425*13067778SAndreas Gohr 'А' => 'а', 426*13067778SAndreas Gohr 'Ӑ' => 'ӑ', 427*13067778SAndreas Gohr 'Ӓ' => 'ӓ', 428*13067778SAndreas Gohr 'Ә' => 'ә', 429*13067778SAndreas Gohr 'Ӛ' => 'ӛ', 430*13067778SAndreas Gohr 'Ӕ' => 'ӕ', 431*13067778SAndreas Gohr 'В' => 'в', 432*13067778SAndreas Gohr 'Г' => 'г', 433*13067778SAndreas Gohr 'Ѓ' => 'ѓ', 434*13067778SAndreas Gohr 'Ґ' => 'ґ', 435*13067778SAndreas Gohr 'Ғ' => 'ғ', 436*13067778SAndreas Gohr 'Ҕ' => 'ҕ', 437*13067778SAndreas Gohr 'Ԁ' => 'ԁ', 438*13067778SAndreas Gohr 'Ђ' => 'ђ', 439*13067778SAndreas Gohr 'Ԃ' => 'ԃ', 440*13067778SAndreas Gohr 'Ҙ' => 'ҙ', 441*13067778SAndreas Gohr 'Е' => 'е', 442*13067778SAndreas Gohr 'Ѐ' => 'ѐ', 443*13067778SAndreas Gohr 'Ё' => 'ё', 444*13067778SAndreas Gohr 'Є' => 'є', 445*13067778SAndreas Gohr 'Ж' => 'ж', 446*13067778SAndreas Gohr 'Ӂ' => 'ӂ', 447*13067778SAndreas Gohr 'Ӝ' => 'ӝ', 448*13067778SAndreas Gohr 'Җ' => 'җ', 449*13067778SAndreas Gohr 'Ӟ' => 'ӟ', 450*13067778SAndreas Gohr 'Ԅ' => 'ԅ', 451*13067778SAndreas Gohr 'Ѕ' => 'ѕ', 452*13067778SAndreas Gohr 'Ӡ' => 'ӡ', 453*13067778SAndreas Gohr 'Ԇ' => 'ԇ', 454*13067778SAndreas Gohr 'И' => 'и', 455*13067778SAndreas Gohr 'Ӥ' => 'ӥ', 456*13067778SAndreas Gohr 'Ӣ' => 'ӣ', 457*13067778SAndreas Gohr 'Ҋ' => 'ҋ', 458*13067778SAndreas Gohr 'І' => 'і', 459*13067778SAndreas Gohr 'Ї' => 'ї', 460*13067778SAndreas Gohr 'Й' => 'й', 461*13067778SAndreas Gohr 'К' => 'к', 462*13067778SAndreas Gohr 'Ќ' => 'ќ', 463*13067778SAndreas Gohr 'Қ' => 'қ', 464*13067778SAndreas Gohr 'Ӄ' => 'ӄ', 465*13067778SAndreas Gohr 'Ҡ' => 'ҡ', 466*13067778SAndreas Gohr 'Ҟ' => 'ҟ', 467*13067778SAndreas Gohr 'Л' => 'л', 468*13067778SAndreas Gohr 'Ӆ' => 'ӆ', 469*13067778SAndreas Gohr 'Љ' => 'љ', 470*13067778SAndreas Gohr 'Ԉ' => 'ԉ', 471*13067778SAndreas Gohr 'М' => 'м', 472*13067778SAndreas Gohr 'Ӎ' => 'ӎ', 473*13067778SAndreas Gohr 'Ӊ' => 'ӊ', 474*13067778SAndreas Gohr 'Ң' => 'ң', 475*13067778SAndreas Gohr 'Ӈ' => 'ӈ', 476*13067778SAndreas Gohr 'Ҥ' => 'ҥ', 477*13067778SAndreas Gohr 'Њ' => 'њ', 478*13067778SAndreas Gohr 'Ԋ' => 'ԋ', 479*13067778SAndreas Gohr 'Ӧ' => 'ӧ', 480*13067778SAndreas Gohr 'Ө' => 'ө', 481*13067778SAndreas Gohr 'Ӫ' => 'ӫ', 482*13067778SAndreas Gohr 'П' => 'п', 483*13067778SAndreas Gohr 'Ҧ' => 'ҧ', 484*13067778SAndreas Gohr 'Ҁ' => 'ҁ', 485*13067778SAndreas Gohr 'Ҏ' => 'ҏ', 486*13067778SAndreas Gohr 'С' => 'с', 487*13067778SAndreas Gohr 'Ԍ' => 'ԍ', 488*13067778SAndreas Gohr 'Ҫ' => 'ҫ', 489*13067778SAndreas Gohr 'Т' => 'т', 490*13067778SAndreas Gohr 'Ԏ' => 'ԏ', 491*13067778SAndreas Gohr 'Ћ' => 'ћ', 492*13067778SAndreas Gohr 'У' => 'у', 493*13067778SAndreas Gohr 'Ў' => 'ў', 494*13067778SAndreas Gohr 'Ӱ' => 'ӱ', 495*13067778SAndreas Gohr 'Ӳ' => 'ӳ', 496*13067778SAndreas Gohr 'Ӯ' => 'ӯ', 497*13067778SAndreas Gohr 'Ұ' => 'ұ', 498*13067778SAndreas Gohr 'Ѹ' => 'ѹ', 499*13067778SAndreas Gohr 'Ф' => 'ф', 500*13067778SAndreas Gohr 'Х' => 'х', 501*13067778SAndreas Gohr 'Ҳ' => 'ҳ', 502*13067778SAndreas Gohr 'Һ' => 'һ', 503*13067778SAndreas Gohr 'Ѿ' => 'ѿ', 504*13067778SAndreas Gohr 'Ѽ' => 'ѽ', 505*13067778SAndreas Gohr 'Ѻ' => 'ѻ', 506*13067778SAndreas Gohr 'Ц' => 'ц', 507*13067778SAndreas Gohr 'Ҵ' => 'ҵ', 508*13067778SAndreas Gohr 'Ч' => 'ч', 509*13067778SAndreas Gohr 'Ҷ' => 'ҷ', 510*13067778SAndreas Gohr 'Ӌ' => 'ӌ', 511*13067778SAndreas Gohr 'Ҹ' => 'ҹ', 512*13067778SAndreas Gohr 'Ҽ' => 'ҽ', 513*13067778SAndreas Gohr 'Ҿ' => 'ҿ', 514*13067778SAndreas Gohr 'Џ' => 'џ', 515*13067778SAndreas Gohr 'Щ' => 'щ', 516*13067778SAndreas Gohr 'Ъ' => 'ъ', 517*13067778SAndreas Gohr 'Ы' => 'ы', 518*13067778SAndreas Gohr 'Ӹ' => 'ӹ', 519*13067778SAndreas Gohr 'Ь' => 'ь', 520*13067778SAndreas Gohr 'Ҍ' => 'ҍ', 521*13067778SAndreas Gohr 'Э' => 'э', 522*13067778SAndreas Gohr 'Ӭ' => 'ӭ', 523*13067778SAndreas Gohr 'Ю' => 'ю', 524*13067778SAndreas Gohr 'Я' => 'я', 525*13067778SAndreas Gohr 'Ѥ' => 'ѥ', 526*13067778SAndreas Gohr 'Ѧ' => 'ѧ', 527*13067778SAndreas Gohr 'Ѩ' => 'ѩ', 528*13067778SAndreas Gohr 'Ѭ' => 'ѭ', 529*13067778SAndreas Gohr 'Ѯ' => 'ѯ', 530*13067778SAndreas Gohr 'Ѱ' => 'ѱ', 531*13067778SAndreas Gohr 'Ѳ' => 'ѳ', 532*13067778SAndreas Gohr 'Ѵ' => 'ѵ', 533*13067778SAndreas Gohr 'Ҩ' => 'ҩ', 534*13067778SAndreas Gohr 'Ա' => 'ա', 535*13067778SAndreas Gohr 'Բ' => 'բ', 536*13067778SAndreas Gohr 'Գ' => 'գ', 537*13067778SAndreas Gohr 'Դ' => 'դ', 538*13067778SAndreas Gohr 'Ե' => 'ե', 539*13067778SAndreas Gohr 'Է' => 'է', 540*13067778SAndreas Gohr 'Ը' => 'ը', 541*13067778SAndreas Gohr 'Թ' => 'թ', 542*13067778SAndreas Gohr 'Ժ' => 'ժ', 543*13067778SAndreas Gohr 'Ի' => 'ի', 544*13067778SAndreas Gohr 'Լ' => 'լ', 545*13067778SAndreas Gohr 'Ծ' => 'ծ', 546*13067778SAndreas Gohr 'Կ' => 'կ', 547*13067778SAndreas Gohr 'Հ' => 'հ', 548*13067778SAndreas Gohr 'Ձ' => 'ձ', 549*13067778SAndreas Gohr 'Ղ' => 'ղ', 550*13067778SAndreas Gohr 'Ճ' => 'ճ', 551*13067778SAndreas Gohr 'Յ' => 'յ', 552*13067778SAndreas Gohr 'Ն' => 'ն', 553*13067778SAndreas Gohr 'Շ' => 'շ', 554*13067778SAndreas Gohr 'Ո' => 'ո', 555*13067778SAndreas Gohr 'Չ' => 'չ', 556*13067778SAndreas Gohr 'Պ' => 'պ', 557*13067778SAndreas Gohr 'Ռ' => 'ռ', 558*13067778SAndreas Gohr 'Ս' => 'ս', 559*13067778SAndreas Gohr 'Վ' => 'վ', 560*13067778SAndreas Gohr 'Տ' => 'տ', 561*13067778SAndreas Gohr 'Ր' => 'ր', 562*13067778SAndreas Gohr 'Ց' => 'ց', 563*13067778SAndreas Gohr 'Փ' => 'փ', 564*13067778SAndreas Gohr 'Ք' => 'ք', 565*13067778SAndreas Gohr 'Օ' => 'օ', 566*13067778SAndreas Gohr 'Ֆ' => 'ֆ', 567*13067778SAndreas Gohr]; 568