| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829 | StartFontMetrics 4.1Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated.  All Rights Reserved.Comment Creation Date: Thu May  1 12:43:52 1997Comment UniqueID 43052Comment VMusage 37169 48194FontName Helvetica-BoldFullName Helvetica BoldFamilyName HelveticaWeight BoldItalicAngle 0IsFixedPitch falseCharacterSet ExtendedRomanFontBBox -170 -228 1003 962UnderlinePosition -100UnderlineThickness 50Version 002.000Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated.  All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.EncodingScheme WinAnsiEncodingCapHeight 718XHeight 532Ascender 718Descender -207StdHW 118StdVW 140StartCharMetrics 317C 32 ; WX 278 ; N space ; B 0 0 0 0 ;C 160 ; WX 278 ; N space ; B 0 0 0 0 ;C 33 ; WX 333 ; N exclam ; B 90 0 244 718 ;C 34 ; WX 474 ; N quotedbl ; B 98 447 376 718 ;C 35 ; WX 556 ; N numbersign ; B 18 0 538 698 ;C 36 ; WX 556 ; N dollar ; B 30 -115 523 775 ;C 37 ; WX 889 ; N percent ; B 28 -19 861 710 ;C 38 ; WX 722 ; N ampersand ; B 54 -19 701 718 ;C 146 ; WX 278 ; N quoteright ; B 69 445 209 718 ;C 40 ; WX 333 ; N parenleft ; B 35 -208 314 734 ;C 41 ; WX 333 ; N parenright ; B 19 -208 298 734 ;C 42 ; WX 389 ; N asterisk ; B 27 387 362 718 ;C 43 ; WX 584 ; N plus ; B 40 0 544 506 ;C 44 ; WX 278 ; N comma ; B 64 -168 214 146 ;C 45 ; WX 333 ; N hyphen ; B 27 215 306 345 ;C 173 ; WX 333 ; N hyphen ; B 44 232 289 322 ;C 46 ; WX 278 ; N period ; B 64 0 214 146 ;C 47 ; WX 278 ; N slash ; B -33 -19 311 737 ;C 48 ; WX 556 ; N zero ; B 32 -19 524 710 ;C 49 ; WX 556 ; N one ; B 69 0 378 710 ;C 50 ; WX 556 ; N two ; B 26 0 511 710 ;C 51 ; WX 556 ; N three ; B 27 -19 516 710 ;C 52 ; WX 556 ; N four ; B 27 0 526 710 ;C 53 ; WX 556 ; N five ; B 27 -19 516 698 ;C 54 ; WX 556 ; N six ; B 31 -19 520 710 ;C 55 ; WX 556 ; N seven ; B 25 0 528 698 ;C 56 ; WX 556 ; N eight ; B 32 -19 524 710 ;C 57 ; WX 556 ; N nine ; B 30 -19 522 710 ;C 58 ; WX 333 ; N colon ; B 92 0 242 512 ;C 59 ; WX 333 ; N semicolon ; B 92 -168 242 512 ;C 60 ; WX 584 ; N less ; B 38 -8 546 514 ;C 61 ; WX 584 ; N equal ; B 40 87 544 419 ;C 62 ; WX 584 ; N greater ; B 38 -8 546 514 ;C 63 ; WX 611 ; N question ; B 60 0 556 727 ;C 64 ; WX 975 ; N at ; B 118 -19 856 737 ;C 65 ; WX 722 ; N A ; B 20 0 702 718 ;C 66 ; WX 722 ; N B ; B 76 0 669 718 ;C 67 ; WX 722 ; N C ; B 44 -19 684 737 ;C 68 ; WX 722 ; N D ; B 76 0 685 718 ;C 69 ; WX 667 ; N E ; B 76 0 621 718 ;C 70 ; WX 611 ; N F ; B 76 0 587 718 ;C 71 ; WX 778 ; N G ; B 44 -19 713 737 ;C 72 ; WX 722 ; N H ; B 71 0 651 718 ;C 73 ; WX 278 ; N I ; B 64 0 214 718 ;C 74 ; WX 556 ; N J ; B 22 -18 484 718 ;C 75 ; WX 722 ; N K ; B 87 0 722 718 ;C 76 ; WX 611 ; N L ; B 76 0 583 718 ;C 77 ; WX 833 ; N M ; B 69 0 765 718 ;C 78 ; WX 722 ; N N ; B 69 0 654 718 ;C 79 ; WX 778 ; N O ; B 44 -19 734 737 ;C 80 ; WX 667 ; N P ; B 76 0 627 718 ;C 81 ; WX 778 ; N Q ; B 44 -52 737 737 ;C 82 ; WX 722 ; N R ; B 76 0 677 718 ;C 83 ; WX 667 ; N S ; B 39 -19 629 737 ;C 84 ; WX 611 ; N T ; B 14 0 598 718 ;C 85 ; WX 722 ; N U ; B 72 -19 651 718 ;C 86 ; WX 667 ; N V ; B 19 0 648 718 ;C 87 ; WX 944 ; N W ; B 16 0 929 718 ;C 88 ; WX 667 ; N X ; B 14 0 653 718 ;C 89 ; WX 667 ; N Y ; B 15 0 653 718 ;C 90 ; WX 611 ; N Z ; B 25 0 586 718 ;C 91 ; WX 333 ; N bracketleft ; B 63 -196 309 722 ;C 92 ; WX 278 ; N backslash ; B -33 -19 311 737 ;C 93 ; WX 333 ; N bracketright ; B 24 -196 270 722 ;C 94 ; WX 584 ; N asciicircum ; B 62 323 522 698 ;C 95 ; WX 556 ; N underscore ; B 0 -125 556 -75 ;C 145 ; WX 278 ; N quoteleft ; B 69 454 209 727 ;C 97 ; WX 556 ; N a ; B 29 -14 527 546 ;C 98 ; WX 611 ; N b ; B 61 -14 578 718 ;C 99 ; WX 556 ; N c ; B 34 -14 524 546 ;C 100 ; WX 611 ; N d ; B 34 -14 551 718 ;C 101 ; WX 556 ; N e ; B 23 -14 528 546 ;C 102 ; WX 333 ; N f ; B 10 0 318 727 ; L i fi ; L l fl ;C 103 ; WX 611 ; N g ; B 40 -217 553 546 ;C 104 ; WX 611 ; N h ; B 65 0 546 718 ;C 105 ; WX 278 ; N i ; B 69 0 209 725 ;C 106 ; WX 278 ; N j ; B 3 -214 209 725 ;C 107 ; WX 556 ; N k ; B 69 0 562 718 ;C 108 ; WX 278 ; N l ; B 69 0 209 718 ;C 109 ; WX 889 ; N m ; B 64 0 826 546 ;C 110 ; WX 611 ; N n ; B 65 0 546 546 ;C 111 ; WX 611 ; N o ; B 34 -14 578 546 ;C 112 ; WX 611 ; N p ; B 62 -207 578 546 ;C 113 ; WX 611 ; N q ; B 34 -207 552 546 ;C 114 ; WX 389 ; N r ; B 64 0 373 546 ;C 115 ; WX 556 ; N s ; B 30 -14 519 546 ;C 116 ; WX 333 ; N t ; B 10 -6 309 676 ;C 117 ; WX 611 ; N u ; B 66 -14 545 532 ;C 118 ; WX 556 ; N v ; B 13 0 543 532 ;C 119 ; WX 778 ; N w ; B 10 0 769 532 ;C 120 ; WX 556 ; N x ; B 15 0 541 532 ;C 121 ; WX 556 ; N y ; B 10 -214 539 532 ;C 122 ; WX 500 ; N z ; B 20 0 480 532 ;C 123 ; WX 389 ; N braceleft ; B 48 -196 365 722 ;C 124 ; WX 280 ; N bar ; B 84 -225 196 775 ;C 125 ; WX 389 ; N braceright ; B 24 -196 341 722 ;C 126 ; WX 584 ; N asciitilde ; B 61 163 523 343 ;C 161 ; WX 333 ; N exclamdown ; B 90 -186 244 532 ;C 162 ; WX 556 ; N cent ; B 34 -118 524 628 ;C 163 ; WX 556 ; N sterling ; B 28 -16 541 718 ;C -1 ; WX 167 ; N fraction ; B -170 -19 336 710 ;C 165 ; WX 556 ; N yen ; B -9 0 565 698 ;C 131 ; WX 556 ; N florin ; B -10 -210 516 737 ;C 167 ; WX 556 ; N section ; B 34 -184 522 727 ;C 164 ; WX 556 ; N currency ; B -3 76 559 636 ;C 39 ; WX 238 ; N quotesingle ; B 70 447 168 718 ;C 147 ; WX 500 ; N quotedblleft ; B 64 454 436 727 ;C 171 ; WX 556 ; N guillemotleft ; B 88 76 468 484 ;C 139 ; WX 333 ; N guilsinglleft ; B 83 76 250 484 ;C 155 ; WX 333 ; N guilsinglright ; B 83 76 250 484 ;C -1 ; WX 611 ; N fi ; B 10 0 542 727 ;C -1 ; WX 611 ; N fl ; B 10 0 542 727 ;C 150 ; WX 556 ; N endash ; B 0 227 556 333 ;C 134 ; WX 556 ; N dagger ; B 36 -171 520 718 ;C 135 ; WX 556 ; N daggerdbl ; B 36 -171 520 718 ;C 183 ; WX 278 ; N periodcentered ; B 58 172 220 334 ;C 182 ; WX 556 ; N paragraph ; B -8 -191 539 700 ;C 149 ; WX 350 ; N bullet ; B 10 194 340 524 ;C 130 ; WX 278 ; N quotesinglbase ; B 69 -146 209 127 ;C 132 ; WX 500 ; N quotedblbase ; B 64 -146 436 127 ;C 148 ; WX 500 ; N quotedblright ; B 64 445 436 718 ;C 187 ; WX 556 ; N guillemotright ; B 88 76 468 484 ;C 133 ; WX 1000 ; N ellipsis ; B 92 0 908 146 ;C 137 ; WX 1000 ; N perthousand ; B -3 -19 1003 710 ;C 191 ; WX 611 ; N questiondown ; B 55 -195 551 532 ;C 96 ; WX 333 ; N grave ; B -23 604 225 750 ;C 180 ; WX 333 ; N acute ; B 108 604 356 750 ;C 136 ; WX 333 ; N circumflex ; B -10 604 343 750 ;C 152 ; WX 333 ; N tilde ; B -17 610 350 737 ;C 175 ; WX 333 ; N macron ; B -6 604 339 678 ;C -1 ; WX 333 ; N breve ; B -2 604 335 750 ;C -1 ; WX 333 ; N dotaccent ; B 104 614 230 729 ;C 168 ; WX 333 ; N dieresis ; B 6 614 327 729 ;C -1 ; WX 333 ; N ring ; B 59 568 275 776 ;C 184 ; WX 333 ; N cedilla ; B 6 -228 245 0 ;C -1 ; WX 333 ; N hungarumlaut ; B 9 604 486 750 ;C -1 ; WX 333 ; N ogonek ; B 71 -228 304 0 ;C -1 ; WX 333 ; N caron ; B -10 604 343 750 ;C 151 ; WX 1000 ; N emdash ; B 0 227 1000 333 ;C 198 ; WX 1000 ; N AE ; B 5 0 954 718 ;C 170 ; WX 370 ; N ordfeminine ; B 22 401 347 737 ;C -1 ; WX 611 ; N Lslash ; B -20 0 583 718 ;C 216 ; WX 778 ; N Oslash ; B 33 -27 744 745 ;C 140 ; WX 1000 ; N OE ; B 37 -19 961 737 ;C 186 ; WX 365 ; N ordmasculine ; B 6 401 360 737 ;C 230 ; WX 889 ; N ae ; B 29 -14 858 546 ;C -1 ; WX 278 ; N dotlessi ; B 69 0 209 532 ;C -1 ; WX 278 ; N lslash ; B -18 0 296 718 ;C 248 ; WX 611 ; N oslash ; B 22 -29 589 560 ;C 156 ; WX 944 ; N oe ; B 34 -14 912 546 ;C 223 ; WX 611 ; N germandbls ; B 69 -14 579 731 ;C 207 ; WX 278 ; N Idieresis ; B -21 0 300 915 ;C 233 ; WX 556 ; N eacute ; B 23 -14 528 750 ;C -1 ; WX 556 ; N abreve ; B 29 -14 527 750 ;C -1 ; WX 611 ; N uhungarumlaut ; B 66 -14 625 750 ;C -1 ; WX 556 ; N ecaron ; B 23 -14 528 750 ;C 159 ; WX 667 ; N Ydieresis ; B 15 0 653 915 ;C 247 ; WX 584 ; N divide ; B 40 -42 544 548 ;C 221 ; WX 667 ; N Yacute ; B 15 0 653 936 ;C 194 ; WX 722 ; N Acircumflex ; B 20 0 702 936 ;C 225 ; WX 556 ; N aacute ; B 29 -14 527 750 ;C 219 ; WX 722 ; N Ucircumflex ; B 72 -19 651 936 ;C 253 ; WX 556 ; N yacute ; B 10 -214 539 750 ;C -1 ; WX 556 ; N scommaaccent ; B 30 -228 519 546 ;C 234 ; WX 556 ; N ecircumflex ; B 23 -14 528 750 ;C -1 ; WX 722 ; N Uring ; B 72 -19 651 962 ;C 220 ; WX 722 ; N Udieresis ; B 72 -19 651 915 ;C -1 ; WX 556 ; N aogonek ; B 29 -224 545 546 ;C 218 ; WX 722 ; N Uacute ; B 72 -19 651 936 ;C -1 ; WX 611 ; N uogonek ; B 66 -228 545 532 ;C 203 ; WX 667 ; N Edieresis ; B 76 0 621 915 ;C -1 ; WX 722 ; N Dcroat ; B -5 0 685 718 ;C -1 ; WX 250 ; N commaaccent ; B 64 -228 199 -50 ;C 169 ; WX 737 ; N copyright ; B -11 -19 749 737 ;C -1 ; WX 667 ; N Emacron ; B 76 0 621 864 ;C -1 ; WX 556 ; N ccaron ; B 34 -14 524 750 ;C 229 ; WX 556 ; N aring ; B 29 -14 527 776 ;C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 654 718 ;C -1 ; WX 278 ; N lacute ; B 69 0 329 936 ;C 224 ; WX 556 ; N agrave ; B 29 -14 527 750 ;C -1 ; WX 611 ; N Tcommaaccent ; B 14 -228 598 718 ;C -1 ; WX 722 ; N Cacute ; B 44 -19 684 936 ;C 227 ; WX 556 ; N atilde ; B 29 -14 527 737 ;C -1 ; WX 667 ; N Edotaccent ; B 76 0 621 915 ;C 154 ; WX 556 ; N scaron ; B 30 -14 519 750 ;C -1 ; WX 556 ; N scedilla ; B 30 -228 519 546 ;C 237 ; WX 278 ; N iacute ; B 69 0 329 750 ;C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ;C -1 ; WX 722 ; N Rcaron ; B 76 0 677 936 ;C -1 ; WX 778 ; N Gcommaaccent ; B 44 -228 713 737 ;C 251 ; WX 611 ; N ucircumflex ; B 66 -14 545 750 ;C 226 ; WX 556 ; N acircumflex ; B 29 -14 527 750 ;C -1 ; WX 722 ; N Amacron ; B 20 0 702 864 ;C -1 ; WX 389 ; N rcaron ; B 18 0 373 750 ;C 231 ; WX 556 ; N ccedilla ; B 34 -228 524 546 ;C -1 ; WX 611 ; N Zdotaccent ; B 25 0 586 915 ;C 222 ; WX 667 ; N Thorn ; B 76 0 627 718 ;C -1 ; WX 778 ; N Omacron ; B 44 -19 734 864 ;C -1 ; WX 722 ; N Racute ; B 76 0 677 936 ;C -1 ; WX 667 ; N Sacute ; B 39 -19 629 936 ;C -1 ; WX 743 ; N dcaron ; B 34 -14 750 718 ;C -1 ; WX 722 ; N Umacron ; B 72 -19 651 864 ;C -1 ; WX 611 ; N uring ; B 66 -14 545 776 ;C 179 ; WX 333 ; N threesuperior ; B 8 271 326 710 ;C 210 ; WX 778 ; N Ograve ; B 44 -19 734 936 ;C 192 ; WX 722 ; N Agrave ; B 20 0 702 936 ;C -1 ; WX 722 ; N Abreve ; B 20 0 702 936 ;C 215 ; WX 584 ; N multiply ; B 40 1 545 505 ;C 250 ; WX 611 ; N uacute ; B 66 -14 545 750 ;C -1 ; WX 611 ; N Tcaron ; B 14 0 598 936 ;C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ;C 255 ; WX 556 ; N ydieresis ; B 10 -214 539 729 ;C -1 ; WX 722 ; N Nacute ; B 69 0 654 936 ;C 238 ; WX 278 ; N icircumflex ; B -37 0 316 750 ;C 202 ; WX 667 ; N Ecircumflex ; B 76 0 621 936 ;C 228 ; WX 556 ; N adieresis ; B 29 -14 527 729 ;C 235 ; WX 556 ; N edieresis ; B 23 -14 528 729 ;C -1 ; WX 556 ; N cacute ; B 34 -14 524 750 ;C -1 ; WX 611 ; N nacute ; B 65 0 546 750 ;C -1 ; WX 611 ; N umacron ; B 66 -14 545 678 ;C -1 ; WX 722 ; N Ncaron ; B 69 0 654 936 ;C 205 ; WX 278 ; N Iacute ; B 64 0 329 936 ;C 177 ; WX 584 ; N plusminus ; B 40 0 544 506 ;C 166 ; WX 280 ; N brokenbar ; B 84 -150 196 700 ;C 174 ; WX 737 ; N registered ; B -11 -19 748 737 ;C -1 ; WX 778 ; N Gbreve ; B 44 -19 713 936 ;C -1 ; WX 278 ; N Idotaccent ; B 64 0 214 915 ;C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ;C 200 ; WX 667 ; N Egrave ; B 76 0 621 936 ;C -1 ; WX 389 ; N racute ; B 64 0 384 750 ;C -1 ; WX 611 ; N omacron ; B 34 -14 578 678 ;C -1 ; WX 611 ; N Zacute ; B 25 0 586 936 ;C 142 ; WX 611 ; N Zcaron ; B 25 0 586 936 ;C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ;C 208 ; WX 722 ; N Eth ; B -5 0 685 718 ;C 199 ; WX 722 ; N Ccedilla ; B 44 -228 684 737 ;C -1 ; WX 278 ; N lcommaaccent ; B 69 -228 213 718 ;C -1 ; WX 389 ; N tcaron ; B 10 -6 421 878 ;C -1 ; WX 556 ; N eogonek ; B 23 -228 528 546 ;C -1 ; WX 722 ; N Uogonek ; B 72 -228 651 718 ;C 193 ; WX 722 ; N Aacute ; B 20 0 702 936 ;C 196 ; WX 722 ; N Adieresis ; B 20 0 702 915 ;C 232 ; WX 556 ; N egrave ; B 23 -14 528 750 ;C -1 ; WX 500 ; N zacute ; B 20 0 480 750 ;C -1 ; WX 278 ; N iogonek ; B 16 -224 249 725 ;C 211 ; WX 778 ; N Oacute ; B 44 -19 734 936 ;C 243 ; WX 611 ; N oacute ; B 34 -14 578 750 ;C -1 ; WX 556 ; N amacron ; B 29 -14 527 678 ;C -1 ; WX 556 ; N sacute ; B 30 -14 519 750 ;C 239 ; WX 278 ; N idieresis ; B -21 0 300 729 ;C 212 ; WX 778 ; N Ocircumflex ; B 44 -19 734 936 ;C 217 ; WX 722 ; N Ugrave ; B 72 -19 651 936 ;C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ;C 254 ; WX 611 ; N thorn ; B 62 -208 578 718 ;C 178 ; WX 333 ; N twosuperior ; B 9 283 324 710 ;C 214 ; WX 778 ; N Odieresis ; B 44 -19 734 915 ;C 181 ; WX 611 ; N mu ; B 66 -207 545 532 ;C 236 ; WX 278 ; N igrave ; B -50 0 209 750 ;C -1 ; WX 611 ; N ohungarumlaut ; B 34 -14 625 750 ;C -1 ; WX 667 ; N Eogonek ; B 76 -224 639 718 ;C -1 ; WX 611 ; N dcroat ; B 34 -14 650 718 ;C 190 ; WX 834 ; N threequarters ; B 16 -19 799 710 ;C -1 ; WX 667 ; N Scedilla ; B 39 -228 629 737 ;C -1 ; WX 400 ; N lcaron ; B 69 0 408 718 ;C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 722 718 ;C -1 ; WX 611 ; N Lacute ; B 76 0 583 936 ;C 153 ; WX 1000 ; N trademark ; B 44 306 956 718 ;C -1 ; WX 556 ; N edotaccent ; B 23 -14 528 729 ;C 204 ; WX 278 ; N Igrave ; B -50 0 214 936 ;C -1 ; WX 278 ; N Imacron ; B -33 0 312 864 ;C -1 ; WX 611 ; N Lcaron ; B 76 0 583 718 ;C 189 ; WX 834 ; N onehalf ; B 26 -19 794 710 ;C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ;C 244 ; WX 611 ; N ocircumflex ; B 34 -14 578 750 ;C 241 ; WX 611 ; N ntilde ; B 65 0 546 737 ;C -1 ; WX 722 ; N Uhungarumlaut ; B 72 -19 681 936 ;C 201 ; WX 667 ; N Eacute ; B 76 0 621 936 ;C -1 ; WX 556 ; N emacron ; B 23 -14 528 678 ;C -1 ; WX 611 ; N gbreve ; B 40 -217 553 750 ;C 188 ; WX 834 ; N onequarter ; B 26 -19 766 710 ;C 138 ; WX 667 ; N Scaron ; B 39 -19 629 936 ;C -1 ; WX 667 ; N Scommaaccent ; B 39 -228 629 737 ;C -1 ; WX 778 ; N Ohungarumlaut ; B 44 -19 734 936 ;C 176 ; WX 400 ; N degree ; B 57 426 343 712 ;C 242 ; WX 611 ; N ograve ; B 34 -14 578 750 ;C -1 ; WX 722 ; N Ccaron ; B 44 -19 684 936 ;C 249 ; WX 611 ; N ugrave ; B 66 -14 545 750 ;C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ;C -1 ; WX 722 ; N Dcaron ; B 76 0 685 936 ;C -1 ; WX 389 ; N rcommaaccent ; B 64 -228 373 546 ;C 209 ; WX 722 ; N Ntilde ; B 69 0 654 923 ;C 245 ; WX 611 ; N otilde ; B 34 -14 578 737 ;C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 677 718 ;C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 583 718 ;C 195 ; WX 722 ; N Atilde ; B 20 0 702 923 ;C -1 ; WX 722 ; N Aogonek ; B 20 -224 742 718 ;C 197 ; WX 722 ; N Aring ; B 20 0 702 962 ;C 213 ; WX 778 ; N Otilde ; B 44 -19 734 923 ;C -1 ; WX 500 ; N zdotaccent ; B 20 0 480 729 ;C -1 ; WX 667 ; N Ecaron ; B 76 0 621 936 ;C -1 ; WX 278 ; N Iogonek ; B -11 -228 222 718 ;C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 562 718 ;C -1 ; WX 584 ; N minus ; B 40 197 544 309 ;C 206 ; WX 278 ; N Icircumflex ; B -37 0 316 936 ;C -1 ; WX 611 ; N ncaron ; B 65 0 546 750 ;C -1 ; WX 333 ; N tcommaaccent ; B 10 -228 309 676 ;C 172 ; WX 584 ; N logicalnot ; B 40 108 544 419 ;C 246 ; WX 611 ; N odieresis ; B 34 -14 578 729 ;C 252 ; WX 611 ; N udieresis ; B 66 -14 545 729 ;C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ;C -1 ; WX 611 ; N gcommaaccent ; B 40 -217 553 850 ;C 240 ; WX 611 ; N eth ; B 34 -14 578 737 ;C 158 ; WX 500 ; N zcaron ; B 20 0 480 750 ;C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 546 546 ;C 185 ; WX 333 ; N onesuperior ; B 26 283 237 710 ;C -1 ; WX 278 ; N imacron ; B -8 0 285 678 ;C 128 ; WX 556 ; N Euro ; B 0 0 0 0 ;EndCharMetricsStartKernDataStartKernPairs 2481KPX A C -40KPX A Cacute -40KPX A Ccaron -40KPX A Ccedilla -40KPX A G -50KPX A Gbreve -50KPX A Gcommaaccent -50KPX A O -40KPX A Oacute -40KPX A Ocircumflex -40KPX A Odieresis -40KPX A Ograve -40KPX A Ohungarumlaut -40KPX A Omacron -40KPX A Oslash -40KPX A Otilde -40KPX A Q -40KPX A T -90KPX A Tcaron -90KPX A Tcommaaccent -90KPX A U -50KPX A Uacute -50KPX A Ucircumflex -50KPX A Udieresis -50KPX A Ugrave -50KPX A Uhungarumlaut -50KPX A Umacron -50KPX A Uogonek -50KPX A Uring -50KPX A V -80KPX A W -60KPX A Y -110KPX A Yacute -110KPX A Ydieresis -110KPX A u -30KPX A uacute -30KPX A ucircumflex -30KPX A udieresis -30KPX A ugrave -30KPX A uhungarumlaut -30KPX A umacron -30KPX A uogonek -30KPX A uring -30KPX A v -40KPX A w -30KPX A y -30KPX A yacute -30KPX A ydieresis -30KPX Aacute C -40KPX Aacute Cacute -40KPX Aacute Ccaron -40KPX Aacute Ccedilla -40KPX Aacute G -50KPX Aacute Gbreve -50KPX Aacute Gcommaaccent -50KPX Aacute O -40KPX Aacute Oacute -40KPX Aacute Ocircumflex -40KPX Aacute Odieresis -40KPX Aacute Ograve -40KPX Aacute Ohungarumlaut -40KPX Aacute Omacron -40KPX Aacute Oslash -40KPX Aacute Otilde -40KPX Aacute Q -40KPX Aacute T -90KPX Aacute Tcaron -90KPX Aacute Tcommaaccent -90KPX Aacute U -50KPX Aacute Uacute -50KPX Aacute Ucircumflex -50KPX Aacute Udieresis -50KPX Aacute Ugrave -50KPX Aacute Uhungarumlaut -50KPX Aacute Umacron -50KPX Aacute Uogonek -50KPX Aacute Uring -50KPX Aacute V -80KPX Aacute W -60KPX Aacute Y -110KPX Aacute Yacute -110KPX Aacute Ydieresis -110KPX Aacute u -30KPX Aacute uacute -30KPX Aacute ucircumflex -30KPX Aacute udieresis -30KPX Aacute ugrave -30KPX Aacute uhungarumlaut -30KPX Aacute umacron -30KPX Aacute uogonek -30KPX Aacute uring -30KPX Aacute v -40KPX Aacute w -30KPX Aacute y -30KPX Aacute yacute -30KPX Aacute ydieresis -30KPX Abreve C -40KPX Abreve Cacute -40KPX Abreve Ccaron -40KPX Abreve Ccedilla -40KPX Abreve G -50KPX Abreve Gbreve -50KPX Abreve Gcommaaccent -50KPX Abreve O -40KPX Abreve Oacute -40KPX Abreve Ocircumflex -40KPX Abreve Odieresis -40KPX Abreve Ograve -40KPX Abreve Ohungarumlaut -40KPX Abreve Omacron -40KPX Abreve Oslash -40KPX Abreve Otilde -40KPX Abreve Q -40KPX Abreve T -90KPX Abreve Tcaron -90KPX Abreve Tcommaaccent -90KPX Abreve U -50KPX Abreve Uacute -50KPX Abreve Ucircumflex -50KPX Abreve Udieresis -50KPX Abreve Ugrave -50KPX Abreve Uhungarumlaut -50KPX Abreve Umacron -50KPX Abreve Uogonek -50KPX Abreve Uring -50KPX Abreve V -80KPX Abreve W -60KPX Abreve Y -110KPX Abreve Yacute -110KPX Abreve Ydieresis -110KPX Abreve u -30KPX Abreve uacute -30KPX Abreve ucircumflex -30KPX Abreve udieresis -30KPX Abreve ugrave -30KPX Abreve uhungarumlaut -30KPX Abreve umacron -30KPX Abreve uogonek -30KPX Abreve uring -30KPX Abreve v -40KPX Abreve w -30KPX Abreve y -30KPX Abreve yacute -30KPX Abreve ydieresis -30KPX Acircumflex C -40KPX Acircumflex Cacute -40KPX Acircumflex Ccaron -40KPX Acircumflex Ccedilla -40KPX Acircumflex G -50KPX Acircumflex Gbreve -50KPX Acircumflex Gcommaaccent -50KPX Acircumflex O -40KPX Acircumflex Oacute -40KPX Acircumflex Ocircumflex -40KPX Acircumflex Odieresis -40KPX Acircumflex Ograve -40KPX Acircumflex Ohungarumlaut -40KPX Acircumflex Omacron -40KPX Acircumflex Oslash -40KPX Acircumflex Otilde -40KPX Acircumflex Q -40KPX Acircumflex T -90KPX Acircumflex Tcaron -90KPX Acircumflex Tcommaaccent -90KPX Acircumflex U -50KPX Acircumflex Uacute -50KPX Acircumflex Ucircumflex -50KPX Acircumflex Udieresis -50KPX Acircumflex Ugrave -50KPX Acircumflex Uhungarumlaut -50KPX Acircumflex Umacron -50KPX Acircumflex Uogonek -50KPX Acircumflex Uring -50KPX Acircumflex V -80KPX Acircumflex W -60KPX Acircumflex Y -110KPX Acircumflex Yacute -110KPX Acircumflex Ydieresis -110KPX Acircumflex u -30KPX Acircumflex uacute -30KPX Acircumflex ucircumflex -30KPX Acircumflex udieresis -30KPX Acircumflex ugrave -30KPX Acircumflex uhungarumlaut -30KPX Acircumflex umacron -30KPX Acircumflex uogonek -30KPX Acircumflex uring -30KPX Acircumflex v -40KPX Acircumflex w -30KPX Acircumflex y -30KPX Acircumflex yacute -30KPX Acircumflex ydieresis -30KPX Adieresis C -40KPX Adieresis Cacute -40KPX Adieresis Ccaron -40KPX Adieresis Ccedilla -40KPX Adieresis G -50KPX Adieresis Gbreve -50KPX Adieresis Gcommaaccent -50KPX Adieresis O -40KPX Adieresis Oacute -40KPX Adieresis Ocircumflex -40KPX Adieresis Odieresis -40KPX Adieresis Ograve -40KPX Adieresis Ohungarumlaut -40KPX Adieresis Omacron -40KPX Adieresis Oslash -40KPX Adieresis Otilde -40KPX Adieresis Q -40KPX Adieresis T -90KPX Adieresis Tcaron -90KPX Adieresis Tcommaaccent -90KPX Adieresis U -50KPX Adieresis Uacute -50KPX Adieresis Ucircumflex -50KPX Adieresis Udieresis -50KPX Adieresis Ugrave -50KPX Adieresis Uhungarumlaut -50KPX Adieresis Umacron -50KPX Adieresis Uogonek -50KPX Adieresis Uring -50KPX Adieresis V -80KPX Adieresis W -60KPX Adieresis Y -110KPX Adieresis Yacute -110KPX Adieresis Ydieresis -110KPX Adieresis u -30KPX Adieresis uacute -30KPX Adieresis ucircumflex -30KPX Adieresis udieresis -30KPX Adieresis ugrave -30KPX Adieresis uhungarumlaut -30KPX Adieresis umacron -30KPX Adieresis uogonek -30KPX Adieresis uring -30KPX Adieresis v -40KPX Adieresis w -30KPX Adieresis y -30KPX Adieresis yacute -30KPX Adieresis ydieresis -30KPX Agrave C -40KPX Agrave Cacute -40KPX Agrave Ccaron -40KPX Agrave Ccedilla -40KPX Agrave G -50KPX Agrave Gbreve -50KPX Agrave Gcommaaccent -50KPX Agrave O -40KPX Agrave Oacute -40KPX Agrave Ocircumflex -40KPX Agrave Odieresis -40KPX Agrave Ograve -40KPX Agrave Ohungarumlaut -40KPX Agrave Omacron -40KPX Agrave Oslash -40KPX Agrave Otilde -40KPX Agrave Q -40KPX Agrave T -90KPX Agrave Tcaron -90KPX Agrave Tcommaaccent -90KPX Agrave U -50KPX Agrave Uacute -50KPX Agrave Ucircumflex -50KPX Agrave Udieresis -50KPX Agrave Ugrave -50KPX Agrave Uhungarumlaut -50KPX Agrave Umacron -50KPX Agrave Uogonek -50KPX Agrave Uring -50KPX Agrave V -80KPX Agrave W -60KPX Agrave Y -110KPX Agrave Yacute -110KPX Agrave Ydieresis -110KPX Agrave u -30KPX Agrave uacute -30KPX Agrave ucircumflex -30KPX Agrave udieresis -30KPX Agrave ugrave -30KPX Agrave uhungarumlaut -30KPX Agrave umacron -30KPX Agrave uogonek -30KPX Agrave uring -30KPX Agrave v -40KPX Agrave w -30KPX Agrave y -30KPX Agrave yacute -30KPX Agrave ydieresis -30KPX Amacron C -40KPX Amacron Cacute -40KPX Amacron Ccaron -40KPX Amacron Ccedilla -40KPX Amacron G -50KPX Amacron Gbreve -50KPX Amacron Gcommaaccent -50KPX Amacron O -40KPX Amacron Oacute -40KPX Amacron Ocircumflex -40KPX Amacron Odieresis -40KPX Amacron Ograve -40KPX Amacron Ohungarumlaut -40KPX Amacron Omacron -40KPX Amacron Oslash -40KPX Amacron Otilde -40KPX Amacron Q -40KPX Amacron T -90KPX Amacron Tcaron -90KPX Amacron Tcommaaccent -90KPX Amacron U -50KPX Amacron Uacute -50KPX Amacron Ucircumflex -50KPX Amacron Udieresis -50KPX Amacron Ugrave -50KPX Amacron Uhungarumlaut -50KPX Amacron Umacron -50KPX Amacron Uogonek -50KPX Amacron Uring -50KPX Amacron V -80KPX Amacron W -60KPX Amacron Y -110KPX Amacron Yacute -110KPX Amacron Ydieresis -110KPX Amacron u -30KPX Amacron uacute -30KPX Amacron ucircumflex -30KPX Amacron udieresis -30KPX Amacron ugrave -30KPX Amacron uhungarumlaut -30KPX Amacron umacron -30KPX Amacron uogonek -30KPX Amacron uring -30KPX Amacron v -40KPX Amacron w -30KPX Amacron y -30KPX Amacron yacute -30KPX Amacron ydieresis -30KPX Aogonek C -40KPX Aogonek Cacute -40KPX Aogonek Ccaron -40KPX Aogonek Ccedilla -40KPX Aogonek G -50KPX Aogonek Gbreve -50KPX Aogonek Gcommaaccent -50KPX Aogonek O -40KPX Aogonek Oacute -40KPX Aogonek Ocircumflex -40KPX Aogonek Odieresis -40KPX Aogonek Ograve -40KPX Aogonek Ohungarumlaut -40KPX Aogonek Omacron -40KPX Aogonek Oslash -40KPX Aogonek Otilde -40KPX Aogonek Q -40KPX Aogonek T -90KPX Aogonek Tcaron -90KPX Aogonek Tcommaaccent -90KPX Aogonek U -50KPX Aogonek Uacute -50KPX Aogonek Ucircumflex -50KPX Aogonek Udieresis -50KPX Aogonek Ugrave -50KPX Aogonek Uhungarumlaut -50KPX Aogonek Umacron -50KPX Aogonek Uogonek -50KPX Aogonek Uring -50KPX Aogonek V -80KPX Aogonek W -60KPX Aogonek Y -110KPX Aogonek Yacute -110KPX Aogonek Ydieresis -110KPX Aogonek u -30KPX Aogonek uacute -30KPX Aogonek ucircumflex -30KPX Aogonek udieresis -30KPX Aogonek ugrave -30KPX Aogonek uhungarumlaut -30KPX Aogonek umacron -30KPX Aogonek uogonek -30KPX Aogonek uring -30KPX Aogonek v -40KPX Aogonek w -30KPX Aogonek y -30KPX Aogonek yacute -30KPX Aogonek ydieresis -30KPX Aring C -40KPX Aring Cacute -40KPX Aring Ccaron -40KPX Aring Ccedilla -40KPX Aring G -50KPX Aring Gbreve -50KPX Aring Gcommaaccent -50KPX Aring O -40KPX Aring Oacute -40KPX Aring Ocircumflex -40KPX Aring Odieresis -40KPX Aring Ograve -40KPX Aring Ohungarumlaut -40KPX Aring Omacron -40KPX Aring Oslash -40KPX Aring Otilde -40KPX Aring Q -40KPX Aring T -90KPX Aring Tcaron -90KPX Aring Tcommaaccent -90KPX Aring U -50KPX Aring Uacute -50KPX Aring Ucircumflex -50KPX Aring Udieresis -50KPX Aring Ugrave -50KPX Aring Uhungarumlaut -50KPX Aring Umacron -50KPX Aring Uogonek -50KPX Aring Uring -50KPX Aring V -80KPX Aring W -60KPX Aring Y -110KPX Aring Yacute -110KPX Aring Ydieresis -110KPX Aring u -30KPX Aring uacute -30KPX Aring ucircumflex -30KPX Aring udieresis -30KPX Aring ugrave -30KPX Aring uhungarumlaut -30KPX Aring umacron -30KPX Aring uogonek -30KPX Aring uring -30KPX Aring v -40KPX Aring w -30KPX Aring y -30KPX Aring yacute -30KPX Aring ydieresis -30KPX Atilde C -40KPX Atilde Cacute -40KPX Atilde Ccaron -40KPX Atilde Ccedilla -40KPX Atilde G -50KPX Atilde Gbreve -50KPX Atilde Gcommaaccent -50KPX Atilde O -40KPX Atilde Oacute -40KPX Atilde Ocircumflex -40KPX Atilde Odieresis -40KPX Atilde Ograve -40KPX Atilde Ohungarumlaut -40KPX Atilde Omacron -40KPX Atilde Oslash -40KPX Atilde Otilde -40KPX Atilde Q -40KPX Atilde T -90KPX Atilde Tcaron -90KPX Atilde Tcommaaccent -90KPX Atilde U -50KPX Atilde Uacute -50KPX Atilde Ucircumflex -50KPX Atilde Udieresis -50KPX Atilde Ugrave -50KPX Atilde Uhungarumlaut -50KPX Atilde Umacron -50KPX Atilde Uogonek -50KPX Atilde Uring -50KPX Atilde V -80KPX Atilde W -60KPX Atilde Y -110KPX Atilde Yacute -110KPX Atilde Ydieresis -110KPX Atilde u -30KPX Atilde uacute -30KPX Atilde ucircumflex -30KPX Atilde udieresis -30KPX Atilde ugrave -30KPX Atilde uhungarumlaut -30KPX Atilde umacron -30KPX Atilde uogonek -30KPX Atilde uring -30KPX Atilde v -40KPX Atilde w -30KPX Atilde y -30KPX Atilde yacute -30KPX Atilde ydieresis -30KPX B A -30KPX B Aacute -30KPX B Abreve -30KPX B Acircumflex -30KPX B Adieresis -30KPX B Agrave -30KPX B Amacron -30KPX B Aogonek -30KPX B Aring -30KPX B Atilde -30KPX B U -10KPX B Uacute -10KPX B Ucircumflex -10KPX B Udieresis -10KPX B Ugrave -10KPX B Uhungarumlaut -10KPX B Umacron -10KPX B Uogonek -10KPX B Uring -10KPX D A -40KPX D Aacute -40KPX D Abreve -40KPX D Acircumflex -40KPX D Adieresis -40KPX D Agrave -40KPX D Amacron -40KPX D Aogonek -40KPX D Aring -40KPX D Atilde -40KPX D V -40KPX D W -40KPX D Y -70KPX D Yacute -70KPX D Ydieresis -70KPX D comma -30KPX D period -30KPX Dcaron A -40KPX Dcaron Aacute -40KPX Dcaron Abreve -40KPX Dcaron Acircumflex -40KPX Dcaron Adieresis -40KPX Dcaron Agrave -40KPX Dcaron Amacron -40KPX Dcaron Aogonek -40KPX Dcaron Aring -40KPX Dcaron Atilde -40KPX Dcaron V -40KPX Dcaron W -40KPX Dcaron Y -70KPX Dcaron Yacute -70KPX Dcaron Ydieresis -70KPX Dcaron comma -30KPX Dcaron period -30KPX Dcroat A -40KPX Dcroat Aacute -40KPX Dcroat Abreve -40KPX Dcroat Acircumflex -40KPX Dcroat Adieresis -40KPX Dcroat Agrave -40KPX Dcroat Amacron -40KPX Dcroat Aogonek -40KPX Dcroat Aring -40KPX Dcroat Atilde -40KPX Dcroat V -40KPX Dcroat W -40KPX Dcroat Y -70KPX Dcroat Yacute -70KPX Dcroat Ydieresis -70KPX Dcroat comma -30KPX Dcroat period -30KPX F A -80KPX F Aacute -80KPX F Abreve -80KPX F Acircumflex -80KPX F Adieresis -80KPX F Agrave -80KPX F Amacron -80KPX F Aogonek -80KPX F Aring -80KPX F Atilde -80KPX F a -20KPX F aacute -20KPX F abreve -20KPX F acircumflex -20KPX F adieresis -20KPX F agrave -20KPX F amacron -20KPX F aogonek -20KPX F aring -20KPX F atilde -20KPX F comma -100KPX F period -100KPX J A -20KPX J Aacute -20KPX J Abreve -20KPX J Acircumflex -20KPX J Adieresis -20KPX J Agrave -20KPX J Amacron -20KPX J Aogonek -20KPX J Aring -20KPX J Atilde -20KPX J comma -20KPX J period -20KPX J u -20KPX J uacute -20KPX J ucircumflex -20KPX J udieresis -20KPX J ugrave -20KPX J uhungarumlaut -20KPX J umacron -20KPX J uogonek -20KPX J uring -20KPX K O -30KPX K Oacute -30KPX K Ocircumflex -30KPX K Odieresis -30KPX K Ograve -30KPX K Ohungarumlaut -30KPX K Omacron -30KPX K Oslash -30KPX K Otilde -30KPX K e -15KPX K eacute -15KPX K ecaron -15KPX K ecircumflex -15KPX K edieresis -15KPX K edotaccent -15KPX K egrave -15KPX K emacron -15KPX K eogonek -15KPX K o -35KPX K oacute -35KPX K ocircumflex -35KPX K odieresis -35KPX K ograve -35KPX K ohungarumlaut -35KPX K omacron -35KPX K oslash -35KPX K otilde -35KPX K u -30KPX K uacute -30KPX K ucircumflex -30KPX K udieresis -30KPX K ugrave -30KPX K uhungarumlaut -30KPX K umacron -30KPX K uogonek -30KPX K uring -30KPX K y -40KPX K yacute -40KPX K ydieresis -40KPX Kcommaaccent O -30KPX Kcommaaccent Oacute -30KPX Kcommaaccent Ocircumflex -30KPX Kcommaaccent Odieresis -30KPX Kcommaaccent Ograve -30KPX Kcommaaccent Ohungarumlaut -30KPX Kcommaaccent Omacron -30KPX Kcommaaccent Oslash -30KPX Kcommaaccent Otilde -30KPX Kcommaaccent e -15KPX Kcommaaccent eacute -15KPX Kcommaaccent ecaron -15KPX Kcommaaccent ecircumflex -15KPX Kcommaaccent edieresis -15KPX Kcommaaccent edotaccent -15KPX Kcommaaccent egrave -15KPX Kcommaaccent emacron -15KPX Kcommaaccent eogonek -15KPX Kcommaaccent o -35KPX Kcommaaccent oacute -35KPX Kcommaaccent ocircumflex -35KPX Kcommaaccent odieresis -35KPX Kcommaaccent ograve -35KPX Kcommaaccent ohungarumlaut -35KPX Kcommaaccent omacron -35KPX Kcommaaccent oslash -35KPX Kcommaaccent otilde -35KPX Kcommaaccent u -30KPX Kcommaaccent uacute -30KPX Kcommaaccent ucircumflex -30KPX Kcommaaccent udieresis -30KPX Kcommaaccent ugrave -30KPX Kcommaaccent uhungarumlaut -30KPX Kcommaaccent umacron -30KPX Kcommaaccent uogonek -30KPX Kcommaaccent uring -30KPX Kcommaaccent y -40KPX Kcommaaccent yacute -40KPX Kcommaaccent ydieresis -40KPX L T -90KPX L Tcaron -90KPX L Tcommaaccent -90KPX L V -110KPX L W -80KPX L Y -120KPX L Yacute -120KPX L Ydieresis -120KPX L quotedblright -140KPX L quoteright -140KPX L y -30KPX L yacute -30KPX L ydieresis -30KPX Lacute T -90KPX Lacute Tcaron -90KPX Lacute Tcommaaccent -90KPX Lacute V -110KPX Lacute W -80KPX Lacute Y -120KPX Lacute Yacute -120KPX Lacute Ydieresis -120KPX Lacute quotedblright -140KPX Lacute quoteright -140KPX Lacute y -30KPX Lacute yacute -30KPX Lacute ydieresis -30KPX Lcommaaccent T -90KPX Lcommaaccent Tcaron -90KPX Lcommaaccent Tcommaaccent -90KPX Lcommaaccent V -110KPX Lcommaaccent W -80KPX Lcommaaccent Y -120KPX Lcommaaccent Yacute -120KPX Lcommaaccent Ydieresis -120KPX Lcommaaccent quotedblright -140KPX Lcommaaccent quoteright -140KPX Lcommaaccent y -30KPX Lcommaaccent yacute -30KPX Lcommaaccent ydieresis -30KPX Lslash T -90KPX Lslash Tcaron -90KPX Lslash Tcommaaccent -90KPX Lslash V -110KPX Lslash W -80KPX Lslash Y -120KPX Lslash Yacute -120KPX Lslash Ydieresis -120KPX Lslash quotedblright -140KPX Lslash quoteright -140KPX Lslash y -30KPX Lslash yacute -30KPX Lslash ydieresis -30KPX O A -50KPX O Aacute -50KPX O Abreve -50KPX O Acircumflex -50KPX O Adieresis -50KPX O Agrave -50KPX O Amacron -50KPX O Aogonek -50KPX O Aring -50KPX O Atilde -50KPX O T -40KPX O Tcaron -40KPX O Tcommaaccent -40KPX O V -50KPX O W -50KPX O X -50KPX O Y -70KPX O Yacute -70KPX O Ydieresis -70KPX O comma -40KPX O period -40KPX Oacute A -50KPX Oacute Aacute -50KPX Oacute Abreve -50KPX Oacute Acircumflex -50KPX Oacute Adieresis -50KPX Oacute Agrave -50KPX Oacute Amacron -50KPX Oacute Aogonek -50KPX Oacute Aring -50KPX Oacute Atilde -50KPX Oacute T -40KPX Oacute Tcaron -40KPX Oacute Tcommaaccent -40KPX Oacute V -50KPX Oacute W -50KPX Oacute X -50KPX Oacute Y -70KPX Oacute Yacute -70KPX Oacute Ydieresis -70KPX Oacute comma -40KPX Oacute period -40KPX Ocircumflex A -50KPX Ocircumflex Aacute -50KPX Ocircumflex Abreve -50KPX Ocircumflex Acircumflex -50KPX Ocircumflex Adieresis -50KPX Ocircumflex Agrave -50KPX Ocircumflex Amacron -50KPX Ocircumflex Aogonek -50KPX Ocircumflex Aring -50KPX Ocircumflex Atilde -50KPX Ocircumflex T -40KPX Ocircumflex Tcaron -40KPX Ocircumflex Tcommaaccent -40KPX Ocircumflex V -50KPX Ocircumflex W -50KPX Ocircumflex X -50KPX Ocircumflex Y -70KPX Ocircumflex Yacute -70KPX Ocircumflex Ydieresis -70KPX Ocircumflex comma -40KPX Ocircumflex period -40KPX Odieresis A -50KPX Odieresis Aacute -50KPX Odieresis Abreve -50KPX Odieresis Acircumflex -50KPX Odieresis Adieresis -50KPX Odieresis Agrave -50KPX Odieresis Amacron -50KPX Odieresis Aogonek -50KPX Odieresis Aring -50KPX Odieresis Atilde -50KPX Odieresis T -40KPX Odieresis Tcaron -40KPX Odieresis Tcommaaccent -40KPX Odieresis V -50KPX Odieresis W -50KPX Odieresis X -50KPX Odieresis Y -70KPX Odieresis Yacute -70KPX Odieresis Ydieresis -70KPX Odieresis comma -40KPX Odieresis period -40KPX Ograve A -50KPX Ograve Aacute -50KPX Ograve Abreve -50KPX Ograve Acircumflex -50KPX Ograve Adieresis -50KPX Ograve Agrave -50KPX Ograve Amacron -50KPX Ograve Aogonek -50KPX Ograve Aring -50KPX Ograve Atilde -50KPX Ograve T -40KPX Ograve Tcaron -40KPX Ograve Tcommaaccent -40KPX Ograve V -50KPX Ograve W -50KPX Ograve X -50KPX Ograve Y -70KPX Ograve Yacute -70KPX Ograve Ydieresis -70KPX Ograve comma -40KPX Ograve period -40KPX Ohungarumlaut A -50KPX Ohungarumlaut Aacute -50KPX Ohungarumlaut Abreve -50KPX Ohungarumlaut Acircumflex -50KPX Ohungarumlaut Adieresis -50KPX Ohungarumlaut Agrave -50KPX Ohungarumlaut Amacron -50KPX Ohungarumlaut Aogonek -50KPX Ohungarumlaut Aring -50KPX Ohungarumlaut Atilde -50KPX Ohungarumlaut T -40KPX Ohungarumlaut Tcaron -40KPX Ohungarumlaut Tcommaaccent -40KPX Ohungarumlaut V -50KPX Ohungarumlaut W -50KPX Ohungarumlaut X -50KPX Ohungarumlaut Y -70KPX Ohungarumlaut Yacute -70KPX Ohungarumlaut Ydieresis -70KPX Ohungarumlaut comma -40KPX Ohungarumlaut period -40KPX Omacron A -50KPX Omacron Aacute -50KPX Omacron Abreve -50KPX Omacron Acircumflex -50KPX Omacron Adieresis -50KPX Omacron Agrave -50KPX Omacron Amacron -50KPX Omacron Aogonek -50KPX Omacron Aring -50KPX Omacron Atilde -50KPX Omacron T -40KPX Omacron Tcaron -40KPX Omacron Tcommaaccent -40KPX Omacron V -50KPX Omacron W -50KPX Omacron X -50KPX Omacron Y -70KPX Omacron Yacute -70KPX Omacron Ydieresis -70KPX Omacron comma -40KPX Omacron period -40KPX Oslash A -50KPX Oslash Aacute -50KPX Oslash Abreve -50KPX Oslash Acircumflex -50KPX Oslash Adieresis -50KPX Oslash Agrave -50KPX Oslash Amacron -50KPX Oslash Aogonek -50KPX Oslash Aring -50KPX Oslash Atilde -50KPX Oslash T -40KPX Oslash Tcaron -40KPX Oslash Tcommaaccent -40KPX Oslash V -50KPX Oslash W -50KPX Oslash X -50KPX Oslash Y -70KPX Oslash Yacute -70KPX Oslash Ydieresis -70KPX Oslash comma -40KPX Oslash period -40KPX Otilde A -50KPX Otilde Aacute -50KPX Otilde Abreve -50KPX Otilde Acircumflex -50KPX Otilde Adieresis -50KPX Otilde Agrave -50KPX Otilde Amacron -50KPX Otilde Aogonek -50KPX Otilde Aring -50KPX Otilde Atilde -50KPX Otilde T -40KPX Otilde Tcaron -40KPX Otilde Tcommaaccent -40KPX Otilde V -50KPX Otilde W -50KPX Otilde X -50KPX Otilde Y -70KPX Otilde Yacute -70KPX Otilde Ydieresis -70KPX Otilde comma -40KPX Otilde period -40KPX P A -100KPX P Aacute -100KPX P Abreve -100KPX P Acircumflex -100KPX P Adieresis -100KPX P Agrave -100KPX P Amacron -100KPX P Aogonek -100KPX P Aring -100KPX P Atilde -100KPX P a -30KPX P aacute -30KPX P abreve -30KPX P acircumflex -30KPX P adieresis -30KPX P agrave -30KPX P amacron -30KPX P aogonek -30KPX P aring -30KPX P atilde -30KPX P comma -120KPX P e -30KPX P eacute -30KPX P ecaron -30KPX P ecircumflex -30KPX P edieresis -30KPX P edotaccent -30KPX P egrave -30KPX P emacron -30KPX P eogonek -30KPX P o -40KPX P oacute -40KPX P ocircumflex -40KPX P odieresis -40KPX P ograve -40KPX P ohungarumlaut -40KPX P omacron -40KPX P oslash -40KPX P otilde -40KPX P period -120KPX Q U -10KPX Q Uacute -10KPX Q Ucircumflex -10KPX Q Udieresis -10KPX Q Ugrave -10KPX Q Uhungarumlaut -10KPX Q Umacron -10KPX Q Uogonek -10KPX Q Uring -10KPX Q comma 20KPX Q period 20KPX R O -20KPX R Oacute -20KPX R Ocircumflex -20KPX R Odieresis -20KPX R Ograve -20KPX R Ohungarumlaut -20KPX R Omacron -20KPX R Oslash -20KPX R Otilde -20KPX R T -20KPX R Tcaron -20KPX R Tcommaaccent -20KPX R U -20KPX R Uacute -20KPX R Ucircumflex -20KPX R Udieresis -20KPX R Ugrave -20KPX R Uhungarumlaut -20KPX R Umacron -20KPX R Uogonek -20KPX R Uring -20KPX R V -50KPX R W -40KPX R Y -50KPX R Yacute -50KPX R Ydieresis -50KPX Racute O -20KPX Racute Oacute -20KPX Racute Ocircumflex -20KPX Racute Odieresis -20KPX Racute Ograve -20KPX Racute Ohungarumlaut -20KPX Racute Omacron -20KPX Racute Oslash -20KPX Racute Otilde -20KPX Racute T -20KPX Racute Tcaron -20KPX Racute Tcommaaccent -20KPX Racute U -20KPX Racute Uacute -20KPX Racute Ucircumflex -20KPX Racute Udieresis -20KPX Racute Ugrave -20KPX Racute Uhungarumlaut -20KPX Racute Umacron -20KPX Racute Uogonek -20KPX Racute Uring -20KPX Racute V -50KPX Racute W -40KPX Racute Y -50KPX Racute Yacute -50KPX Racute Ydieresis -50KPX Rcaron O -20KPX Rcaron Oacute -20KPX Rcaron Ocircumflex -20KPX Rcaron Odieresis -20KPX Rcaron Ograve -20KPX Rcaron Ohungarumlaut -20KPX Rcaron Omacron -20KPX Rcaron Oslash -20KPX Rcaron Otilde -20KPX Rcaron T -20KPX Rcaron Tcaron -20KPX Rcaron Tcommaaccent -20KPX Rcaron U -20KPX Rcaron Uacute -20KPX Rcaron Ucircumflex -20KPX Rcaron Udieresis -20KPX Rcaron Ugrave -20KPX Rcaron Uhungarumlaut -20KPX Rcaron Umacron -20KPX Rcaron Uogonek -20KPX Rcaron Uring -20KPX Rcaron V -50KPX Rcaron W -40KPX Rcaron Y -50KPX Rcaron Yacute -50KPX Rcaron Ydieresis -50KPX Rcommaaccent O -20KPX Rcommaaccent Oacute -20KPX Rcommaaccent Ocircumflex -20KPX Rcommaaccent Odieresis -20KPX Rcommaaccent Ograve -20KPX Rcommaaccent Ohungarumlaut -20KPX Rcommaaccent Omacron -20KPX Rcommaaccent Oslash -20KPX Rcommaaccent Otilde -20KPX Rcommaaccent T -20KPX Rcommaaccent Tcaron -20KPX Rcommaaccent Tcommaaccent -20KPX Rcommaaccent U -20KPX Rcommaaccent Uacute -20KPX Rcommaaccent Ucircumflex -20KPX Rcommaaccent Udieresis -20KPX Rcommaaccent Ugrave -20KPX Rcommaaccent Uhungarumlaut -20KPX Rcommaaccent Umacron -20KPX Rcommaaccent Uogonek -20KPX Rcommaaccent Uring -20KPX Rcommaaccent V -50KPX Rcommaaccent W -40KPX Rcommaaccent Y -50KPX Rcommaaccent Yacute -50KPX Rcommaaccent Ydieresis -50KPX T A -90KPX T Aacute -90KPX T Abreve -90KPX T Acircumflex -90KPX T Adieresis -90KPX T Agrave -90KPX T Amacron -90KPX T Aogonek -90KPX T Aring -90KPX T Atilde -90KPX T O -40KPX T Oacute -40KPX T Ocircumflex -40KPX T Odieresis -40KPX T Ograve -40KPX T Ohungarumlaut -40KPX T Omacron -40KPX T Oslash -40KPX T Otilde -40KPX T a -80KPX T aacute -80KPX T abreve -80KPX T acircumflex -80KPX T adieresis -80KPX T agrave -80KPX T amacron -80KPX T aogonek -80KPX T aring -80KPX T atilde -80KPX T colon -40KPX T comma -80KPX T e -60KPX T eacute -60KPX T ecaron -60KPX T ecircumflex -60KPX T edieresis -60KPX T edotaccent -60KPX T egrave -60KPX T emacron -60KPX T eogonek -60KPX T hyphen -120KPX T o -80KPX T oacute -80KPX T ocircumflex -80KPX T odieresis -80KPX T ograve -80KPX T ohungarumlaut -80KPX T omacron -80KPX T oslash -80KPX T otilde -80KPX T period -80KPX T r -80KPX T racute -80KPX T rcommaaccent -80KPX T semicolon -40KPX T u -90KPX T uacute -90KPX T ucircumflex -90KPX T udieresis -90KPX T ugrave -90KPX T uhungarumlaut -90KPX T umacron -90KPX T uogonek -90KPX T uring -90KPX T w -60KPX T y -60KPX T yacute -60KPX T ydieresis -60KPX Tcaron A -90KPX Tcaron Aacute -90KPX Tcaron Abreve -90KPX Tcaron Acircumflex -90KPX Tcaron Adieresis -90KPX Tcaron Agrave -90KPX Tcaron Amacron -90KPX Tcaron Aogonek -90KPX Tcaron Aring -90KPX Tcaron Atilde -90KPX Tcaron O -40KPX Tcaron Oacute -40KPX Tcaron Ocircumflex -40KPX Tcaron Odieresis -40KPX Tcaron Ograve -40KPX Tcaron Ohungarumlaut -40KPX Tcaron Omacron -40KPX Tcaron Oslash -40KPX Tcaron Otilde -40KPX Tcaron a -80KPX Tcaron aacute -80KPX Tcaron abreve -80KPX Tcaron acircumflex -80KPX Tcaron adieresis -80KPX Tcaron agrave -80KPX Tcaron amacron -80KPX Tcaron aogonek -80KPX Tcaron aring -80KPX Tcaron atilde -80KPX Tcaron colon -40KPX Tcaron comma -80KPX Tcaron e -60KPX Tcaron eacute -60KPX Tcaron ecaron -60KPX Tcaron ecircumflex -60KPX Tcaron edieresis -60KPX Tcaron edotaccent -60KPX Tcaron egrave -60KPX Tcaron emacron -60KPX Tcaron eogonek -60KPX Tcaron hyphen -120KPX Tcaron o -80KPX Tcaron oacute -80KPX Tcaron ocircumflex -80KPX Tcaron odieresis -80KPX Tcaron ograve -80KPX Tcaron ohungarumlaut -80KPX Tcaron omacron -80KPX Tcaron oslash -80KPX Tcaron otilde -80KPX Tcaron period -80KPX Tcaron r -80KPX Tcaron racute -80KPX Tcaron rcommaaccent -80KPX Tcaron semicolon -40KPX Tcaron u -90KPX Tcaron uacute -90KPX Tcaron ucircumflex -90KPX Tcaron udieresis -90KPX Tcaron ugrave -90KPX Tcaron uhungarumlaut -90KPX Tcaron umacron -90KPX Tcaron uogonek -90KPX Tcaron uring -90KPX Tcaron w -60KPX Tcaron y -60KPX Tcaron yacute -60KPX Tcaron ydieresis -60KPX Tcommaaccent A -90KPX Tcommaaccent Aacute -90KPX Tcommaaccent Abreve -90KPX Tcommaaccent Acircumflex -90KPX Tcommaaccent Adieresis -90KPX Tcommaaccent Agrave -90KPX Tcommaaccent Amacron -90KPX Tcommaaccent Aogonek -90KPX Tcommaaccent Aring -90KPX Tcommaaccent Atilde -90KPX Tcommaaccent O -40KPX Tcommaaccent Oacute -40KPX Tcommaaccent Ocircumflex -40KPX Tcommaaccent Odieresis -40KPX Tcommaaccent Ograve -40KPX Tcommaaccent Ohungarumlaut -40KPX Tcommaaccent Omacron -40KPX Tcommaaccent Oslash -40KPX Tcommaaccent Otilde -40KPX Tcommaaccent a -80KPX Tcommaaccent aacute -80KPX Tcommaaccent abreve -80KPX Tcommaaccent acircumflex -80KPX Tcommaaccent adieresis -80KPX Tcommaaccent agrave -80KPX Tcommaaccent amacron -80KPX Tcommaaccent aogonek -80KPX Tcommaaccent aring -80KPX Tcommaaccent atilde -80KPX Tcommaaccent colon -40KPX Tcommaaccent comma -80KPX Tcommaaccent e -60KPX Tcommaaccent eacute -60KPX Tcommaaccent ecaron -60KPX Tcommaaccent ecircumflex -60KPX Tcommaaccent edieresis -60KPX Tcommaaccent edotaccent -60KPX Tcommaaccent egrave -60KPX Tcommaaccent emacron -60KPX Tcommaaccent eogonek -60KPX Tcommaaccent hyphen -120KPX Tcommaaccent o -80KPX Tcommaaccent oacute -80KPX Tcommaaccent ocircumflex -80KPX Tcommaaccent odieresis -80KPX Tcommaaccent ograve -80KPX Tcommaaccent ohungarumlaut -80KPX Tcommaaccent omacron -80KPX Tcommaaccent oslash -80KPX Tcommaaccent otilde -80KPX Tcommaaccent period -80KPX Tcommaaccent r -80KPX Tcommaaccent racute -80KPX Tcommaaccent rcommaaccent -80KPX Tcommaaccent semicolon -40KPX Tcommaaccent u -90KPX Tcommaaccent uacute -90KPX Tcommaaccent ucircumflex -90KPX Tcommaaccent udieresis -90KPX Tcommaaccent ugrave -90KPX Tcommaaccent uhungarumlaut -90KPX Tcommaaccent umacron -90KPX Tcommaaccent uogonek -90KPX Tcommaaccent uring -90KPX Tcommaaccent w -60KPX Tcommaaccent y -60KPX Tcommaaccent yacute -60KPX Tcommaaccent ydieresis -60KPX U A -50KPX U Aacute -50KPX U Abreve -50KPX U Acircumflex -50KPX U Adieresis -50KPX U Agrave -50KPX U Amacron -50KPX U Aogonek -50KPX U Aring -50KPX U Atilde -50KPX U comma -30KPX U period -30KPX Uacute A -50KPX Uacute Aacute -50KPX Uacute Abreve -50KPX Uacute Acircumflex -50KPX Uacute Adieresis -50KPX Uacute Agrave -50KPX Uacute Amacron -50KPX Uacute Aogonek -50KPX Uacute Aring -50KPX Uacute Atilde -50KPX Uacute comma -30KPX Uacute period -30KPX Ucircumflex A -50KPX Ucircumflex Aacute -50KPX Ucircumflex Abreve -50KPX Ucircumflex Acircumflex -50KPX Ucircumflex Adieresis -50KPX Ucircumflex Agrave -50KPX Ucircumflex Amacron -50KPX Ucircumflex Aogonek -50KPX Ucircumflex Aring -50KPX Ucircumflex Atilde -50KPX Ucircumflex comma -30KPX Ucircumflex period -30KPX Udieresis A -50KPX Udieresis Aacute -50KPX Udieresis Abreve -50KPX Udieresis Acircumflex -50KPX Udieresis Adieresis -50KPX Udieresis Agrave -50KPX Udieresis Amacron -50KPX Udieresis Aogonek -50KPX Udieresis Aring -50KPX Udieresis Atilde -50KPX Udieresis comma -30KPX Udieresis period -30KPX Ugrave A -50KPX Ugrave Aacute -50KPX Ugrave Abreve -50KPX Ugrave Acircumflex -50KPX Ugrave Adieresis -50KPX Ugrave Agrave -50KPX Ugrave Amacron -50KPX Ugrave Aogonek -50KPX Ugrave Aring -50KPX Ugrave Atilde -50KPX Ugrave comma -30KPX Ugrave period -30KPX Uhungarumlaut A -50KPX Uhungarumlaut Aacute -50KPX Uhungarumlaut Abreve -50KPX Uhungarumlaut Acircumflex -50KPX Uhungarumlaut Adieresis -50KPX Uhungarumlaut Agrave -50KPX Uhungarumlaut Amacron -50KPX Uhungarumlaut Aogonek -50KPX Uhungarumlaut Aring -50KPX Uhungarumlaut Atilde -50KPX Uhungarumlaut comma -30KPX Uhungarumlaut period -30KPX Umacron A -50KPX Umacron Aacute -50KPX Umacron Abreve -50KPX Umacron Acircumflex -50KPX Umacron Adieresis -50KPX Umacron Agrave -50KPX Umacron Amacron -50KPX Umacron Aogonek -50KPX Umacron Aring -50KPX Umacron Atilde -50KPX Umacron comma -30KPX Umacron period -30KPX Uogonek A -50KPX Uogonek Aacute -50KPX Uogonek Abreve -50KPX Uogonek Acircumflex -50KPX Uogonek Adieresis -50KPX Uogonek Agrave -50KPX Uogonek Amacron -50KPX Uogonek Aogonek -50KPX Uogonek Aring -50KPX Uogonek Atilde -50KPX Uogonek comma -30KPX Uogonek period -30KPX Uring A -50KPX Uring Aacute -50KPX Uring Abreve -50KPX Uring Acircumflex -50KPX Uring Adieresis -50KPX Uring Agrave -50KPX Uring Amacron -50KPX Uring Aogonek -50KPX Uring Aring -50KPX Uring Atilde -50KPX Uring comma -30KPX Uring period -30KPX V A -80KPX V Aacute -80KPX V Abreve -80KPX V Acircumflex -80KPX V Adieresis -80KPX V Agrave -80KPX V Amacron -80KPX V Aogonek -80KPX V Aring -80KPX V Atilde -80KPX V G -50KPX V Gbreve -50KPX V Gcommaaccent -50KPX V O -50KPX V Oacute -50KPX V Ocircumflex -50KPX V Odieresis -50KPX V Ograve -50KPX V Ohungarumlaut -50KPX V Omacron -50KPX V Oslash -50KPX V Otilde -50KPX V a -60KPX V aacute -60KPX V abreve -60KPX V acircumflex -60KPX V adieresis -60KPX V agrave -60KPX V amacron -60KPX V aogonek -60KPX V aring -60KPX V atilde -60KPX V colon -40KPX V comma -120KPX V e -50KPX V eacute -50KPX V ecaron -50KPX V ecircumflex -50KPX V edieresis -50KPX V edotaccent -50KPX V egrave -50KPX V emacron -50KPX V eogonek -50KPX V hyphen -80KPX V o -90KPX V oacute -90KPX V ocircumflex -90KPX V odieresis -90KPX V ograve -90KPX V ohungarumlaut -90KPX V omacron -90KPX V oslash -90KPX V otilde -90KPX V period -120KPX V semicolon -40KPX V u -60KPX V uacute -60KPX V ucircumflex -60KPX V udieresis -60KPX V ugrave -60KPX V uhungarumlaut -60KPX V umacron -60KPX V uogonek -60KPX V uring -60KPX W A -60KPX W Aacute -60KPX W Abreve -60KPX W Acircumflex -60KPX W Adieresis -60KPX W Agrave -60KPX W Amacron -60KPX W Aogonek -60KPX W Aring -60KPX W Atilde -60KPX W O -20KPX W Oacute -20KPX W Ocircumflex -20KPX W Odieresis -20KPX W Ograve -20KPX W Ohungarumlaut -20KPX W Omacron -20KPX W Oslash -20KPX W Otilde -20KPX W a -40KPX W aacute -40KPX W abreve -40KPX W acircumflex -40KPX W adieresis -40KPX W agrave -40KPX W amacron -40KPX W aogonek -40KPX W aring -40KPX W atilde -40KPX W colon -10KPX W comma -80KPX W e -35KPX W eacute -35KPX W ecaron -35KPX W ecircumflex -35KPX W edieresis -35KPX W edotaccent -35KPX W egrave -35KPX W emacron -35KPX W eogonek -35KPX W hyphen -40KPX W o -60KPX W oacute -60KPX W ocircumflex -60KPX W odieresis -60KPX W ograve -60KPX W ohungarumlaut -60KPX W omacron -60KPX W oslash -60KPX W otilde -60KPX W period -80KPX W semicolon -10KPX W u -45KPX W uacute -45KPX W ucircumflex -45KPX W udieresis -45KPX W ugrave -45KPX W uhungarumlaut -45KPX W umacron -45KPX W uogonek -45KPX W uring -45KPX W y -20KPX W yacute -20KPX W ydieresis -20KPX Y A -110KPX Y Aacute -110KPX Y Abreve -110KPX Y Acircumflex -110KPX Y Adieresis -110KPX Y Agrave -110KPX Y Amacron -110KPX Y Aogonek -110KPX Y Aring -110KPX Y Atilde -110KPX Y O -70KPX Y Oacute -70KPX Y Ocircumflex -70KPX Y Odieresis -70KPX Y Ograve -70KPX Y Ohungarumlaut -70KPX Y Omacron -70KPX Y Oslash -70KPX Y Otilde -70KPX Y a -90KPX Y aacute -90KPX Y abreve -90KPX Y acircumflex -90KPX Y adieresis -90KPX Y agrave -90KPX Y amacron -90KPX Y aogonek -90KPX Y aring -90KPX Y atilde -90KPX Y colon -50KPX Y comma -100KPX Y e -80KPX Y eacute -80KPX Y ecaron -80KPX Y ecircumflex -80KPX Y edieresis -80KPX Y edotaccent -80KPX Y egrave -80KPX Y emacron -80KPX Y eogonek -80KPX Y o -100KPX Y oacute -100KPX Y ocircumflex -100KPX Y odieresis -100KPX Y ograve -100KPX Y ohungarumlaut -100KPX Y omacron -100KPX Y oslash -100KPX Y otilde -100KPX Y period -100KPX Y semicolon -50KPX Y u -100KPX Y uacute -100KPX Y ucircumflex -100KPX Y udieresis -100KPX Y ugrave -100KPX Y uhungarumlaut -100KPX Y umacron -100KPX Y uogonek -100KPX Y uring -100KPX Yacute A -110KPX Yacute Aacute -110KPX Yacute Abreve -110KPX Yacute Acircumflex -110KPX Yacute Adieresis -110KPX Yacute Agrave -110KPX Yacute Amacron -110KPX Yacute Aogonek -110KPX Yacute Aring -110KPX Yacute Atilde -110KPX Yacute O -70KPX Yacute Oacute -70KPX Yacute Ocircumflex -70KPX Yacute Odieresis -70KPX Yacute Ograve -70KPX Yacute Ohungarumlaut -70KPX Yacute Omacron -70KPX Yacute Oslash -70KPX Yacute Otilde -70KPX Yacute a -90KPX Yacute aacute -90KPX Yacute abreve -90KPX Yacute acircumflex -90KPX Yacute adieresis -90KPX Yacute agrave -90KPX Yacute amacron -90KPX Yacute aogonek -90KPX Yacute aring -90KPX Yacute atilde -90KPX Yacute colon -50KPX Yacute comma -100KPX Yacute e -80KPX Yacute eacute -80KPX Yacute ecaron -80KPX Yacute ecircumflex -80KPX Yacute edieresis -80KPX Yacute edotaccent -80KPX Yacute egrave -80KPX Yacute emacron -80KPX Yacute eogonek -80KPX Yacute o -100KPX Yacute oacute -100KPX Yacute ocircumflex -100KPX Yacute odieresis -100KPX Yacute ograve -100KPX Yacute ohungarumlaut -100KPX Yacute omacron -100KPX Yacute oslash -100KPX Yacute otilde -100KPX Yacute period -100KPX Yacute semicolon -50KPX Yacute u -100KPX Yacute uacute -100KPX Yacute ucircumflex -100KPX Yacute udieresis -100KPX Yacute ugrave -100KPX Yacute uhungarumlaut -100KPX Yacute umacron -100KPX Yacute uogonek -100KPX Yacute uring -100KPX Ydieresis A -110KPX Ydieresis Aacute -110KPX Ydieresis Abreve -110KPX Ydieresis Acircumflex -110KPX Ydieresis Adieresis -110KPX Ydieresis Agrave -110KPX Ydieresis Amacron -110KPX Ydieresis Aogonek -110KPX Ydieresis Aring -110KPX Ydieresis Atilde -110KPX Ydieresis O -70KPX Ydieresis Oacute -70KPX Ydieresis Ocircumflex -70KPX Ydieresis Odieresis -70KPX Ydieresis Ograve -70KPX Ydieresis Ohungarumlaut -70KPX Ydieresis Omacron -70KPX Ydieresis Oslash -70KPX Ydieresis Otilde -70KPX Ydieresis a -90KPX Ydieresis aacute -90KPX Ydieresis abreve -90KPX Ydieresis acircumflex -90KPX Ydieresis adieresis -90KPX Ydieresis agrave -90KPX Ydieresis amacron -90KPX Ydieresis aogonek -90KPX Ydieresis aring -90KPX Ydieresis atilde -90KPX Ydieresis colon -50KPX Ydieresis comma -100KPX Ydieresis e -80KPX Ydieresis eacute -80KPX Ydieresis ecaron -80KPX Ydieresis ecircumflex -80KPX Ydieresis edieresis -80KPX Ydieresis edotaccent -80KPX Ydieresis egrave -80KPX Ydieresis emacron -80KPX Ydieresis eogonek -80KPX Ydieresis o -100KPX Ydieresis oacute -100KPX Ydieresis ocircumflex -100KPX Ydieresis odieresis -100KPX Ydieresis ograve -100KPX Ydieresis ohungarumlaut -100KPX Ydieresis omacron -100KPX Ydieresis oslash -100KPX Ydieresis otilde -100KPX Ydieresis period -100KPX Ydieresis semicolon -50KPX Ydieresis u -100KPX Ydieresis uacute -100KPX Ydieresis ucircumflex -100KPX Ydieresis udieresis -100KPX Ydieresis ugrave -100KPX Ydieresis uhungarumlaut -100KPX Ydieresis umacron -100KPX Ydieresis uogonek -100KPX Ydieresis uring -100KPX a g -10KPX a gbreve -10KPX a gcommaaccent -10KPX a v -15KPX a w -15KPX a y -20KPX a yacute -20KPX a ydieresis -20KPX aacute g -10KPX aacute gbreve -10KPX aacute gcommaaccent -10KPX aacute v -15KPX aacute w -15KPX aacute y -20KPX aacute yacute -20KPX aacute ydieresis -20KPX abreve g -10KPX abreve gbreve -10KPX abreve gcommaaccent -10KPX abreve v -15KPX abreve w -15KPX abreve y -20KPX abreve yacute -20KPX abreve ydieresis -20KPX acircumflex g -10KPX acircumflex gbreve -10KPX acircumflex gcommaaccent -10KPX acircumflex v -15KPX acircumflex w -15KPX acircumflex y -20KPX acircumflex yacute -20KPX acircumflex ydieresis -20KPX adieresis g -10KPX adieresis gbreve -10KPX adieresis gcommaaccent -10KPX adieresis v -15KPX adieresis w -15KPX adieresis y -20KPX adieresis yacute -20KPX adieresis ydieresis -20KPX agrave g -10KPX agrave gbreve -10KPX agrave gcommaaccent -10KPX agrave v -15KPX agrave w -15KPX agrave y -20KPX agrave yacute -20KPX agrave ydieresis -20KPX amacron g -10KPX amacron gbreve -10KPX amacron gcommaaccent -10KPX amacron v -15KPX amacron w -15KPX amacron y -20KPX amacron yacute -20KPX amacron ydieresis -20KPX aogonek g -10KPX aogonek gbreve -10KPX aogonek gcommaaccent -10KPX aogonek v -15KPX aogonek w -15KPX aogonek y -20KPX aogonek yacute -20KPX aogonek ydieresis -20KPX aring g -10KPX aring gbreve -10KPX aring gcommaaccent -10KPX aring v -15KPX aring w -15KPX aring y -20KPX aring yacute -20KPX aring ydieresis -20KPX atilde g -10KPX atilde gbreve -10KPX atilde gcommaaccent -10KPX atilde v -15KPX atilde w -15KPX atilde y -20KPX atilde yacute -20KPX atilde ydieresis -20KPX b l -10KPX b lacute -10KPX b lcommaaccent -10KPX b lslash -10KPX b u -20KPX b uacute -20KPX b ucircumflex -20KPX b udieresis -20KPX b ugrave -20KPX b uhungarumlaut -20KPX b umacron -20KPX b uogonek -20KPX b uring -20KPX b v -20KPX b y -20KPX b yacute -20KPX b ydieresis -20KPX c h -10KPX c k -20KPX c kcommaaccent -20KPX c l -20KPX c lacute -20KPX c lcommaaccent -20KPX c lslash -20KPX c y -10KPX c yacute -10KPX c ydieresis -10KPX cacute h -10KPX cacute k -20KPX cacute kcommaaccent -20KPX cacute l -20KPX cacute lacute -20KPX cacute lcommaaccent -20KPX cacute lslash -20KPX cacute y -10KPX cacute yacute -10KPX cacute ydieresis -10KPX ccaron h -10KPX ccaron k -20KPX ccaron kcommaaccent -20KPX ccaron l -20KPX ccaron lacute -20KPX ccaron lcommaaccent -20KPX ccaron lslash -20KPX ccaron y -10KPX ccaron yacute -10KPX ccaron ydieresis -10KPX ccedilla h -10KPX ccedilla k -20KPX ccedilla kcommaaccent -20KPX ccedilla l -20KPX ccedilla lacute -20KPX ccedilla lcommaaccent -20KPX ccedilla lslash -20KPX ccedilla y -10KPX ccedilla yacute -10KPX ccedilla ydieresis -10KPX colon space -40KPX comma quotedblright -120KPX comma quoteright -120KPX comma space -40KPX d d -10KPX d dcroat -10KPX d v -15KPX d w -15KPX d y -15KPX d yacute -15KPX d ydieresis -15KPX dcroat d -10KPX dcroat dcroat -10KPX dcroat v -15KPX dcroat w -15KPX dcroat y -15KPX dcroat yacute -15KPX dcroat ydieresis -15KPX e comma 10KPX e period 20KPX e v -15KPX e w -15KPX e x -15KPX e y -15KPX e yacute -15KPX e ydieresis -15KPX eacute comma 10KPX eacute period 20KPX eacute v -15KPX eacute w -15KPX eacute x -15KPX eacute y -15KPX eacute yacute -15KPX eacute ydieresis -15KPX ecaron comma 10KPX ecaron period 20KPX ecaron v -15KPX ecaron w -15KPX ecaron x -15KPX ecaron y -15KPX ecaron yacute -15KPX ecaron ydieresis -15KPX ecircumflex comma 10KPX ecircumflex period 20KPX ecircumflex v -15KPX ecircumflex w -15KPX ecircumflex x -15KPX ecircumflex y -15KPX ecircumflex yacute -15KPX ecircumflex ydieresis -15KPX edieresis comma 10KPX edieresis period 20KPX edieresis v -15KPX edieresis w -15KPX edieresis x -15KPX edieresis y -15KPX edieresis yacute -15KPX edieresis ydieresis -15KPX edotaccent comma 10KPX edotaccent period 20KPX edotaccent v -15KPX edotaccent w -15KPX edotaccent x -15KPX edotaccent y -15KPX edotaccent yacute -15KPX edotaccent ydieresis -15KPX egrave comma 10KPX egrave period 20KPX egrave v -15KPX egrave w -15KPX egrave x -15KPX egrave y -15KPX egrave yacute -15KPX egrave ydieresis -15KPX emacron comma 10KPX emacron period 20KPX emacron v -15KPX emacron w -15KPX emacron x -15KPX emacron y -15KPX emacron yacute -15KPX emacron ydieresis -15KPX eogonek comma 10KPX eogonek period 20KPX eogonek v -15KPX eogonek w -15KPX eogonek x -15KPX eogonek y -15KPX eogonek yacute -15KPX eogonek ydieresis -15KPX f comma -10KPX f e -10KPX f eacute -10KPX f ecaron -10KPX f ecircumflex -10KPX f edieresis -10KPX f edotaccent -10KPX f egrave -10KPX f emacron -10KPX f eogonek -10KPX f o -20KPX f oacute -20KPX f ocircumflex -20KPX f odieresis -20KPX f ograve -20KPX f ohungarumlaut -20KPX f omacron -20KPX f oslash -20KPX f otilde -20KPX f period -10KPX f quotedblright 30KPX f quoteright 30KPX g e 10KPX g eacute 10KPX g ecaron 10KPX g ecircumflex 10KPX g edieresis 10KPX g edotaccent 10KPX g egrave 10KPX g emacron 10KPX g eogonek 10KPX g g -10KPX g gbreve -10KPX g gcommaaccent -10KPX gbreve e 10KPX gbreve eacute 10KPX gbreve ecaron 10KPX gbreve ecircumflex 10KPX gbreve edieresis 10KPX gbreve edotaccent 10KPX gbreve egrave 10KPX gbreve emacron 10KPX gbreve eogonek 10KPX gbreve g -10KPX gbreve gbreve -10KPX gbreve gcommaaccent -10KPX gcommaaccent e 10KPX gcommaaccent eacute 10KPX gcommaaccent ecaron 10KPX gcommaaccent ecircumflex 10KPX gcommaaccent edieresis 10KPX gcommaaccent edotaccent 10KPX gcommaaccent egrave 10KPX gcommaaccent emacron 10KPX gcommaaccent eogonek 10KPX gcommaaccent g -10KPX gcommaaccent gbreve -10KPX gcommaaccent gcommaaccent -10KPX h y -20KPX h yacute -20KPX h ydieresis -20KPX k o -15KPX k oacute -15KPX k ocircumflex -15KPX k odieresis -15KPX k ograve -15KPX k ohungarumlaut -15KPX k omacron -15KPX k oslash -15KPX k otilde -15KPX kcommaaccent o -15KPX kcommaaccent oacute -15KPX kcommaaccent ocircumflex -15KPX kcommaaccent odieresis -15KPX kcommaaccent ograve -15KPX kcommaaccent ohungarumlaut -15KPX kcommaaccent omacron -15KPX kcommaaccent oslash -15KPX kcommaaccent otilde -15KPX l w -15KPX l y -15KPX l yacute -15KPX l ydieresis -15KPX lacute w -15KPX lacute y -15KPX lacute yacute -15KPX lacute ydieresis -15KPX lcommaaccent w -15KPX lcommaaccent y -15KPX lcommaaccent yacute -15KPX lcommaaccent ydieresis -15KPX lslash w -15KPX lslash y -15KPX lslash yacute -15KPX lslash ydieresis -15KPX m u -20KPX m uacute -20KPX m ucircumflex -20KPX m udieresis -20KPX m ugrave -20KPX m uhungarumlaut -20KPX m umacron -20KPX m uogonek -20KPX m uring -20KPX m y -30KPX m yacute -30KPX m ydieresis -30KPX n u -10KPX n uacute -10KPX n ucircumflex -10KPX n udieresis -10KPX n ugrave -10KPX n uhungarumlaut -10KPX n umacron -10KPX n uogonek -10KPX n uring -10KPX n v -40KPX n y -20KPX n yacute -20KPX n ydieresis -20KPX nacute u -10KPX nacute uacute -10KPX nacute ucircumflex -10KPX nacute udieresis -10KPX nacute ugrave -10KPX nacute uhungarumlaut -10KPX nacute umacron -10KPX nacute uogonek -10KPX nacute uring -10KPX nacute v -40KPX nacute y -20KPX nacute yacute -20KPX nacute ydieresis -20KPX ncaron u -10KPX ncaron uacute -10KPX ncaron ucircumflex -10KPX ncaron udieresis -10KPX ncaron ugrave -10KPX ncaron uhungarumlaut -10KPX ncaron umacron -10KPX ncaron uogonek -10KPX ncaron uring -10KPX ncaron v -40KPX ncaron y -20KPX ncaron yacute -20KPX ncaron ydieresis -20KPX ncommaaccent u -10KPX ncommaaccent uacute -10KPX ncommaaccent ucircumflex -10KPX ncommaaccent udieresis -10KPX ncommaaccent ugrave -10KPX ncommaaccent uhungarumlaut -10KPX ncommaaccent umacron -10KPX ncommaaccent uogonek -10KPX ncommaaccent uring -10KPX ncommaaccent v -40KPX ncommaaccent y -20KPX ncommaaccent yacute -20KPX ncommaaccent ydieresis -20KPX ntilde u -10KPX ntilde uacute -10KPX ntilde ucircumflex -10KPX ntilde udieresis -10KPX ntilde ugrave -10KPX ntilde uhungarumlaut -10KPX ntilde umacron -10KPX ntilde uogonek -10KPX ntilde uring -10KPX ntilde v -40KPX ntilde y -20KPX ntilde yacute -20KPX ntilde ydieresis -20KPX o v -20KPX o w -15KPX o x -30KPX o y -20KPX o yacute -20KPX o ydieresis -20KPX oacute v -20KPX oacute w -15KPX oacute x -30KPX oacute y -20KPX oacute yacute -20KPX oacute ydieresis -20KPX ocircumflex v -20KPX ocircumflex w -15KPX ocircumflex x -30KPX ocircumflex y -20KPX ocircumflex yacute -20KPX ocircumflex ydieresis -20KPX odieresis v -20KPX odieresis w -15KPX odieresis x -30KPX odieresis y -20KPX odieresis yacute -20KPX odieresis ydieresis -20KPX ograve v -20KPX ograve w -15KPX ograve x -30KPX ograve y -20KPX ograve yacute -20KPX ograve ydieresis -20KPX ohungarumlaut v -20KPX ohungarumlaut w -15KPX ohungarumlaut x -30KPX ohungarumlaut y -20KPX ohungarumlaut yacute -20KPX ohungarumlaut ydieresis -20KPX omacron v -20KPX omacron w -15KPX omacron x -30KPX omacron y -20KPX omacron yacute -20KPX omacron ydieresis -20KPX oslash v -20KPX oslash w -15KPX oslash x -30KPX oslash y -20KPX oslash yacute -20KPX oslash ydieresis -20KPX otilde v -20KPX otilde w -15KPX otilde x -30KPX otilde y -20KPX otilde yacute -20KPX otilde ydieresis -20KPX p y -15KPX p yacute -15KPX p ydieresis -15KPX period quotedblright -120KPX period quoteright -120KPX period space -40KPX quotedblright space -80KPX quoteleft quoteleft -46KPX quoteright d -80KPX quoteright dcroat -80KPX quoteright l -20KPX quoteright lacute -20KPX quoteright lcommaaccent -20KPX quoteright lslash -20KPX quoteright quoteright -46KPX quoteright r -40KPX quoteright racute -40KPX quoteright rcaron -40KPX quoteright rcommaaccent -40KPX quoteright s -60KPX quoteright sacute -60KPX quoteright scaron -60KPX quoteright scedilla -60KPX quoteright scommaaccent -60KPX quoteright space -80KPX quoteright v -20KPX r c -20KPX r cacute -20KPX r ccaron -20KPX r ccedilla -20KPX r comma -60KPX r d -20KPX r dcroat -20KPX r g -15KPX r gbreve -15KPX r gcommaaccent -15KPX r hyphen -20KPX r o -20KPX r oacute -20KPX r ocircumflex -20KPX r odieresis -20KPX r ograve -20KPX r ohungarumlaut -20KPX r omacron -20KPX r oslash -20KPX r otilde -20KPX r period -60KPX r q -20KPX r s -15KPX r sacute -15KPX r scaron -15KPX r scedilla -15KPX r scommaaccent -15KPX r t 20KPX r tcommaaccent 20KPX r v 10KPX r y 10KPX r yacute 10KPX r ydieresis 10KPX racute c -20KPX racute cacute -20KPX racute ccaron -20KPX racute ccedilla -20KPX racute comma -60KPX racute d -20KPX racute dcroat -20KPX racute g -15KPX racute gbreve -15KPX racute gcommaaccent -15KPX racute hyphen -20KPX racute o -20KPX racute oacute -20KPX racute ocircumflex -20KPX racute odieresis -20KPX racute ograve -20KPX racute ohungarumlaut -20KPX racute omacron -20KPX racute oslash -20KPX racute otilde -20KPX racute period -60KPX racute q -20KPX racute s -15KPX racute sacute -15KPX racute scaron -15KPX racute scedilla -15KPX racute scommaaccent -15KPX racute t 20KPX racute tcommaaccent 20KPX racute v 10KPX racute y 10KPX racute yacute 10KPX racute ydieresis 10KPX rcaron c -20KPX rcaron cacute -20KPX rcaron ccaron -20KPX rcaron ccedilla -20KPX rcaron comma -60KPX rcaron d -20KPX rcaron dcroat -20KPX rcaron g -15KPX rcaron gbreve -15KPX rcaron gcommaaccent -15KPX rcaron hyphen -20KPX rcaron o -20KPX rcaron oacute -20KPX rcaron ocircumflex -20KPX rcaron odieresis -20KPX rcaron ograve -20KPX rcaron ohungarumlaut -20KPX rcaron omacron -20KPX rcaron oslash -20KPX rcaron otilde -20KPX rcaron period -60KPX rcaron q -20KPX rcaron s -15KPX rcaron sacute -15KPX rcaron scaron -15KPX rcaron scedilla -15KPX rcaron scommaaccent -15KPX rcaron t 20KPX rcaron tcommaaccent 20KPX rcaron v 10KPX rcaron y 10KPX rcaron yacute 10KPX rcaron ydieresis 10KPX rcommaaccent c -20KPX rcommaaccent cacute -20KPX rcommaaccent ccaron -20KPX rcommaaccent ccedilla -20KPX rcommaaccent comma -60KPX rcommaaccent d -20KPX rcommaaccent dcroat -20KPX rcommaaccent g -15KPX rcommaaccent gbreve -15KPX rcommaaccent gcommaaccent -15KPX rcommaaccent hyphen -20KPX rcommaaccent o -20KPX rcommaaccent oacute -20KPX rcommaaccent ocircumflex -20KPX rcommaaccent odieresis -20KPX rcommaaccent ograve -20KPX rcommaaccent ohungarumlaut -20KPX rcommaaccent omacron -20KPX rcommaaccent oslash -20KPX rcommaaccent otilde -20KPX rcommaaccent period -60KPX rcommaaccent q -20KPX rcommaaccent s -15KPX rcommaaccent sacute -15KPX rcommaaccent scaron -15KPX rcommaaccent scedilla -15KPX rcommaaccent scommaaccent -15KPX rcommaaccent t 20KPX rcommaaccent tcommaaccent 20KPX rcommaaccent v 10KPX rcommaaccent y 10KPX rcommaaccent yacute 10KPX rcommaaccent ydieresis 10KPX s w -15KPX sacute w -15KPX scaron w -15KPX scedilla w -15KPX scommaaccent w -15KPX semicolon space -40KPX space T -100KPX space Tcaron -100KPX space Tcommaaccent -100KPX space V -80KPX space W -80KPX space Y -120KPX space Yacute -120KPX space Ydieresis -120KPX space quotedblleft -80KPX space quoteleft -60KPX v a -20KPX v aacute -20KPX v abreve -20KPX v acircumflex -20KPX v adieresis -20KPX v agrave -20KPX v amacron -20KPX v aogonek -20KPX v aring -20KPX v atilde -20KPX v comma -80KPX v o -30KPX v oacute -30KPX v ocircumflex -30KPX v odieresis -30KPX v ograve -30KPX v ohungarumlaut -30KPX v omacron -30KPX v oslash -30KPX v otilde -30KPX v period -80KPX w comma -40KPX w o -20KPX w oacute -20KPX w ocircumflex -20KPX w odieresis -20KPX w ograve -20KPX w ohungarumlaut -20KPX w omacron -20KPX w oslash -20KPX w otilde -20KPX w period -40KPX x e -10KPX x eacute -10KPX x ecaron -10KPX x ecircumflex -10KPX x edieresis -10KPX x edotaccent -10KPX x egrave -10KPX x emacron -10KPX x eogonek -10KPX y a -30KPX y aacute -30KPX y abreve -30KPX y acircumflex -30KPX y adieresis -30KPX y agrave -30KPX y amacron -30KPX y aogonek -30KPX y aring -30KPX y atilde -30KPX y comma -80KPX y e -10KPX y eacute -10KPX y ecaron -10KPX y ecircumflex -10KPX y edieresis -10KPX y edotaccent -10KPX y egrave -10KPX y emacron -10KPX y eogonek -10KPX y o -25KPX y oacute -25KPX y ocircumflex -25KPX y odieresis -25KPX y ograve -25KPX y ohungarumlaut -25KPX y omacron -25KPX y oslash -25KPX y otilde -25KPX y period -80KPX yacute a -30KPX yacute aacute -30KPX yacute abreve -30KPX yacute acircumflex -30KPX yacute adieresis -30KPX yacute agrave -30KPX yacute amacron -30KPX yacute aogonek -30KPX yacute aring -30KPX yacute atilde -30KPX yacute comma -80KPX yacute e -10KPX yacute eacute -10KPX yacute ecaron -10KPX yacute ecircumflex -10KPX yacute edieresis -10KPX yacute edotaccent -10KPX yacute egrave -10KPX yacute emacron -10KPX yacute eogonek -10KPX yacute o -25KPX yacute oacute -25KPX yacute ocircumflex -25KPX yacute odieresis -25KPX yacute ograve -25KPX yacute ohungarumlaut -25KPX yacute omacron -25KPX yacute oslash -25KPX yacute otilde -25KPX yacute period -80KPX ydieresis a -30KPX ydieresis aacute -30KPX ydieresis abreve -30KPX ydieresis acircumflex -30KPX ydieresis adieresis -30KPX ydieresis agrave -30KPX ydieresis amacron -30KPX ydieresis aogonek -30KPX ydieresis aring -30KPX ydieresis atilde -30KPX ydieresis comma -80KPX ydieresis e -10KPX ydieresis eacute -10KPX ydieresis ecaron -10KPX ydieresis ecircumflex -10KPX ydieresis edieresis -10KPX ydieresis edotaccent -10KPX ydieresis egrave -10KPX ydieresis emacron -10KPX ydieresis eogonek -10KPX ydieresis o -25KPX ydieresis oacute -25KPX ydieresis ocircumflex -25KPX ydieresis odieresis -25KPX ydieresis ograve -25KPX ydieresis ohungarumlaut -25KPX ydieresis omacron -25KPX ydieresis oslash -25KPX ydieresis otilde -25KPX ydieresis period -80KPX z e 10KPX z eacute 10KPX z ecaron 10KPX z ecircumflex 10KPX z edieresis 10KPX z edotaccent 10KPX z egrave 10KPX z emacron 10KPX z eogonek 10KPX zacute e 10KPX zacute eacute 10KPX zacute ecaron 10KPX zacute ecircumflex 10KPX zacute edieresis 10KPX zacute edotaccent 10KPX zacute egrave 10KPX zacute emacron 10KPX zacute eogonek 10KPX zcaron e 10KPX zcaron eacute 10KPX zcaron ecaron 10KPX zcaron ecircumflex 10KPX zcaron edieresis 10KPX zcaron edotaccent 10KPX zcaron egrave 10KPX zcaron emacron 10KPX zcaron eogonek 10KPX zdotaccent e 10KPX zdotaccent eacute 10KPX zdotaccent ecaron 10KPX zdotaccent ecircumflex 10KPX zdotaccent edieresis 10KPX zdotaccent edotaccent 10KPX zdotaccent egrave 10KPX zdotaccent emacron 10KPX zdotaccent eogonek 10EndKernPairsEndKernDataEndFontMetrics
 |