IndivisaTextSans-Black.svg 642 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
  3. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  4. <metadata></metadata>
  5. <defs>
  6. <font id="indivisa_text_sansblack" horiz-adv-x="620" >
  7. <font-face units-per-em="1000" ascent="750" descent="-250" />
  8. <missing-glyph horiz-adv-x="250" />
  9. <glyph unicode="&#x2f;symbol&#x33;&#x2f;" horiz-adv-x="957" d="M505 638l68 -270h270l-203 -135l136 -270l-271 135l-270 -270l135 405l-270 203l338 -68zM814 87q18 0 30.5 -12.5t12.5 -31.5q0 -18 -12.5 -30.5t-30.5 -12.5t-30.5 12.5t-12.5 30.5q0 19 12.5 31.5t30.5 12.5zM854 43q0 17 -11.5 29t-28.5 12t-28.5 -12t-11.5 -29 t12 -28.5t28 -11.5t28 11.5t12 28.5zM796 68h18q8 0 11 -2q6 -3 6 -10q0 -5 -4 -9q-3 -3 -6 -3q7 -3 8 -10q2 -14 3 -16h-7q-1 2 -2 7.5t-1 6.5q0 9 -10 9h-9v-23h-7v50zM803 47h10q5 0 7 1q3 3 3 6q0 9 -10 9h-10v-16z" />
  10. <glyph unicode="&#x2f;symbol&#x32;&#x2f;" horiz-adv-x="932" d="M494 570l52 -90l-137 -240h-103l137 240l-52 90h103zM357 570l52 -90l-138 -240h-103l138 240l-52 90h103zM752 120h-103l-137 240l51 90l137 -240h103zM683 0h-103l-137 240l51 90l138 -240h103zM100 120l51 90h275l51 -90h-274l-52 -90zM168 0l52 90h274l52 -90h-275 l-51 -90zM789 88q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-30.5 13t-12.5 31t12.5 31t30.5 13zM829 44q0 16 -11.5 28t-28.5 12t-28.5 -12t-11.5 -28t11.5 -28t28.5 -12t28.5 12t11.5 28zM771 69h18q7 0 11 -2q5 -4 5 -11q0 -5 -3 -8q-1 -2 -6 -4q7 -1 8 -9q0 -8 3 -16 h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 10 -11 10h-8v-23h-7v50zM778 47h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  11. <glyph unicode="&#x2f;symbol&#x35;&#x2f;" horiz-adv-x="705" d="M232 -6l-132 136l124 234l129 -136zM474 -6l-121 234l128 136l124 -234z" />
  12. <glyph unicode="&#x2f;symbol&#x31;&#x2f;" horiz-adv-x="5534" d="M1865 412q-25 0 -40.5 14.5t-15.5 37.5q0 35 32.5 64t70.5 29q24 0 39 -13.5t15 -37.5q0 -36 -31 -65t-70 -29zM1284 412q-26 0 -41.5 14.5t-15.5 37.5q0 35 33 64t71 29q24 0 38.5 -13.5t14.5 -37.5q0 -36 -31 -65t-69 -29zM959 0q0 42 11 108q-16 -50 -51.5 -82.5 t-78.5 -32.5q-41 0 -63 29.5t-22 82.5q0 62 27 121t84 101t132 42q17 0 25 -1l16 73l6 102l136 7q0 -67 -46 -273t-46 -277h-130zM100 0l78 364q17 86 21 136l128 7l11 -15l-104 -492h-134zM3503 492l-57 -492h-131l20 175q5 50 33 215h-3q-31 -102 -81 -215l-76 -175h-149 l-2 175q-2 121 9 215h-2q-32 -130 -59 -215l-53 -175h-109l154 500l184 6l1 -137q2 -134 -15 -259h2q39 126 94 259l56 131l169 7zM5316 300q-37 -177 -37 -183q0 -34 36 -34q25 0 59 18l-9 -79q-52 -29 -114 -29q-105 0 -105 100q0 20 40 210l-47 1l9 44l54 14l53 95l81 6 l13 -15l-20 -86h99l6 -14l-17 -51zM336 0q0 79 41 260l6 102l137 7q0 -31 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 78 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM1170 0q0 72 27 193l14 67l6 102 l137 7q0 -46 -27 -177t-27 -192h-130zM1399 362l140 7q13 -129 -5 -289h2q76 151 91 284q22 5 50 5q32 0 48.5 -8.5t16.5 -33.5q0 -46 -51 -147.5t-116 -179.5h-149q-5 228 -27 362zM1752 0q0 69 26 193l15 67l6 102l137 7q0 -46 -27 -177t-27 -192h-130zM4716 0 q0 79 41 260l6 102l137 7q0 -12 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-19 -90 -19 -151h-130q0 55 19 150q15 78 15 87q0 24 -17 24q-35 0 -65 -82t-32 -179h-130zM2245 256q-52 30 -97 30q-18 0 -30 -7t-12 -19q0 -14 20 -26.5t44 -22t44 -33 t20 -56.5q0 -57 -53 -93t-128 -36q-78 0 -118 28l27 93q57 -38 111 -38q19 0 29.5 7.5t10.5 18.5q0 13 -20 26t-44 23t-44 33t-20 55q0 56 54.5 93t128.5 37q58 0 104 -18zM2525 369q88 0 146 -32l-29 -128q-31 -145 -31 -209h-130q0 37 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -62.5 29.5t-21.5 83.5q0 62 26.5 120.5t85 100.5t136.5 42zM4653 51q-67 -58 -159 -58q-65 0 -103.5 35t-38.5 102q0 94 68.5 166.5t167.5 72.5q54 0 86.5 -23.5t32.5 -64.5q0 -57 -60 -96.5t-161 -43.5v-1q0 -64 63 -64q42 0 90 28zM3936 0q0 74 42 260l5 102l137 7 q0 -31 -7 -89h2q53 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 71 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM3768 369q87 0 145 -32l-28 -128q-31 -145 -31 -209h-130q0 45 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -63 29.5t-22 83.5q0 46 16 91.5t46 84t79 63t108 24.5zM4490 177q47 10 73 34t26 59q0 31 -22 31q-28 0 -48.5 -38.5t-28.5 -85.5zM3677 101q23 0 47 43t38 101q1 8 4.5 24.5t4.5 19.5q-16 8 -27 8q-34 0 -62.5 -54.5t-28.5 -101.5q0 -40 24 -40zM913 101 q22 0 44.5 39.5t37.5 94.5q1 9 8 40l3 14q-14 8 -27 8q-33 0 -61.5 -54.5t-28.5 -101.5q0 -40 24 -40zM2435 101q23 0 47 43.5t37 100.5q3 14 9 44q-14 8 -27 8q-34 0 -62 -54.5t-28 -101.5q0 -40 24 -40z" />
  13. <glyph unicode="&#x2f;symbol&#x34;&#x2f;" horiz-adv-x="2607" d="M1684 406q0 65 -11 128l126 14l15 -15v-533h-130v406zM1889 406q0 62 -10 128l126 14l14 -15v-533h-130v406zM427 101v-101h-320v362q0 80 -7 135l126 7l14 -14v-396zM925 21l7 109q62 -36 144 -36q50 0 50 36q0 20 -31.5 41.5t-69 40.5t-69 57t-31.5 88q0 69 55 108 t138 39q80 0 127 -18l-14 -111q-56 29 -111 29q-27 0 -42.5 -11t-15.5 -29q0 -20 20.5 -38t50 -34t59.5 -35t50.5 -51t20.5 -72q0 -66 -53.5 -103.5t-139.5 -37.5q-41 0 -83.5 8t-61.5 20zM795 0l-106 -7q-11 16 -21 49h-4q-34 -49 -104 -49q-43 0 -70 23t-27 66 q0 113 191 118v20q0 54 -58 54q-55 0 -108 -29l-8 97q72 26 150 26q154 0 154 -135q0 -25 -2 -69t-2 -70q0 -51 15 -94zM1626 0l-107 -7q-12 20 -21 49h-3q-34 -49 -105 -49q-43 0 -69.5 23t-26.5 66q0 113 191 118v20q0 54 -58 54q-54 0 -109 -29l-7 97q72 26 150 26 q153 0 153 -135q0 -25 -1.5 -69.5t-1.5 -69.5q0 -51 15 -94zM2405 213q0 -24 -1 -36l-11 -11h-191q14 -83 98 -83q44 0 84 21l7 -81q-46 -30 -127 -30q-90 0 -144 47.5t-54 134.5q0 85 52 139t132 54q72 0 113.5 -43t41.5 -112zM2199 207l78 4q2 14 2 26q0 59 -34 59 q-44 0 -46 -89zM654 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM1485 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM2464 85q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-31 13t-13 31t13 31t31 13zM2504 41q0 17 -12 28.5t-28 11.5 t-28 -11.5t-12 -28.5t12 -28.5t28 -11.5t28 11.5t12 28.5zM2446 66h18q7 0 11 -3q5 -3 5 -10q0 -5 -3 -9q-3 -3 -6 -3q7 -1 8 -10q0 -7 3 -15h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 9 -11 9h-8v-22h-7v50zM2453 44h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  14. <glyph unicode=" " horiz-adv-x="250" />
  15. <glyph unicode="&#x09;" horiz-adv-x="250" />
  16. <glyph unicode="&#xa0;" horiz-adv-x="250" />
  17. <glyph unicode="!" horiz-adv-x="350" d="M232 232h-109q-24 280 -43 458l170 10l20 -20q-4 -208 -38 -448zM269 90q0 -41 -29.5 -70.5t-72.5 -29.5q-38 0 -62.5 23.5t-24.5 57.5q0 40 32 69.5t75 29.5q36 0 59 -22t23 -58z" />
  18. <glyph unicode="&#x22;" horiz-adv-x="427" d="M192 760l10 -30l-46 -287h-59l-42 317h137zM382 760l10 -30l-46 -287h-59l-42 317h137z" />
  19. <glyph unicode="#" horiz-adv-x="716" d="M52 215h130l28 110h-119l-8 8l12 82h137l34 135l82 -15l8 -8l-28 -112h135l34 135l82 -15l8 -8l-28 -112h109l8 -8l-12 -82h-127l-28 -110h121l8 -8l-12 -82h-139l-34 -135l-82 15l-8 8l28 112h-135l-34 -135l-82 15l-8 8l28 112h-112l-8 8zM278 215h135l28 110h-135z " />
  20. <glyph unicode="$" horiz-adv-x="516" d="M221 -140l-8 8v122q-128 4 -173 39l9 151q32 -21 86 -35.5t93 -14.5q58 0 58 54q0 14 -6 27t-12 21.5t-22 20t-24 16.5t-31 17.5t-30 16.5q-56 32 -88.5 74t-32.5 113q0 84 52.5 136.5t140.5 68.5v132l62 3l8 -8v-122q91 0 148 -25l-19 -155q-66 40 -134 40t-68 -58 q0 -13 5.5 -25t11.5 -20t20.5 -18.5t23.5 -15.5t29.5 -16.5t29.5 -16.5q58 -32 92 -75.5t34 -117.5q0 -87 -52 -139t-141 -64v-131z" />
  21. <glyph unicode="%" horiz-adv-x="956" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  22. <glyph unicode="&#x26;" horiz-adv-x="802" d="M372 570q-48 0 -48 -41q0 -43 71 -129l123 -149q7 42 7 79q0 49 -8 94l175 19l20 -20q-17 -160 -107 -274q37 -36 82 -36q29 0 55 10l10 -107q-46 -26 -116 -26q-78 0 -150 55q-95 -55 -206 -55q-104 0 -162 48t-58 128q0 71 43.5 120t108.5 66l-11 13q-65 80 -65 153 q0 76 62 129t172 53q131 0 204 -71l-82 -139q-68 80 -120 80zM238 211q0 -50 33.5 -85.5t86.5 -35.5q33 0 63 15q-44 51 -61 71l-99 117q-23 -35 -23 -82z" />
  23. <glyph unicode="'" horiz-adv-x="237" d="M182 760l10 -30l-46 -287h-59l-42 317h137z" />
  24. <glyph unicode="(" horiz-adv-x="459" d="M375 -198q-142 78 -218.5 200t-76.5 279t76.5 279t218.5 200l64 -90q-173 -153 -173 -389t173 -389z" />
  25. <glyph unicode=")" horiz-adv-x="459" d="M379 281q0 -157 -76.5 -279t-218.5 -200l-64 90q173 153 173 389t-173 389l64 90q142 -78 218.5 -200t76.5 -279z" />
  26. <glyph unicode="*" horiz-adv-x="505" d="M202 337l-7 24l35 149l-132 -117l-55 94l18 18l150 44l-171 56l54 94l24 -6l113 -106l-36 174h108l7 -24l-36 -152l133 120l55 -94l-18 -18l-147 -45l168 -55l-54 -94l-24 6l-114 108l37 -176h-108z" />
  27. <glyph unicode="+" d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
  28. <glyph unicode="," horiz-adv-x="298" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  29. <glyph unicode="-" horiz-adv-x="415" d="M30 251v50h355v-50h-355z" />
  30. <glyph unicode="." horiz-adv-x="300" d="M254 93q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -27.5t28 -72.5z" />
  31. <glyph unicode="/" horiz-adv-x="366" d="M330 745l8 -8l-187 -747l-82 15l-8 8l187 747z" />
  32. <glyph unicode="0" horiz-adv-x="665" d="M620 348q0 -170 -85 -264t-210 -94q-123 0 -201.5 91.5t-78.5 253.5q0 167 84 266t212 99q125 0 202 -96t77 -256zM230 350q0 -124 23.5 -187t81.5 -63t79 61t21 180q0 125 -23 187t-81 62q-55 0 -78 -57.5t-23 -182.5z" />
  33. <glyph unicode="1" horiz-adv-x="395" d="M138 519h-3l-95 -10l-25 110l280 80l20 -20v-679h-180v384q0 97 3 135z" />
  34. <glyph unicode="2" horiz-adv-x="630" d="M106 0l-20 125q52 33 110.5 84.5t110.5 125.5t52 134q0 44 -24.5 72.5t-69.5 28.5q-71 0 -161 -67l-17 142q104 55 222 55q104 0 169.5 -52.5t65.5 -136.5q0 -98 -86 -200.5t-202 -170.5h118q87 0 160 10l-10 -150h-418z" />
  35. <glyph unicode="3" horiz-adv-x="536" d="M41 647q39 22 99.5 37.5t115.5 15.5q91 0 150.5 -43.5t59.5 -110.5q0 -54 -38.5 -102.5t-101.5 -68.5q80 -14 127.5 -61t47.5 -116q0 -92 -81.5 -150t-211.5 -58q-95 0 -173 23l16 120q67 -23 149 -23q51 0 83.5 21t32.5 61q0 79 -142 79q-43 0 -86 -7v120q81 8 137 38.5 t56 82.5q0 29 -20 47t-59 18q-74 0 -154 -45z" />
  36. <glyph unicode="4" horiz-adv-x="645" d="M25 264l270 424l198 11l20 -20v-398q68 4 102 9l-10 -139h-92v-151h-170v151h-298zM170 281v-3q54 2 173 2v95q0 133 7 193h-3z" />
  37. <glyph unicode="5" horiz-adv-x="571" d="M65 13l16 125q67 -23 145 -23q52 0 84.5 25t32.5 74q0 91 -104 91q-61 0 -131 -28l-25 15v398h259q87 0 160 10l-10 -150h-264v-129q43 9 83 9q96 0 156.5 -53t60.5 -150q0 -113 -83.5 -175t-214.5 -62q-87 0 -165 23z" />
  38. <glyph unicode="6" horiz-adv-x="603" d="M316 -10q-116 0 -191 77t-75 226q0 176 103.5 291.5t277.5 115.5q60 0 85 -10l-15 -131q-35 11 -71 11q-67 0 -122.5 -46t-69.5 -133h3q51 24 119 24q93 0 148 -52t55 -145q0 -107 -71 -167.5t-176 -60.5zM304 305q-43 0 -69 -24q0 -102 14.5 -141.5t55.5 -39.5 q73 0 73 101q0 104 -74 104z" />
  39. <glyph unicode="7" horiz-adv-x="545" d="M25 530l13 160h455l22 -20v-100q-122 -125 -181 -264.5t-64 -305.5h-185q9 156 83.5 303.5t183.5 243.5v3h-116q-124 0 -211 -20z" />
  40. <glyph unicode="8" horiz-adv-x="624" d="M303 -10q-119 0 -188.5 50.5t-69.5 132.5q0 68 46 116.5t108 65.5v3q-56 33 -90 71t-34 93q0 76 67.5 127t176.5 51q112 0 171 -51.5t59 -117.5q0 -48 -33.5 -91t-87.5 -70v-3q151 -66 151 -177q0 -82 -72.5 -141t-203.5 -59zM313 600q-31 0 -52 -18.5t-21 -49.5 q0 -63 88 -105q56 46 56 104q0 31 -20 50t-51 19zM297 284q-37 -16 -59.5 -45t-22.5 -64q0 -37 25.5 -61t69.5 -24q42 0 70.5 21.5t28.5 59.5q0 70 -112 113z" />
  41. <glyph unicode="9" horiz-adv-x="603" d="M250 258q-95 0 -152.5 54.5t-57.5 151.5q0 110 71.5 173t179.5 63q114 0 188 -75.5t74 -222.5q0 -110 -41 -202t-127 -151t-204 -59q-46 0 -78 8l-2 128q36 -6 68 -6q87 0 134.5 41t63.5 124h-3q-44 -27 -114 -27zM291 580q-32 0 -49 -29t-17 -76q0 -52 20.5 -80 t59.5 -28q31 0 63 15q0 198 -77 198z" />
  42. <glyph unicode=":" horiz-adv-x="300" d="M254 410q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -28t28 -72zM254 93q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -27.5t28 -72.5z" />
  43. <glyph unicode=";" horiz-adv-x="298" d="M253 410q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q43 0 70.5 -28t27.5 -72zM35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  44. <glyph unicode="&#x3c;" d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
  45. <glyph unicode="=" d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
  46. <glyph unicode="&#x3e;" d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
  47. <glyph unicode="?" horiz-adv-x="526" d="M267 226l-101 -5q-18 33 -18 66q0 29 15 54.5t37 44t44 36.5t37 39.5t15 45.5q0 29 -21.5 47t-56.5 18q-33 0 -71 -18t-64 -49l-63 96q90 99 236 99q104 0 164.5 -47.5t60.5 -122.5q0 -42 -21 -78.5t-51.5 -60.5t-61 -43.5t-51.5 -38t-21 -33.5v-42zM318 90 q0 -41 -29.5 -70.5t-72.5 -29.5q-38 0 -62.5 23.5t-24.5 57.5q0 40 32 69.5t75 29.5q36 0 59 -22t23 -58z" />
  48. <glyph unicode="@" horiz-adv-x="1138" d="M803 -160q-124 -100 -304 -100q-193 0 -316 122t-123 316q0 157 84 292.5t220.5 212.5t289.5 77q187 0 305.5 -116t118.5 -288q0 -153 -92.5 -259.5t-230.5 -106.5q-44 0 -75.5 12.5t-47 32t-22.5 45t-5.5 49t7.5 47.5h-6q-19 -68 -72.5 -127t-117.5 -59q-54 0 -85.5 45 t-31.5 122q0 50 13.5 100t41.5 95.5t68 80.5t96 56t122 21q121 0 203 -44l-39 -178q-8 -36 -12 -57t-8 -50.5t-2.5 -46t6.5 -33.5t18 -24.5t32 -7.5q65 0 125 82t60 202q0 156 -105 256.5t-266 100.5q-95 0 -190.5 -39t-172.5 -106t-125.5 -167t-48.5 -213 q0 -172 109 -283.5t287 -111.5q81 0 143 21.5t130 60.5zM517 140q33 0 67 62.5t51 142.5l11 54q-20 11 -37 11q-46 0 -85.5 -75t-39.5 -140q0 -55 33 -55z" />
  49. <glyph unicode="A" horiz-adv-x="650" d="M180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  50. <glyph unicode="B" horiz-adv-x="643" d="M346 0h-281v511q0 116 -10 179h297q107 0 171 -52t64 -133q0 -100 -105 -145q131 -43 131 -170q0 -86 -75.5 -138t-191.5 -52zM250 560v-154h70q40 0 61 21t21 55q0 37 -21 57.5t-61 20.5h-70zM250 286v-156h79q44 0 69 21t25 55q0 36 -24 58t-70 22h-79z" />
  51. <glyph unicode="C" horiz-adv-x="574" d="M538 178l21 -148q-80 -40 -193 -40q-158 0 -247 92t-89 255q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38z" />
  52. <glyph unicode="D" horiz-adv-x="692" d="M662 351q0 -165 -102.5 -258t-258.5 -93h-236v511q0 116 -10 179h266q160 0 250.5 -90.5t90.5 -248.5zM311 560h-61v-430h67q155 0 155 212q0 96 -38.5 157t-122.5 61z" />
  53. <glyph unicode="E" horiz-adv-x="555" d="M530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  54. <glyph unicode="F" horiz-adv-x="515" d="M250 0h-185v511q0 116 -10 179h429l20 -20l-4 -120l-250 10v-181l200 5l-5 -127l-195 7v-264z" />
  55. <glyph unicode="G" horiz-adv-x="637" d="M582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192z" />
  56. <glyph unicode="H" horiz-adv-x="715" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-273h215v96q0 110 -10 187l175 10l20 -20v-680h-185v277h-215v-277z" />
  57. <glyph unicode="I" horiz-adv-x="315" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  58. <glyph unicode="J" horiz-adv-x="315" d="M50 -225l-57 75q72 108 72 290v363q0 91 -15 178l181 19l19 -19v-541q0 -140 -41 -218.5t-159 -146.5z" />
  59. <glyph unicode="K" horiz-adv-x="663" d="M65 503q0 103 -10 187l175 10l20 -20v-297h60q79 177 136 317l175 -10l10 -19l-173 -308l197 -363l-214 -5q-64 113 -131 258h-60v-253h-185v503z" />
  60. <glyph unicode="L" horiz-adv-x="520" d="M510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550z" />
  61. <glyph unicode="M" horiz-adv-x="902" d="M777 700l25 -20l65 -680h-181l-23 242q-7 71 -18 282h-3q-13 -123 -49 -282l-54 -242h-206l-54 242q-36 160 -49 283h-3q-8 -176 -19 -283l-23 -242h-150l66 690l252 8l42 -188q39 -174 55 -341h3q17 176 54 341l39 180z" />
  62. <glyph unicode="N" horiz-adv-x="710" d="M384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511q0 102 -10 179l185 7q111 -200 144 -256z" />
  63. <glyph unicode="O" horiz-adv-x="715" d="M685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  64. <glyph unicode="P" horiz-adv-x="607" d="M250 0h-185v511q0 116 -10 179h274q121 0 192 -64.5t71 -172.5q0 -116 -79.5 -181t-202.5 -65h-60v-207zM288 560h-38v-223h38q62 0 88 28t26 81q0 114 -114 114z" />
  65. <glyph unicode="Q" horiz-adv-x="695" d="M685 347q0 -144 -71.5 -235t-187.5 -114q102 -46 327 -46l-20 -156q-124 0 -240.5 58.5t-192.5 138.5q-123 16 -196.5 106t-73.5 235q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220 q-70 0 -105 -58.5t-35 -156.5z" />
  66. <glyph unicode="R" horiz-adv-x="627" d="M250 0h-185v511q0 116 -10 179h246q141 0 216 -59t75 -164q0 -69 -31 -117.5t-82 -74.5l148 -275l-215 -5q-52 114 -95 232h-67v-227zM288 560h-38v-208h38q62 0 88 27t26 77q0 51 -26.5 77.5t-87.5 26.5z" />
  67. <glyph unicode="S" horiz-adv-x="550" d="M510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40 q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117z" />
  68. <glyph unicode="T" horiz-adv-x="585" d="M385 0h-185v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554z" />
  69. <glyph unicode="U" horiz-adv-x="680" d="M55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  70. <glyph unicode="V" horiz-adv-x="641" d="M218 0l-215 681l198 19l101 -368q28 -100 36 -146q13 67 36 144l106 370l148 -10l10 -19l-215 -671h-205z" />
  71. <glyph unicode="W" horiz-adv-x="960" d="M174 0l-171 681l198 19l70 -348q5 -26 10.5 -58.5l11 -65t7.5 -45.5q5 24 36 167l74 340l178 10l73 -348q11 -50 35 -169q20 118 31 171l72 346l148 -10l10 -19l-171 -671h-205l-53 223q-9 39 -23.5 112.5t-21.5 104.5h-3q-31 -152 -48 -220l-53 -220h-205z" />
  72. <glyph unicode="X" horiz-adv-x="606" d="M14 0l-11 20l185 305l-185 360l199 15l118 -258h3l111 258l158 -12l11 -20l-181 -332l181 -336h-206l-107 219h-2l-113 -219h-161z" />
  73. <glyph unicode="Y" horiz-adv-x="584" d="M199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  74. <glyph unicode="Z" horiz-adv-x="584" d="M60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472z" />
  75. <glyph unicode="[" horiz-adv-x="444" d="M120 760h274v-134h-104v-690h104v-134h-274v958z" />
  76. <glyph unicode="\" horiz-adv-x="397" d="M247 -10l-187 747l8 8l82 15l187 -747l-8 -8z" />
  77. <glyph unicode="]" horiz-adv-x="444" d="M324 760v-958h-274v134h104v690h-104v134h274z" />
  78. <glyph unicode="^" horiz-adv-x="526" d="M175 210h-95l150 340h66l150 -340h-95l-90 208z" />
  79. <glyph unicode="_" horiz-adv-x="470" d="M0 -240v50h470v-50h-470z" />
  80. <glyph unicode="`" horiz-adv-x="276" d="M201 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198z" />
  81. <glyph unicode="a" horiz-adv-x="526" d="M304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123 q-40 -5 -65 -25.5t-25 -54.5z" />
  82. <glyph unicode="b" horiz-adv-x="575" d="M540 255q0 -126 -61 -195.5t-174 -69.5q-61 0 -112 15l-143 -15v573q0 87 -15 178l175 19l20 -20v-271q55 41 120 41q90 0 140 -69.5t50 -185.5zM271 400q-23 0 -41 -9v-306q18 -5 35 -5q90 0 90 165q0 81 -20 118t-64 37z" />
  83. <glyph unicode="c" horiz-adv-x="492" d="M467 468l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41q-119 1 -190.5 70.5t-71.5 184.5q0 116 75 190.5t192 74.5q99 0 165 -42z" />
  84. <glyph unicode="d" horiz-adv-x="587" d="M361 56q-51 -66 -135 -66q-87 0 -139 63.5t-52 174.5q0 133 75.5 207.5t200.5 74.5q13 0 35 -2v55q0 91 -14 178l174 19l20 -20v-610q0 -67 21 -130l-152 -10q-12 18 -30 66h-4zM220 253q0 -73 22.5 -118t64.5 -45q22 0 39 11v319h-8q-118 0 -118 -167z" />
  85. <glyph unicode="e" horiz-adv-x="536" d="M505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  86. <glyph unicode="f" horiz-adv-x="397" d="M265 0h-180v395l-70 5v60l70 20q-3 38 -3 67q0 102 63 157.5t175 55.5q92 0 147 -34l-35 -131q-61 35 -107 35q-32 0 -49 -18t-17 -51q0 -21 3 -81h123l12 -18l-5 -72l-127 4v-394z" />
  87. <glyph unicode="g" horiz-adv-x="539" d="M93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4q50 -38 50 -110q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5 t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5q39 0 65 19t26 52q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103 q53 0 53 105z" />
  88. <glyph unicode="h" horiz-adv-x="580" d="M230 0h-180v563q0 91 -15 178l175 19l20 -20v-293q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  89. <glyph unicode="i" horiz-adv-x="295" d="M253 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  90. <glyph unicode="j" horiz-adv-x="298" d="M252 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM70 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  91. <glyph unicode="k" horiz-adv-x="559" d="M50 563q0 91 -15 178l175 19l20 -20v-457h30q51 99 105 227l152 -10l10 -20l-118 -181q52 -114 150 -299l-206 -10q-52 110 -88 203h-35v-193h-180v563z" />
  92. <glyph unicode="l" horiz-adv-x="295" d="M235 0h-180v563q0 91 -15 178l175 19l20 -20v-740z" />
  93. <glyph unicode="m" horiz-adv-x="875" d="M235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q91 0 124 -77q77 77 166 77q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-27 0 -54 -17q1 -7 1 -23v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  94. <glyph unicode="n" horiz-adv-x="585" d="M235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  95. <glyph unicode="o" horiz-adv-x="568" d="M533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  96. <glyph unicode="p" horiz-adv-x="581" d="M55 -240v553q0 71 -20 168l170 29q11 -28 17 -53q58 53 136 53q88 0 138 -69.5t50 -185.5q0 -127 -61 -196t-176 -69q-40 0 -74 7v-60q0 -88 14 -178l-174 -19zM277 400q-24 0 -42 -9v-306q18 -5 35 -5q47 0 69 40.5t22 124.5q0 81 -20 118t-64 37z" />
  97. <glyph unicode="q" horiz-adv-x="586" d="M346 -240v279q-49 -49 -119 -49q-87 0 -139.5 67.5t-52.5 178.5q0 126 69.5 200t184.5 74q50 0 106 -14l131 14v-573q0 -88 14 -178l-174 -19zM220 250q0 -75 22 -117.5t63 -42.5q22 0 41 11v319h-9q-117 0 -117 -170z" />
  98. <glyph unicode="r" horiz-adv-x="416" d="M235 0h-180v313q0 74 -20 168l170 29q24 -65 30 -120q22 58 50 89t71 31q32 0 50 -15l-12 -171q-35 8 -68 8q-55 0 -91 -20v-312z" />
  99. <glyph unicode="s" horiz-adv-x="452" d="M410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116 t162 43q83 0 157 -25z" />
  100. <glyph unicode="t" horiz-adv-x="419" d="M391 410l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v228l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20z" />
  101. <glyph unicode="u" horiz-adv-x="580" d="M55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  102. <glyph unicode="v" horiz-adv-x="507" d="M502 480l-144 -480h-210l-143 495l190 15l55 -263q18 -84 22 -137h3q4 38 25 137l54 263l138 -10z" />
  103. <glyph unicode="w" horiz-adv-x="816" d="M121 0l-116 495l185 15l44 -253q18 -111 19 -117h3q2 19 9 60.5t9 56.5l37 243h229l39 -243q18 -111 19 -117h3q4 31 18 117l42 253l140 -10l10 -20l-116 -480h-230l-35 204q-20 114 -23 156h-3q-3 -39 -23 -157l-35 -203h-225z" />
  104. <glyph unicode="x" horiz-adv-x="501" d="M306 0l-81 162l-70 -162h-140l-10 20l134 230l-134 245l185 15l83 -183l73 183l140 -10l10 -20l-136 -231l136 -249h-190z" />
  105. <glyph unicode="y" horiz-adv-x="507" d="M502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  106. <glyph unicode="z" horiz-adv-x="460" d="M23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244z" />
  107. <glyph unicode="{" horiz-adv-x="469" d="M182 122q0 49 -23.5 75t-78.5 33v100q55 7 78.5 32.5t23.5 75.5q0 30 -15.5 90.5t-15.5 90.5q0 76 62 108.5t203 32.5l3 -100q-43 0 -66.5 -22.5t-23.5 -61.5q0 -27 12.5 -79t12.5 -78q0 -54 -34 -90t-92 -49q58 -13 92 -49t34 -90q0 -22 -12.5 -76t-12.5 -81 q0 -39 23.5 -61.5t66.5 -22.5l-3 -100q-141 0 -203 32.5t-62 108.5q0 31 15.5 94.5t15.5 86.5z" />
  108. <glyph unicode="|" horiz-adv-x="325" d="M128 -260l-8 8v1009l77 3l8 -8v-1009z" />
  109. <glyph unicode="}" horiz-adv-x="469" d="M389 230l-102 -108q0 -23 15.5 -86.5t15.5 -94.5q0 -76 -62 -108.5t-203 -32.5l-3 100q43 0 66.5 22.5t23.5 61.5q0 27 -12.5 81t-12.5 76q0 54 34 90t92 49q-58 13 -92 49t-34 90q0 26 12.5 78t12.5 79q0 39 -23.5 61.5t-66.5 22.5l3 100q141 0 203 -32.5t62 -108.5 q0 -30 -15.5 -90.5t-15.5 -90.5q0 -50 23.5 -75.5t78.5 -32.5v-100z" />
  110. <glyph unicode="~" d="M441 212q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22z" />
  111. <glyph unicode="&#xa1;" horiz-adv-x="350" d="M81 410q0 41 29.5 70.5t72.5 29.5q38 0 62.5 -23.5t24.5 -57.5q0 -40 -32 -69.5t-75 -29.5q-36 0 -59 22t-23 58zM118 268h109q24 -280 43 -458l-170 -10l-20 20q4 208 38 448z" />
  112. <glyph unicode="&#xa2;" horiz-adv-x="492" d="M248 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  113. <glyph unicode="&#xa3;" horiz-adv-x="617" d="M153 278l-116 5l13 60l107 20q7 159 77 248t206 89q114 0 177 -54l-56 -131q-68 55 -119 55q-49 0 -76 -48t-36 -159h178l8 -18l-19 -67h-179q-27 -154 -98 -228q47 -28 81 -44t91.5 -31.5t115.5 -15.5q56 0 109 11l-40 -149q-27 -8 -73 -8q-57 0 -110 17t-101 51.5 t-75 58t-67 63.5q-30 -13 -70 -13q-44 0 -67.5 17t-23.5 45t20.5 44.5t53.5 16.5t72 -18q12 60 15 137z" />
  114. <glyph unicode="&#xa4;" horiz-adv-x="550" d="M449 30l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM269 380q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  115. <glyph unicode="&#xa5;" horiz-adv-x="555" d="M59 92v60h130v70h-130v60h130l-186 399l188 19l51 -140q34 -98 52 -163h2q16 61 50 153l58 150l138 -10l10 -19l-187 -389h130v-60h-130v-70h130v-60h-130v-92h-176v92h-130z" />
  116. <glyph unicode="&#xa6;" horiz-adv-x="325" d="M205 348l-77 -3l-8 8v404l77 3l8 -8v-404zM205 -257l-77 -3l-8 8v400l77 3l8 -8v-400z" />
  117. <glyph unicode="&#xa7;" horiz-adv-x="583" d="M366 560q-29 0 -44.5 -14t-15.5 -34q0 -23 24.5 -59t59 -78t69.5 -89t59.5 -104.5t24.5 -112.5q0 -104 -82 -172t-216 -68q-98 0 -162 25l20 155q59 -40 114 -40q29 0 44.5 14t15.5 34q0 23 -24.5 59t-59.5 78t-69.5 89t-59 104.5t-24.5 112.5q0 104 82 172t216 68 q98 0 162 -25l-20 -155q-59 40 -114 40zM334 -78q57 17 89 56t32 92q0 44 -24.5 92.5t-59.5 91.5t-69.5 85.5t-59 88.5t-24.5 85q0 56 38 83l-7 11q-57 -17 -89 -56t-32 -92q0 -44 24.5 -92.5t59.5 -91.5t69.5 -85.5t59 -88.5t24.5 -85q0 -56 -38 -83z" />
  118. <glyph unicode="&#xa8;" horiz-adv-x="519" d="M235 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM474 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60z" />
  119. <glyph unicode="&#xa9;" horiz-adv-x="680" d="M340 -50q-128 0 -214 86t-86 214q0 124 88 212t212 88q127 0 213.5 -87.5t86.5 -212.5q0 -124 -88 -212t-212 -88zM340 0q103 0 176.5 73.5t73.5 176.5q0 104 -73 177t-177 73q-103 0 -176.5 -73.5t-73.5 -176.5q0 -106 72 -178t178 -72zM474 394l-26 -89q-42 30 -81 30 q-27 0 -43 -20t-16 -54q0 -43 22.5 -67t63.5 -24q27 0 66 18l7 -75q-42 -26 -108 -26q-80 0 -128.5 45t-48.5 119q0 75 50.5 122.5t130.5 47.5q64 0 111 -27z" />
  120. <glyph unicode="&#xaa;" horiz-adv-x="440" d="M252 335q-38 -53 -118 -53q-49 0 -79.5 24.5t-30.5 71.5q0 123 217 128v20q0 57 -65 57q-62 0 -124 -30l-8 108q85 27 171 27q176 0 176 -148q0 -27 -2 -74t-2 -75q0 -56 17 -101l-123 -8q-13 20 -24 53h-5zM170 404q0 -19 11 -30.5t30 -11.5q16 0 30 8v95 q-31 -3 -51 -19t-20 -42z" />
  121. <glyph unicode="&#xab;" horiz-adv-x="514" d="M37 269v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183zM256 269v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  122. <glyph unicode="&#xac;" d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
  123. <glyph unicode="&#xae;" horiz-adv-x="680" d="M340 -50q-128 0 -214 86t-86 214q0 124 88 212t212 88q127 0 213.5 -87.5t86.5 -212.5q0 -124 -88 -212t-212 -88zM340 0q103 0 176.5 73.5t73.5 176.5q0 104 -73 177t-177 73q-103 0 -176.5 -73.5t-73.5 -176.5q0 -106 72 -178t178 -72zM314 92h-101v210q0 76 -10 119 h116q176 0 176 -121q0 -68 -61 -102l63 -106l-105 -5q-5 8 -42 83l-2 -1h-34v-77zM326 336h-12v-82h12q63 0 63 41t-63 41z" />
  124. <glyph unicode="&#xaf;" horiz-adv-x="410" d="M45 618v96h298v-96h-298z" />
  125. <glyph unicode="&#xb0;" horiz-adv-x="345" d="M169 295q-56 0 -90 34t-34 89q0 58 36.5 95t95.5 37q54 0 88.5 -34t34.5 -88q0 -58 -36.5 -95.5t-94.5 -37.5zM173 500q-33 0 -53 -22.5t-20 -57.5q0 -32 20.5 -53.5t51.5 -21.5q33 0 53 23t20 58q0 32 -20 53t-52 21z" />
  126. <glyph unicode="&#xb1;" d="M510 398h-155v-143h-88l-1 143h-166v85q46 1 166 3l-1 139h90v-138q61 1 157 1l8 -8zM530 75h-450v85q170 5 452 5l8 -8z" />
  127. <glyph unicode="&#xb2;" horiz-adv-x="389" d="M55 352l-15 83q45 20 105.5 78t60.5 109q0 25 -13.5 40.5t-38.5 15.5q-44 0 -101 -41l-12 96q70 33 146 33q69 0 113 -32t44 -83q0 -56 -53 -113.5t-124 -91.5h62q54 0 105 6l-7 -100h-272z" />
  128. <glyph unicode="&#xb3;" horiz-adv-x="391" d="M43 734q66 32 143 32q62 0 102 -26.5t40 -66.5q0 -31 -23.5 -59t-61.5 -40q49 -9 78.5 -37.5t29.5 -67.5q0 -55 -55 -90t-141 -35q-66 0 -115 14l12 80q42 -14 96 -14q29 0 47.5 10.5t18.5 30.5q0 40 -85 40q-16 0 -58 -4v80q47 2 83.5 17.5t36.5 45.5q0 34 -46 34 q-47 0 -97 -25z" />
  129. <glyph unicode="&#xb4;" horiz-adv-x="276" d="M261 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198z" />
  130. <glyph unicode="&#xb6;" horiz-adv-x="600" d="M228 -80q155 0 155 196v519h-70v-425h-22q-118 0 -194.5 65.5t-76.5 174.5q0 112 82 176t208 64h183v-585q0 -124 -71.5 -199.5t-193.5 -75.5q-69 0 -137 26l8 95q74 -31 129 -31z" />
  131. <glyph unicode="&#xb7;" horiz-adv-x="330" d="M269 270q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q43 0 70.5 -28t27.5 -72z" />
  132. <glyph unicode="&#xb8;" horiz-adv-x="304" d="M264 -144q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l36 123h93l-30 -92q120 -15 120 -95z" />
  133. <glyph unicode="&#xb9;" horiz-adv-x="306" d="M109 646h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
  134. <glyph unicode="&#xba;" horiz-adv-x="474" d="M442 487q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM186 489q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  135. <glyph unicode="&#xbb;" horiz-adv-x="514" d="M477 269q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48zM258 269q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  136. <glyph unicode="&#xbc;" horiz-adv-x="900" d="M139 586h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79zM660 700l-425 -710h-65l424 710h66zM468 150l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM575 162v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  137. <glyph unicode="&#xbd;" horiz-adv-x="911" d="M139 586h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79zM660 700l-425 -710h-65l424 710h66zM547 -10l-15 83q45 20 105.5 78t60.5 109q0 25 -13.5 40.5t-38.5 15.5q-44 0 -101 -41l-12 96q70 33 146 33q69 0 113 -32t44 -83q0 -56 -53 -113.5t-124 -91.5h62 q54 0 105 6l-7 -100h-272z" />
  138. <glyph unicode="&#xbe;" horiz-adv-x="954" d="M73 672q66 32 143 32q62 0 102 -26.5t40 -66.5q0 -31 -23.5 -59t-61.5 -40q49 -9 78.5 -37.5t29.5 -67.5q0 -55 -55 -90t-141 -35q-66 0 -115 14l12 80q42 -14 96 -14q29 0 47.5 10.5t18.5 30.5q0 40 -85 40q-16 0 -58 -4v80q47 2 83.5 17.5t36.5 45.5q0 34 -46 34 q-47 0 -97 -25zM714 700l-425 -710h-65l424 710h66zM522 150l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM629 162v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  139. <glyph unicode="&#xbf;" horiz-adv-x="526" d="M208 410q0 41 29.5 70.5t72.5 29.5q38 0 62.5 -23.5t24.5 -57.5q0 -40 -32 -69.5t-75 -29.5q-36 0 -59 22t-23 58zM259 274l101 5q18 -33 18 -66q0 -29 -15 -54.5t-37 -44t-44 -36.5t-37 -39.5t-15 -45.5q0 -29 21.5 -47t56.5 -18q33 0 71 18t64 49l63 -96 q-90 -99 -236 -99q-104 0 -164.5 47.5t-60.5 122.5q0 42 21 78.5t51.5 60.5t61 43.5t51.5 38t21 33.5v42z" />
  140. <glyph unicode="&#xc0;" horiz-adv-x="650" d="M472 771q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  141. <glyph unicode="&#xc1;" horiz-adv-x="650" d="M484 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  142. <glyph unicode="&#xc2;" horiz-adv-x="650" d="M191 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  143. <glyph unicode="&#xc3;" horiz-adv-x="650" d="M251 943q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140 l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  144. <glyph unicode="&#xc4;" horiz-adv-x="650" d="M536 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM295 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185 l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  145. <glyph unicode="&#xc5;" horiz-adv-x="650" d="M452 876q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM269 859q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM180 0h-175l166 580q20 67 27 110 l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  146. <glyph unicode="&#xc6;" horiz-adv-x="909" d="M180 0h-175l242 580q36 87 44 110h511l20 -20l-4 -120l-263 8l19 -159l220 5l-5 -127l-202 6l18 -153l279 10v-140h-449l-13 130h-191zM300 305l-18 -45h127l-4 44q-10 103 -13 238h-5q-56 -158 -87 -237z" />
  147. <glyph unicode="&#xc7;" horiz-adv-x="574" d="M491 -151q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l24 82q-126 20 -196 109t-70 233q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38 l21 -148q-73 -37 -173 -40l-15 -46q120 -15 120 -95z" />
  148. <glyph unicode="&#xc8;" horiz-adv-x="555" d="M446 771q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  149. <glyph unicode="&#xc9;" horiz-adv-x="555" d="M458 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  150. <glyph unicode="&#xca;" horiz-adv-x="555" d="M165 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  151. <glyph unicode="&#xcb;" horiz-adv-x="555" d="M510 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM269 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120 l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  152. <glyph unicode="&#xcc;" horiz-adv-x="315" d="M297 771q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  153. <glyph unicode="&#xcd;" horiz-adv-x="315" d="M309 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  154. <glyph unicode="&#xce;" horiz-adv-x="315" d="M16 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  155. <glyph unicode="&#xcf;" horiz-adv-x="315" d="M361 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM120 868q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  156. <glyph unicode="&#xd0;" horiz-adv-x="692" d="M662 351q0 -165 -102.5 -258t-258.5 -93h-236v300h-65v90h65v121q0 116 -10 179h266q160 0 250.5 -90.5t90.5 -248.5zM386 300h-136v-170h67q155 0 155 212q0 96 -38.5 157t-122.5 61h-61v-170h136v-90z" />
  157. <glyph unicode="&#xd1;" horiz-adv-x="710" d="M266 943q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138 t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511q0 102 -10 179l185 7q111 -200 144 -256z" />
  158. <glyph unicode="&#xd2;" horiz-adv-x="715" d="M507 761q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5 t-35 -156.5z" />
  159. <glyph unicode="&#xd3;" horiz-adv-x="715" d="M519 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5 t-35 -156.5z" />
  160. <glyph unicode="&#xd4;" horiz-adv-x="715" d="M226 762l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5 q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  161. <glyph unicode="&#xd5;" horiz-adv-x="715" d="M286 933q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100 q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  162. <glyph unicode="&#xd6;" horiz-adv-x="715" d="M571 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM330 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252 q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  163. <glyph unicode="&#xd7;" d="M459 130l-148 152l-152 -152l-64 64l153 153l-149 153l60 60q57 -54 151 -151l151 151l64 -64l-151 -151q118 -120 151 -153v-11z" />
  164. <glyph unicode="&#xd8;" horiz-adv-x="715" d="M685 347q0 -168 -95 -262.5t-241 -94.5q-117 0 -198 63l-59 -68l-65 56l64 74q-61 88 -61 219q0 166 94 266t243 100q109 0 185 -55l52 60l66 -55l-56 -65q71 -93 71 -238zM220 350q0 -45 7 -79l222 255q-33 39 -89 39q-70 0 -105 -58.5t-35 -156.5zM495 345q0 57 -8 94 l-227 -260q37 -54 99 -54q136 0 136 220z" />
  165. <glyph unicode="&#xd9;" horiz-adv-x="680" d="M487 761q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  166. <glyph unicode="&#xda;" horiz-adv-x="680" d="M499 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  167. <glyph unicode="&#xdb;" horiz-adv-x="680" d="M206 762l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z " />
  168. <glyph unicode="&#xdc;" horiz-adv-x="680" d="M551 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM310 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127 q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  169. <glyph unicode="&#xdd;" horiz-adv-x="584" d="M474 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  170. <glyph unicode="&#xde;" horiz-adv-x="607" d="M250 0h-185v511q0 116 -10 179h195v-93h79q121 0 192 -64.5t71 -172.5q0 -116 -79.5 -181t-202.5 -65h-60v-114zM288 467h-38v-223h38q62 0 88 28t26 81q0 114 -114 114z" />
  171. <glyph unicode="&#xdf;" horiz-adv-x="690" d="M85 415l-70 5v60l70 20v7q0 122 69.5 187.5t195.5 65.5q108 0 171 -47t63 -124q0 -52 -29 -93.5t-76 -66.5q83 -29 129.5 -89t46.5 -141q0 -94 -59.5 -151.5t-162.5 -57.5q-73 0 -113 17v110q43 -17 78 -17q44 0 65.5 28.5t21.5 70.5q0 56 -39.5 104.5t-120.5 76.5v74 q94 51 94 125q0 34 -18.5 57.5t-55.5 23.5q-80 0 -80 -119v-541h-180v415z" />
  172. <glyph unicode="&#xe0;" horiz-adv-x="526" d="M302 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10 q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  173. <glyph unicode="&#xe1;" horiz-adv-x="526" d="M362 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10 q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  174. <glyph unicode="&#xe2;" horiz-adv-x="526" d="M149 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187 q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  175. <glyph unicode="&#xe3;" horiz-adv-x="526" d="M183 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75 q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  176. <glyph unicode="&#xe4;" horiz-adv-x="526" d="M234 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM473 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5 t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  177. <glyph unicode="&#xe5;" horiz-adv-x="526" d="M403 691q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM220 674q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM304 58q-21 -31 -59.5 -49.5 t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  178. <glyph unicode="&#xe6;" horiz-adv-x="790" d="M759 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -175 -41q-157 0 -229 96q-29 -44 -76 -70t-102 -26q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 12 -1.5 21t-8.5 23.5t-26 22.5t-48 8q-72 0 -147 -40l-10 135q103 35 210 35q97 0 147 -38 q63 38 139 38q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM538 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 20 2 32q0 85 -47 85zM200 145q0 -25 14 -40t37 -15q34 0 62 34q-21 43 -24 101q-39 -5 -64 -25.5t-25 -54.5z" />
  179. <glyph unicode="&#xe7;" horiz-adv-x="492" d="M427 -151q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l24 83q-91 19 -144 85t-53 164q0 116 75 190.5t192 74.5q99 0 165 -42l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29 l10 -113q-55 -36 -135 -40l-15 -47q120 -15 120 -95z" />
  180. <glyph unicode="&#xe8;" horiz-adv-x="536" d="M311 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5 t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  181. <glyph unicode="&#xe9;" horiz-adv-x="536" d="M371 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5 t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  182. <glyph unicode="&#xea;" horiz-adv-x="536" d="M158 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5 q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  183. <glyph unicode="&#xeb;" horiz-adv-x="536" d="M243 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM482 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113 q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  184. <glyph unicode="&#xec;" horiz-adv-x="295" d="M191 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  185. <glyph unicode="&#xed;" horiz-adv-x="295" d="M251 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  186. <glyph unicode="&#xee;" horiz-adv-x="295" d="M71 561l-64 24q29 74 57 176l167 10q26 -103 57 -186l-64 -24q-39 38 -76 100q-40 -64 -77 -100zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  187. <glyph unicode="&#xef;" horiz-adv-x="295" d="M137 677q0 -42 -27 -72t-65 -30q-35 0 -57.5 24t-22.5 59q0 41 29.5 71.5t68.5 30.5q32 0 53 -23t21 -60zM330 677q0 -42 -27.5 -72t-65.5 -30q-34 0 -55.5 24t-21.5 59q0 41 28.5 71.5t66.5 30.5q33 0 54 -23t21 -60zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z " />
  188. <glyph unicode="&#xf0;" horiz-adv-x="597" d="M295 -10q-106 0 -175.5 67.5t-69.5 187.5q0 105 55 166t146 61q68 0 107 -35q-23 68 -72 123l-79 -52l-46 71l62 41q-26 20 -62 43l58 97q63 -23 120 -63l96 63l47 -71l-74 -49q149 -144 149 -353q0 -146 -74 -221.5t-188 -75.5zM303 363q-68 0 -68 -127q0 -126 68 -126 t68 126q0 127 -68 127z" />
  189. <glyph unicode="&#xf1;" horiz-adv-x="585" d="M210 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350 h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  190. <glyph unicode="&#xf2;" horiz-adv-x="568" d="M327 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37 t-14.5 -118z" />
  191. <glyph unicode="&#xf3;" horiz-adv-x="568" d="M387 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37 t-14.5 -118z" />
  192. <glyph unicode="&#xf4;" horiz-adv-x="568" d="M174 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114 q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  193. <glyph unicode="&#xf5;" horiz-adv-x="568" d="M208 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70 t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  194. <glyph unicode="&#xf6;" horiz-adv-x="568" d="M259 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM498 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184 q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  195. <glyph unicode="&#xf7;" d="M388 543q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5zM530 303h-450v85q170 5 452 5l8 -8zM389 171q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5z" />
  196. <glyph unicode="&#xf8;" horiz-adv-x="568" d="M533 253q0 -125 -74 -194t-182 -69q-81 0 -143 40l-55 -59l-59 56l57 61q-42 61 -42 152q0 123 73 196.5t184 73.5q82 0 140 -41l56 60l60 -55l-58 -63q43 -65 43 -158zM220 255v-13l115 123q-16 45 -52 45q-34 0 -48.5 -37t-14.5 -118zM348 243v16l-115 -123 q16 -46 53 -46q36 0 49 39t13 114z" />
  197. <glyph unicode="&#xf9;" horiz-adv-x="580" d="M335 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  198. <glyph unicode="&#xfa;" horiz-adv-x="580" d="M395 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  199. <glyph unicode="&#xfb;" horiz-adv-x="580" d="M182 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5 t-39 104.5v178z" />
  200. <glyph unicode="&#xfc;" horiz-adv-x="580" d="M267 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68 q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  201. <glyph unicode="&#xfd;" horiz-adv-x="507" d="M367 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  202. <glyph unicode="&#xfe;" horiz-adv-x="576" d="M50 563q0 87 -15 178l175 19l20 -20v-272q54 42 123 42q88 0 138 -69.5t50 -185.5q0 -127 -61 -196t-176 -69q-40 0 -74 7v-50q0 -88 14 -178l-174 -19l-20 20v793zM272 400q-24 0 -42 -9v-306q18 -5 35 -5q47 0 69 40.5t22 124.5q0 81 -20 118t-64 37z" />
  203. <glyph unicode="&#xff;" horiz-adv-x="507" d="M239 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM478 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71 t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  204. <glyph unicode="&#x100;" horiz-adv-x="650" d="M176 809v96h298v-96h-298zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  205. <glyph unicode="&#x101;" horiz-adv-x="526" d="M110 618v96h298v-96h-298zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145 q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  206. <glyph unicode="&#x102;" horiz-adv-x="650" d="M413 933l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5 q-25 -124 -56 -237z" />
  207. <glyph unicode="&#x103;" horiz-adv-x="526" d="M345 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187 q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  208. <glyph unicode="&#x104;" horiz-adv-x="650" d="M180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 46 37.5 88t103.5 71h-68l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5 q-25 -124 -56 -237z" />
  209. <glyph unicode="&#x105;" horiz-adv-x="526" d="M304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59 q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 42 32.5 81.5t89.5 68.5l-12 -1q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  210. <glyph unicode="&#x106;" horiz-adv-x="574" d="M496 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM538 178l21 -148q-80 -40 -193 -40q-158 0 -247 92t-89 255q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38z" />
  211. <glyph unicode="&#x107;" horiz-adv-x="492" d="M376 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM467 468l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41q-119 1 -190.5 70.5t-71.5 184.5q0 116 75 190.5t192 74.5q99 0 165 -42z " />
  212. <glyph unicode="&#x108;" horiz-adv-x="574" d="M203 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM538 178l21 -148q-80 -40 -193 -40q-158 0 -247 92t-89 255q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152 q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38z" />
  213. <glyph unicode="&#x109;" horiz-adv-x="492" d="M163 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM467 468l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41q-119 1 -190.5 70.5t-71.5 184.5 q0 116 75 190.5t192 74.5q99 0 165 -42z" />
  214. <glyph unicode="&#x10a;" horiz-adv-x="574" d="M440 870q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM538 178l21 -148q-80 -40 -193 -40q-158 0 -247 92t-89 255q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152 q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38z" />
  215. <glyph unicode="&#x10b;" horiz-adv-x="492" d="M378 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM467 468l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41 q-119 1 -190.5 70.5t-71.5 184.5q0 116 75 190.5t192 74.5q99 0 165 -42z" />
  216. <glyph unicode="&#x10c;" horiz-adv-x="574" d="M470 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM538 178l21 -148q-80 -40 -193 -40q-158 0 -247 92t-89 255q0 160 96 261.5t248 101.5q109 0 181 -40l-35 -155q-79 45 -144 45q-71 0 -113.5 -57t-42.5 -152 q0 -94 45.5 -147.5t125.5 -53.5q78 0 147 38z" />
  217. <glyph unicode="&#x10d;" horiz-adv-x="492" d="M396 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM467 468l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41q-119 1 -190.5 70.5t-71.5 184.5 q0 116 75 190.5t192 74.5q99 0 165 -42z" />
  218. <glyph unicode="&#x10e;" horiz-adv-x="692" d="M465 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM662 351q0 -165 -102.5 -258t-258.5 -93h-236v511q0 116 -10 179h266q160 0 250.5 -90.5t90.5 -248.5zM311 560h-61v-430h67q155 0 155 212q0 96 -38.5 157t-122.5 61z " />
  219. <glyph unicode="&#x10f;" horiz-adv-x="587" d="M361 56q-51 -66 -135 -66q-87 0 -139 63.5t-52 174.5q0 133 75.5 207.5t200.5 74.5q13 0 35 -2v55q0 91 -14 178l174 19l20 -20v-610q0 -67 21 -130l-152 -10q-12 18 -30 66h-4zM757 760l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM220 253q0 -73 22.5 -118 t64.5 -45q22 0 39 11v319h-8q-118 0 -118 -167z" />
  220. <glyph unicode="&#x110;" horiz-adv-x="692" d="M662 351q0 -165 -102.5 -258t-258.5 -93h-236v300h-65v90h65v121q0 116 -10 179h266q160 0 250.5 -90.5t90.5 -248.5zM386 300h-136v-170h67q155 0 155 212q0 96 -38.5 157t-122.5 61h-61v-170h136v-90z" />
  221. <glyph unicode="&#x111;" horiz-adv-x="587" d="M361 56q-51 -66 -135 -66q-87 0 -139 63.5t-52 174.5q0 133 75.5 207.5t200.5 74.5q13 0 35 -2v55v3h-125v90h121q-3 44 -10 85l174 19l20 -20v-84h81v-90h-81v-436q0 -67 21 -130l-152 -10q-12 18 -30 66h-4zM220 253q0 -73 22.5 -118t64.5 -45q22 0 39 11v319h-8 q-118 0 -118 -167z" />
  222. <glyph unicode="&#x112;" horiz-adv-x="555" d="M150 809v96h298v-96h-298zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  223. <glyph unicode="&#x113;" horiz-adv-x="536" d="M119 618v96h298v-96h-298zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36 q0 81 -47 81z" />
  224. <glyph unicode="&#x114;" horiz-adv-x="555" d="M387 933l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  225. <glyph unicode="&#x115;" horiz-adv-x="536" d="M354 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5 q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  226. <glyph unicode="&#x116;" horiz-adv-x="555" d="M402 870q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  227. <glyph unicode="&#x117;" horiz-adv-x="536" d="M373 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5 q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  228. <glyph unicode="&#x118;" horiz-adv-x="555" d="M530 0q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 46 37.5 88t103.5 71h-348v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154l280 10v-140z" />
  229. <glyph unicode="&#x119;" horiz-adv-x="536" d="M505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113l-2 -2t-2 -1q-138 -82 -138 -146q0 -38 43 -38q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 28t-34 73q0 77 131 150q-8 -1 -23 -1q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5 q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  230. <glyph unicode="&#x11a;" horiz-adv-x="555" d="M432 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z" />
  231. <glyph unicode="&#x11b;" horiz-adv-x="536" d="M391 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5 q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  232. <glyph unicode="&#x11c;" horiz-adv-x="637" d="M213 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5 q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192z" />
  233. <glyph unicode="&#x11d;" horiz-adv-x="539" d="M149 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4q50 -38 50 -110 q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5q39 0 65 19t26 52 q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  234. <glyph unicode="&#x11e;" horiz-adv-x="637" d="M435 933l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155 q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192z" />
  235. <glyph unicode="&#x11f;" horiz-adv-x="539" d="M345 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4 q50 -38 50 -110q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5 q39 0 65 19t26 52q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  236. <glyph unicode="&#x120;" horiz-adv-x="637" d="M450 870q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5 t-50.5 -161.5q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192z" />
  237. <glyph unicode="&#x121;" horiz-adv-x="539" d="M364 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4 q50 -38 50 -110q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5 q39 0 65 19t26 52q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  238. <glyph unicode="&#x122;" horiz-adv-x="637" d="M582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192zM278 -325q44 46 61 95q-27 5 -44.5 26 t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  239. <glyph unicode="&#x123;" horiz-adv-x="539" d="M340 829q-44 -46 -61 -95q27 -5 44.5 -26t17.5 -50q0 -35 -26 -61t-64 -26q-35 0 -60 24.5t-25 70.5q0 100 123 208zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4 q50 -38 50 -110q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5 q39 0 65 19t26 52q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  240. <glyph unicode="&#x124;" horiz-adv-x="715" d="M224 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-273h215v96q0 110 -10 187l175 10l20 -20v-680h-185v277h-215v-277z" />
  241. <glyph unicode="&#x125;" horiz-adv-x="580" d="M-1 817l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM230 0h-180v563q0 91 -15 178l175 19l20 -20v-293q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  242. <glyph unicode="&#x126;" horiz-adv-x="715" d="M250 0h-185v490h-67v90h66q-3 61 -9 110l175 10l20 -20v-100h214q-3 61 -9 110l175 10l20 -20v-100h68v-90h-68v-490h-185v277h-215v-277zM250 407h215v83h-215v-83z" />
  243. <glyph unicode="&#x127;" horiz-adv-x="580" d="M230 0h-180v562h-81v90h77q-3 36 -11 89l175 19l20 -20v-88h125v-90h-125v-115q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  244. <glyph unicode="&#x128;" horiz-adv-x="315" d="M76 943q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  245. <glyph unicode="&#x129;" horiz-adv-x="295" d="M85 763q28 0 71 -28.5t58 -28.5q27 0 42 43l44 -7q0 -71 -21.5 -121t-68.5 -50q-26 0 -73 28.5t-56 28.5q-27 0 -42 -43l-44 7q0 71 21.5 121t68.5 50zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  246. <glyph unicode="&#x12a;" horiz-adv-x="315" d="M1 809v96h298v-96h-298zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  247. <glyph unicode="&#x12b;" horiz-adv-x="295" d="M13 618v96h269v-96h-269zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  248. <glyph unicode="&#x12c;" horiz-adv-x="315" d="M238 933l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  249. <glyph unicode="&#x12d;" horiz-adv-x="295" d="M218 753l69 9q-3 -87 -42 -142t-103 -55q-56 0 -93.5 49t-40.5 130l70 10q3 -36 22 -57.5t48 -21.5t48.5 22t21.5 56zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  250. <glyph unicode="&#x12e;" horiz-adv-x="315" d="M250 0q-34 -25 -53.5 -57t-19.5 -61q0 -44 43 -44q25 0 54 13l25 -59q-67 -58 -145 -58q-52 0 -86 30t-34 80q0 43 29.5 85t78.5 71h-77v503q0 110 -10 187l175 10l20 -20v-680z" />
  251. <glyph unicode="&#x12f;" horiz-adv-x="295" d="M253 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM55 0v313q0 91 -15 178l175 19l20 -20v-490q-36 -23 -57 -53t-21 -59q0 -20 12.5 -32t35.5 -12q26 0 49 13l25 -59q-67 -58 -145 -58q-52 0 -86 28 t-34 75q0 44 30.5 86t81.5 71h-71z" />
  252. <glyph unicode="&#x130;" horiz-adv-x="315" d="M253 870q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  253. <glyph unicode="&#x131;" horiz-adv-x="295" d="M55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  254. <glyph unicode="&#x132;" horiz-adv-x="630" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-680zM365 -225l-57 75q72 108 72 290v363q0 91 -15 178l181 19l19 -19v-541q0 -140 -41 -218.5t-159 -146.5z" />
  255. <glyph unicode="&#x133;" horiz-adv-x="593" d="M253 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM547 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM55 0v313q0 91 -15 178l175 19 l20 -20v-490h-180zM365 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  256. <glyph unicode="&#x134;" horiz-adv-x="315" d="M24 772l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM50 -225l-57 75q72 108 72 290v363q0 91 -15 178l181 19l19 -19v-541q0 -140 -41 -218.5t-159 -146.5z" />
  257. <glyph unicode="&#x135;" horiz-adv-x="298" d="M70 561l-64 24q29 74 57 176l167 10q26 -103 57 -186l-64 -24q-39 38 -76 100q-40 -64 -77 -100zM70 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  258. <glyph unicode="&#x136;" horiz-adv-x="663" d="M65 503q0 103 -10 187l175 10l20 -20v-297h60q79 177 136 317l175 -10l10 -19l-173 -308l197 -363l-214 -5q-64 113 -131 258h-60v-253h-185v503zM245 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  259. <glyph unicode="&#x137;" horiz-adv-x="559" d="M50 563q0 91 -15 178l175 19l20 -20v-457h30q51 99 105 227l152 -10l10 -20l-118 -181q52 -114 150 -299l-206 -10q-52 110 -88 203h-35v-193h-180v563zM193 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z " />
  260. <glyph unicode="&#x138;" horiz-adv-x="559" d="M50 313q0 91 -15 178l175 19l20 -20v-207h30q51 99 105 227l152 -10l10 -20l-118 -181q52 -114 150 -299l-206 -10q-52 110 -88 203h-35v-193h-180v313z" />
  261. <glyph unicode="&#x139;" horiz-adv-x="520" d="M386 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550z" />
  262. <glyph unicode="&#x13a;" horiz-adv-x="295" d="M307 922l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM235 0h-180v563q0 91 -15 178l175 19l20 -20v-740z" />
  263. <glyph unicode="&#x13b;" horiz-adv-x="520" d="M510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550zM207 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  264. <glyph unicode="&#x13c;" horiz-adv-x="295" d="M235 0h-180v563q0 91 -15 178l175 19l20 -20v-740zM61 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  265. <glyph unicode="&#x13d;" horiz-adv-x="520" d="M489 786l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550z" />
  266. <glyph unicode="&#x13e;" horiz-adv-x="295" d="M457 786l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM235 0h-180v563q0 91 -15 178l175 19l20 -20v-740z" />
  267. <glyph unicode="&#x13f;" horiz-adv-x="520" d="M505 380q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q43 0 70.5 -28t27.5 -72zM510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550z" />
  268. <glyph unicode="&#x140;" horiz-adv-x="562" d="M235 0h-180v563q0 91 -15 178l175 19l20 -20v-740zM527 324q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q43 0 70.5 -28t27.5 -72z" />
  269. <glyph unicode="&#x141;" horiz-adv-x="520" d="M510 140v-140h-445v246l-78 -43l-40 74l118 65v161q0 110 -10 187l175 10l20 -20v-235l96 53l41 -74l-137 -76v-218z" />
  270. <glyph unicode="&#x142;" horiz-adv-x="295" d="M235 0h-180v328l-90 -50l-40 74l130 72v139q0 91 -15 178l175 19l20 -20v-216l89 49l41 -74l-130 -72v-427z" />
  271. <glyph unicode="&#x143;" horiz-adv-x="710" d="M499 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511q0 102 -10 179l185 7q111 -200 144 -256z" />
  272. <glyph unicode="&#x144;" horiz-adv-x="585" d="M389 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  273. <glyph unicode="&#x145;" horiz-adv-x="710" d="M384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511q0 102 -10 179l185 7q111 -200 144 -256zM277 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26 q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  274. <glyph unicode="&#x146;" horiz-adv-x="585" d="M235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374zM199 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  275. <glyph unicode="&#x147;" horiz-adv-x="710" d="M473 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511 q0 102 -10 179l185 7q111 -200 144 -256z" />
  276. <glyph unicode="&#x148;" horiz-adv-x="585" d="M409 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  277. <glyph unicode="&#x149;" horiz-adv-x="788" d="M35 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM438 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16 v-374z" />
  278. <glyph unicode="&#x14a;" horiz-adv-x="710" d="M439 -202l-51 62q34 44 50 78.5t20 80.5q-27 46 -70 123.5t-63 110.5q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511q0 102 -10 179l185 7q111 -200 144 -256q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-538q0 -135 -42 -209t-164 -133z" />
  279. <glyph unicode="&#x14b;" horiz-adv-x="585" d="M235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-290q0 -114 -33 -179.5t-124 -130.5l-70 60q47 108 47 250v257q0 73 -57 73q-25 0 -53 -16v-374z" />
  280. <glyph unicode="&#x14c;" horiz-adv-x="715" d="M211 799v96h298v-96h-298zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  281. <glyph unicode="&#x14d;" horiz-adv-x="568" d="M135 618v96h298v-96h-298zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  282. <glyph unicode="&#x14e;" horiz-adv-x="715" d="M448 923l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350 q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  283. <glyph unicode="&#x14f;" horiz-adv-x="568" d="M370 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39 t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  284. <glyph unicode="&#x150;" horiz-adv-x="715" d="M360 856l-10 -29q-100 -64 -239 -66l-12 41q101 69 179 142zM620 856l-10 -29q-100 -64 -239 -66l-12 41q101 69 179 142zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350 q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  285. <glyph unicode="&#x151;" horiz-adv-x="568" d="M274 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM467 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5 t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  286. <glyph unicode="&#x152;" horiz-adv-x="978" d="M953 140v-140h-516q-40 -10 -88 -10q-143 0 -231 92t-88 252q0 166 94 266t243 100q47 0 86 -10h474l20 -20l-4 -120l-310 8q40 -70 49 -159l211 5l-5 -127l-207 6q-12 -87 -53 -151zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5 t-35 -156.5z" />
  287. <glyph unicode="&#x153;" horiz-adv-x="849" d="M818 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-26 -17 -73.5 -29t-97.5 -12q-115 0 -189 68q-71 -68 -171 -68q-99 0 -166.5 66.5t-67.5 183.5q0 122 72.5 196t177.5 74q98 0 163 -68q70 68 164 68q91 0 149 -60.5t58 -153.5q0 -34 -1 -51zM220 255 q0 -82 15 -123.5t51 -41.5t49 39.5t13 115.5q0 83 -14.5 124t-50.5 41q-34 0 -48.5 -37t-14.5 -118zM597 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 20 2 32q0 85 -47 85z" />
  288. <glyph unicode="&#x154;" horiz-adv-x="627" d="M479 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM250 0h-185v511q0 116 -10 179h246q141 0 216 -59t75 -164q0 -69 -31 -117.5t-82 -74.5l148 -275l-215 -5q-52 114 -95 232h-67v-227zM288 560h-38v-208h38q62 0 88 27t26 77q0 51 -26.5 77.5t-87.5 26.5z" />
  289. <glyph unicode="&#x155;" horiz-adv-x="416" d="M311 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM235 0h-180v313q0 74 -20 168l170 29q24 -65 30 -120q22 58 50 89t71 31q32 0 50 -15l-12 -171q-35 8 -68 8q-55 0 -91 -20v-312z" />
  290. <glyph unicode="&#x156;" horiz-adv-x="627" d="M250 0h-185v511q0 116 -10 179h246q141 0 216 -59t75 -164q0 -69 -31 -117.5t-82 -74.5l148 -275l-215 -5q-52 114 -95 232h-67v-227zM288 560h-38v-208h38q62 0 88 27t26 77q0 51 -26.5 77.5t-87.5 26.5zM233 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61 t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  291. <glyph unicode="&#x157;" horiz-adv-x="416" d="M235 0h-180v313q0 74 -20 168l170 29q24 -65 30 -120q22 58 50 89t71 31q32 0 50 -15l-12 -171q-35 8 -68 8q-55 0 -91 -20v-312zM60 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  292. <glyph unicode="&#x158;" horiz-adv-x="627" d="M453 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM250 0h-185v511q0 116 -10 179h246q141 0 216 -59t75 -164q0 -69 -31 -117.5t-82 -74.5l148 -275l-215 -5q-52 114 -95 232h-67v-227zM288 560h-38v-208h38q62 0 88 27 t26 77q0 51 -26.5 77.5t-87.5 26.5z" />
  293. <glyph unicode="&#x159;" horiz-adv-x="416" d="M331 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM235 0h-180v313q0 74 -20 168l170 29q24 -65 30 -120q22 58 50 89t71 31q32 0 50 -15l-12 -171q-35 8 -68 8q-55 0 -91 -20v-312z" />
  294. <glyph unicode="&#x15a;" horiz-adv-x="550" d="M446 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17t-34 16.5q-64 33 -101 74.5t-37 112.5 q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117z" />
  295. <glyph unicode="&#x15b;" horiz-adv-x="452" d="M332 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30 q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116t162 43q83 0 157 -25z" />
  296. <glyph unicode="&#x15c;" horiz-adv-x="550" d="M153 762l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17 t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117z" />
  297. <glyph unicode="&#x15d;" horiz-adv-x="452" d="M119 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129 q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116t162 43q83 0 157 -25z" />
  298. <glyph unicode="&#x15e;" horiz-adv-x="550" d="M426 -151q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l23 77q-135 4 -190 39l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155 t202 55q101 0 165 -25l-20 -155q-74 40 -148 40q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117q0 -82 -50 -133t-137 -67l-17 -53q120 -15 120 -95z" />
  299. <glyph unicode="&#x15f;" horiz-adv-x="452" d="M370 -151q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l23 78q-96 7 -149 38l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116t162 43q83 0 157 -25l-10 -132 q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -62 -42.5 -102t-118.5 -51l-16 -50q120 -15 120 -95z" />
  300. <glyph unicode="&#x160;" horiz-adv-x="550" d="M420 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17 t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117z" />
  301. <glyph unicode="&#x161;" horiz-adv-x="452" d="M352 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129 q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116t162 43q83 0 157 -25z" />
  302. <glyph unicode="&#x162;" horiz-adv-x="585" d="M385 0h-57l-18 -56q120 -15 120 -95q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l25 87h-36v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554z" />
  303. <glyph unicode="&#x163;" horiz-adv-x="419" d="M356 -151q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l28 94q-95 44 -95 183v228l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20l-8 -70l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41l-15 -46 q120 -15 120 -95z" />
  304. <glyph unicode="&#x164;" horiz-adv-x="585" d="M426 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM385 0h-185v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554z" />
  305. <glyph unicode="&#x165;" horiz-adv-x="419" d="M467 786l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM391 410l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v228l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20z" />
  306. <glyph unicode="&#x166;" horiz-adv-x="585" d="M385 0h-185v300h-100v90h100v164q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-164h101v-90h-101v-300z" />
  307. <glyph unicode="&#x167;" horiz-adv-x="419" d="M395 248h-145v-57q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v58h-61v90h61v80l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20l-8 -70l-141 4v-76h145v-90z" />
  308. <glyph unicode="&#x168;" horiz-adv-x="680" d="M266 933q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8 v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  309. <glyph unicode="&#x169;" horiz-adv-x="580" d="M216 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130 l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  310. <glyph unicode="&#x16a;" horiz-adv-x="680" d="M191 799v96h298v-96h-298zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  311. <glyph unicode="&#x16b;" horiz-adv-x="580" d="M143 618v96h298v-96h-298zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  312. <glyph unicode="&#x16c;" horiz-adv-x="680" d="M428 923l69 9q-4 -74 -47.5 -120.5t-115.5 -46.5q-64 0 -106 40.5t-46 108.5l70 10q7 -22 31.5 -35.5t56.5 -13.5q33 0 57 13.5t31 34.5zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65 q-124 0 -202.5 65t-78.5 185v263z" />
  313. <glyph unicode="&#x16d;" horiz-adv-x="580" d="M378 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73 q-64 0 -103 39.5t-39 104.5v178z" />
  314. <glyph unicode="&#x16e;" horiz-adv-x="680" d="M484 881q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM301 864q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM55 503q0 105 -10 187l175 10l20 -20 v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  315. <glyph unicode="&#x16f;" horiz-adv-x="580" d="M436 691q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM253 674q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM55 312q0 91 -14 178l174 20l20 -20 v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  316. <glyph unicode="&#x170;" horiz-adv-x="680" d="M340 856l-10 -29q-100 -64 -239 -66l-12 41q101 69 179 142zM600 856l-10 -29q-100 -64 -239 -66l-12 41q101 69 179 142zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65 q-124 0 -202.5 65t-78.5 185v263z" />
  317. <glyph unicode="&#x171;" horiz-adv-x="580" d="M282 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM475 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73 q-64 0 -103 39.5t-39 104.5v178z" />
  318. <glyph unicode="&#x172;" horiz-adv-x="680" d="M55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -144 -120 -211q-52 -33 -79 -72.5t-27 -72.5q0 -46 41 -46q27 0 56 13l25 -59q-67 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 82 94 149h-14q-124 0 -202.5 65 t-78.5 185v263z" />
  319. <glyph unicode="&#x173;" horiz-adv-x="580" d="M55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 42 32.5 81.5t89.5 68.5l-12 -1q-18 32 -29 73h-6 q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  320. <glyph unicode="&#x174;" horiz-adv-x="960" d="M346 762l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM174 0l-171 681l198 19l70 -348q5 -26 10.5 -58.5l11 -65t7.5 -45.5q5 24 36 167l74 340l178 10l73 -348q11 -50 35 -169q20 118 31 171l72 346l148 -10l10 -19 l-171 -671h-205l-53 223q-9 39 -23.5 112.5t-21.5 104.5h-3q-31 -152 -48 -220l-53 -220h-205z" />
  321. <glyph unicode="&#x175;" horiz-adv-x="816" d="M312 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM121 0l-116 495l185 15l44 -253q18 -111 19 -117h3q2 19 9 60.5t9 56.5l37 243h229l39 -243q18 -111 19 -117h3q4 31 18 117l42 253l140 -10l10 -20l-116 -480h-230 l-35 204q-20 114 -23 156h-3q-3 -39 -23 -157l-35 -203h-225z" />
  322. <glyph unicode="&#x176;" horiz-adv-x="584" d="M181 762l-47 40q54 47 122 121l117 10q60 -71 122 -131l-47 -40q-42 15 -133 60q-96 -47 -134 -60zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  323. <glyph unicode="&#x177;" horiz-adv-x="507" d="M154 552l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137 l54 263l138 -10z" />
  324. <glyph unicode="&#x178;" horiz-adv-x="584" d="M526 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM285 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3 q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  325. <glyph unicode="&#x179;" horiz-adv-x="584" d="M451 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472z" />
  326. <glyph unicode="&#x17a;" horiz-adv-x="460" d="M339 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244z" />
  327. <glyph unicode="&#x17b;" horiz-adv-x="584" d="M395 860q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472z" />
  328. <glyph unicode="&#x17c;" horiz-adv-x="460" d="M341 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244z" />
  329. <glyph unicode="&#x17d;" horiz-adv-x="584" d="M425 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472z" />
  330. <glyph unicode="&#x17e;" horiz-adv-x="460" d="M359 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244z" />
  331. <glyph unicode="&#x18f;" horiz-adv-x="659" d="M35 384l26 25h368q-34 155 -195 155q-86 0 -166 -45l-3 135q26 16 88.5 31t130.5 15q160 0 252.5 -91.5t92.5 -256.5t-89.5 -263.5t-240.5 -98.5q-125 0 -197 74t-72 227q0 30 5 93zM215 268q0 -152 102 -152q122 0 122 196v4l-223 -17q-1 -11 -1 -31z" />
  332. <glyph unicode="&#x192;" horiz-adv-x="593" d="M150 293l-116 5l13 60l107 20h4l4 42q25 280 268 280q96 0 148 -34l-56 -136q-55 40 -97 40q-24 0 -40.5 -13.5t-24.5 -40.5t-11.5 -45.5t-6.5 -50.5l-4 -42h167l8 -18l-19 -67h-165l-26 -247q-2 -24 -4.5 -39t-8 -45t-14 -51.5t-21.5 -49.5t-32.5 -47.5t-44.5 -37.5 t-60 -27t-76 -9q-51 0 -108 16l23 137q54 -23 85 -23q72 0 81 108l28 315h-1z" />
  333. <glyph unicode="&#x19d;" horiz-adv-x="710" d="M44 -202l-51 62q72 104 72 280v371q0 102 -10 179l185 7q111 -200 144 -256q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-103q0 -135 -40 -209t-156 -133z" />
  334. <glyph unicode="&#x1cd;" horiz-adv-x="650" d="M458 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  335. <glyph unicode="&#x1ce;" horiz-adv-x="526" d="M382 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187 q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  336. <glyph unicode="&#x1cf;" horiz-adv-x="315" d="M283 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
  337. <glyph unicode="&#x1d0;" horiz-adv-x="295" d="M224 776l64 -24q-29 -74 -57 -176l-167 -10q-26 103 -57 186l64 24q39 -38 76 -100q40 64 77 100zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
  338. <glyph unicode="&#x1d1;" horiz-adv-x="715" d="M493 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5 q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  339. <glyph unicode="&#x1d2;" horiz-adv-x="568" d="M407 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114 q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  340. <glyph unicode="&#x1d3;" horiz-adv-x="680" d="M473 937l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z " />
  341. <glyph unicode="&#x1d4;" horiz-adv-x="580" d="M415 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5 t-39 104.5v178z" />
  342. <glyph unicode="&#x1d5;" horiz-adv-x="680" d="M191 1038v96h298v-96h-298zM551 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM310 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM55 503q0 105 -10 187l175 10l20 -20 v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  343. <glyph unicode="&#x1d6;" horiz-adv-x="580" d="M143 877v96h298v-96h-298zM267 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM55 312q0 91 -14 178l174 20l20 -20 v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  344. <glyph unicode="&#x1d7;" horiz-adv-x="680" d="M499 1092l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM551 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM310 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51z M55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  345. <glyph unicode="&#x1d8;" horiz-adv-x="580" d="M395 1025l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM267 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60z M55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  346. <glyph unicode="&#x1d9;" horiz-adv-x="680" d="M473 1176l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM551 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM310 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5 q0 37 30 64t72 27q33 0 56 -20t23 -51zM55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  347. <glyph unicode="&#x1da;" horiz-adv-x="580" d="M415 1043l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM267 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59 q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  348. <glyph unicode="&#x1db;" horiz-adv-x="680" d="M487 1000q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM551 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM310 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51z M55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263z" />
  349. <glyph unicode="&#x1dc;" horiz-adv-x="580" d="M335 825q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM267 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM55 312 q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178z" />
  350. <glyph unicode="&#x1e6;" horiz-adv-x="637" d="M480 947l47 -40q-54 -47 -122 -121l-117 -10q-60 71 -122 131l47 40q42 -15 133 -60q96 47 134 60zM582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5 q0 -97 45.5 -152t132.5 -55q19 0 30 1q-1 93 -15 192z" />
  351. <glyph unicode="&#x1e7;" horiz-adv-x="539" d="M382 784l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4q50 -38 50 -110 q0 -79 -63 -131t-163 -52q-19 0 -29 1q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5q39 0 65 19t26 52 q0 56 -79 65l-87 10q-44 5 -68.5 26.5t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  352. <glyph unicode="&#x1ea;" horiz-adv-x="715" d="M685 347q0 -111 -43.5 -191.5t-119.5 -123.5q-55 -38 -77.5 -70t-22.5 -66q0 -58 48 -58q22 0 49 13l25 -59q-65 -58 -145 -58q-52 0 -86 29t-34 78q0 40 26.5 79.5t71.5 70.5q-10 -1 -28 -1q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5 zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5z" />
  353. <glyph unicode="&#x1eb;" horiz-adv-x="568" d="M533 253q0 -147 -104 -219q-99 -74 -99 -140q0 -50 43 -50q25 0 54 13l25 -59q-67 -58 -145 -58q-51 0 -85.5 28t-34.5 71q0 76 106 151h-16q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114 q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118z" />
  354. <glyph unicode="&#x1f4;" horiz-adv-x="637" d="M506 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM582 333l20 -20l-3 -283q-104 -40 -219 -40q-168 0 -259 90t-91 245q0 167 100 271t266 104q111 0 194 -40l-30 -155q-75 50 -155 50q-84 0 -134.5 -56.5t-50.5 -161.5q0 -97 45.5 -152t132.5 -55q19 0 30 1 q-1 93 -15 192z" />
  355. <glyph unicode="&#x1f5;" horiz-adv-x="539" d="M362 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM93 50q0 57 66 97q-59 20 -93.5 62.5t-34.5 101.5q0 83 64.5 141t167.5 58q83 0 132 -35q16 39 49.5 58.5t73.5 19.5l21 -18l-5 -106h-102l-2 -4q50 -38 50 -110q0 -79 -63 -131t-163 -52q-19 0 -29 1 q-1 -4 -1 -12q0 -20 10.5 -26.5t33.5 -8.5l96 -6q76 -5 122 -40.5t46 -100.5q0 -88 -81.5 -143.5t-214.5 -55.5q-106 0 -171 35t-65 90q0 35 26.5 60t64.5 33l60 -25q-1 -4 -1 -12q0 -42 30.5 -71.5t80.5 -29.5q39 0 65 19t26 52q0 56 -79 65l-87 10q-44 5 -68.5 26.5 t-24.5 57.5zM310 322q0 103 -52 103q-57 0 -57 -105q0 -103 56 -103q53 0 53 105z" />
  356. <glyph unicode="&#x1fa;" horiz-adv-x="650" d="M484 1140l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM452 876q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM269 859q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5 q-26 0 -45.5 -18.5t-19.5 -43.5zM180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237z" />
  357. <glyph unicode="&#x1fb;" horiz-adv-x="526" d="M379 1058l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM403 691q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM220 674q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5 q-26 0 -45.5 -18.5t-19.5 -43.5zM304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145 q0 -25 14 -40t37 -15t39 12v123q-40 -5 -65 -25.5t-25 -54.5z" />
  358. <glyph unicode="&#x1fc;" horiz-adv-x="909" d="M688 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM180 0h-175l242 580q36 87 44 110h511l20 -20l-4 -120l-263 8l19 -159l220 5l-5 -127l-202 6l18 -153l279 10v-140h-449l-13 130h-191zM300 305l-18 -45h127l-4 44q-10 103 -13 238h-5q-56 -158 -87 -237z" />
  359. <glyph unicode="&#x1fd;" horiz-adv-x="790" d="M509 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM759 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -175 -41q-157 0 -229 96q-29 -44 -76 -70t-102 -26q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 12 -1.5 21t-8.5 23.5t-26 22.5t-48 8 q-72 0 -147 -40l-10 135q103 35 210 35q97 0 147 -38q63 38 139 38q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM538 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 20 2 32q0 85 -47 85zM200 145q0 -25 14 -40t37 -15q34 0 62 34q-21 43 -24 101q-39 -5 -64 -25.5t-25 -54.5z " />
  360. <glyph unicode="&#x1fe;" horiz-adv-x="715" d="M519 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM685 347q0 -168 -95 -262.5t-241 -94.5q-117 0 -198 63l-59 -68l-65 56l64 74q-61 88 -61 219q0 166 94 266t243 100q109 0 185 -55l52 60l66 -55l-56 -65q71 -93 71 -238zM220 350q0 -45 7 -79l222 255 q-33 39 -89 39q-70 0 -105 -58.5t-35 -156.5zM495 345q0 57 -8 94l-227 -260q37 -54 99 -54q136 0 136 220z" />
  361. <glyph unicode="&#x1ff;" horiz-adv-x="568" d="M387 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM533 253q0 -125 -74 -194t-182 -69q-81 0 -143 40l-55 -59l-59 56l57 61q-42 61 -42 152q0 123 73 196.5t184 73.5q82 0 140 -41l56 60l60 -55l-58 -63q43 -65 43 -158zM220 255v-13l115 123q-16 45 -52 45 q-34 0 -48.5 -37t-14.5 -118zM348 243v16l-115 -123q16 -46 53 -46q36 0 49 39t13 114z" />
  362. <glyph unicode="&#x218;" horiz-adv-x="550" d="M510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40 q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117zM202 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  363. <glyph unicode="&#x219;" horiz-adv-x="452" d="M410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116 t162 43q83 0 157 -25zM146 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  364. <glyph unicode="&#x21a;" horiz-adv-x="585" d="M385 0h-185v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554zM206 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  365. <glyph unicode="&#x21b;" horiz-adv-x="419" d="M391 410l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v228l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20zM132 -325q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5 q0 -100 -123 -208z" />
  366. <glyph unicode="&#x232;" horiz-adv-x="584" d="M166 799v96h298v-96h-298zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  367. <glyph unicode="&#x233;" horiz-adv-x="507" d="M115 618v96h298v-96h-298zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  368. <glyph unicode="&#x237;" horiz-adv-x="298" d="M70 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  369. <glyph unicode="&#x259;" horiz-adv-x="536" d="M31 255l15 15h268q-6 63 -31.5 86.5t-72.5 23.5q-76 0 -151 -40l-10 126q80 44 205 44q116 0 181.5 -58.5t65.5 -180.5q0 -130 -71.5 -205.5t-183.5 -75.5q-100 0 -158 59.5t-58 154.5q0 34 1 51zM205 175q0 -85 48 -85q58 0 63 123l-109 -6q-2 -14 -2 -32z" />
  370. <glyph unicode="&#x272;" horiz-adv-x="588" d="M70 -260l-70 60q58 95 58 245v268q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-324q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  371. <glyph unicode="&#x2c6;" horiz-adv-x="437" d="M102 553l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93z" />
  372. <glyph unicode="&#x2c7;" horiz-adv-x="437" d="M335 779l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93z" />
  373. <glyph unicode="&#x2d8;" horiz-adv-x="405" d="M291 765l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56z" />
  374. <glyph unicode="&#x2d9;" horiz-adv-x="300" d="M255 677q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  375. <glyph unicode="&#x2da;" horiz-adv-x="344" d="M299 678q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM116 661q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5z" />
  376. <glyph unicode="&#x2db;" horiz-adv-x="365" d="M308 0q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 52 48 98.5t131 75.5z" />
  377. <glyph unicode="&#x2dc;" horiz-adv-x="427" d="M152 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50z" />
  378. <glyph unicode="&#x2dd;" horiz-adv-x="443" d="M228 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM421 766l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198z" />
  379. <glyph unicode="&#x394;" horiz-adv-x="650" d="M222 690h210l213 -670l-2 -20h-636l-2 20zM204 134h207l-103 364z" />
  380. <glyph unicode="&#x3a9;" horiz-adv-x="805" d="M342 0h-292l-25 125l20 20l210 -56q-76 41 -123 123t-47 172q0 130 93 223t234 93q139 0 223.5 -91.5t84.5 -221.5q0 -94 -48 -176t-125 -123l213 57l20 -20l-25 -125h-292l-20 77q87 120 87 281q0 56 -11 100.5t-40 75.5t-74 31q-64 0 -97 -58t-33 -150q0 -136 87 -280z " />
  381. <glyph unicode="&#x3bc;" horiz-adv-x="580" d="M55 313q0 90 -14 177l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-64 -68 -145 -73h-13q17 -31 27 -70t16 -85.5t11 -65.5l-174 -19l-20 20v543z" />
  382. <glyph unicode="&#x3c0;" horiz-adv-x="645" d="M80 0v371l-85 -1l23 130l597 10l10 -20l-33 -110l-52 -1v-164q0 -40 7 -57.5t26 -17.5q17 0 37 10l-10 -150q-53 -10 -100 -10q-64 0 -102 42t-38 128v216l-100 -2v-374h-180z" />
  383. <glyph unicode="&#x1e0c;" horiz-adv-x="692" d="M662 351q0 -165 -102.5 -258t-258.5 -93h-236v511q0 116 -10 179h266q160 0 250.5 -90.5t90.5 -248.5zM311 560h-61v-430h67q155 0 155 212q0 96 -38.5 157t-122.5 61zM466 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5 q40 0 66 -24.5t26 -64.5z" />
  384. <glyph unicode="&#x1e0d;" horiz-adv-x="587" d="M361 56q-51 -66 -135 -66q-87 0 -139 63.5t-52 174.5q0 133 75.5 207.5t200.5 74.5q13 0 35 -2v55q0 91 -14 178l174 19l20 -20v-610q0 -67 21 -130l-152 -10q-12 18 -30 66h-4zM220 253q0 -73 22.5 -118t64.5 -45q22 0 39 11v319h-8q-118 0 -118 -167zM399 -155 q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  385. <glyph unicode="&#x1e24;" horiz-adv-x="715" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-273h215v96q0 110 -10 187l175 10l20 -20v-680h-185v277h-215v-277zM463 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  386. <glyph unicode="&#x1e25;" horiz-adv-x="580" d="M230 0h-180v563q0 91 -15 178l175 19l20 -20v-293q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374zM395 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  387. <glyph unicode="&#x1e44;" horiz-adv-x="710" d="M443 870q0 -45 -32 -74.5t-80 -29.5q-40 0 -67 23.5t-27 58.5q0 41 35 71t82 30q38 0 63.5 -22t25.5 -57zM384 441q55 -93 96 -195h3q-13 104 -13 200q0 140 -10 244l165 8l20 -20v-678h-175q-32 54 -79 138t-66 115q-59 99 -95 182h-3q13 -83 13 -192v-243h-175v511 q0 102 -10 179l185 7q111 -200 144 -256z" />
  388. <glyph unicode="&#x1e45;" horiz-adv-x="585" d="M391 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM235 0h-180v313q0 74 -20 168l170 29q12 -32 22 -70q73 70 158 70q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  389. <glyph unicode="&#x1e5a;" horiz-adv-x="627" d="M250 0h-185v511q0 116 -10 179h246q141 0 216 -59t75 -164q0 -69 -31 -117.5t-82 -74.5l148 -275l-215 -5q-52 114 -95 232h-67v-227zM288 560h-38v-208h38q62 0 88 27t26 77q0 51 -26.5 77.5t-87.5 26.5zM425 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26 t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  390. <glyph unicode="&#x1e5b;" horiz-adv-x="416" d="M235 0h-180v313q0 74 -20 168l170 29q24 -65 30 -120q22 58 50 89t71 31q32 0 50 -15l-12 -171q-35 8 -68 8q-55 0 -91 -20v-312zM252 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  391. <glyph unicode="&#x1e62;" horiz-adv-x="550" d="M510 197q0 -100 -73 -153.5t-195 -53.5q-58 0 -117 11t-85 28l10 151q36 -22 94 -36t100 -14q76 0 76 54q0 15 -6.5 28t-13.5 21.5t-25 19.5t-27.5 16.5t-34.5 17t-34 16.5q-64 33 -101 74.5t-37 112.5q0 100 77 155t202 55q101 0 165 -25l-20 -155q-74 40 -148 40 q-86 0 -86 -58q0 -16 6 -28.5t23.5 -25t28 -19t40.5 -20.5t39 -19q66 -33 104 -76t38 -117zM394 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  392. <glyph unicode="&#x1e63;" horiz-adv-x="452" d="M410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116 t162 43q83 0 157 -25zM338 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  393. <glyph unicode="&#x1e6c;" horiz-adv-x="585" d="M385 0h-185v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554zM398 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  394. <glyph unicode="&#x1e6d;" horiz-adv-x="419" d="M391 410l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v228l-65 2v60l70 20l45 131l110 8l22 -21l-2 -118h137l12 -20zM324 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5 q40 0 66 -24.5t26 -64.5z" />
  395. <glyph unicode="&#x1e80;" horiz-adv-x="960" d="M627 761q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM174 0l-171 681l198 19l70 -348q5 -26 10.5 -58.5l11 -65t7.5 -45.5q5 24 36 167l74 340l178 10l73 -348q11 -50 35 -169q20 118 31 171l72 346l148 -10l10 -19l-171 -671h-205l-53 223q-9 39 -23.5 112.5 t-21.5 104.5h-3q-31 -152 -48 -220l-53 -220h-205z" />
  396. <glyph unicode="&#x1e81;" horiz-adv-x="816" d="M465 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM121 0l-116 495l185 15l44 -253q18 -111 19 -117h3q2 19 9 60.5t9 56.5l37 243h229l39 -243q18 -111 19 -117h3q4 31 18 117l42 253l140 -10l10 -20l-116 -480h-230l-35 204q-20 114 -23 156h-3q-3 -39 -23 -157 l-35 -203h-225z" />
  397. <glyph unicode="&#x1e82;" horiz-adv-x="960" d="M639 853l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM174 0l-171 681l198 19l70 -348q5 -26 10.5 -58.5l11 -65t7.5 -45.5q5 24 36 167l74 340l178 10l73 -348q11 -50 35 -169q20 118 31 171l72 346l148 -10l10 -19l-171 -671h-205l-53 223q-9 39 -23.5 112.5 t-21.5 104.5h-3q-31 -152 -48 -220l-53 -220h-205z" />
  398. <glyph unicode="&#x1e83;" horiz-adv-x="816" d="M525 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM121 0l-116 495l185 15l44 -253q18 -111 19 -117h3q2 19 9 60.5t9 56.5l37 243h229l39 -243q18 -111 19 -117h3q4 31 18 117l42 253l140 -10l10 -20l-116 -480h-230l-35 204q-20 114 -23 156h-3q-3 -39 -23 -157 l-35 -203h-225z" />
  399. <glyph unicode="&#x1e84;" horiz-adv-x="960" d="M691 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM450 858q0 -39 -28.5 -65t-71.5 -26q-35 0 -58 20.5t-23 50.5q0 37 30 64t72 27q33 0 56 -20t23 -51zM174 0l-171 681l198 19l70 -348q5 -26 10.5 -58.5l11 -65 t7.5 -45.5q5 24 36 167l74 340l178 10l73 -348q11 -50 35 -169q20 118 31 171l72 346l148 -10l10 -19l-171 -671h-205l-53 223q-9 39 -23.5 112.5t-21.5 104.5h-3q-31 -152 -48 -220l-53 -220h-205z" />
  400. <glyph unicode="&#x1e85;" horiz-adv-x="816" d="M397 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM636 676q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM121 0l-116 495l185 15l44 -253q18 -111 19 -117h3q2 19 9 60.5 t9 56.5l37 243h229l39 -243q18 -111 19 -117h3q4 31 18 117l42 253l140 -10l10 -20l-116 -480h-230l-35 204q-20 114 -23 156h-3q-3 -39 -23 -157l-35 -203h-225z" />
  401. <glyph unicode="&#x1e92;" horiz-adv-x="584" d="M60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472zM397 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  402. <glyph unicode="&#x1e93;" horiz-adv-x="460" d="M23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244zM335 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  403. <glyph unicode="&#x1e9e;" horiz-adv-x="710" d="M67 187v263q0 117 76.5 183.5t204.5 66.5q107 0 179.5 -47t89.5 -135l-124 -137q84 -36 130.5 -85t46.5 -123q0 -89 -60 -136t-153 -47q-90 0 -148 29v151q57 -40 113 -40q58 0 58 47q0 30 -32 57t-139 82v39l117 153q-20 53 -84 53q-42 0 -66 -32.5t-24 -94.5v-316 q0 -38 -9.5 -76t-28.5 -52l-169 10q22 65 22 187z" />
  404. <glyph unicode="&#x1ea0;" horiz-adv-x="650" d="M180 0h-175l166 580q20 67 27 110l224 9l30 -25l193 -674h-185l-35 130h-210zM262 305l-12 -45h140l-12 44q-38 145 -55 238h-5q-25 -124 -56 -237zM430 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z " />
  405. <glyph unicode="&#x1ea1;" horiz-adv-x="526" d="M304 58q-21 -31 -59.5 -49.5t-85.5 -18.5q-60 0 -97 31.5t-37 91.5q0 157 265 164v28q0 75 -80 75q-76 0 -151 -40l-10 135q103 35 208 35q213 0 213 -187q0 -35 -2.5 -96t-2.5 -97q0 -69 21 -130l-148 -10q-16 26 -29 68h-5zM200 145q0 -25 14 -40t37 -15t39 12v123 q-40 -5 -65 -25.5t-25 -54.5zM367 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  406. <glyph unicode="&#x1eb8;" horiz-adv-x="555" d="M530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154zM423 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  407. <glyph unicode="&#x1eb9;" horiz-adv-x="536" d="M505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81zM395 -155 q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  408. <glyph unicode="&#x1ebc;" horiz-adv-x="555" d="M225 943q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM530 140v-140h-465v511q0 116 -10 179h449l20 -20l-4 -120l-270 10v-161l220 5l-5 -127l-215 7v-154z " />
  409. <glyph unicode="&#x1ebd;" horiz-adv-x="536" d="M192 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM505 245l-15 -15h-266q19 -115 136 -115q62 0 117 29l10 -113q-66 -41 -177 -41q-126 0 -200.5 66 t-74.5 186q0 119 72.5 193.5t183.5 74.5q99 0 157 -59.5t58 -154.5q0 -34 -1 -51zM284 410q-31 0 -47.5 -34.5t-16.5 -88.5l109 6q2 18 2 36q0 81 -47 81z" />
  410. <glyph unicode="&#x1eca;" horiz-adv-x="315" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-680zM264 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  411. <glyph unicode="&#x1ecb;" horiz-adv-x="295" d="M253 675q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180zM257 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5 q40 0 66 -24.5t26 -64.5z" />
  412. <glyph unicode="&#x1ecc;" horiz-adv-x="715" d="M685 347q0 -168 -95 -262.5t-241 -94.5q-143 0 -231 92t-88 252q0 166 94 266t243 100q147 0 232.5 -96.5t85.5 -256.5zM220 350q0 -98 34.5 -161.5t104.5 -63.5q136 0 136 220t-135 220q-70 0 -105 -58.5t-35 -156.5zM473 -155q0 -46 -33.5 -78.5t-80.5 -32.5 q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  413. <glyph unicode="&#x1ecd;" horiz-adv-x="568" d="M533 253q0 -125 -74 -194t-182 -69q-106 0 -174 66t-68 184q0 123 73 196.5t184 73.5q109 0 175 -70t66 -187zM220 255q0 -82 15 -123.5t51 -41.5t49 39t13 114q0 85 -14.5 126t-50.5 41q-34 0 -48.5 -37t-14.5 -118zM389 -155q0 -46 -33.5 -78.5t-80.5 -32.5 q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  414. <glyph unicode="&#x1ee4;" horiz-adv-x="680" d="M55 503q0 105 -10 187l175 10l20 -20v-424q0 -127 106 -127q104 0 104 127v287q0 80 -10 147l185 8v-458q0 -120 -82 -185t-207 -65q-124 0 -202.5 65t-78.5 185v263zM445 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5 q40 0 66 -24.5t26 -64.5z" />
  415. <glyph unicode="&#x1ee5;" horiz-adv-x="580" d="M55 312q0 91 -14 178l174 20l20 -20v-299q0 -68 54 -68q26 0 51 13v364l180 10v-380q0 -62 16 -130l-148 -10q-18 32 -29 73h-6q-68 -73 -156 -73q-64 0 -103 39.5t-39 104.5v178zM397 -155q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5 t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  416. <glyph unicode="&#x1ef2;" horiz-adv-x="584" d="M462 761q-169 2 -296 63l-10 29l107 91q93 -74 211 -142zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10l10 -19l-197 -455v-216h-185v216z" />
  417. <glyph unicode="&#x1ef3;" horiz-adv-x="507" d="M307 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  418. <glyph unicode="&#x1ef8;" horiz-adv-x="584" d="M241 933q35 0 83.5 -28.5t72.5 -28.5q19 0 30.5 10t26.5 33l44 -7q0 -62 -27 -106.5t-79 -44.5q-32 0 -86.5 28.5t-75.5 28.5q-30 0 -55 -43l-44 7q0 63 26 107t84 44zM199 216l-196 465l198 19l61 -194q42 -130 47 -151h3q5 16 23.5 70.5t26.5 78.5l61 196l148 -10 l10 -19l-197 -455v-216h-185v216z" />
  419. <glyph unicode="&#x1ef9;" horiz-adv-x="507" d="M188 762q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM502 480l-125 -427q-16 -56 -31.5 -95.5t-42.5 -83.5t-59.5 -71t-83.5 -45t-114 -18l-25 150 q166 0 212 110h-85l-143 495l190 15l55 -263q18 -84 22 -137h3q3 29 25 137l54 263l138 -10z" />
  420. <glyph unicode="&#x2007;" />
  421. <glyph unicode="&#x2013;" horiz-adv-x="595" d="M30 251v50h535v-50h-535z" />
  422. <glyph unicode="&#x2014;" horiz-adv-x="924" d="M30 251v50h864v-50h-864z" />
  423. <glyph unicode="&#x2018;" horiz-adv-x="298" d="M263 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5t114 127.5z" />
  424. <glyph unicode="&#x2019;" horiz-adv-x="298" d="M35 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  425. <glyph unicode="&#x201a;" horiz-adv-x="298" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  426. <glyph unicode="&#x201c;" horiz-adv-x="568" d="M263 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5t114 127.5zM533 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5 t114 127.5z" />
  427. <glyph unicode="&#x201d;" horiz-adv-x="568" d="M305 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM35 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  428. <glyph unicode="&#x201e;" horiz-adv-x="562" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM299 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  429. <glyph unicode="&#x2020;" horiz-adv-x="506" d="M308 14l-8 -14h-94l-8 14l-43 134l55 294l-159 -22l-4 3q-7 54 -7 117l14 8l153 -22l-42 163l3 4q77 7 165 7l8 -8l-42 -166l156 22l4 -3q7 -72 7 -117l-14 -8l-156 22l55 -294z" />
  430. <glyph unicode="&#x2021;" horiz-adv-x="506" d="M167 -10l-8 8l51 169l-156 -35l-14 8q0 83 7 137l4 3l161 -35q-20 80 -20 100t20 100l-161 -35l-4 3q-7 54 -7 137l14 8l156 -35l-51 166l3 4q82 7 177 7l8 -8l-51 -169l159 35l4 -3q7 -72 7 -137l-14 -8l-158 35q20 -80 20 -100t-20 -100l158 35l14 -8q0 -65 -7 -137 l-4 -3l-159 35l51 -166l-3 -4q-82 -7 -177 -7z" />
  431. <glyph unicode="&#x2022;" horiz-adv-x="524" d="M256 88q-66 0 -110 40.5t-46 99.5q-3 69 50.5 121t126.5 52q62 0 103.5 -39t43.5 -101q3 -72 -46 -122.5t-122 -50.5z" />
  432. <glyph unicode="&#x2026;" horiz-adv-x="848" d="M254 93q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -27.5t28 -72.5zM528 93q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -27.5t28 -72.5zM802 93q0 -44 -30.5 -73.5t-75.5 -29.5 t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -27.5t28 -72.5z" />
  433. <glyph unicode="&#x2030;" horiz-adv-x="1440" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM1405 127q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32 t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM1149 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  434. <glyph unicode="&#x2039;" horiz-adv-x="295" d="M37 269v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  435. <glyph unicode="&#x203a;" horiz-adv-x="295" d="M258 269q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  436. <glyph unicode="&#x2044;" horiz-adv-x="630" d="M560 700l-425 -710h-65l424 710h66z" />
  437. <glyph unicode="&#x2070;" horiz-adv-x="454" d="M419 557q0 -101 -57 -157t-140 -56q-82 0 -134.5 54t-52.5 150q0 99 56 158.5t142 59.5q84 0 135 -57t51 -152zM173 558q0 -72 11.5 -106.5t44.5 -34.5q18 0 29 9t16 30.5t6 41t1 54.5q0 74 -11 107t-45 33q-31 0 -41.5 -30.5t-10.5 -103.5z" />
  438. <glyph unicode="&#x2074;" horiz-adv-x="437" d="M35 512l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM142 524v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  439. <glyph unicode="&#x2075;" horiz-adv-x="414" d="M60 358l11 84q42 -14 94 -14q67 0 67 50q0 46 -58 46q-38 0 -86 -18l-18 10v242h177q64 0 104 6l-7 -101h-167v-60q25 5 51 5q63 0 102 -32t39 -89q0 -69 -56 -106t-144 -37q-61 0 -109 14z" />
  440. <glyph unicode="&#x2076;" horiz-adv-x="419" d="M214 344q-77 0 -128 45t-51 134q0 103 69.5 173t187.5 70q36 0 56 -6l-11 -88q-26 6 -46 6q-38 0 -72 -22.5t-44 -64.5h2q40 7 69 7q61 0 97 -31t36 -86q0 -64 -47 -100.5t-118 -36.5zM203 525q-13 0 -31 -6q-1 -61 5.5 -81.5t27.5 -20.5q37 0 37 53q0 55 -39 55z" />
  441. <glyph unicode="&#x2077;" horiz-adv-x="369" d="M30 651l9 107h304l16 -14v-67q-80 -73 -114.5 -150t-36.5 -175h-138q6 91 51.5 173.5t117.5 135.5v2h-66q-88 0 -143 -12z" />
  442. <glyph unicode="&#x2078;" horiz-adv-x="441" d="M214 344q-81 0 -127.5 30.5t-46.5 80.5q0 41 29.5 70t69.5 37v2q-23 13 -37 23t-27.5 29.5t-13.5 42.5q0 46 45 76.5t119 30.5q77 0 116 -31.5t39 -69.5q0 -27 -20.5 -52.5t-54.5 -40.5v-2q96 -38 96 -104q0 -49 -49 -85.5t-138 -36.5zM221 699q-16 0 -27 -9t-11 -25 q0 -34 49 -55q26 26 26 55q0 15 -10.5 24.5t-26.5 9.5zM210 514q-44 -18 -44 -58q0 -20 14 -33t39 -13q23 0 39.5 11t16.5 32q0 39 -65 61z" />
  443. <glyph unicode="&#x2079;" horiz-adv-x="419" d="M40 625q0 66 47.5 103.5t120.5 37.5q76 0 126 -44t50 -133q0 -101 -65 -173t-185 -72q-31 0 -51 5l-2 86q34 -4 48 -4q51 0 78.5 19t37.5 60q-35 -8 -63 -8q-65 0 -103.5 32t-38.5 91zM177 632q0 -58 44 -58q11 0 24 3q-1 58 -8 83t-28 25q-32 0 -32 -53z" />
  444. <glyph unicode="&#x207f;" horiz-adv-x="488" d="M198 290h-150v243q0 55 -16 132l141 23q14 -36 18 -55q61 55 130 55q53 0 84 -33.5t31 -91.5v-273h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  445. <glyph unicode="&#x2080;" horiz-adv-x="454" d="M419 133q0 -101 -57 -157t-140 -56q-82 0 -134.5 54t-52.5 150q0 99 56 158.5t142 59.5q84 0 135 -57t51 -152zM173 134q0 -72 11.5 -106.5t44.5 -34.5q18 0 29 9t16 30.5t6 41t1 54.5q0 74 -11 107t-45 33q-31 0 -41.5 -30.5t-10.5 -103.5z" />
  446. <glyph unicode="&#x2081;" horiz-adv-x="306" d="M109 224h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
  447. <glyph unicode="&#x2082;" horiz-adv-x="389" d="M55 -70l-15 83q45 20 105.5 78t60.5 109q0 25 -13.5 40.5t-38.5 15.5q-44 0 -101 -41l-12 96q70 33 146 33q69 0 113 -32t44 -83q0 -56 -53 -113.5t-124 -91.5h62q54 0 105 6l-7 -100h-272z" />
  448. <glyph unicode="&#x2083;" horiz-adv-x="391" d="M43 310q66 32 143 32q62 0 102 -26.5t40 -66.5q0 -31 -23.5 -59t-61.5 -40q49 -9 78.5 -37.5t29.5 -67.5q0 -55 -55 -90t-141 -35q-66 0 -115 14l12 80q42 -14 96 -14q29 0 47.5 10.5t18.5 30.5q0 40 -85 40q-16 0 -58 -4v80q47 2 83.5 17.5t36.5 45.5q0 34 -46 34 q-47 0 -97 -25z" />
  449. <glyph unicode="&#x2084;" horiz-adv-x="437" d="M35 90l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM142 102v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  450. <glyph unicode="&#x2085;" horiz-adv-x="414" d="M60 -66l11 84q42 -14 94 -14q67 0 67 50q0 46 -58 46q-38 0 -86 -18l-18 10v242h177q64 0 104 6l-7 -101h-167v-60q25 5 51 5q63 0 102 -32t39 -89q0 -69 -56 -106t-144 -37q-61 0 -109 14z" />
  451. <glyph unicode="&#x2086;" horiz-adv-x="419" d="M214 -80q-77 0 -128 45t-51 134q0 103 69.5 173t187.5 70q36 0 56 -6l-11 -88q-26 6 -46 6q-38 0 -72 -22.5t-44 -64.5h2q40 7 69 7q61 0 97 -31t36 -86q0 -64 -47 -100.5t-118 -36.5zM203 101q-13 0 -31 -6q-1 -61 5.5 -81.5t27.5 -20.5q37 0 37 53q0 55 -39 55z" />
  452. <glyph unicode="&#x2087;" horiz-adv-x="369" d="M30 229l9 107h304l16 -14v-67q-80 -73 -114.5 -150t-36.5 -175h-138q6 91 51.5 173.5t117.5 135.5v2h-66q-88 0 -143 -12z" />
  453. <glyph unicode="&#x2088;" horiz-adv-x="441" d="M214 -80q-81 0 -127.5 30.5t-46.5 80.5q0 41 29.5 70t69.5 37v2q-23 13 -37 23t-27.5 29.5t-13.5 42.5q0 46 45 76.5t119 30.5q77 0 116 -31.5t39 -69.5q0 -27 -20.5 -52.5t-54.5 -40.5v-2q96 -38 96 -104q0 -49 -49 -85.5t-138 -36.5zM221 275q-16 0 -27 -9t-11 -25 q0 -34 49 -55q26 26 26 55q0 15 -10.5 24.5t-26.5 9.5zM210 90q-44 -18 -44 -58q0 -20 14 -33t39 -13q23 0 39.5 11t16.5 32q0 39 -65 61z" />
  454. <glyph unicode="&#x2089;" horiz-adv-x="419" d="M40 201q0 66 47.5 103.5t120.5 37.5q76 0 126 -44t50 -133q0 -101 -65 -173t-185 -72q-31 0 -51 5l-2 86q34 -4 48 -4q51 0 78.5 19t37.5 60q-35 -8 -63 -8q-65 0 -103.5 32t-38.5 91zM177 208q0 -58 44 -58q11 0 24 3q-1 58 -8 83t-28 25q-32 0 -32 -53z" />
  455. <glyph unicode="&#x20ac;" horiz-adv-x="570" d="M10 247l5 60h55q-1 8 -1 24t2 46h-50l5 60h54q26 122 109.5 192.5t202.5 70.5q96 0 159 -40l-34 -155q-74 45 -125 45q-44 0 -76 -30t-46 -83h173l-5 -60h-178q-1 -11 -1 -34q0 -14 2 -36h171l-5 -60h-155q33 -107 136 -107q66 0 126 38l21 -148q-74 -40 -170 -40 q-128 0 -208.5 67.5t-100.5 189.5h-66z" />
  456. <glyph unicode="&#x2122;" horiz-adv-x="569" d="M517 692l10 -7l22 -225h-72l-8 78q-3 33 -4 88h-2q-2 -38 -15 -88l-18 -78h-81l-18 78q-12 54 -15 89h-1q-2 -62 -5 -89l-8 -78h-60l23 229l102 3l10 -42q11 -50 19 -123h1q7 83 18 123l10 39zM161 460h-74v175q-21 0 -67 -2l4 56h201l4 -56q-48 2 -68 2v-175z" />
  457. <glyph unicode="&#x2202;" horiz-adv-x="713" d="M340 760q81 0 143 -30t98 -82t54 -116.5t18 -139.5q0 -72 -16.5 -138.5t-52.5 -128t-103.5 -98.5t-159.5 -37q-122 0 -191.5 61.5t-69.5 164.5q0 112 80.5 186.5t220.5 74.5q53 0 97 -13q-13 78 -54.5 119.5t-108.5 41.5q-89 0 -162 -63l-57 113q47 36 117.5 60.5 t146.5 24.5zM250 221q0 -46 22.5 -70.5t61.5 -24.5q57 0 91 52t38 151q-39 12 -77 12q-68 0 -102 -33t-34 -87z" />
  458. <glyph unicode="&#x220f;" horiz-adv-x="769" d="M729 670l-5 -114h-70v-696h-180v696h-179v-696h-180v696h-70l-5 134h669z" />
  459. <glyph unicode="&#x2211;" horiz-adv-x="600" d="M35 -20l219 295l-219 295l30 120h495l20 -20l-4 -120l-346 9l195 -262v-44l-194 -262l349 9v-140h-515z" />
  460. <glyph unicode="&#x2212;" d="M530 303h-450v85q170 5 452 5l8 -8z" />
  461. <glyph unicode="&#x221a;" horiz-adv-x="656" d="M636 731l-208 -731h-189l-126 366h-108v134h237l101 -371l135 631l148 -10z" />
  462. <glyph unicode="&#x221e;" horiz-adv-x="840" d="M780 271q0 -85 -51 -140.5t-133 -55.5q-57 0 -97.5 27t-75.5 75q-75 -102 -186 -102q-78 0 -127.5 54.5t-49.5 139.5t51 140.5t133 55.5q101 0 174 -100q75 100 185 100q78 0 127.5 -54.5t49.5 -139.5zM587 375q-36 0 -69 -24t-54 -61l2 -4q31 -59 62 -90t71 -31 q38 0 62 29t24 78q0 46 -27.5 74.5t-70.5 28.5zM155 272q0 -49 27 -77.5t71 -28.5q35 0 69.5 25.5t53.5 58.5l-2 4q-26 44 -41.5 65t-39.5 38.5t-52 17.5q-38 0 -62 -27.5t-24 -75.5z" />
  463. <glyph unicode="&#x222b;" horiz-adv-x="432" d="M149 -145q19 0 26.5 11.5t7.5 41.5q0 36 -48 328q-41 251 -41 312q0 106 54 159t149 53q73 0 137 -25l-10 -132q-72 42 -125 42q-19 0 -27 -11t-8 -38q0 -21 49 -332q5 -30 13 -80t11.5 -73.5t8 -55.5t6 -54.5t1.5 -43.5q0 -111 -53.5 -164t-149.5 -53q-73 0 -137 25 l10 132q72 -42 126 -42z" />
  464. <glyph unicode="&#x2248;" d="M441 312q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22zM441 88q-25 0 -139 25t-129 25q-10 0 -49 -47q-3 -3 -4.5 -5.5 t-3.5 -4.5l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22z" />
  465. <glyph unicode="&#x2260;" d="M147 125l37 78h-104v85q43 1 146 3l54 112h-200v85q53 2 242 4l53 110l11 3l73 -40l-35 -72h108l8 -8l-10 -82h-149l-53 -111q79 1 204 1l8 -8l-10 -82h-245l-55 -115l-10 -3z" />
  466. <glyph unicode="&#x2264;" d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
  467. <glyph unicode="&#x2265;" d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
  468. <glyph unicode="&#x25ca;" horiz-adv-x="643" d="M60 319v46l209 325l97 10l217 -336v-45l-213 -319l-96 -10zM320 62h1l174 280l-175 287h-1l-171 -288z" />
  469. <glyph unicode="&#x25fc;" horiz-adv-x="510" d="M0 510h510v-510h-510v510z" />
  470. <glyph unicode="&#xfb00;" horiz-adv-x="702" d="M265 0h-180v395l-70 5v60l70 20q-3 32 -3 55q0 98 65 151.5t174 53.5q77 0 141 -26q61 46 163 46q92 0 147 -34l-35 -131q-61 35 -107 35q-32 0 -49 -18t-17 -51q0 -21 3 -81h123l12 -18l-5 -72l-127 4v-394h-180v395h-125v-395zM259 534q0 -6 3 -54h128q-3 37 -3 67 q0 34 7 61q-29 17 -65 17q-70 0 -70 -91z" />
  471. <glyph unicode="&#xfb01;" horiz-adv-x="630" d="M265 0h-180v395l-70 5v60l70 20q-3 38 -3 63q0 105 62.5 161t170.5 56q137 0 220 -70l-82 -106q-66 46 -127 46q-35 0 -51 -19.5t-16 -60.5q0 -39 3 -70h113l175 30l20 -20v-490h-180v313q0 39 -3 77l-122 4v-394z" />
  472. <glyph unicode="&#xfb02;" horiz-adv-x="630" d="M265 0h-180v395l-70 5v60l70 20q-3 38 -3 67q0 102 63 157.5t175 55.5q56 0 104 -14l126 14l20 -20v-740h-180v390l-125 4v-394zM259 561q0 -21 3 -81h128v83q0 37 -1 55q-36 12 -64 12q-32 0 -49 -18t-17 -51z" />
  473. <glyph unicode="&#xfb03;" horiz-adv-x="935" d="M265 0h-180v395l-70 5v60l70 20q-3 32 -3 55q0 98 65 151.5t174 53.5q77 0 141 -26q60 46 158 46q137 0 220 -70l-82 -106q-66 46 -127 46q-35 0 -51 -19.5t-16 -60.5q0 -39 3 -70h113l175 30l20 -20v-490h-180v313q0 39 -3 77l-122 4v-394h-180v395h-125v-395zM259 534 q0 -6 3 -54h128q-3 37 -3 63q0 30 4 51q-29 16 -62 16q-70 0 -70 -76z" />
  474. <glyph unicode="&#xfb04;" horiz-adv-x="935" d="M265 0h-180v395l-70 5v60l70 20q-3 32 -3 55q0 98 65 151.5t174 53.5q77 0 141 -26q61 46 163 46q56 0 104 -14l126 14l20 -20v-740h-180v390l-125 4v-394h-180v395h-125v-395zM564 561q0 -21 3 -81h128v83q0 37 -1 55q-36 12 -64 12q-32 0 -49 -18t-17 -51zM259 534 q0 -6 3 -54h128q-3 37 -3 67q0 28 4 47q-29 16 -62 16q-70 0 -70 -76z" />
  475. <glyph unicode="&#xfb06;" horiz-adv-x="856" d="M410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116 t162 43q34 0 67 -4q-14 33 -14 71q0 77 55.5 125t145.5 48q87 0 139 -46t52 -124q0 -38 -11 -80h137l12 -20l-8 -70l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v229l-55 1v60l60 20q10 50 10 64q0 35 -16 57t-44 22 q-30 0 -50.5 -23.5t-20.5 -59.5q0 -38 19 -75z" />
  476. <glyph horiz-adv-x="315" d="M317 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM50 -225l-57 75q72 108 72 290v363q0 91 -15 178l181 19l19 -19v-541q0 -140 -41 -218.5t-159 -146.5z" />
  477. <glyph horiz-adv-x="440" d="M252 -25q-38 -53 -118 -53q-49 0 -79.5 24.5t-30.5 71.5q0 123 217 128v20q0 57 -65 57q-62 0 -124 -30l-8 108q85 27 171 27q176 0 176 -148q0 -27 -2 -74t-2 -75q0 -56 17 -101l-123 -8q-13 20 -24 53h-5zM170 44q0 -19 11 -30.5t30 -11.5q16 0 30 8v95q-31 -3 -51 -19 t-20 -42z" />
  478. <glyph horiz-adv-x="480" d="M448 129q0 -99 -50 -153t-143 -54q-50 0 -92 12l-119 -12v446q0 68 -12 140l145 15l17 -16v-211q44 32 98 32q73 0 114.5 -54t41.5 -145zM226 240q-17 0 -32 -6v-236q12 -4 27 -4q73 0 73 127q0 63 -16.5 91t-51.5 28z" />
  479. <glyph horiz-adv-x="412" d="M388 295l-32 -108q-51 36 -98 36q-33 0 -52.5 -24.5t-19.5 -65.5q0 -52 27 -81t77 -29q34 0 81 22l8 -91q-49 -32 -131 -32q-98 1 -157 55.5t-59 143.5q0 91 61.5 149t158.5 58q80 0 136 -33z" />
  480. <glyph horiz-adv-x="490" d="M299 -27q-42 -51 -111 -51q-71 0 -113.5 49.5t-42.5 135.5q0 104 62 162.5t165 58.5q19 0 28 -1v41q0 67 -12 140l145 15l17 -16v-476q0 -53 17 -101l-127 -8q-12 18 -25 52h-3v-1zM186 128q0 -57 18 -91.5t52 -34.5q17 0 31 8v246h-5q-96 0 -96 -128z" />
  481. <glyph horiz-adv-x="448" d="M419 121l-12 -12h-217q17 -86 110 -86q52 0 96 22l8 -91q-52 -32 -145 -32q-104 0 -165.5 51.5t-61.5 145.5q0 92 60 150.5t151 58.5q81 0 129 -47t48 -121q0 -26 -1 -39zM237 248q-25 0 -38 -26.5t-13 -67.5l87 5q0 3 0.5 12t0.5 16q0 61 -37 61z" />
  482. <glyph horiz-adv-x="360" d="M223 -70h-150v306l-57 4v48l57 16q-2 38 -2 51q0 81 52 124.5t145 43.5q76 0 121 -27l-29 -105q-49 27 -88 27q-54 0 -54 -51q0 -18 3 -63h100l10 -15l-4 -57l-104 3v-305z" />
  483. <glyph horiz-adv-x="451" d="M80 -32q0 45 55 77q-48 15 -77 48t-29 79q0 65 53 110.5t137 45.5q68 0 110 -27q27 62 101 62l18 -15l-4 -84h-83l-3 -4q41 -29 41 -82q0 -64 -51.5 -104.5t-133.5 -40.5q-17 0 -25 1v-9q0 -15 8.5 -20t27.5 -6l78 -5q63 -4 101 -31t38 -76q0 -66 -66.5 -109t-178.5 -43 q-87 0 -140.5 25t-53.5 66q0 26 22 45.5t54 25.5l50 -20q-1 -3 -1 -8q0 -29 25 -49.5t66 -20.5q31 0 52 13.5t21 36.5q0 39 -65 45l-71 8q-76 10 -76 66zM258 181q0 79 -42 79q-46 0 -46 -81q0 -79 45 -79q43 0 43 81z" />
  484. <glyph horiz-adv-x="484" d="M194 -70h-150v438q0 72 -12 140l145 15l17 -16v-228q58 49 123 49q53 0 84 -33.5t31 -91.5v-273h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  485. <glyph horiz-adv-x="251" d="M213 459q0 -37 -27.5 -62.5t-67.5 -25.5q-35 0 -57.5 20.5t-22.5 50.5q0 36 29.5 62t69.5 26q33 0 54.5 -19.5t21.5 -51.5zM48 -70v243q0 72 -12 140l146 15l16 -16v-382h-150z" />
  486. <glyph horiz-adv-x="253" d="M212 459q0 -37 -27.5 -62.5t-67.5 -25.5q-35 0 -57 20.5t-22 50.5q0 36 29 62t69 26q33 0 54.5 -19.5t21.5 -51.5zM70 -267l-58 49q39 86 39 197v194q0 66 -13 140l146 15l17 -16v-333q0 -91 -27 -142.5t-104 -103.5z" />
  487. <glyph horiz-adv-x="468" d="M44 368q0 72 -12 140l145 15l17 -16v-356h23q43 79 86 177l126 -8l9 -16l-96 -140q32 -68 122 -234l-172 -8q-47 98 -70 157h-28v-149h-150v438z" />
  488. <glyph horiz-adv-x="251" d="M198 -70h-150v438q0 72 -12 140l146 15l16 -16v-577z" />
  489. <glyph horiz-adv-x="726" d="M198 -70h-150v243q0 55 -16 132l141 23q14 -36 18 -55q61 55 130 55q74 0 102 -61q63 61 136 61q53 0 84 -34t31 -92v-272h-150v246q0 56 -46 56q-19 0 -43 -12q1 -6 1 -18v-272h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  490. <glyph horiz-adv-x="488" d="M198 -70h-150v243q0 55 -16 132l141 23q14 -36 18 -55q61 55 130 55q53 0 84 -33.5t31 -91.5v-273h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  491. <glyph horiz-adv-x="474" d="M442 127q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM186 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  492. <glyph horiz-adv-x="485" d="M48 -249v422q0 52 -16 132l141 23q9 -19 15 -41q46 41 111 41q72 0 113 -54.5t41 -144.5q0 -100 -50 -153.5t-145 -53.5q-27 0 -60 5v-37q0 -72 12 -140l-145 -15zM231 240q-19 0 -33 -7v-235q12 -4 27 -4q39 0 56.5 31t17.5 96q0 63 -16.5 91t-51.5 28z" />
  493. <glyph horiz-adv-x="489" d="M287 -249v210q-40 -39 -98 -39q-71 0 -114 53t-43 139q0 98 57 156t151 58q40 0 88 -11l109 11v-438q0 -70 11 -140l-145 -15zM186 125q0 -57 18 -90t51 -33q17 0 32 9v245h-6q-95 0 -95 -131z" />
  494. <glyph horiz-adv-x="350" d="M198 -70h-150v243q0 55 -16 132l141 23q20 -50 25 -94v-1q18 46 40.5 70.5t58.5 24.5q26 0 41 -12l-10 -138q-32 7 -56 7q-50 0 -74 -15v-240z" />
  495. <glyph horiz-adv-x="379" d="M341 309l-8 -106q-69 33 -122 33q-42 0 -42 -24q0 -17 29 -32t64 -26.5t64 -40t29 -69.5q0 -56 -48.5 -89t-132.5 -33q-96 0 -150 31l8 103q81 -42 143 -42q39 0 39 23q0 17 -29 32.5t-64 27.5t-64 40t-29 68q0 56 50 89.5t134 33.5q71 0 129 -19z" />
  496. <glyph horiz-adv-x="353" d="M326 248l-115 3v-171q0 -57 49 -57q30 0 64 18l9 -86q-54 -33 -123 -33q-71 0 -110 41t-39 117v175l-53 1v48l57 16l37 103l92 6l18 -17l-1 -92h112l10 -16z" />
  497. <glyph horiz-adv-x="484" d="M48 172q0 73 -11 140l145 16l16 -16v-231q0 -52 44 -52q20 0 40 9v282l150 8v-297q0 -47 13 -101l-123 -8q-17 30 -24 57h-6q-55 -57 -127 -57q-53 0 -85 31t-32 82v137z" />
  498. <glyph horiz-adv-x="425" d="M417 304l-117 -374h-176l-116 386l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
  499. <glyph horiz-adv-x="678" d="M102 -70l-94 386l154 12l35 -198q14 -71 15 -88h3q2 15 7.5 48.5t6.5 39.5l29 190h191l32 -190q2 -11 7.5 -42.5t7.5 -45.5h2q4 35 14 88l34 198l116 -8l9 -16l-94 -374h-193l-27 158q-16 88 -19 120h-2q-2 -31 -18 -121l-28 -157h-188z" />
  500. <glyph horiz-adv-x="420" d="M254 -70l-65 125l-57 -125h-116l-9 16l110 179l-110 191l155 12l66 -141l59 141l117 -8l8 -16l-111 -179l111 -195h-158z" />
  501. <glyph horiz-adv-x="425" d="M417 304l-101 -323q-14 -45 -26.5 -75.5t-35 -65.5t-49 -56t-68.5 -35t-95 -14l-21 121q137 -2 174 73h-71l-116 387l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
  502. <glyph horiz-adv-x="386" d="M23 204l8 116h310l16 -92l-169 -185h46q76 0 132 8l-9 -121h-320l-17 93l178 184z" />
  503. <glyph horiz-adv-x="440" d="M252 335q-38 -53 -118 -53q-49 0 -79.5 24.5t-30.5 71.5q0 123 217 128v20q0 57 -65 57q-62 0 -124 -30l-8 108q85 27 171 27q176 0 176 -148q0 -27 -2 -74t-2 -75q0 -56 17 -101l-123 -8q-13 20 -24 53h-5zM170 404q0 -19 11 -30.5t30 -11.5q16 0 30 8v95 q-31 -3 -51 -19t-20 -42z" />
  504. <glyph horiz-adv-x="480" d="M448 489q0 -99 -50 -153t-143 -54q-50 0 -92 12l-119 -12v446q0 68 -12 140l145 15l17 -16v-211q44 32 98 32q73 0 114.5 -54t41.5 -145zM226 600q-17 0 -32 -6v-236q12 -4 27 -4q73 0 73 127q0 63 -16.5 91t-51.5 28z" />
  505. <glyph horiz-adv-x="412" d="M388 655l-32 -108q-51 36 -98 36q-33 0 -52.5 -24.5t-19.5 -65.5q0 -52 27 -81t77 -29q34 0 81 22l8 -91q-49 -32 -131 -32q-98 1 -157 55.5t-59 143.5q0 91 61.5 149t158.5 58q80 0 136 -33z" />
  506. <glyph horiz-adv-x="490" d="M299 333q-42 -51 -111 -51q-71 0 -113.5 49.5t-42.5 135.5q0 104 62 162.5t165 58.5q19 0 28 -1v41q0 66 -12 140l145 15l17 -16v-476q0 -53 17 -101l-127 -8q-12 18 -25 52h-3v-1zM186 488q0 -57 18 -91.5t52 -34.5q17 0 31 8v246h-5q-96 0 -96 -128z" />
  507. <glyph horiz-adv-x="448" d="M419 481l-12 -12h-217q17 -86 110 -86q52 0 96 22l8 -91q-52 -32 -145 -32q-104 0 -165.5 51.5t-61.5 145.5q0 92 60 150.5t151 58.5q81 0 129 -47t48 -121q0 -26 -1 -39zM237 608q-25 0 -38 -26.5t-13 -67.5l87 5q0 3 0.5 12t0.5 16q0 61 -37 61z" />
  508. <glyph horiz-adv-x="360" d="M223 290h-150v306l-57 4v48l57 16q-2 38 -2 51q0 81 52 124.5t145 43.5q76 0 121 -27l-29 -105q-49 27 -88 27q-54 0 -54 -51q0 -18 3 -63h100l10 -15l-4 -57l-104 3v-305z" />
  509. <glyph horiz-adv-x="451" d="M80 328q0 45 55 77q-48 15 -77 48t-29 79q0 65 53 110.5t137 45.5q68 0 110 -27q27 62 101 62l18 -15l-4 -84h-83l-3 -4q41 -29 41 -82q0 -64 -51.5 -104.5t-133.5 -40.5q-17 0 -25 1v-9q0 -15 8.5 -20t27.5 -6l78 -5q63 -4 101 -31t38 -76q0 -66 -66.5 -109t-178.5 -43 q-87 0 -140.5 25t-53.5 66q0 26 22 45.5t54 25.5l50 -20q-1 -3 -1 -8q0 -29 25 -49.5t66 -20.5q31 0 52 13.5t21 36.5q0 39 -65 45l-71 8q-76 10 -76 66zM258 541q0 79 -42 79q-46 0 -46 -81q0 -79 45 -79q43 0 43 81z" />
  510. <glyph horiz-adv-x="484" d="M194 290h-150v438q0 72 -12 140l145 15l17 -16v-228q58 49 123 49q53 0 84 -33.5t31 -91.5v-273h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  511. <glyph horiz-adv-x="251" d="M213 819q0 -37 -27.5 -62.5t-67.5 -25.5q-35 0 -57.5 20.5t-22.5 50.5q0 36 29.5 62t69.5 26q33 0 54.5 -19.5t21.5 -51.5zM48 290v243q0 72 -12 140l146 15l16 -16v-382h-150z" />
  512. <glyph horiz-adv-x="253" d="M212 819q0 -37 -27.5 -62.5t-67.5 -25.5q-35 0 -57 20.5t-22 50.5q0 36 29 62t69 26q33 0 54.5 -19.5t21.5 -51.5zM70 93l-58 49q39 86 39 197v194q0 66 -13 140l146 15l17 -16v-333q0 -91 -27 -142.5t-104 -103.5z" />
  513. <glyph horiz-adv-x="468" d="M44 728q0 72 -12 140l145 15l17 -16v-356h23q43 79 86 177l126 -8l9 -16l-96 -140q32 -68 122 -234l-172 -8q-47 98 -70 157h-28v-149h-150v438z" />
  514. <glyph horiz-adv-x="251" d="M198 290h-150v438q0 72 -12 140l146 15l16 -16v-577z" />
  515. <glyph horiz-adv-x="726" d="M198 290h-150v243q0 55 -16 132l141 23q14 -36 18 -55q61 55 130 55q74 0 102 -61q63 61 136 61q53 0 84 -34t31 -92v-272h-150v246q0 56 -46 56q-19 0 -43 -12q1 -6 1 -18v-272h-150v246q0 56 -46 56q-20 0 -42 -12v-290z" />
  516. <glyph horiz-adv-x="474" d="M442 487q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM186 489q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  517. <glyph horiz-adv-x="485" d="M48 111v422q0 52 -16 132l141 23q9 -19 15 -41q46 41 111 41q72 0 113 -54.5t41 -144.5q0 -100 -50 -153.5t-145 -53.5q-27 0 -60 5v-37q0 -72 12 -140l-145 -15zM231 600q-19 0 -33 -7v-235q12 -4 27 -4q39 0 56.5 31t17.5 96q0 63 -16.5 91t-51.5 28z" />
  518. <glyph horiz-adv-x="489" d="M287 111v210q-40 -39 -98 -39q-71 0 -114 53t-43 139q0 98 57 156t151 58q40 0 88 -11l109 11v-438q0 -70 11 -140l-145 -15zM186 485q0 -57 18 -90t51 -33q17 0 32 9v245h-6q-95 0 -95 -131z" />
  519. <glyph horiz-adv-x="350" d="M198 290h-150v243q0 55 -16 132l141 23q20 -50 25 -94v-1q18 46 40.5 70.5t58.5 24.5q26 0 41 -12l-10 -138q-31 7 -56 7q-50 0 -74 -15v-240z" />
  520. <glyph horiz-adv-x="379" d="M341 669l-8 -106q-69 33 -122 33q-42 0 -42 -24q0 -17 29 -32t64 -26.5t64 -40t29 -69.5q0 -56 -48.5 -89t-132.5 -33q-96 0 -150 31l8 103q81 -42 143 -42q39 0 39 23q0 17 -29 32.5t-64 27.5t-64 40t-29 68q0 56 50 89.5t134 33.5q71 0 129 -19z" />
  521. <glyph horiz-adv-x="353" d="M326 608l-115 3v-171q0 -57 49 -57q30 0 64 18l9 -86q-54 -33 -123 -33q-71 0 -110 41t-39 117v175l-53 1v48l57 16l37 103l92 6l18 -17l-1 -92h112l10 -16z" />
  522. <glyph horiz-adv-x="484" d="M48 532q0 73 -11 140l145 16l16 -16v-231q0 -52 44 -52q20 0 40 9v282l150 8v-297q0 -47 13 -101l-123 -8q-17 30 -24 57h-6q-55 -57 -127 -57q-53 0 -85 31t-32 82v137z" />
  523. <glyph horiz-adv-x="425" d="M417 664l-117 -374h-176l-116 386l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
  524. <glyph horiz-adv-x="678" d="M102 290l-94 386l154 12l35 -198q14 -71 15 -88h3q2 15 7.5 48.5t6.5 39.5l29 190h191l32 -190q2 -11 7.5 -42.5t7.5 -45.5h2q4 35 14 88l34 198l116 -8l9 -16l-94 -374h-193l-27 158q-16 88 -19 120h-2q-2 -31 -18 -121l-28 -157h-188z" />
  525. <glyph horiz-adv-x="420" d="M254 290l-65 125l-57 -125h-116l-9 16l110 179l-110 191l155 12l66 -141l59 141l117 -8l8 -16l-111 -179l111 -195h-158z" />
  526. <glyph horiz-adv-x="425" d="M417 664l-101 -323q-14 -45 -26.5 -75.5t-35 -65.5t-49 -56t-68.5 -35t-95 -14l-21 121q137 -2 174 73h-71l-116 387l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
  527. <glyph horiz-adv-x="386" d="M23 564l8 116h310l16 -92l-169 -185h46q76 0 132 8l-9 -121h-320l-17 93l178 184z" />
  528. <glyph horiz-adv-x="298" d="M250 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM70 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5t-132.5 -124.5z" />
  529. <glyph horiz-adv-x="1072" d="M722 0h-180v563q0 32 -1 48q-13 4 -29 4q-35 0 -58 -19.5t-23 -50.5q0 -38 36 -77l-38 -134q-63 46 -119 46q-41 0 -65.5 -32.5t-24.5 -87.5q0 -69 33.5 -107t93.5 -38q40 0 100 29l10 -113q-62 -41 -160 -41q-119 1 -190.5 70.5t-71.5 184.5q0 116 75 190.5t192 74.5 q15 0 41 -2q-24 42 -24 84q0 72 66.5 120t183.5 48q67 0 153 -20v-293q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374z" />
  530. <glyph horiz-adv-x="901" d="M557 500q10 50 10 64q0 35 -16 57t-44 22q-30 0 -50.5 -23.5t-20.5 -59.5q0 -46 31 -92l-38 -134q-63 46 -116 46q-44 0 -68.5 -32.5t-24.5 -89.5q0 -67 33.5 -105t91.5 -38q42 0 102 29l10 -113q-62 -41 -156 -41q-122 0 -194 69.5t-72 184.5q0 118 75 192t197 74 q27 0 57 -5q-13 36 -13 72q0 77 55.5 125t145.5 48q87 0 139 -46t52 -124q0 -38 -11 -80h137l12 -20l-8 -70l-141 4v-223q0 -76 61 -76q36 0 78 24l10 -108q-64 -41 -148 -41q-86 0 -133.5 51.5t-47.5 148.5v229l-55 1v60z" />
  531. <glyph horiz-adv-x="1032" d="M410 485l-10 -132q-82 42 -148 42q-52 0 -52 -31q0 -18 23.5 -32t57 -27.5t66.5 -30.5t56.5 -50t23.5 -77q0 -73 -59 -115t-161 -42q-117 0 -182 39l10 129q43 -24 91.5 -38.5t81.5 -14.5q49 0 49 30q0 18 -23.5 32.5t-56.5 28t-66.5 31t-57 49.5t-23.5 75q0 73 61 116 t162 43q23 0 51 -3q-25 43 -25 85q0 72 66.5 120t183.5 48q67 0 153 -20v-293q71 63 150 63q65 0 102.5 -43t37.5 -117v-350h-180v317q0 73 -57 73q-25 0 -53 -16v-374h-180v563q0 32 -1 48q-13 4 -29 4q-35 0 -58 -19.5t-23 -50.5q0 -29 19 -60z" />
  532. <glyph horiz-adv-x="570" d="M175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  533. <glyph horiz-adv-x="570" d="M389 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  534. <glyph horiz-adv-x="570" d="M372 805l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  535. <glyph horiz-adv-x="570" d="M409 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  536. <glyph horiz-adv-x="570" d="M176 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  537. <glyph horiz-adv-x="570" d="M261 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM500 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179 l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  538. <glyph horiz-adv-x="570" d="M175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193zM391 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  539. <glyph horiz-adv-x="570" d="M329 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  540. <glyph horiz-adv-x="570" d="M137 658v96h298v-96h-298zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  541. <glyph horiz-adv-x="570" d="M175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 46 37.5 88t103.5 71h-62l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5 q-21 -105 -46 -193z" />
  542. <glyph horiz-adv-x="570" d="M430 731q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM247 714q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM175 0h-170l133 451q16 53 22 87l222 9 l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  543. <glyph horiz-adv-x="570" d="M406 1098l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM430 731q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM247 714q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5 q-26 0 -45.5 -18.5t-19.5 -43.5zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  544. <glyph horiz-adv-x="570" d="M210 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM175 0h-170l133 451q16 53 22 87l222 9l29 -24l154 -523h-179l-22 83h-167zM232 212l-2 -9h101l-2 8 q-28 103 -46 194h-5q-21 -105 -46 -193z" />
  545. <glyph horiz-adv-x="724" d="M175 0h-170l158 450q17 47 22 90h458l20 -19l-4 -110l-194 7l14 -98l169 4l-5 -116l-149 5l12 -91l200 7v-129h-362q-1 13 -2.5 41t-2.5 42h-136q-9 -26 -28 -83zM303 405q-15 -65 -60 -202h90q-8 143 -10 202h-20z" />
  546. <glyph horiz-adv-x="724" d="M518 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM175 0h-170l158 450q17 47 22 90h458l20 -19l-4 -110l-194 7l14 -98l169 4l-5 -116l-149 5l12 -91l200 7v-129h-362q-1 13 -2.5 41t-2.5 42h-136q-9 -26 -28 -83zM303 405q-15 -65 -60 -202h90q-8 143 -10 202 h-20z" />
  547. <glyph horiz-adv-x="561" d="M313 0h-263v394q0 94 -9 146h277q92 0 147 -42t55 -105q0 -74 -87 -111q108 -35 108 -133q0 -67 -65.5 -108t-162.5 -41zM286 420h-56v-96h57q26 0 40 14t14 34q0 48 -55 48zM295 214h-65v-94h65q28 0 45 13t17 32q0 22 -16.5 35.5t-45.5 13.5z" />
  548. <glyph horiz-adv-x="482" d="M457 157l20 -137q-69 -28 -165 -28q-140 0 -218 72.5t-78 199.5q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26z" />
  549. <glyph horiz-adv-x="482" d="M384 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM457 157l20 -137q-69 -28 -165 -28q-140 0 -218 72.5t-78 199.5q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26z" />
  550. <glyph horiz-adv-x="482" d="M404 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM457 157l20 -137q-69 -28 -165 -28q-140 0 -218 72.5t-78 199.5q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5 q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26z" />
  551. <glyph horiz-adv-x="482" d="M424 -155q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l26 90q-103 20 -159 89t-56 176q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26 l20 -137q-66 -27 -156 -28l-17 -52q120 -15 120 -95z" />
  552. <glyph horiz-adv-x="482" d="M171 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM457 157l20 -137q-69 -28 -165 -28q-140 0 -218 72.5t-78 199.5q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5 q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26z" />
  553. <glyph horiz-adv-x="482" d="M386 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM457 157l20 -137q-69 -28 -165 -28q-140 0 -218 72.5t-78 199.5q0 124 84.5 204t217.5 80q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5 t-32 -102.5q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26z" />
  554. <glyph horiz-adv-x="590" d="M574 276q0 -131 -88 -203.5t-224 -72.5h-212v394q0 94 -9 146h241q139 0 215.5 -70.5t76.5 -193.5zM273 420h-43v-300h48q63 0 87 39.5t24 107.5q0 153 -116 153z" />
  555. <glyph horiz-adv-x="590" d="M574 276q0 -131 -88 -203.5t-224 -72.5h-212v223h-43v90h43v81q0 94 -9 146h241q139 0 215.5 -70.5t76.5 -193.5zM335 223h-105v-103h48q63 0 87 39.5t24 107.5q0 153 -116 153h-43v-107h105v-90z" />
  556. <glyph horiz-adv-x="590" d="M424 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM574 276q0 -131 -88 -203.5t-224 -72.5h-212v394q0 94 -9 146h241q139 0 215.5 -70.5t76.5 -193.5zM273 420h-43v-300h48q63 0 87 39.5t24 107.5q0 153 -116 153z" />
  557. <glyph horiz-adv-x="590" d="M574 276q0 -131 -88 -203.5t-224 -72.5h-212v223h-43v90h43v81q0 94 -9 146h241q139 0 215.5 -70.5t76.5 -193.5zM335 223h-105v-103h48q63 0 87 39.5t24 107.5q0 153 -116 153h-43v-107h105v-90z" />
  558. <glyph horiz-adv-x="590" d="M574 276q0 -131 -88 -203.5t-224 -72.5h-212v394q0 94 -9 146h241q139 0 215.5 -70.5t76.5 -193.5zM273 420h-43v-300h48q63 0 87 39.5t24 107.5q0 153 -116 153zM406 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5 q40 0 66 -24.5t26 -64.5z" />
  559. <glyph horiz-adv-x="481" d="M463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  560. <glyph horiz-adv-x="481" d="M358 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  561. <glyph horiz-adv-x="481" d="M341 805l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  562. <glyph horiz-adv-x="481" d="M378 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  563. <glyph horiz-adv-x="481" d="M145 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  564. <glyph horiz-adv-x="481" d="M230 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM469 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9 v-100l181 4l-5 -116l-176 6v-94z" />
  565. <glyph horiz-adv-x="481" d="M360 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  566. <glyph horiz-adv-x="481" d="M463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94zM368 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  567. <glyph horiz-adv-x="481" d="M298 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  568. <glyph horiz-adv-x="481" d="M106 658v96h298v-96h-298zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  569. <glyph horiz-adv-x="481" d="M463 0q-54 -25 -84.5 -57.5t-30.5 -63.5q0 -41 43 -41q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 29.5t-34 77.5q0 46 37.5 88t103.5 71h-296v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94l233 9v-129z" />
  570. <glyph horiz-adv-x="481" d="M179 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM463 129v-129h-413v394q0 94 -9 146h398l20 -19l-4 -110l-225 9v-100l181 4l-5 -116l-176 6v-94z" />
  571. <glyph horiz-adv-x="533" d="M17 255l15 15h299q-13 154 -160 154q-66 0 -126 -29l-10 113q70 41 183 41q137 0 218 -71t81 -200q0 -128 -78.5 -208t-197.5 -80q-103 0 -164 59.5t-61 154.5q0 34 1 51zM191 176q0 -86 58 -86q37 0 57.5 33.5t24.5 90.5l-139 -7q0 -4 -0.5 -14.5t-0.5 -16.5z" />
  572. <glyph horiz-adv-x="444" d="M230 0h-180v394q0 94 -9 146h378l20 -19l-4 -110l-205 9v-118l161 5l-5 -117l-156 7v-197z" />
  573. <glyph horiz-adv-x="538" d="M497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5t-39.5 -111.5q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z" />
  574. <glyph horiz-adv-x="538" d="M392 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5t-39.5 -111.5q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z " />
  575. <glyph horiz-adv-x="538" d="M375 805l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5 t-39.5 -111.5q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z" />
  576. <glyph horiz-adv-x="538" d="M412 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5t-39.5 -111.5 q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z" />
  577. <glyph horiz-adv-x="538" d="M179 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5t-39.5 -111.5 q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z" />
  578. <glyph horiz-adv-x="538" d="M497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5t-39.5 -111.5q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139zM225 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61 t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  579. <glyph horiz-adv-x="538" d="M394 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM497 269l20 -19l-3 -229q-94 -29 -189 -29q-149 0 -229 70.5t-80 189.5q0 130 88 213t234 83q97 0 170 -32l-29 -143q-67 40 -133 40t-105.5 -38.5 t-39.5 -111.5q0 -67 35.5 -104t105.5 -37h5q-1 56 -13 139z" />
  580. <glyph horiz-adv-x="615" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-202h155v59q0 88 -9 154l170 8l19 -19v-529h-180v207h-155v-207z" />
  581. <glyph horiz-adv-x="615" d="M230 0h-180v378h-66v90h64q-4 47 -7 72l169 8l20 -19v-61h153q-4 47 -7 72l170 8l19 -19v-61h67v-90h-67v-378h-180v207h-155v-207zM230 327h155v51h-155v-51z" />
  582. <glyph horiz-adv-x="615" d="M198 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-202h155v59q0 88 -9 154l170 8l19 -19v-529h-180v207h-155v-207z" />
  583. <glyph horiz-adv-x="615" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-202h155v59q0 88 -9 154l170 8l19 -19v-529h-180v207h-155v-207zM413 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  584. <glyph horiz-adv-x="279" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  585. <glyph horiz-adv-x="279" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  586. <glyph horiz-adv-x="279" d="M243 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  587. <glyph horiz-adv-x="279" d="M210 793l69 9q-3 -87 -42 -142t-103 -55q-56 0 -93.5 49t-40.5 130l70 10q3 -36 22 -57.5t48 -21.5t48.5 22t21.5 56zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  588. <glyph horiz-adv-x="279" d="M216 816l64 -24q-29 -74 -57 -176l-167 -10q-26 103 -57 186l64 24q39 -38 76 -100q40 64 77 100zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  589. <glyph horiz-adv-x="279" d="M63 601l-64 24q29 74 57 176l167 10q26 -103 57 -186l-64 -24q-39 38 -76 100q-40 -64 -77 -100zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  590. <glyph horiz-adv-x="279" d="M129 717q0 -42 -27 -72t-65 -30q-35 0 -57.5 24t-22.5 59q0 41 29.5 71.5t68.5 30.5q32 0 53 -23t21 -60zM322 717q0 -42 -27.5 -72t-65.5 -30q-34 0 -55.5 24t-21.5 59q0 41 28.5 71.5t66.5 30.5q33 0 54 -23t21 -60zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z " />
  591. <glyph horiz-adv-x="279" d="M245 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  592. <glyph horiz-adv-x="279" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529zM245 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  593. <glyph horiz-adv-x="279" d="M183 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  594. <glyph horiz-adv-x="558" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529zM319 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114z" />
  595. <glyph horiz-adv-x="279" d="M15 658v96h250v-96h-250zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  596. <glyph horiz-adv-x="279" d="M230 0q-36 -25 -56.5 -55.5t-20.5 -57.5q0 -43 43 -43q25 0 54 13l25 -59q-63 -58 -142 -58q-55 0 -89 28.5t-34 76.5q0 44 31 85.5t85 69.5h-76v386q0 88 -9 154l169 8l20 -19v-529z" />
  597. <glyph horiz-adv-x="279" d="M77 803q28 0 71 -28.5t58 -28.5q27 0 42 43l44 -7q0 -71 -21.5 -121t-68.5 -50q-26 0 -73 28.5t-56 28.5q-27 0 -42 -43l-44 7q0 71 21.5 121t68.5 50zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
  598. <glyph horiz-adv-x="279" d="M40 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114z" />
  599. <glyph horiz-adv-x="279" d="M40 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114z" />
  600. <glyph horiz-adv-x="279" d="M49 601l-64 24q29 74 57 176l167 10q26 -103 57 -186l-64 -24q-39 38 -76 100q-40 -64 -77 -100zM40 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114z" />
  601. <glyph horiz-adv-x="581" d="M50 386q0 82 -9 154l170 8l19 -19v-225h43q68 159 100 244l172 -8l9 -17l-136 -236l157 -287l-210 -3q-45 77 -92 187h-43v-184h-180v386z" />
  602. <glyph horiz-adv-x="581" d="M50 386q0 82 -9 154l170 8l19 -19v-225h43q68 159 100 244l172 -8l9 -17l-136 -236l157 -287l-210 -3q-45 77 -92 187h-43v-184h-180v386zM204 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  603. <glyph horiz-adv-x="581" d="M50 386q0 82 -9 154l170 8l19 -19v-225h43q68 159 100 244l172 -8l9 -17l-136 -236l157 -287l-210 -3q-45 77 -92 187h-43v-184h-180v386z" />
  604. <glyph horiz-adv-x="460" d="M444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409z" />
  605. <glyph horiz-adv-x="460" d="M328 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409z" />
  606. <glyph horiz-adv-x="460" d="M447 601l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409z" />
  607. <glyph horiz-adv-x="460" d="M444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409zM138 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  608. <glyph horiz-adv-x="460" d="M489 339q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409z" />
  609. <glyph horiz-adv-x="460" d="M444 129v-129h-394v174l-76 -42l-40 74l116 64v116q0 88 -9 154l169 8l20 -19v-159l103 57l41 -74l-144 -80v-153z" />
  610. <glyph horiz-adv-x="775" d="M676 548l24 -19l51 -529h-176l-17 183q-1 8 -12 209h-3q-7 -99 -31 -209l-39 -183h-201l-39 183q-24 112 -31 210h-3q-5 -136 -13 -210l-17 -183h-145l52 539l249 7l18 -101q32 -141 44 -288h3q7 80 42 288l16 94z" />
  611. <glyph horiz-adv-x="610" d="M334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163h-170v394q0 80 -9 146l179 5q83 -140 114 -189z" />
  612. <glyph horiz-adv-x="610" d="M408 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163h-170v394q0 80 -9 146l179 5q83 -140 114 -189z" />
  613. <glyph horiz-adv-x="610" d="M428 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163h-170v394 q0 80 -9 146l179 5q83 -140 114 -189z" />
  614. <glyph horiz-adv-x="610" d="M334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163h-170v394q0 80 -9 146l179 5q83 -140 114 -189zM218 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26 q35 0 60 -24.5t25 -70.5q0 -100 -123 -208z" />
  615. <glyph horiz-adv-x="610" d="M410 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163 h-170v394q0 80 -9 146l179 5q83 -140 114 -189z" />
  616. <glyph horiz-adv-x="610" d="M220 0h-170v394q0 80 -9 146l179 5q83 -140 114 -189q31 -45 66 -126h3l-13 100q0 117 -9 210l160 6l19 -19v-399q0 -114 -37.5 -176t-151.5 -114l-49 56q47 66 56 126q-23 35 -56 90t-47 76q-32 45 -65 115h-3q13 -63 13 -138v-163z" />
  617. <glyph horiz-adv-x="609" d="M40 -162l-49 56q58 88 58 234v266q0 80 -9 146l179 5q83 -140 114 -189q31 -45 66 -126h3l-13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-35q0 -114 -35.5 -176t-143.5 -114z" />
  618. <glyph horiz-adv-x="610" d="M229 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM334 356q31 -45 66 -126h3q-13 48 -13 100q0 117 -9 210l160 6l19 -19v-527h-169q-28 42 -65 103.5 t-51 82.5q-32 45 -65 115h-3q13 -63 13 -138v-163h-170v394q0 80 -9 146l179 5q83 -140 114 -189z" />
  619. <glyph horiz-adv-x="602" d="M586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  620. <glyph horiz-adv-x="602" d="M404 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z " />
  621. <glyph horiz-adv-x="602" d="M387 805l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5 q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  622. <glyph horiz-adv-x="602" d="M424 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41 t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  623. <glyph horiz-adv-x="602" d="M191 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41 t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  624. <glyph horiz-adv-x="602" d="M276 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM515 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197 q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  625. <glyph horiz-adv-x="602" d="M586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147zM406 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26 t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  626. <glyph horiz-adv-x="602" d="M344 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  627. <glyph horiz-adv-x="602" d="M291 806l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM484 806l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5 q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  628. <glyph horiz-adv-x="602" d="M152 658v96h298v-96h-298zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  629. <glyph horiz-adv-x="602" d="M586 272q0 -165 -127 -239q-115 -77 -115 -147q0 -42 43 -42q25 0 54 13l25 -59q-67 -58 -145 -58q-52 0 -86 28t-34 76q0 83 116 149q-8 -1 -24 -1q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5 q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  630. <glyph horiz-adv-x="602" d="M586 272q0 -132 -83 -206t-210 -74q-94 0 -161 41l-56 -60l-59 56l54 58q-55 69 -55 174q0 130 81 208.5t212 78.5q91 0 157 -40l59 63l60 -55l-58 -62q59 -73 59 -182zM201 276q0 -24 3 -47l161 171q-23 23 -63 23q-101 0 -101 -147zM401 270q0 17 -2 47l-162 -172 q26 -28 65 -28q56 0 77.5 41t21.5 112z" />
  631. <glyph horiz-adv-x="602" d="M404 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM586 272q0 -132 -83 -206t-210 -74q-94 0 -161 41l-56 -60l-59 56l54 58q-55 69 -55 174q0 130 81 208.5t212 78.5q91 0 157 -40l59 63l60 -55l-58 -62q59 -73 59 -182zM201 276q0 -24 3 -47l161 171 q-23 23 -63 23q-101 0 -101 -147zM401 270q0 17 -2 47l-162 -172q26 -28 65 -28q56 0 77.5 41t21.5 112z" />
  632. <glyph horiz-adv-x="602" d="M225 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM586 272q0 -132 -83 -206t-210 -74q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5 q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  633. <glyph horiz-adv-x="818" d="M800 129v-129h-429q-40 -8 -78 -8q-125 0 -201 72t-76 197q0 130 81 208.5t212 78.5q38 0 76 -8h391l20 -19l-4 -110l-239 5q23 -42 30 -96l165 4l-5 -116l-162 6q-9 -50 -32 -90zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153 q-101 0 -101 -147z" />
  634. <glyph horiz-adv-x="529" d="M230 0h-180v394q0 94 -9 146h251q106 0 167.5 -52t61.5 -139q0 -93 -69.5 -146t-175.5 -53h-46v-150zM251 420h-21v-150h22q48 0 66 18.5t18 53.5q0 78 -85 78z" />
  635. <glyph horiz-adv-x="549" d="M230 0h-180v394q0 94 -9 146h189v-70h82q106 0 167.5 -52t61.5 -139q0 -93 -69.5 -146t-175.5 -53h-66v-80zM271 350h-41v-150h42q48 0 66 18.5t18 53.5q0 78 -85 78z" />
  636. <glyph horiz-adv-x="593" d="M586 272q0 -105 -53 -173.5t-143 -93.5q79 -25 282 -25l-21 -143q-201 0 -372 155q-119 5 -191 76.5t-72 192.5q0 130 81 208.5t212 78.5q128 0 202.5 -76t74.5 -200zM201 276q0 -68 24 -113.5t77 -45.5q56 0 77.5 41t21.5 112q0 153 -99 153q-101 0 -101 -147z" />
  637. <glyph horiz-adv-x="542" d="M230 0h-180v394q0 94 -9 146h223q126 0 191.5 -46.5t65.5 -131.5q0 -104 -90 -151l118 -211l-211 -3q-35 80 -64 169h-44v-166zM251 420h-21v-139h22q48 0 66 18t18 52q0 35 -19 52t-66 17z" />
  638. <glyph horiz-adv-x="542" d="M380 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM230 0h-180v394q0 94 -9 146h223q126 0 191.5 -46.5t65.5 -131.5q0 -104 -90 -151l118 -211l-211 -3q-35 80 -64 169h-44v-166zM251 420h-21v-139h22q48 0 66 18t18 52q0 35 -19 52t-66 17z" />
  639. <glyph horiz-adv-x="542" d="M400 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM230 0h-180v394q0 94 -9 146h223q126 0 191.5 -46.5t65.5 -131.5q0 -104 -90 -151l118 -211l-211 -3q-35 80 -64 169h-44v-166zM251 420h-21v-139h22q48 0 66 18t18 52 q0 35 -19 52t-66 17z" />
  640. <glyph horiz-adv-x="542" d="M230 0h-180v394q0 94 -9 146h223q126 0 191.5 -46.5t65.5 -131.5q0 -104 -90 -151l118 -211l-211 -3q-35 80 -64 169h-44v-166zM251 420h-21v-139h22q48 0 66 18t18 52q0 35 -19 52t-66 17zM203 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26 q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  641. <glyph horiz-adv-x="542" d="M230 0h-180v394q0 94 -9 146h223q126 0 191.5 -46.5t65.5 -131.5q0 -104 -90 -151l118 -211l-211 -3q-35 80 -64 169h-44v-166zM251 420h-21v-139h22q48 0 66 18t18 52q0 35 -19 52t-66 17zM395 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64 q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  642. <glyph horiz-adv-x="475" d="M445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 79 68 123t170 44q92 0 153 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5 t68 -31.5t57.5 -54.5t23.5 -86z" />
  643. <glyph horiz-adv-x="475" d="M349 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 79 68 123t170 44q92 0 153 -18l-19 -143 q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86z" />
  644. <glyph horiz-adv-x="475" d="M369 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85 q0 79 68 123t170 44q92 0 153 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86z" />
  645. <glyph horiz-adv-x="475" d="M375 -155q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l24 84q-112 6 -150 30l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 79 68 123t170 44q92 0 153 -18l-19 -143 q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86q0 -61 -46.5 -100.5t-124.5 -51.5l-19 -57q120 -15 120 -95z" />
  646. <glyph horiz-adv-x="475" d="M136 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85 q0 79 68 123t170 44q92 0 153 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86z" />
  647. <glyph horiz-adv-x="475" d="M445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 79 68 123t170 44q92 0 153 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5 t68 -31.5t57.5 -54.5t23.5 -86zM151 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  648. <glyph horiz-adv-x="475" d="M445 149q0 -73 -65.5 -115t-171.5 -42q-52 0 -105 9t-73 22l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 79 68 123t170 44q92 0 153 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5t57.5 -27.5 t68 -31.5t57.5 -54.5t23.5 -86zM343 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  649. <glyph horiz-adv-x="636" d="M193 -10l-162 10q21 61 21 130v219q0 92 77.5 145.5t206.5 53.5q128 0 213 -66v-51l-100 -103q157 -60 157 -175q0 -68 -53.5 -114.5t-160.5 -46.5q-86 0 -116 13v130q41 -13 75 -13q33 0 51.5 13t18.5 35q0 56 -125 92v34l74 90q-23 34 -69 34q-79 0 -79 -88v-177 q0 -113 -29 -165z" />
  650. <glyph horiz-adv-x="507" d="M344 0h-180v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414z" />
  651. <glyph horiz-adv-x="507" d="M344 0h-180v205h-103v90h103v119q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-119h103v-90h-103v-205z" />
  652. <glyph horiz-adv-x="507" d="M377 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM344 0h-180v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414z" />
  653. <glyph horiz-adv-x="507" d="M344 0h-45l-20 -60q120 -15 120 -95q0 -34 -21 -57.5t-57 -36t-74 -17.5t-82 -5l5 60q105 6 105 54q0 36 -76 36l-19 30l27 91h-43v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414z" />
  654. <glyph horiz-adv-x="507" d="M344 0h-180v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414zM175 -329q44 46 61 95q-27 5 -44.5 26t-17.5 50q0 35 26 61t64 26q36 0 60.5 -24.5t24.5 -70.5q0 -100 -123 -208z" />
  655. <glyph horiz-adv-x="507" d="M344 0h-180v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414zM367 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  656. <glyph horiz-adv-x="584" d="M40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  657. <glyph horiz-adv-x="584" d="M395 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  658. <glyph horiz-adv-x="584" d="M378 805l69 9q-4 -87 -47.5 -142t-115.5 -55q-64 0 -106 49t-46 130l70 10q7 -36 31 -57.5t57 -21.5t57 22t31 56zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5 v195z" />
  659. <glyph horiz-adv-x="584" d="M415 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  660. <glyph horiz-adv-x="584" d="M182 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  661. <glyph horiz-adv-x="584" d="M267 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88 v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  662. <glyph horiz-adv-x="584" d="M395 1065l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM267 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60z M40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  663. <glyph horiz-adv-x="584" d="M415 1083l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM267 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59 q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  664. <glyph horiz-adv-x="584" d="M335 865q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM267 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM40 386 q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  665. <glyph horiz-adv-x="584" d="M143 917v96h298v-96h-298zM267 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM506 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM40 386q0 82 -9 153l168 9l21 -20 v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  666. <glyph horiz-adv-x="584" d="M40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195zM397 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5 t26 -64.5z" />
  667. <glyph horiz-adv-x="584" d="M335 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  668. <glyph horiz-adv-x="584" d="M282 806l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM475 806l10 -30q-48 -95 -124 -170l-70 10q38 108 56 198zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5 t-69.5 147.5v195z" />
  669. <glyph horiz-adv-x="584" d="M143 658v96h298v-96h-298zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  670. <glyph horiz-adv-x="584" d="M40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -111 -99 -164q-104 -62 -104 -137q0 -46 43 -46q25 0 54 13l25 -59q-65 -58 -145 -58q-52 0 -86 27.5t-34 71.5q0 86 109 153h-18q-110 0 -179.5 51.5t-69.5 147.5v195z " />
  671. <glyph horiz-adv-x="584" d="M436 731q0 -51 -40 -87.5t-97 -36.5q-52 0 -84.5 29.5t-32.5 71.5q0 50 42.5 87t99.5 37q49 0 80.5 -28t31.5 -73zM253 714q0 -22 14 -36.5t37 -14.5q25 0 43 18.5t18 43.5q0 24 -13 37.5t-34 13.5q-26 0 -45.5 -18.5t-19.5 -43.5zM40 386q0 82 -9 153l168 9l21 -20v-320 q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  672. <glyph horiz-adv-x="584" d="M216 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM40 386q0 82 -9 153l168 9l21 -20v-320q0 -88 78 -88q76 0 76 88v217q0 66 -8 114l178 7v-355 q0 -96 -72.5 -147.5t-182.5 -51.5t-179.5 51.5t-69.5 147.5v195z" />
  673. <glyph horiz-adv-x="556" d="M176 1l-176 529l193 18l77 -276q22 -80 25 -100q16 68 24 93l83 283l144 -9l10 -18l-177 -520h-203z" />
  674. <glyph horiz-adv-x="818" d="M136 1l-136 529l193 18l49 -256q3 -18 9.5 -63.5t9.5 -59.5q6 23 26 116l54 254l174 9l51 -256q4 -18 13.5 -63.5t12.5 -59.5q1 8 8.5 53t12.5 68l52 258l144 -9l9 -18l-137 -520h-203l-28 121q-8 32 -19.5 93.5t-18.5 89.5h-3q-33 -153 -41 -186l-29 -118h-203z" />
  675. <glyph horiz-adv-x="818" d="M526 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM136 1l-136 529l193 18l49 -256q3 -18 9.5 -63.5t9.5 -59.5q6 23 26 116l54 254l174 9l51 -256q4 -18 13.5 -63.5t12.5 -59.5q1 8 8.5 53t12.5 68l52 258l144 -9l9 -18l-137 -520h-203l-28 121q-8 32 -19.5 93.5 t-18.5 89.5h-3q-33 -153 -41 -186l-29 -118h-203z" />
  676. <glyph horiz-adv-x="818" d="M313 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM136 1l-136 529l193 18l49 -256q3 -18 9.5 -63.5t9.5 -59.5q6 23 26 116l54 254l174 9l51 -256q4 -18 13.5 -63.5t12.5 -59.5q1 8 8.5 53t12.5 68l52 258l144 -9l9 -18 l-137 -520h-203l-28 121q-8 32 -19.5 93.5t-18.5 89.5h-3q-33 -153 -41 -186l-29 -118h-203z" />
  677. <glyph horiz-adv-x="818" d="M398 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM637 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM136 1l-136 529l193 18l49 -256q3 -18 9.5 -63.5t9.5 -59.5 q6 23 26 116l54 254l174 9l51 -256q4 -18 13.5 -63.5t12.5 -59.5q1 8 8.5 53t12.5 68l52 258l144 -9l9 -18l-137 -520h-203l-28 121q-8 32 -19.5 93.5t-18.5 89.5h-3q-33 -153 -41 -186l-29 -118h-203z" />
  678. <glyph horiz-adv-x="818" d="M466 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM136 1l-136 529l193 18l49 -256q3 -18 9.5 -63.5t9.5 -59.5q6 23 26 116l54 254l174 9l51 -256q4 -18 13.5 -63.5t12.5 -59.5q1 8 8.5 53t12.5 68l52 258l144 -9l9 -18l-137 -520h-203l-28 121q-8 32 -19.5 93.5 t-18.5 89.5h-3q-33 -153 -41 -186l-29 -118h-203z" />
  679. <glyph horiz-adv-x="524" d="M8 0l-11 19l153 230l-153 286l195 13l87 -190h2l81 190l153 -11l11 -19l-148 -258l148 -260h-200l-77 151h-1l-84 -151h-156z" />
  680. <glyph horiz-adv-x="508" d="M164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  681. <glyph horiz-adv-x="508" d="M357 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  682. <glyph horiz-adv-x="508" d="M144 592l-57 40q52 66 115 164l117 10q56 -95 115 -174l-57 -40q-42 26 -117 93q-70 -64 -116 -93zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  683. <glyph horiz-adv-x="508" d="M229 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM468 716q0 -42 -30 -72t-73 -30q-39 0 -63 24t-24 59q0 41 32 71.5t75 30.5q36 0 59.5 -23t23.5 -60zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3 q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  684. <glyph horiz-adv-x="508" d="M297 606q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  685. <glyph horiz-adv-x="508" d="M105 658v96h298v-96h-298zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359v-162h-180v161z" />
  686. <glyph horiz-adv-x="508" d="M178 802q36 0 86.5 -28.5t73.5 -28.5q18 0 28.5 10t23.5 33l49 -7q0 -70 -27 -120.5t-79 -50.5q-32 0 -89.5 28.5t-76.5 28.5q-28 0 -50 -43l-48 7q0 71 26 121t83 50zM164 161l-164 369l193 18l41 -139q25 -77 37 -118h3q25 66 40 116l41 141l144 -9l9 -18l-164 -359 v-162h-180v161z" />
  687. <glyph horiz-adv-x="508" d="M55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406z" />
  688. <glyph horiz-adv-x="508" d="M363 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406z" />
  689. <glyph horiz-adv-x="508" d="M383 824l57 -40q-52 -66 -115 -164l-117 -10q-56 95 -115 174l57 40q42 -26 117 -93q70 64 116 93zM55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406z" />
  690. <glyph horiz-adv-x="508" d="M365 715q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5zM55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406z" />
  691. <glyph horiz-adv-x="508" d="M55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406zM359 -159q0 -46 -33.5 -78.5t-80.5 -32.5q-43 0 -69.5 26t-26.5 64q0 45 35.5 77.5t82.5 32.5q40 0 66 -24.5t26 -64.5z" />
  692. <glyph horiz-adv-x="279" d="M229 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM40 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114z" />
  693. <glyph horiz-adv-x="454" d="M419 195q0 -101 -57 -157t-140 -56q-82 0 -134.5 54t-52.5 150q0 99 56 158.5t142 59.5q84 0 135 -57t51 -152zM173 196q0 -72 11.5 -106.5t44.5 -34.5q18 0 29 9t16 30.5t6 41t1 54.5q0 74 -11 107t-45 33q-31 0 -41.5 -30.5t-10.5 -103.5z" />
  694. <glyph horiz-adv-x="306" d="M109 284h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
  695. <glyph horiz-adv-x="389" d="M55 -10l-15 83q45 20 105.5 78t60.5 109q0 25 -13.5 40.5t-38.5 15.5q-44 0 -101 -41l-12 96q70 33 146 33q69 0 113 -32t44 -83q0 -56 -53 -113.5t-124 -91.5h62q54 0 105 6l-7 -100h-272z" />
  696. <glyph horiz-adv-x="391" d="M43 372q66 32 143 32q62 0 102 -26.5t40 -66.5q0 -31 -23.5 -59t-61.5 -40q49 -9 78.5 -37.5t29.5 -67.5q0 -55 -55 -90t-141 -35q-66 0 -115 14l12 80q42 -14 96 -14q29 0 47.5 10.5t18.5 30.5q0 40 -85 40q-16 0 -58 -4v80q47 2 83.5 17.5t36.5 45.5q0 34 -46 34 q-47 0 -97 -25z" />
  697. <glyph horiz-adv-x="437" d="M35 150l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM142 162v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  698. <glyph horiz-adv-x="414" d="M60 -4l11 84q42 -14 94 -14q67 0 67 50q0 46 -58 46q-38 0 -86 -18l-18 10v242h177q64 0 104 6l-7 -101h-167v-60q25 5 51 5q63 0 102 -32t39 -89q0 -69 -56 -106t-144 -37q-61 0 -109 14z" />
  699. <glyph horiz-adv-x="419" d="M214 -18q-77 0 -128 45t-51 134q0 103 69.5 173t187.5 70q36 0 56 -6l-11 -88q-26 6 -46 6q-38 0 -72 -22.5t-44 -64.5h2q40 7 69 7q61 0 97 -31t36 -86q0 -64 -47 -100.5t-118 -36.5zM203 163q-13 0 -31 -6q-1 -61 5.5 -81.5t27.5 -20.5q37 0 37 53q0 55 -39 55z" />
  700. <glyph horiz-adv-x="369" d="M30 289l9 107h304l16 -14v-67q-80 -73 -114.5 -150t-36.5 -175h-138q6 91 51.5 173.5t117.5 135.5v2h-66q-88 0 -143 -12z" />
  701. <glyph horiz-adv-x="441" d="M214 -18q-81 0 -127.5 30.5t-46.5 80.5q0 41 29.5 70t69.5 37v2q-23 13 -37 23t-27.5 29.5t-13.5 42.5q0 46 45 76.5t119 30.5q77 0 116 -31.5t39 -69.5q0 -27 -20.5 -52.5t-54.5 -40.5v-2q96 -38 96 -104q0 -49 -49 -85.5t-138 -36.5zM221 337q-16 0 -27 -9t-11 -25 q0 -34 49 -55q26 26 26 55q0 15 -10.5 24.5t-26.5 9.5zM210 152q-44 -18 -44 -58q0 -20 14 -33t39 -13q23 0 39.5 11t16.5 32q0 39 -65 61z" />
  702. <glyph horiz-adv-x="419" d="M40 263q0 66 47.5 103.5t120.5 37.5q76 0 126 -44t50 -133q0 -101 -65 -173t-185 -72q-31 0 -51 5l-2 86q34 -4 48 -4q51 0 78.5 19t37.5 60q-35 -8 -63 -8q-65 0 -103.5 32t-38.5 91zM177 270q0 -58 44 -58q11 0 24 3q-1 58 -8 83t-28 25q-32 0 -32 -53z" />
  703. <glyph horiz-adv-x="635" d="M605 348q0 -170 -85 -264t-210 -94q-123 0 -201.5 91.5t-78.5 253.5q0 167 84 266t212 99q125 0 202 -96t77 -256zM215 350q0 -124 23.5 -187t81.5 -63t79 61t21 180q0 125 -23 187t-81 62q-55 0 -78 -57.5t-23 -182.5z" />
  704. <glyph horiz-adv-x="395" d="M138 519h-3l-95 -10l-25 110l280 80l20 -20v-679h-180v384q0 97 3 135z" />
  705. <glyph horiz-adv-x="630" d="M106 0l-20 125q52 33 110.5 84.5t110.5 125.5t52 134q0 44 -24.5 72.5t-69.5 28.5q-71 0 -161 -67l-17 142q104 55 222 55q104 0 169.5 -52.5t65.5 -136.5q0 -98 -86 -200.5t-202 -170.5h118q87 0 160 10l-10 -150h-418z" />
  706. <glyph horiz-adv-x="536" d="M41 647q39 22 99.5 37.5t115.5 15.5q91 0 150.5 -43.5t59.5 -110.5q0 -54 -38.5 -102.5t-101.5 -68.5q80 -14 127.5 -61t47.5 -116q0 -92 -81.5 -150t-211.5 -58q-95 0 -173 23l16 120q67 -23 149 -23q51 0 83.5 21t32.5 61q0 79 -142 79q-43 0 -86 -7v120q81 8 137 38.5 t56 82.5q0 29 -20 47t-59 18q-74 0 -154 -45z" />
  707. <glyph horiz-adv-x="645" d="M25 264l270 424l198 11l20 -20v-398q68 4 102 9l-10 -139h-92v-151h-170v151h-298zM170 281v-3q54 2 173 2v95q0 133 7 193h-3z" />
  708. <glyph horiz-adv-x="571" d="M65 13l16 125q67 -23 145 -23q52 0 84.5 25t32.5 74q0 91 -104 91q-61 0 -131 -28l-25 15v398h259q87 0 160 10l-10 -150h-264v-129q43 9 83 9q96 0 156.5 -53t60.5 -150q0 -113 -83.5 -175t-214.5 -62q-87 0 -165 23z" />
  709. <glyph horiz-adv-x="603" d="M316 -10q-116 0 -191 77t-75 226q0 176 103.5 291.5t277.5 115.5q60 0 85 -10l-15 -131q-35 11 -71 11q-67 0 -122.5 -46t-69.5 -133h3q51 24 119 24q93 0 148 -52t55 -145q0 -107 -71 -167.5t-176 -60.5zM304 305q-43 0 -69 -24q0 -102 14.5 -141.5t55.5 -39.5 q73 0 73 101q0 104 -74 104z" />
  710. <glyph horiz-adv-x="545" d="M25 530l13 160h455l22 -20v-100q-122 -125 -181 -264.5t-64 -305.5h-185q9 156 83.5 303.5t183.5 243.5v3h-116q-124 0 -211 -20z" />
  711. <glyph horiz-adv-x="624" d="M303 -10q-119 0 -188.5 50.5t-69.5 132.5q0 68 46 116.5t108 65.5v3q-56 33 -90 71t-34 93q0 76 67.5 127t176.5 51q112 0 171 -51.5t59 -117.5q0 -48 -33.5 -91t-87.5 -70v-3q151 -66 151 -177q0 -82 -72.5 -141t-203.5 -59zM313 600q-31 0 -52 -18.5t-21 -49.5 q0 -63 88 -105q56 46 56 104q0 31 -20 50t-51 19zM297 284q-37 -16 -59.5 -45t-22.5 -64q0 -37 25.5 -61t69.5 -24q42 0 70.5 21.5t28.5 59.5q0 70 -112 113z" />
  712. <glyph horiz-adv-x="603" d="M40 464q0 110 71.5 173t179.5 63q114 0 188 -75.5t74 -222.5q0 -110 -41 -202t-127 -151t-204 -59q-46 0 -78 8l-2 128q36 -6 68 -6q87 0 134.5 41t63.5 124h-3q-44 -27 -114 -27q-95 0 -152.5 54.5t-57.5 151.5zM225 475q0 -52 20.5 -80t59.5 -28q31 0 63 15 q0 198 -77 198q-32 0 -49 -29t-17 -76z" />
  713. <glyph horiz-adv-x="454" d="M419 495q0 -101 -57 -157t-140 -56q-82 0 -134.5 54t-52.5 150q0 99 56 158.5t142 59.5q84 0 135 -57t51 -152zM173 496q0 -72 11.5 -106.5t44.5 -34.5q18 0 29 9t16 30.5t6 41t1 54.5q0 74 -11 107t-45 33q-31 0 -41.5 -30.5t-10.5 -103.5z" />
  714. <glyph horiz-adv-x="306" d="M109 586h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
  715. <glyph horiz-adv-x="389" d="M55 292l-15 83q45 20 105.5 78t60.5 109q0 25 -13.5 40.5t-38.5 15.5q-44 0 -101 -41l-12 96q70 33 146 33q69 0 113 -32t44 -83q0 -56 -53 -113.5t-124 -91.5h62q54 0 105 6l-7 -100h-272z" />
  716. <glyph horiz-adv-x="391" d="M43 672q66 32 143 32q62 0 102 -26.5t40 -66.5q0 -31 -23.5 -59t-61.5 -40q49 -9 78.5 -37.5t29.5 -67.5q0 -55 -55 -90t-141 -35q-66 0 -115 14l12 80q42 -14 96 -14q29 0 47.5 10.5t18.5 30.5q0 40 -85 40q-16 0 -58 -4v80q47 2 83.5 17.5t36.5 45.5q0 34 -46 34 q-47 0 -97 -25z" />
  717. <glyph horiz-adv-x="437" d="M35 452l151 248l148 6l15 -13v-229q20 1 53 5l-7 -93h-46v-84h-126v84h-174zM142 464v-2h11.5t28 0.5t40.5 0.5v40q0 81 6 119h-2z" />
  718. <glyph horiz-adv-x="414" d="M60 296l11 84q42 -14 94 -14q67 0 67 50q0 46 -58 46q-38 0 -86 -18l-18 10v242h177q64 0 104 6l-7 -101h-167v-60q25 5 51 5q63 0 102 -32t39 -89q0 -69 -56 -106t-144 -37q-61 0 -109 14z" />
  719. <glyph horiz-adv-x="419" d="M214 282q-77 0 -128 45t-51 134q0 103 69.5 173t187.5 70q36 0 56 -6l-11 -88q-26 6 -46 6q-38 0 -72 -22.5t-44 -64.5h2q40 7 69 7q61 0 97 -31t36 -86q0 -64 -47 -100.5t-118 -36.5zM203 463q-13 0 -31 -6q-1 -61 5.5 -81.5t27.5 -20.5q37 0 37 53q0 55 -39 55z" />
  720. <glyph horiz-adv-x="369" d="M30 591l9 107h304l16 -14v-67q-80 -73 -114.5 -150t-36.5 -175h-138q6 91 51.5 173.5t117.5 135.5v2h-66q-88 0 -143 -12z" />
  721. <glyph horiz-adv-x="441" d="M214 284q-81 0 -127.5 30.5t-46.5 80.5q0 41 29.5 70t69.5 37v2q-23 13 -37 23t-27.5 29.5t-13.5 42.5q0 46 45 76.5t119 30.5q77 0 116 -31.5t39 -69.5q0 -27 -20.5 -52.5t-54.5 -40.5v-2q96 -38 96 -104q0 -49 -49 -85.5t-138 -36.5zM221 639q-16 0 -27 -9t-11 -25 q0 -34 49 -55q26 26 26 55q0 15 -10.5 24.5t-26.5 9.5zM210 454q-44 -18 -44 -58q0 -20 14 -33t39 -13q23 0 39.5 11t16.5 32q0 39 -65 61z" />
  722. <glyph horiz-adv-x="419" d="M40 565q0 66 47.5 103.5t120.5 37.5q76 0 126 -44t50 -133q0 -101 -65 -173t-185 -72q-31 0 -51 5l-2 86q34 -4 48 -4q51 0 78.5 19t37.5 60q-35 -8 -63 -8q-65 0 -103.5 32t-38.5 91zM177 572q0 -58 44 -58q11 0 24 3q-1 58 -8 83t-28 25q-32 0 -32 -53z" />
  723. <glyph horiz-adv-x="575" d="M555 272q0 -134 -79.5 -208t-195.5 -74q-114 0 -187 71t-73 198q0 132 78 211t198 79q116 0 187.5 -75.5t71.5 -201.5zM205 274q0 -86 19 -130t66 -44q46 0 63 42t17 123q0 87 -18.5 130.5t-65.5 43.5q-44 0 -62.5 -39.5t-18.5 -125.5z" />
  724. <glyph horiz-adv-x="455" d="M188 369h-3l-95 -10l-25 110l280 80l20 -20v-529h-180v234q0 97 3 135z" />
  725. <glyph d="M106 0l-20 125q86 38 174.5 106.5t88.5 126.5q0 27 -19.5 44t-54.5 17q-76 0 -171 -67l-17 142q108 55 233 55q97 0 155.5 -40t58.5 -108q0 -76 -70 -144.5t-173 -116.5h73q93 0 170 10l-10 -150h-418z" />
  726. <glyph horiz-adv-x="536" d="M41 496q39 22 99.5 37.5t115.5 15.5q91 0 150.5 -43.5t59.5 -110.5q0 -54 -38.5 -102.5t-101.5 -68.5q80 -14 127.5 -61t47.5 -116q0 -92 -81.5 -150t-211.5 -58q-95 0 -173 23l16 120q67 -23 149 -23q51 0 83.5 21t32.5 61q0 79 -142 79q-43 0 -86 -7v120q81 8 137 38.5 t56 82.5q0 29 -20 47t-59 18q-74 0 -154 -45z" />
  727. <glyph horiz-adv-x="621" d="M30 113l253 416l198 11l20 -20v-390q54 2 105 9l-10 -139h-95v-151h-170v151h-281zM175 130v-3q48 2 156 2v87q0 133 7 193h-3z" />
  728. <glyph horiz-adv-x="551" d="M65 -138l16 125q67 -23 145 -23q52 0 84.5 25t32.5 74q0 91 -104 91q-61 0 -131 -28l-25 15v398h259q87 0 160 10l-10 -150h-264v-129q43 9 83 9q96 0 156.5 -53t60.5 -150q0 -113 -83.5 -175t-214.5 -62q-87 0 -165 23z" />
  729. <glyph horiz-adv-x="583" d="M316 -10q-116 0 -191 77t-75 226q0 176 103.5 291.5t277.5 115.5q60 0 85 -10l-15 -131q-35 11 -71 11q-67 0 -122.5 -46t-69.5 -133h3q51 24 119 24q93 0 148 -52t55 -145q0 -107 -71 -167.5t-176 -60.5zM304 305q-43 0 -69 -24q0 -102 14.5 -141.5t55.5 -39.5 q73 0 73 101q0 104 -74 104z" />
  730. <glyph horiz-adv-x="545" d="M25 379l13 160h455l22 -20v-100q-122 -125 -181 -264.5t-64 -305.5h-185q9 156 83.5 303.5t183.5 243.5v3h-116q-124 0 -211 -20z" />
  731. <glyph horiz-adv-x="624" d="M303 -10q-119 0 -188.5 50.5t-69.5 132.5q0 68 46 116.5t108 65.5v3q-56 33 -90 71t-34 93q0 76 67.5 127t176.5 51q112 0 171 -51.5t59 -117.5q0 -48 -33.5 -91t-87.5 -70v-3q151 -66 151 -177q0 -82 -72.5 -141t-203.5 -59zM313 600q-31 0 -52 -18.5t-21 -49.5 q0 -63 88 -105q56 46 56 104q0 31 -20 50t-51 19zM297 284q-37 -16 -59.5 -45t-22.5 -64q0 -37 25.5 -61t69.5 -24q42 0 70.5 21.5t28.5 59.5q0 70 -112 113z" />
  732. <glyph horiz-adv-x="583" d="M20 313q0 110 71.5 173t179.5 63q114 0 188 -75.5t74 -222.5q0 -110 -41 -202t-127 -151t-204 -59q-46 0 -78 8l-2 128q36 -6 68 -6q87 0 134.5 41t63.5 124h-3q-44 -27 -114 -27q-95 0 -152.5 54.5t-57.5 151.5zM205 324q0 -52 20.5 -80t59.5 -28q31 0 63 15 q0 198 -77 198q-32 0 -49 -29t-17 -76z" />
  733. <glyph d="M584 348q0 -170 -81.5 -264t-200.5 -94q-117 0 -192 91.5t-75 253.5q0 167 80 266t203 99q120 0 193 -96.5t73 -255.5zM220 350q0 -124 20.5 -187t71.5 -63q50 0 68.5 60.5t18.5 178.5q0 127 -20 189t-71 62q-48 0 -68 -57.5t-20 -182.5z" />
  734. <glyph d="M113 0v130h120v254q0 97 3 135h-3l-95 -10l-25 110l280 80l20 -20v-549h120v-130h-420z" />
  735. <glyph d="M70 0l-20 125q55 39 103.5 79t97.5 88.5t77.5 98t28.5 90.5q0 40 -26.5 64.5t-72.5 24.5q-81 0 -183 -67l-17 142q114 55 239 55q111 0 178 -54t67 -147q0 -96 -78 -183.5t-220 -175.5h149q87 0 160 10l-10 -150h-473z" />
  736. <glyph d="M114 647q34 22 86 37.5t102 15.5q89 0 148 -44t59 -111q0 -54 -38.5 -102t-101.5 -68q80 -14 127.5 -61t47.5 -116q0 -93 -81.5 -150.5t-205.5 -57.5q-85 0 -149 23l16 120q53 -23 121 -23q50 0 82 21t32 61q0 79 -122 79q-38 0 -76 -7v120q68 7 115.5 38t47.5 83 q0 29 -19.5 47t-56.5 18q-62 0 -127 -45z" />
  737. <glyph d="M12 264l270 424l198 11l20 -20v-397q54 4 80 8l-10 -139h-70v-151h-170v151h-298zM157 281v-3q54 2 173 2v95q0 133 7 193h-3z" />
  738. <glyph d="M91 13l16 125q62 -23 133 -23q51 0 82 25t31 75q0 46 -27.5 68t-73.5 22q-56 0 -118 -28l-25 15v398h243q87 0 160 10l-10 -150h-248v-129q43 9 83 9q89 0 145 -53t56 -149q0 -114 -79 -176t-205 -62q-85 0 -163 23z" />
  739. <glyph d="M319 -10q-114 0 -187 77t-73 226q0 176 101 291.5t270 115.5q60 0 85 -10l-15 -131q-35 11 -71 11q-63 0 -116 -46t-66 -133h3q48 24 113 24q90 0 143.5 -52t53.5 -145q0 -107 -69 -167.5t-172 -60.5zM307 305q-39 0 -63 -24q0 -102 13.5 -141.5t50.5 -39.5q67 0 67 101 q0 104 -68 104z" />
  740. <glyph d="M92 530l13 160h436l22 -20v-100q-217 -241 -226 -570h-185q9 156 78 303.5t170 243.5v3h-97q-124 0 -211 -20z" />
  741. <glyph d="M301 -10q-114 0 -181.5 50.5t-67.5 132.5q0 68 43 116.5t102 65.5v3q-52 33 -83.5 71t-31.5 93q0 76 65 127t170 51q107 0 164 -51.5t57 -117.5q0 -48 -31 -91t-81 -70v-3q142 -66 142 -177q0 -82 -70.5 -141t-196.5 -59zM311 600q-27 0 -45.5 -18.5t-18.5 -49.5 q0 -63 79 -105q47 47 47 104q0 31 -17.5 50t-44.5 19zM295 284q-33 -16 -53 -45t-20 -64q0 -37 23.5 -61t62.5 -24q38 0 64 22t26 59q0 70 -103 113z" />
  742. <glyph d="M56 464q0 110 70 173t175 63q112 0 184 -75.5t72 -222.5q0 -110 -39.5 -202t-123 -151t-197.5 -59q-46 0 -78 8l-2 128q36 -6 68 -6q82 0 126.5 41t59.5 124h-3q-42 -27 -108 -27q-92 0 -148 54.5t-56 151.5zM241 475q0 -108 74 -108q25 0 57 15q0 198 -71 198 q-30 0 -45 -29t-15 -76z" />
  743. <glyph d="M578 272q0 -134 -79.5 -208t-195.5 -74q-114 0 -187 71t-73 198q0 132 78 211t198 79q116 0 187.5 -75.5t71.5 -201.5zM228 274q0 -86 19 -130t66 -44q46 0 63 42t17 123q0 87 -18.5 130.5t-65.5 43.5q-44 0 -62.5 -39.5t-18.5 -125.5z" />
  744. <glyph d="M123 0v130h132v104q0 97 3 135h-3l-125 -18l-25 110l310 88l20 -20v-399h108v-130h-420z" />
  745. <glyph d="M119 0l-20 125q81 38 165.5 106.5t84.5 126.5q0 27 -19.5 44t-54.5 17q-69 0 -158 -67l-17 142q102 55 223 55q95 0 153 -40t58 -108q0 -76 -67.5 -144.5t-167.5 -116.5h65q93 0 170 10l-10 -150h-405z" />
  746. <glyph d="M114 496q34 22 86 37.5t102 15.5q89 0 148 -44t59 -111q0 -54 -38.5 -102t-101.5 -68q80 -14 127.5 -61t47.5 -116q0 -93 -81.5 -150.5t-205.5 -57.5q-85 0 -149 23l16 120q53 -23 121 -23q50 0 82 21t32 61q0 79 -122 79q-38 0 -76 -7v120q68 7 115.5 38t47.5 83 q0 29 -19.5 47t-56.5 18q-62 0 -127 -45z" />
  747. <glyph d="M12 113l270 424l198 11l20 -20v-397q54 4 80 8l-10 -139h-70v-151h-170v151h-298zM157 130v-3q54 2 173 2v95q0 133 7 193h-3z" />
  748. <glyph d="M91 -137l16 125q62 -23 133 -23q51 0 82 25t31 75q0 46 -27.5 68t-73.5 22q-56 0 -118 -28l-25 15v398h243q87 0 160 10l-10 -150h-248v-129q43 9 83 9q89 0 145 -53t56 -149q0 -114 -79 -176t-205 -62q-85 0 -163 23z" />
  749. <glyph d="M319 -10q-114 0 -187 77t-73 226q0 176 101 291.5t270 115.5q60 0 85 -10l-15 -131q-35 11 -71 11q-63 0 -116 -46t-66 -133h3q48 24 113 24q90 0 143.5 -52t53.5 -145q0 -107 -69 -167.5t-172 -60.5zM307 305q-39 0 -63 -24q0 -102 13.5 -141.5t50.5 -39.5q67 0 67 101 q0 104 -68 104z" />
  750. <glyph d="M92 379l13 160h436l22 -20v-100q-217 -241 -226 -570h-185q9 156 78 303.5t170 243.5v3h-97q-124 0 -211 -20z" />
  751. <glyph d="M301 -10q-114 0 -181.5 50.5t-67.5 132.5q0 68 43 116.5t102 65.5v3q-52 33 -83.5 71t-31.5 93q0 76 65 127t170 51q107 0 164 -51.5t57 -117.5q0 -48 -31 -91t-81 -70v-3q142 -66 142 -177q0 -82 -70.5 -141t-196.5 -59zM311 600q-27 0 -45.5 -18.5t-18.5 -49.5 q0 -63 79 -105q47 47 47 104q0 31 -17.5 50t-44.5 19zM295 284q-33 -16 -53 -45t-20 -64q0 -37 23.5 -61t62.5 -24q38 0 64 22t26 59q0 70 -103 113z" />
  752. <glyph d="M56 314q0 110 70 173t175 63q112 0 184 -75.5t72 -222.5q0 -110 -39.5 -202t-123 -151t-197.5 -59q-46 0 -78 8l-2 128q36 -6 68 -6q82 0 126.5 41t59.5 124h-3q-42 -27 -108 -27q-92 0 -148 54.5t-56 151.5zM241 325q0 -108 74 -108q25 0 57 15q0 198 -71 198 q-30 0 -45 -29t-15 -76z" />
  753. <glyph horiz-adv-x="561" d="M531 272q0 -133 -74 -206.5t-183 -73.5q-107 0 -175.5 71t-68.5 198q0 129 73 208t185 79q109 0 176 -75.5t67 -200.5zM210 275q0 -94 15 -138t59 -44q23 0 37.5 12t20.5 39.5t7.5 52t1.5 69.5q0 96 -14 138.5t-58 42.5q-41 0 -55 -39t-14 -133z" />
  754. <glyph horiz-adv-x="371" d="M118 382h-3l-76 -4l-24 103l256 66l20 -19v-528h-176v279q0 74 3 103z" />
  755. <glyph horiz-adv-x="570" d="M105 0l-19 114q26 16 58 40t70.5 58.5t64 75t25.5 75.5q0 29 -17.5 47t-49.5 18q-60 0 -133 -55l-17 132q90 43 191 43q90 0 148 -42.5t58 -110.5q0 -74 -68.5 -148t-160.5 -118h79q66 0 136 8l-9 -137h-356z" />
  756. <glyph horiz-adv-x="476" d="M38 507q34 17 87 29t100 12q80 0 133 -35.5t53 -87.5q0 -41 -30 -77.5t-78 -52.5q63 -12 100.5 -49.5t37.5 -88.5q0 -73 -71.5 -119t-185.5 -46q-81 0 -149 18l15 110q56 -18 126 -18q38 0 61.5 12.5t23.5 37.5q0 49 -110 49q-34 0 -76 -6v111q62 1 109 20.5t47 58.5 q0 43 -59 43q-63 0 -127 -33z" />
  757. <glyph horiz-adv-x="534" d="M25 212l198 326l193 9l19 -18v-299q47 2 69 5l-8 -126h-61v-109h-165v109h-226zM165 229v-3q20 2 105 2v44q0 108 7 159h-3z" />
  758. <glyph horiz-adv-x="513" d="M65 10l16 115q56 -18 122 -18q87 0 87 62q0 57 -76 57q-51 0 -111 -24l-24 13v325h231q79 0 136 8l-9 -137h-218v-76q29 6 66 6q83 0 134 -42t51 -118q0 -91 -73.5 -140t-188.5 -49q-74 0 -143 18z" />
  759. <glyph horiz-adv-x="539" d="M284 -8q-101 0 -167.5 59t-66.5 177q0 135 91 227.5t245 92.5q51 0 72 -7l-14 -121q-34 8 -60 8q-49 0 -93.5 -27.5t-58.5 -78.5h3q69 6 90 6q80 0 127 -40.5t47 -113.5q0 -86 -61.5 -134t-153.5 -48zM269 228q-7 0 -21 -1.5t-19 -1.5q-1 -80 7.5 -106t35.5 -26 q47 0 47 65q0 70 -50 70z" />
  760. <glyph horiz-adv-x="486" d="M25 393l12 147h397l22 -19v-92q-106 -97 -151 -198t-47 -231h-180q8 122 67.5 229.5t153.5 178.5v3h-86q-107 0 -188 -18z" />
  761. <glyph horiz-adv-x="561" d="M272 -8q-106 0 -166.5 41t-60.5 107q0 54 39 92t89 48v2q-31 18 -48.5 30.5t-35 38t-17.5 55.5q0 61 59 101.5t156 40.5q100 0 151 -41.5t51 -92.5q0 -35 -27 -67.5t-71 -52.5v-3q125 -51 125 -136q0 -66 -63.5 -114.5t-180.5 -48.5zM281 457q-21 0 -35 -11t-14 -31 q0 -41 63 -69q34 31 34 68q0 20 -13.5 31.5t-34.5 11.5zM267 214q-57 -23 -57 -73q0 -26 18 -42t51 -16q30 0 51.5 14t20.5 39q0 50 -84 78z" />
  762. <glyph horiz-adv-x="539" d="M40 362q0 87 62.5 136.5t156.5 49.5q100 0 165 -57.5t65 -174.5q0 -63 -20.5 -120t-59.5 -103t-102.5 -73.5t-143.5 -27.5q-35 0 -67 6l-2 118q44 -4 58 -4q69 0 105.5 22.5t50.5 73.5q-45 -9 -88 -9q-82 0 -131 42.5t-49 120.5zM220 372q0 -73 55 -73q20 0 36 5 q-2 73 -13 103t-38 30q-40 0 -40 -65z" />
  763. <glyph d="M555 272q0 -133 -72.5 -206.5t-178.5 -73.5q-104 0 -171 71t-67 198q0 129 71 208t181 79q106 0 171.5 -75.5t65.5 -200.5zM246 275q0 -94 14 -138t54 -44q21 0 34 12t18.5 39.5t7 52t1.5 69.5q0 96 -13 138.5t-53 42.5q-37 0 -50 -39t-13 -133z" />
  764. <glyph d="M124 0v130h132v104q0 97 3 135h-3l-125 -18l-25 110l306 88l20 -20v-399h108v-130h-416z" />
  765. <glyph d="M135 0l-19 114q26 16 58 40t70.5 58.5t64 75t25.5 75.5q0 29 -17.5 47t-49.5 18q-60 0 -133 -55l-17 132q90 43 191 43q90 0 148 -42.5t58 -110.5q0 -74 -68.5 -148t-160.5 -118h79q66 0 136 8l-9 -137h-356z" />
  766. <glyph d="M114 507q34 17 87 29t100 12q80 0 133 -35.5t53 -87.5q0 -41 -30 -77.5t-78 -52.5q63 -12 100.5 -49.5t37.5 -88.5q0 -73 -71.5 -119t-185.5 -46q-82 0 -149 18l15 110q56 -18 126 -18q38 0 61.5 12.5t23.5 37.5q0 49 -110 49q-34 0 -76 -6v111q62 1 109 20.5t47 58.5 q0 43 -59 43q-63 0 -127 -33z" />
  767. <glyph d="M54 212l198 326l193 9l19 -18v-299q47 2 69 5l-8 -126h-61v-109h-165v109h-226zM194 229v-3q20 2 105 2v44q0 108 7 159h-3z" />
  768. <glyph d="M113 10l16 115q50 -18 115 -18q84 0 84 62q0 57 -76 57q-47 0 -101 -24l-24 13v325h221q79 0 136 8l-9 -137h-208v-76q29 6 66 6q78 0 126.5 -42t48.5 -118q0 -91 -71 -140t-181 -49q-74 0 -143 18z" />
  769. <glyph d="M311 -8q-97 0 -160.5 59t-63.5 177q0 135 88.5 227.5t237.5 92.5q51 0 72 -7l-14 -121q-34 8 -60 8q-46 0 -87.5 -27.5t-54.5 -78.5h3q60 6 79 6q81 0 128 -40.5t47 -113.5q0 -86 -61.5 -134t-153.5 -48zM297 228q-7 0 -17 -1.5t-14 -1.5q-1 -81 5.5 -106.5t30.5 -25.5 q44 0 44 64q0 71 -49 71z" />
  770. <glyph d="M114 393l12 147h397l22 -19v-92q-106 -97 -151 -198t-47 -231h-180q8 122 67.5 229.5t153.5 178.5v3h-86q-107 0 -188 -18z" />
  771. <glyph d="M302 -8q-103 0 -162.5 41t-59.5 107q0 54 37 92t86 48v2q-29 18 -46 30.5t-33.5 38t-16.5 55.5q0 61 57.5 101.5t152.5 40.5q97 0 147 -42t50 -92q0 -35 -26 -67.5t-67 -52.5v-3q120 -51 120 -136q0 -66 -62 -114.5t-177 -48.5zM311 457q-18 0 -31 -11t-13 -31 q0 -42 58 -69q29 30 29 68q0 20 -12 31.5t-31 11.5zM297 214q-52 -23 -52 -73q0 -26 16.5 -42t47.5 -16q28 0 47.5 14t19.5 39q0 50 -79 78z" />
  772. <glyph d="M94 361q0 88 62 137.5t156 49.5q104 0 162.5 -61.5t58.5 -170.5q0 -63 -20 -120t-58 -103t-99.5 -73.5t-138.5 -27.5q-35 0 -67 6l-2 118q44 -4 60 -4q63 0 97 22.5t47 72.5q-46 -8 -75 -8q-84 0 -133.5 42.5t-49.5 119.5zM274 372q0 -73 59 -73q10 0 22 3q-1 75 -10 105 t-33 30q-38 0 -38 -65z" />
  773. <glyph horiz-adv-x="350" d="M232 232h-109q-24 280 -43 458l170 10l20 -20q-4 -208 -38 -448zM269 90q0 -41 -29.5 -70.5t-72.5 -29.5q-38 0 -62.5 23.5t-24.5 57.5q0 40 32 69.5t75 29.5q36 0 59 -22t23 -58z" />
  774. <glyph horiz-adv-x="350" d="M81 600q0 41 29.5 70.5t72.5 29.5q38 0 62.5 -23.5t24.5 -57.5q0 -40 -32 -69.5t-75 -29.5q-36 0 -59 22t-23 58zM118 458h109q24 -280 43 -458l-170 -10l-20 20q4 208 38 448z" />
  775. <glyph horiz-adv-x="526" d="M267 226l-101 -5q-18 33 -18 66q0 29 15 54.5t37 44t44 36.5t37 39.5t15 45.5q0 29 -21.5 47t-56.5 18q-33 0 -71 -18t-64 -49l-63 96q90 99 236 99q104 0 164.5 -47.5t60.5 -122.5q0 -42 -21 -78.5t-51.5 -60.5t-61 -43.5t-51.5 -38t-21 -33.5v-42zM318 90 q0 -41 -29.5 -70.5t-72.5 -29.5q-38 0 -62.5 23.5t-24.5 57.5q0 40 32 69.5t75 29.5q36 0 59 -22t23 -58z" />
  776. <glyph horiz-adv-x="526" d="M208 600q0 41 29.5 70.5t72.5 29.5q38 0 62.5 -23.5t24.5 -57.5q0 -40 -32 -69.5t-75 -29.5q-36 0 -59 22t-23 58zM259 464l101 5q18 -33 18 -66q0 -29 -15 -54.5t-37 -44t-44 -36.5t-37 -39.5t-15 -45.5q0 -29 21.5 -47t56.5 -18q33 0 71 18t64 49l63 -96 q-90 -99 -236 -99q-104 0 -164.5 47.5t-60.5 122.5q0 42 21 78.5t51.5 60.5t61 43.5t51.5 38t21 33.5v42z" />
  777. <glyph horiz-adv-x="300" d="M254 350q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q42 0 70 -28t28 -72z" />
  778. <glyph horiz-adv-x="524" d="M256 192q-66 0 -110 40.5t-46 99.5q-3 69 50.5 121t126.5 52q62 0 103.5 -39t43.5 -101q3 -72 -46 -122.5t-122 -50.5z" />
  779. <glyph horiz-adv-x="505" d="M202 337l-7 24l35 149l-132 -117l-55 94l18 18l150 44l-171 56l54 94l24 -6l113 -106l-36 174h108l7 -24l-36 -152l133 120l55 -94l-18 -18l-147 -45l168 -55l-54 -94l-24 6l-114 108l37 -176h-108z" />
  780. <glyph horiz-adv-x="366" d="M330 717l8 -8l-187 -747l-82 15l-8 8l187 747z" />
  781. <glyph horiz-adv-x="397" d="M247 -36l-187 747l8 8l82 15l187 -747l-8 -8z" />
  782. <glyph horiz-adv-x="760" d="M220 -10l-82 15l-8 8l39 157h-121l-8 8l12 82h140l42 170h-119l-8 8l12 82h138l45 180l82 -15l8 -8l-39 -157h145l45 180l82 -15l8 -8l-39 -157h118l8 -8l-12 -82h-137l-42 -170h121l8 -8l-12 -82h-140l-45 -180l-82 15l-8 8l39 157h-145zM288 260h145l42 170h-145z" />
  783. <glyph horiz-adv-x="716" d="M52 215h130l28 110h-119l-8 8l12 82h137l34 135l82 -15l8 -8l-28 -112h135l34 135l82 -15l8 -8l-28 -112h109l8 -8l-12 -82h-127l-28 -110h121l8 -8l-12 -82h-139l-34 -135l-82 15l-8 8l28 112h-135l-34 -135l-82 15l-8 8l28 112h-112l-8 8zM278 215h135l28 110h-135z " />
  784. <glyph horiz-adv-x="449" d="M365 -10q-137 58 -211 148t-74 207t74 207t211 148l64 -90q-163 -104 -163 -265t163 -265z" />
  785. <glyph horiz-adv-x="449" d="M369 345q0 -117 -74 -207t-211 -148l-64 90q163 104 163 265t-163 265l64 90q137 -58 211 -148t74 -207z" />
  786. <glyph horiz-adv-x="469" d="M80 295v100q52 4 74.5 22.5t22.5 51.5q0 21 -13 62.5t-13 66.5q0 60 58 81t207 21l3 -100q-90 0 -90 -55q0 -12 7.5 -45t7.5 -50q0 -40 -30 -66.5t-82 -38.5q52 -12 82 -38.5t30 -66.5q0 -17 -7.5 -50t-7.5 -45q0 -55 90 -55l-3 -100q-149 0 -207 21t-58 81q0 25 13 66.5 t13 62.5q0 33 -22.5 51.5t-74.5 22.5z" />
  787. <glyph horiz-adv-x="469" d="M389 295q-52 -4 -74.5 -22.5t-22.5 -51.5q0 -21 13 -62.5t13 -66.5q0 -60 -58 -81t-207 -21l-3 100q90 0 90 55q0 12 -7.5 45t-7.5 50q0 40 30 66.5t82 38.5q-52 12 -82 38.5t-30 66.5q0 17 7.5 50t7.5 45q0 55 -90 55l3 100q149 0 207 -21t58 -81q0 -25 -13 -66.5 t-13 -62.5q0 -33 22.5 -51.5t74.5 -22.5v-100z" />
  788. <glyph horiz-adv-x="444" d="M120 690h274v-134h-104v-422h104v-134h-274v690z" />
  789. <glyph horiz-adv-x="444" d="M324 690v-690h-274v134h104v422h-104v134h274z" />
  790. <glyph horiz-adv-x="415" d="M30 323v50h355v-50h-355z" />
  791. <glyph horiz-adv-x="600" d="M30 323v50h535v-50h-535z" />
  792. <glyph horiz-adv-x="924" d="M30 323v50h864v-50h-864z" />
  793. <glyph horiz-adv-x="298" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  794. <glyph horiz-adv-x="562" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM299 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  795. <glyph horiz-adv-x="590" d="M253 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5t114 127.5zM523 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5 t114 127.5z" />
  796. <glyph horiz-adv-x="568" d="M305 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM35 419q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  797. <glyph horiz-adv-x="298" d="M253 731q-65 -71 -84 -140q32 -6 53 -31.5t21 -60.5q0 -44 -31.5 -76.5t-76.5 -32.5q-43 0 -71.5 28t-28.5 81q0 74 53 151.5t114 127.5z" />
  798. <glyph horiz-adv-x="298" d="M35 439q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  799. <glyph horiz-adv-x="514" d="M37 363v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183zM256 363v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  800. <glyph horiz-adv-x="514" d="M477 363q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48zM258 363q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  801. <glyph horiz-adv-x="295" d="M37 363v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  802. <glyph horiz-adv-x="295" d="M258 363q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  803. <glyph horiz-adv-x="487" d="M182 760l10 -30l-46 -287h-59l-42 317h137zM432 760l10 -30l-46 -287h-59l-42 317h137z" />
  804. <glyph horiz-adv-x="254" d="M40 763l4 6q71 7 157 7l13 -17l-69 -339h-46l-22 155z" />
  805. <glyph horiz-adv-x="415" d="M30 248v50h355v-50h-355z" />
  806. <glyph horiz-adv-x="595" d="M30 248v50h535v-50h-535z" />
  807. <glyph horiz-adv-x="924" d="M30 249v50h864v-50h-864z" />
  808. <glyph horiz-adv-x="449" d="M365 -85q-137 58 -211 148t-74 207t74 207t211 148l64 -90q-163 -104 -163 -265t163 -265z" />
  809. <glyph horiz-adv-x="449" d="M84 625q137 -58 211 -148t74 -207t-74 -207t-211 -148l-64 90q163 104 163 265t-163 265z" />
  810. <glyph horiz-adv-x="469" d="M80 218v100q52 4 74.5 22.5t22.5 51.5q0 21 -13 62.5t-13 66.5q0 60 58 81t207 21l3 -100q-90 0 -90 -55q0 -12 7.5 -45t7.5 -50q0 -40 -30 -66.5t-82 -38.5q52 -12 82 -38.5t30 -66.5q0 -17 -7.5 -50t-7.5 -45q0 -55 90 -55l-3 -100q-149 0 -207 21t-58 81q0 25 13 66.5 t13 62.5q0 33 -22.5 51.5t-74.5 22.5z" />
  811. <glyph horiz-adv-x="469" d="M389 218q-52 -4 -74.5 -22.5t-22.5 -51.5q0 -21 13 -62.5t13 -66.5q0 -60 -58 -81t-207 -21l-3 100q90 0 90 55q0 12 -7.5 45t-7.5 50q0 40 30 66.5t82 38.5q-52 12 -82 38.5t-30 66.5q0 17 7.5 50t7.5 45q0 55 -90 55l3 100q149 0 207 -21t58 -81q0 -25 -13 -66.5 t-13 -62.5q0 -33 22.5 -51.5t74.5 -22.5v-100z" />
  812. <glyph horiz-adv-x="444" d="M120 613h274v-134h-104v-422h104v-134h-274v690z" />
  813. <glyph horiz-adv-x="444" d="M324 613v-690h-274v134h104v422h-104v134h274z" />
  814. <glyph horiz-adv-x="355" d="M240 232h-114q-33 263 -46 308l175 10l20 -20q-4 -137 -35 -298zM274 90q0 -41 -29.5 -70.5t-72.5 -29.5q-38 0 -62.5 23.5t-24.5 57.5q0 40 32 69.5t75 29.5q36 0 59 -22t23 -58z" />
  815. <glyph horiz-adv-x="355" d="M81 450q0 41 29.5 70.5t72.5 29.5q38 0 62.5 -23.5t24.5 -57.5q0 -40 -32 -69.5t-75 -29.5q-36 0 -59 22t-23 58zM115 308h114q33 -263 46 -308l-175 -10l-20 20q4 137 35 298z" />
  816. <glyph horiz-adv-x="455" d="M249 201l-115 -5q-16 18 -16 50q0 24 14.5 45.5t35.5 36.5t42 28.5t35.5 27.5t14.5 26q0 25 -44 25q-29 0 -76.5 -14t-82.5 -35l-52 96q46 29 110.5 48.5t127.5 19.5q85 0 138.5 -36.5t53.5 -97.5q0 -42 -28 -76.5t-61.5 -52t-61.5 -34t-28 -27.5v-18zM283 81 q0 -37 -27.5 -64t-65.5 -27q-34 0 -56 21.5t-22 52.5q0 36 29 62.5t67 26.5q33 0 54 -19.5t21 -52.5z" />
  817. <glyph horiz-adv-x="455" d="M172 459q0 37 27.5 64t65.5 27q34 0 56 -21.5t22 -52.5q0 -36 -29 -62.5t-67 -26.5q-33 0 -54 19.5t-21 52.5zM206 339l115 5q16 -18 16 -50q0 -24 -14.5 -45.5t-35.5 -36.5t-42 -28.5t-35.5 -27.5t-14.5 -26q0 -25 44 -25q29 0 76.5 14t82.5 35l52 -96 q-46 -29 -110.5 -48.5t-127.5 -19.5q-85 0 -138.5 36.5t-53.5 97.5q0 42 28 76.5t61.5 52t61.5 34t28 27.5v18z" />
  818. <glyph horiz-adv-x="330" d="M269 265q0 -44 -30.5 -73.5t-75.5 -29.5t-73.5 29t-28.5 70q0 43 32.5 73.5t77.5 30.5q43 0 70.5 -27.5t27.5 -72.5z" />
  819. <glyph horiz-adv-x="524" d="M256 85q-66 0 -110 40.5t-46 99.5q-3 69 50.5 121t126.5 52q62 0 103.5 -39t43.5 -101q3 -72 -46 -122.5t-122 -50.5z" />
  820. <glyph horiz-adv-x="298" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  821. <glyph horiz-adv-x="562" d="M35 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5zM299 -148q65 71 84 140q-32 6 -53 31.5t-21 60.5q0 44 31.5 76.5t76.5 32.5q43 0 71.5 -28t28.5 -81q0 -74 -53 -151.5t-114 -127.5z" />
  822. <glyph horiz-adv-x="565" d="M520 572q-42 -46 -51 -78q56 -21 56 -83q0 -46 -31.5 -76.5t-80.5 -30.5q-44 0 -74 29.5t-30 75.5q0 63 55.5 120t125.5 85zM251 572q-42 -46 -51 -78q56 -21 56 -83q0 -46 -31.5 -76.5t-80.5 -30.5q-44 0 -74 29.5t-30 75.5q0 63 55.5 120t125.5 85z" />
  823. <glyph horiz-adv-x="565" d="M45 346q42 46 51 78q-56 21 -56 83q0 46 31.5 76.5t80.5 30.5q44 0 74 -29.5t30 -75.5q0 -63 -55.5 -120t-125.5 -85zM314 346q42 46 51 78q-56 21 -56 83q0 46 31.5 76.5t80.5 30.5q44 0 74 -29.5t30 -75.5q0 -63 -55.5 -120t-125.5 -85z" />
  824. <glyph horiz-adv-x="296" d="M251 572q-42 -46 -51 -78q56 -21 56 -83q0 -46 -31.5 -76.5t-80.5 -30.5q-44 0 -74 29.5t-30 75.5q0 63 55.5 120t125.5 85z" />
  825. <glyph horiz-adv-x="296" d="M45 346q42 46 51 78q-56 21 -56 83q0 46 31.5 76.5t80.5 30.5q44 0 74 -29.5t30 -75.5q0 -63 -55.5 -120t-125.5 -85z" />
  826. <glyph horiz-adv-x="505" d="M202 337l-7 24l35 149l-132 -117l-55 94l18 18l150 44l-171 56l54 94l24 -6l113 -106l-36 174h108l7 -24l-36 -152l133 120l55 -94l-18 -18l-147 -45l168 -55l-54 -94l-24 6l-114 108l37 -176h-108z" />
  827. <glyph horiz-adv-x="514" d="M37 219v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183zM256 219v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  828. <glyph horiz-adv-x="514" d="M477 219q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48zM258 219q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  829. <glyph horiz-adv-x="295" d="M37 219v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
  830. <glyph horiz-adv-x="295" d="M258 219q-88 -71 -173 -183l-46 18q21 95 86 189q-65 94 -86 189l46 18q85 -112 173 -183v-48z" />
  831. <glyph horiz-adv-x="716" d="M52 215h130l28 110h-119l-8 8l12 82h137l34 135l82 -15l8 -8l-28 -112h135l34 135l82 -15l8 -8l-28 -112h109l8 -8l-12 -82h-127l-28 -110h121l8 -8l-12 -82h-139l-34 -135l-82 15l-8 8l28 112h-135l-34 -135l-82 15l-8 8l28 112h-112l-8 8zM278 215h135l28 110h-135z " />
  832. <glyph horiz-adv-x="324" d="M61 -10l142 577l11 4l82 -21l-142 -577l-11 -3z" />
  833. <glyph horiz-adv-x="355" d="M295 -10l-82 -20l-11 3l-142 577l82 21l11 -4z" />
  834. <glyph horiz-adv-x="497" d="M202 610l10 -30l-56 -287h-59l-52 317h157zM442 610l10 -30l-56 -287h-59l-52 317h157z" />
  835. <glyph horiz-adv-x="257" d="M202 610l10 -30l-56 -287h-59l-52 317h157z" />
  836. <glyph horiz-adv-x="492" d="M248 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  837. <glyph horiz-adv-x="550" d="M449 105l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM269 455q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  838. <glyph horiz-adv-x="516" d="M221 -140l-8 8v122q-128 4 -173 39l9 151q32 -21 86 -35.5t93 -14.5q58 0 58 54q0 14 -6 27t-12 21.5t-22 20t-24 16.5t-31 17.5t-30 16.5q-56 32 -88.5 74t-32.5 113q0 84 52.5 136.5t140.5 68.5v132l62 3l8 -8v-122q91 0 148 -25l-19 -155q-66 40 -134 40t-68 -58 q0 -13 5.5 -25t11.5 -20t20.5 -18.5t23.5 -15.5t29.5 -16.5t29.5 -16.5q58 -32 92 -75.5t34 -117.5q0 -87 -52 -139t-141 -64v-131z" />
  839. <glyph horiz-adv-x="570" d="M10 247l5 60h55q-1 8 -1 24t2 46h-50l5 60h54q26 122 109.5 192.5t202.5 70.5q96 0 159 -40l-34 -155q-74 45 -125 45q-44 0 -76 -30t-46 -83h173l-5 -60h-178q-1 -11 -1 -34q0 -14 2 -36h171l-5 -60h-155q33 -107 136 -107q66 0 126 38l21 -148q-74 -40 -170 -40 q-128 0 -208.5 67.5t-100.5 189.5h-66z" />
  840. <glyph horiz-adv-x="593" d="M150 293l-116 5l13 60l107 20h4l4 42q25 280 268 280q96 0 148 -34l-56 -136q-55 40 -97 40q-24 0 -40.5 -13.5t-24.5 -40.5t-11.5 -45.5t-6.5 -50.5l-4 -42h167l8 -18l-19 -67h-165l-26 -247q-2 -24 -4.5 -39t-8 -45t-14 -51.5t-21.5 -49.5t-32.5 -47.5t-44.5 -37.5 t-60 -27t-76 -9q-51 0 -108 16l23 137q54 -23 85 -23q72 0 81 108l28 315h-1z" />
  841. <glyph horiz-adv-x="594" d="M153 278l-116 5l13 60l107 20q7 159 77 248t206 89q114 0 177 -54l-56 -131q-68 55 -119 55q-49 0 -76 -48t-36 -159h178l8 -18l-19 -67h-179q-27 -154 -98 -228q47 -28 81 -44t91.5 -31.5t115.5 -15.5q56 0 109 11l-40 -149q-27 -8 -73 -8q-57 0 -110 17t-101 51.5 t-75 58t-67 63.5q-30 -13 -70 -13q-44 0 -67.5 17t-23.5 45t20.5 44.5t53.5 16.5t72 -18q12 60 15 137z" />
  842. <glyph horiz-adv-x="555" d="M59 92v60h130v70h-130v60h130l-186 399l188 19l51 -140q34 -98 52 -163h2q16 61 50 153l58 150l138 -10l10 -19l-187 -389h130v-60h-130v-70h130v-60h-130v-92h-176v92h-130z" />
  843. <glyph horiz-adv-x="492" d="M248 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  844. <glyph horiz-adv-x="550" d="M449 30l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM269 380q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  845. <glyph horiz-adv-x="475" d="M204 -140l-8 8v124q-123 4 -166 31l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 68 51.5 110.5t134.5 53.5v132l62 3l8 -8v-124q78 -1 135 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5 t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86q0 -62 -48.5 -102t-130.5 -51v-133z" />
  846. <glyph horiz-adv-x="532" d="M1 190l7 60h58v14q0 12 2 32h-53l7 60h58q28 87 105 139.5t183 52.5q94 0 156 -31l-34 -143q-70 35 -120 35q-65 0 -97 -53h136l-7 -60h-149q-2 -18 -2 -29q0 -12 1 -17h143l-7 -60h-119q33 -59 117 -59q62 0 121 26l20 -137q-69 -28 -165 -28q-118 0 -192.5 52 t-95.5 146h-73z" />
  847. <glyph horiz-adv-x="626" d="M371 348h169l8 -18l-19 -67h-168l-12 -97q-15 -119 -46 -180q-64 -126 -215 -126q-51 0 -108 16l23 137q54 -23 85 -23q72 0 81 108l14 165l-114 5l13 60l107 20h1q11 130 76.5 201t191.5 71q96 0 148 -34l-56 -136q-55 40 -97 40q-16 0 -28.5 -5.5t-21 -19t-14 -24 t-9.5 -32t-5 -30t-4 -31.5z" />
  848. <glyph horiz-adv-x="609" d="M453 419q-42 0 -63.5 -32.5t-29.5 -103.5h173l8 -18l-19 -67h-171q-18 -86 -74 -141q134 -67 247 -67q45 0 85 10l-56 -135q-15 -6 -43 -6q-48 0 -94 11.5t-95 39t-70.5 41.5t-71.5 49q-31 -10 -73 -10q-106 0 -106 70q0 34 23 53.5t60 19.5q34 0 81 -20q9 38 12 85 l-114 5l13 60l107 20q13 266 271 266q99 0 151 -34l-56 -131q-52 35 -95 35z" />
  849. <glyph horiz-adv-x="548" d="M64 67v60h120v60h-120v60h100l-164 283l193 18l36 -78q39 -82 61 -146h3q20 57 61 140l41 84l144 -9l9 -18l-164 -274h100v-60h-120v-60h120v-60h-120v-67h-180v67h-120z" />
  850. <glyph d="M295 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  851. <glyph d="M499 174l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM319 524q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  852. <glyph d="M273 -140l-8 8v122q-128 4 -173 39l9 151q32 -21 86 -35.5t93 -14.5q58 0 58 54q0 14 -6 27t-12 21.5t-22 20t-24 16.5t-31 17.5t-30 16.5q-56 32 -88.5 74t-32.5 113q0 84 52.5 136.5t140.5 68.5v132l62 3l8 -8v-122q91 0 148 -25l-19 -155q-66 40 -134 40t-68 -58 q0 -13 5.5 -25t11.5 -20t20.5 -18.5t23.5 -15.5t29.5 -16.5t29.5 -16.5q58 -32 92 -75.5t34 -117.5q0 -87 -52 -139t-141 -64v-131z" />
  853. <glyph d="M39 247l5 60h54v23q0 17 2 47h-50l5 60h53q25 122 103 192.5t190 70.5q89 0 149 -40l-34 -155q-68 45 -115 45q-77 0 -103 -113h149l-5 -60h-153q-1 -11 -1 -34q0 -25 1 -36h147l-5 -60h-132q28 -107 115 -107q59 0 111 38l21 -148q-68 -40 -156 -40q-118 0 -192.5 68 t-93.5 189h-65z" />
  854. <glyph d="M204 293l-106 5l13 60l97 20h4l4 42q25 280 253 280q86 0 133 -34l-56 -136q-45 40 -82 40q-13 0 -24 -6t-18 -20t-11.5 -25t-7.5 -34t-4.5 -32t-3.5 -33l-4 -42h158l8 -18l-19 -67h-156l-25 -247q-3 -29 -5 -45.5t-9.5 -52.5t-17.5 -59.5t-28.5 -54.5t-42 -49.5 t-59.5 -31.5t-79 -13q-47 0 -98 16l23 137q48 -23 73 -23q54 0 63 108l28 315h-1z" />
  855. <glyph d="M185 278l-110 5l13 60l101 20q14 337 268 337q92 0 144 -34l-56 -131q-52 35 -91 35q-40 0 -62.5 -48t-29.5 -159h152l8 -18l-19 -67h-151q-24 -157 -100 -232q44 -26 76.5 -42t84 -30.5t103.5 -14.5q45 0 85 10l-40 -149q-18 -7 -52 -7q-51 0 -99.5 17t-93 51t-70.5 58 t-64 63q-32 -12 -68 -12q-45 0 -68.5 16.5t-23.5 45.5q0 28 20 44.5t52 16.5t74 -20q12 58 15 139z" />
  856. <glyph d="M91 92v60h130v70h-130v60h130l-168 399l188 19l45 -140q22 -67 41 -144h2q4 14 12.5 42.5t15.5 52t12 39.5l50 150l138 -10l10 -19l-170 -389h130v-60h-130v-70h130v-60h-130v-92h-176v92h-130z" />
  857. <glyph d="M307 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  858. <glyph d="M499 30l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM319 380q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  859. <glyph d="M274 -140l-8 8v124q-109 4 -148 31l9 140q27 -17 70.5 -29t76.5 -12q43 0 43 27q0 18 -20.5 32.5t-49.5 28.5t-58 32t-49.5 52.5t-20.5 80.5q0 71 45 113.5t122 54.5v133l62 3l8 -8v-123q79 -2 123 -18l-19 -143q-54 31 -103 31q-53 0 -53 -33q0 -20 20.5 -35.5 t49.5 -29.5t58 -32t49.5 -51t20.5 -79q0 -70 -44.5 -111t-121.5 -52v-132z" />
  860. <glyph d="M48 190l7 60h59v8q0 14 2 38h-54l7 60h59q26 89 99.5 140.5t175.5 51.5q83 0 142 -31l-34 -143q-64 35 -107 35q-57 0 -86 -53h121l-7 -60h-131q-2 -18 -2 -28q0 -12 1 -18h125l-7 -60h-104q29 -59 105 -59q55 0 109 26l20 -137q-65 -28 -150 -28q-115 0 -186.5 52.5 t-90.5 145.5h-73z" />
  861. <glyph d="M386 348h159l8 -18l-19 -67h-158l-12 -97q-15 -119 -42 -179q-58 -127 -195 -127q-47 0 -98 16l23 137q48 -23 73 -23q50 0 59 108l14 165l-104 5l13 60l97 20h1q11 129 72 200.5t174 71.5q92 0 140 -34l-56 -136q-51 40 -86 40q-9 0 -16 -2.5t-12.5 -9t-10 -12.5 t-7.5 -16.5t-5 -18.5t-4 -21t-3 -20.5t-2.5 -21.5t-2.5 -20z" />
  862. <glyph d="M407 420q-35 0 -55 -32.5t-27 -106.5h142l8 -18l-19 -67h-145q-20 -83 -74 -140q120 -50 222 -50q47 0 87 10l-40 -149q-18 -7 -52 -7q-62 0 -124.5 24.5t-99 50t-82.5 64.5q-28 -9 -61 -9q-87 0 -87 60q0 29 19.5 46t52.5 17q28 0 59 -12q12 54 16 95l-109 5l13 60 l101 20q6 127 69 198t185 71q92 0 140 -34l-56 -131q-48 35 -83 35z" />
  863. <glyph d="M100 67v60h120v60h-120v60h102l-149 283l193 18l33 -78q26 -65 47 -143h3q26 88 48 137l37 84l144 -9l9 -18l-149 -274h102v-60h-120v-60h120v-60h-120v-67h-180v67h-120z" />
  864. <glyph d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
  865. <glyph d="M530 303h-450v85q170 5 452 5l8 -8z" />
  866. <glyph d="M459 130l-148 152l-152 -152l-64 64l153 153l-149 153l60 60q57 -54 151 -151l151 151l64 -64l-151 -151q118 -120 151 -153v-11z" />
  867. <glyph d="M388 543q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5zM530 303h-450v85q170 5 452 5l8 -8zM389 171q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5z" />
  868. <glyph d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
  869. <glyph d="M147 125l37 78h-104v85q43 1 146 3l54 112h-200v85q53 2 242 4l53 110l11 3l73 -40l-35 -72h108l8 -8l-10 -82h-149l-53 -111q79 1 204 1l8 -8l-10 -82h-245l-55 -115l-10 -3z" />
  870. <glyph d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
  871. <glyph d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
  872. <glyph d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
  873. <glyph d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
  874. <glyph d="M510 398h-155v-143h-88l-1 143h-166v85q46 1 166 3l-1 139h90v-138q61 1 157 1l8 -8zM530 75h-450v85q170 5 452 5l8 -8z" />
  875. <glyph d="M441 354q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22zM441 130q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10 l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22z" />
  876. <glyph d="M525 415v-253h-90v171h-370v85q170 5 452 5z" />
  877. <glyph horiz-adv-x="840" d="M780 346q0 -85 -51 -140.5t-133 -55.5q-57 0 -97.5 27t-75.5 75q-75 -102 -186 -102q-78 0 -127.5 54.5t-49.5 139.5t51 140.5t133 55.5q101 0 174 -100q75 100 185 100q78 0 127.5 -54.5t49.5 -139.5zM587 450q-36 0 -69 -24t-54 -61l2 -4q31 -59 62 -90t71 -31 q38 0 62 29t24 78q0 46 -27.5 74.5t-70.5 28.5zM155 347q0 -49 27 -77.5t71 -28.5q35 0 69.5 25.5t53.5 58.5l-2 4q-26 44 -41.5 65t-39.5 38.5t-52 17.5q-38 0 -62 -27.5t-24 -75.5z" />
  878. <glyph horiz-adv-x="956" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  879. <glyph horiz-adv-x="1440" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM1405 127q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32 t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM1149 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  880. <glyph d="M530 228h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
  881. <glyph d="M530 228h-450v85q170 5 452 5l8 -8z" />
  882. <glyph d="M459 55l-148 152l-152 -152l-64 64l153 153l-149 153l60 60q57 -54 151 -151l151 151l64 -64l-151 -151q118 -120 151 -153v-11z" />
  883. <glyph d="M388 468q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5zM530 228h-450v85q170 5 452 5l8 -8zM389 96q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5z" />
  884. <glyph d="M530 328h-450v85q170 5 452 5l8 -8zM530 128h-450v85q170 5 452 5l8 -8z" />
  885. <glyph d="M147 50l37 78h-104v85q43 1 146 3l54 112h-200v85q53 2 242 4l53 110l11 3l73 -40l-35 -72h108l8 -8l-10 -82h-149l-53 -111q79 1 204 1l8 -8l-10 -82h-245l-55 -115l-10 -3z" />
  886. <glyph d="M90 18v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
  887. <glyph d="M218 273l312 -160v-95l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95z" />
  888. <glyph d="M85 148v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 0h-450v85q170 5 452 5l8 -8z" />
  889. <glyph d="M223 356l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 0h-450v85q170 5 452 5l8 -8z" />
  890. <glyph d="M510 323h-155v-143h-88l-1 143h-166v85q46 1 166 3l-1 139h90v-138q61 1 157 1l8 -8zM530 0h-450v85q170 5 452 5l8 -8z" />
  891. <glyph d="M441 312q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22zM441 88q-25 0 -139 25t-129 25q-10 0 -49 -47q-3 -3 -4.5 -5.5 t-3.5 -4.5l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22z" />
  892. <glyph d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
  893. <glyph horiz-adv-x="840" d="M780 271q0 -85 -51 -140.5t-133 -55.5q-57 0 -97.5 27t-75.5 75q-75 -102 -186 -102q-78 0 -127.5 54.5t-49.5 139.5t51 140.5t133 55.5q101 0 174 -100q75 100 185 100q78 0 127.5 -54.5t49.5 -139.5zM587 375q-36 0 -69 -24t-54 -61l2 -4q31 -59 62 -90t71 -31 q38 0 62 29t24 78q0 46 -27.5 74.5t-70.5 28.5zM155 272q0 -49 27 -77.5t71 -28.5q35 0 69.5 25.5t53.5 58.5l-2 4q-26 44 -41.5 65t-39.5 38.5t-52 17.5q-38 0 -62 -27.5t-24 -75.5z" />
  894. <glyph horiz-adv-x="1061" d="M730 550l-335 -560h-65l334 560h66zM447 394q0 -71 -58.5 -117t-150.5 -46q-91 0 -147 45.5t-56 113.5q0 70 58 115t151 45q91 0 147 -43.5t56 -112.5zM189 388q0 -97 51 -97q52 0 52 102q0 47 -11 67t-38 20q-29 0 -41.5 -22t-12.5 -70zM1026 153q0 -71 -58.5 -117 t-150.5 -46q-91 0 -147 45.5t-56 113.5q0 70 58 115t151 45q91 0 147 -43.5t56 -112.5zM768 148q0 -88 50 -88q53 0 53 91q0 88 -50 88q-53 0 -53 -91z" />
  895. <glyph horiz-adv-x="1529" d="M730 550l-335 -560h-65l334 560h66zM447 394q0 -71 -58.5 -117t-150.5 -46q-91 0 -147 45.5t-56 113.5q0 70 58 115t151 45q91 0 147 -43.5t56 -112.5zM189 388q0 -97 51 -97q52 0 52 102q0 47 -11 67t-38 20q-29 0 -41.5 -22t-12.5 -70zM1494 153q0 -71 -58.5 -117 t-150.5 -46q-91 0 -147 45.5t-56 113.5q0 70 58 115t151 45q91 0 147 -43.5t56 -112.5zM1026 153q0 -71 -58.5 -117t-150.5 -46q-91 0 -147 45.5t-56 113.5q0 70 58 115t151 45q91 0 147 -43.5t56 -112.5zM1236 148q0 -88 50 -88q53 0 53 91q0 88 -50 88q-53 0 -53 -91z M768 148q0 -88 50 -88q53 0 53 91q0 88 -50 88q-53 0 -53 -91z" />
  896. <glyph horiz-adv-x="802" d="M372 570q-48 0 -48 -41q0 -43 71 -129l123 -149q7 42 7 79q0 49 -8 94l175 19l20 -20q-17 -160 -107 -274q37 -36 82 -36q29 0 55 10l10 -107q-46 -26 -116 -26q-78 0 -150 55q-95 -55 -206 -55q-104 0 -162 48t-58 128q0 71 43.5 120t108.5 66l-11 13q-65 80 -65 153 q0 76 62 129t172 53q131 0 204 -71l-82 -139q-68 80 -120 80zM238 211q0 -50 33.5 -85.5t86.5 -35.5q33 0 63 15q-44 51 -61 71l-99 117q-23 -35 -23 -82z" />
  897. <glyph horiz-adv-x="345" d="M169 446q-56 0 -90 34t-34 89q0 59 36.5 95.5t95.5 36.5q54 0 88.5 -34t34.5 -88q0 -58 -36.5 -95.5t-94.5 -37.5zM173 651q-33 0 -53 -22.5t-20 -57.5q0 -32 20.5 -53.5t51.5 -21.5q33 0 53 23t20 58q0 32 -20 53t-52 21z" />
  898. <glyph horiz-adv-x="345" d="M169 295q-56 0 -90 34t-34 89q0 58 36.5 95t95.5 37q54 0 88.5 -34t34.5 -88q0 -58 -36.5 -95.5t-94.5 -37.5zM173 500q-33 0 -53 -22.5t-20 -57.5q0 -32 20.5 -53.5t51.5 -21.5q33 0 53 23t20 58q0 32 -20 53t-52 21z" />
  899. <glyph horiz-adv-x="690" d="M319 427q-30 0 -30 -21q0 -8 4 -17.5t11.5 -19.5t13 -17t14.5 -16.5t11 -11.5l93 -103q3 19 3 43q0 41 -7 78l165 17l19 -17q-17 -125 -91 -215q27 -21 65 -21q24 0 46 6l9 -100q-42 -20 -104 -20q-68 0 -129 43q-83 -43 -179 -43q-90 0 -139 36.5t-49 99.5 q0 58 40.5 95.5t97.5 44.5l-25 27q-46 46 -46 102q0 62 55.5 106.5t154.5 44.5q104 0 173 -42l-77 -131q-60 52 -99 52zM213 169q0 -34 27 -60t70 -26q21 0 39 7q-18 17 -52 55l-70 75q-14 -23 -14 -51z" />
  900. <glyph horiz-adv-x="345" d="M169 295q-56 0 -90 34t-34 89q0 58 36.5 95t95.5 37q54 0 88.5 -34t34.5 -88q0 -58 -36.5 -95.5t-94.5 -37.5zM173 500q-33 0 -53 -22.5t-20 -57.5q0 -32 20.5 -53.5t51.5 -21.5q33 0 53 23t20 58q0 32 -20 53t-52 21z" />
  901. <glyph horiz-adv-x="482" d="M235 -140l-8 8v132q-101 20 -156 89t-55 175t63 181.5t168 95.5v136l62 3l8 -8v-124h1q94 0 156 -31l-34 -143q-70 35 -120 35q-55 0 -87 -39.5t-32 -102.5q0 -65 35.5 -100.5t99.5 -35.5q62 0 121 26l20 -137q-69 -28 -165 -28h-15v-129z" />
  902. <glyph horiz-adv-x="550" d="M449 30l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM269 380q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  903. <glyph horiz-adv-x="495" d="M214 -140l-8 8v124q-123 4 -166 31l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 68 51.5 110.5t134.5 53.5v132l62 3l8 -8v-124q78 -1 135 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5 t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86q0 -62 -48.5 -102t-130.5 -51v-133z" />
  904. <glyph horiz-adv-x="646" d="M48 190l7 60h58v14q0 12 2 32h-53l7 60h58q28 87 105 139.5t183 52.5q94 0 156 -31l-34 -143q-70 35 -120 35q-65 0 -97 -53h136l-7 -60h-149q-2 -18 -2 -29q0 -12 1 -17h143l-7 -60h-119q33 -59 117 -59q62 0 121 26l20 -137q-69 -28 -165 -28q-118 0 -192.5 52 t-95.5 146h-73z" />
  905. <glyph d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
  906. <glyph d="M530 303h-450v85q170 5 452 5l8 -8z" />
  907. <glyph d="M459 130l-148 152l-152 -152l-64 64l153 153l-149 153l60 60q57 -54 151 -151l151 151l64 -64l-151 -151q118 -120 151 -153v-11z" />
  908. <glyph d="M388 543q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5zM530 303h-450v85q170 5 452 5l8 -8zM389 171q0 -37 -25 -62t-62 -25q-30 0 -50 20t-20 49q0 36 26 61.5t63 25.5q29 0 48.5 -19.5t19.5 -49.5z" />
  909. <glyph d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
  910. <glyph d="M147 125l37 78h-104v85q43 1 146 3l54 112h-200v85q53 2 242 4l53 110l11 3l73 -40l-35 -72h108l8 -8l-10 -82h-149l-53 -111q79 1 204 1l8 -8l-10 -82h-245l-55 -115l-10 -3z" />
  911. <glyph d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
  912. <glyph d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
  913. <glyph d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
  914. <glyph d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
  915. <glyph d="M510 398h-155v-143h-88l-1 143h-166v85q46 1 166 3l-1 139h90v-138q61 1 157 1l8 -8zM530 75h-450v85q170 5 452 5l8 -8z" />
  916. <glyph d="M441 312q-25 0 -139 25t-129 25q-10 0 -49 -47q-5 -7 -8 -10l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22zM441 88q-25 0 -139 25t-129 25q-10 0 -49 -47q-3 -3 -4.5 -5.5 t-3.5 -4.5l-51 34q18 34 31.5 54.5t37 42.5t45.5 22q25 0 139.5 -25t128.5 -25q10 0 49 47q5 7 8 10l51 -34q-18 -34 -31.5 -54.5t-37 -42.5t-45.5 -22z" />
  917. <glyph d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
  918. <glyph horiz-adv-x="840" d="M780 271q0 -85 -51 -140.5t-133 -55.5q-57 0 -97.5 27t-75.5 75q-75 -102 -186 -102q-78 0 -127.5 54.5t-49.5 139.5t51 140.5t133 55.5q101 0 174 -100q75 100 185 100q78 0 127.5 -54.5t49.5 -139.5zM587 375q-36 0 -69 -24t-54 -61l2 -4q31 -59 62 -90t71 -31 q38 0 62 29t24 78q0 46 -27.5 74.5t-70.5 28.5zM155 272q0 -49 27 -77.5t71 -28.5q35 0 69.5 25.5t53.5 58.5l-2 4q-26 44 -41.5 65t-39.5 38.5t-52 17.5q-38 0 -62 -27.5t-24 -75.5z" />
  919. <glyph horiz-adv-x="956" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  920. <glyph horiz-adv-x="1440" d="M738 700l-425 -710h-65l424 710h66zM445 499q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM189 501q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM921 127 q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM1405 127q0 -97 -61 -151t-150 -54q-88 0 -143.5 51.5t-55.5 143.5q0 96 60 153.5t152 57.5q89 0 143.5 -54.5t54.5 -146.5zM665 129q0 -63 12 -95t41 -32 t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91zM1149 129q0 -63 12 -95t41 -32t39 29.5t10 87.5q0 66 -11.5 97.5t-40.5 31.5q-28 0 -39 -28t-11 -91z" />
  921. <glyph horiz-adv-x="609" d="M453 419q-42 0 -63.5 -32.5t-29.5 -103.5h173l8 -18l-19 -67h-171q-18 -86 -74 -141q134 -67 247 -67q45 0 85 10l-56 -135q-15 -6 -43 -6q-48 0 -94 11.5t-95 39t-70.5 41.5t-71.5 49q-31 -10 -73 -10q-106 0 -106 70q0 34 23 53.5t60 19.5q34 0 81 -20q9 38 12 85 l-114 5l13 60l107 20q13 266 271 266q99 0 151 -34l-56 -131q-52 35 -95 35z" />
  922. <glyph d="M311 -140l-8 8v127q-95 18 -150 90t-55 180q0 113 62 190t163 91v131l62 3l8 -8v-124q81 -6 137 -41l-38 -134q-63 46 -119 46q-41 0 -65.5 -37.5t-24.5 -101.5q0 -79 33.5 -122t93.5 -43q40 0 100 29l10 -113q-56 -38 -147 -41v-127z" />
  923. <glyph d="M499 30l-69 72q-48 -32 -113 -32q-58 0 -103 25l-65 -65l-64 64l63 63q-29 47 -29 106q0 67 35 120l-65 67l60 60q38 -36 68 -67q46 27 106 27q62 0 108 -30l70 70l64 -64l-71 -71q25 -47 25 -101q0 -57 -28 -107q28 -29 74 -75v-11zM319 380q-49 0 -77 -32.5t-28 -78.5 q0 -43 28.5 -76t77.5 -33q52 0 78 32t26 79q0 44 -28 76.5t-77 32.5z" />
  924. <glyph d="M277 -140l-8 8v124q-123 4 -166 31l9 140q35 -19 85.5 -30t90.5 -11q45 0 45 31q0 16 -23.5 29.5t-57.5 27t-68 32t-57.5 54.5t-23.5 85q0 68 51.5 110.5t134.5 53.5v132l62 3l8 -8v-124q78 -1 135 -18l-19 -143q-67 31 -132 31q-55 0 -55 -36q0 -19 23.5 -33.5 t57.5 -27.5t68 -31.5t57.5 -54.5t23.5 -86q0 -62 -48.5 -102t-130.5 -51v-133z" />
  925. <glyph horiz-adv-x="536" d="M5 190l7 60h58v14q0 12 2 32h-53l7 60h58q28 87 105 139.5t183 52.5q94 0 156 -31l-34 -143q-70 35 -120 35q-65 0 -97 -53h136l-7 -60h-149q-2 -18 -2 -29q0 -12 1 -17h143l-7 -60h-119q33 -59 117 -59q62 0 121 26l20 -137q-69 -28 -165 -28q-118 0 -192.5 52 t-95.5 146h-73z" />
  926. <glyph d="M411 420q-35 0 -55 -32.5t-27 -106.5h142l8 -18l-19 -67h-145q-20 -83 -74 -140q120 -50 222 -50q47 0 87 10l-40 -149q-18 -7 -52 -7q-62 0 -124.5 24.5t-99 50t-82.5 64.5q-28 -9 -61 -9q-87 0 -87 60q0 29 19.5 46t52.5 17q27 0 59 -12q12 54 16 95l-109 5l13 60 l101 20q6 127 69 198t185 71q92 0 140 -34l-56 -131q-48 35 -83 35z" />
  927. <glyph d="M100 67v60h120v60h-120v60h102l-149 283l193 18l33 -78q26 -65 47 -143h3q26 88 48 137l37 84l144 -9l9 -18l-149 -274h102v-60h-120v-60h120v-60h-120v-67h-180v67h-120z" />
  928. <glyph horiz-adv-x="588" d="M84 67v60h120v60h-120v60h100l-164 283l193 18l36 -78q39 -82 61 -146h3q20 57 61 140l41 84l144 -9l9 -18l-164 -274h100v-60h-120v-60h120v-60h-120v-67h-180v67h-120z" />
  929. <glyph horiz-adv-x="626" d="M371 348h169l8 -18l-19 -67h-168l-12 -97q-15 -119 -46 -180q-64 -126 -215 -126q-51 0 -108 16l23 137q54 -23 85 -23q72 0 81 108l14 165l-114 5l13 60l107 20h1q11 130 76.5 201t191.5 71q96 0 148 -34l-56 -136q-55 40 -97 40q-16 0 -28.5 -5.5t-21 -19t-14 -24 t-9.5 -32t-5 -30t-4 -31.5z" />
  930. <glyph d="M386 348h159l8 -18l-19 -67h-158l-12 -97q-15 -119 -42 -179q-58 -127 -195 -127q-47 0 -98 16l23 137q48 -23 73 -23q50 0 59 108l14 165l-104 5l13 60l97 20h1q11 129 72 200.5t174 71.5q92 0 140 -34l-56 -136q-51 40 -86 40q-9 0 -16 -2.5t-12.5 -9t-10 -12.5 t-7.5 -16.5t-5 -18.5t-4 -21t-3 -20.5t-2.5 -21.5t-2.5 -20z" />
  931. <glyph horiz-adv-x="630" d="M309 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM632 863l-10 -29q-127 -61 -296 -63l-12 41q118 68 211 142zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680zM365 -225l-57 75q72 108 72 290v363q0 91 -15 178l181 19l19 -19v-541q0 -140 -41 -218.5 t-159 -146.5z" />
  932. <glyph horiz-adv-x="593" d="M251 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM545 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180zM365 -260l-70 60q58 95 58 245v268q0 91 -15 178l175 19l20 -20v-440q0 -117 -35.5 -185.5 t-132.5 -124.5z" />
  933. <glyph horiz-adv-x="558" d="M243 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM508 806l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529zM319 -162l-49 56q58 88 58 234v258q0 78 -14 145l176 17l18 -18v-402q0 -114 -37.5 -176t-151.5 -114 z" />
  934. <hkern u1="&#x21;" u2="&#x1ef9;" k="20" />
  935. <hkern u1="&#x21;" u2="&#x1ef3;" k="20" />
  936. <hkern u1="&#x21;" u2="&#x1ee5;" k="30" />
  937. <hkern u1="&#x21;" u2="&#x233;" k="20" />
  938. <hkern u1="&#x21;" u2="&#x1dc;" k="30" />
  939. <hkern u1="&#x21;" u2="&#x1da;" k="30" />
  940. <hkern u1="&#x21;" u2="&#x1d8;" k="30" />
  941. <hkern u1="&#x21;" u2="&#x1d6;" k="30" />
  942. <hkern u1="&#x21;" u2="&#x1d4;" k="30" />
  943. <hkern u1="&#x21;" u2="&#x177;" k="20" />
  944. <hkern u1="&#x21;" u2="&#x173;" k="30" />
  945. <hkern u1="&#x21;" u2="&#x171;" k="30" />
  946. <hkern u1="&#x21;" u2="&#x16f;" k="30" />
  947. <hkern u1="&#x21;" u2="&#x16d;" k="30" />
  948. <hkern u1="&#x21;" u2="&#x16b;" k="30" />
  949. <hkern u1="&#x21;" u2="&#x169;" k="30" />
  950. <hkern u1="&#x21;" u2="&#xff;" k="20" />
  951. <hkern u1="&#x21;" u2="&#xfd;" k="20" />
  952. <hkern u1="&#x21;" u2="&#xfc;" k="30" />
  953. <hkern u1="&#x21;" u2="&#xfb;" k="30" />
  954. <hkern u1="&#x21;" u2="&#xfa;" k="30" />
  955. <hkern u1="&#x21;" u2="&#xf9;" k="30" />
  956. <hkern u1="&#x21;" u2="y" k="20" />
  957. <hkern u1="&#x21;" u2="u" k="30" />
  958. <hkern u1="&#x22;" g2="s_h" k="50" />
  959. <hkern u1="&#x22;" g2="c_t" k="40" />
  960. <hkern u1="&#x22;" g2="c_h" k="40" />
  961. <hkern u1="&#x22;" u2="&#xfb02;" k="10" />
  962. <hkern u1="&#x22;" u2="&#xfb01;" k="10" />
  963. <hkern u1="&#x22;" u2="&#x1ecd;" k="40" />
  964. <hkern u1="&#x22;" u2="&#x1ebd;" k="40" />
  965. <hkern u1="&#x22;" u2="&#x1eb9;" k="40" />
  966. <hkern u1="&#x22;" u2="&#x1e9e;" k="10" />
  967. <hkern u1="&#x22;" u2="&#x1e63;" k="50" />
  968. <hkern u1="&#x22;" u2="&#x1e0d;" k="40" />
  969. <hkern u1="&#x22;" u2="&#x259;" k="40" />
  970. <hkern u1="&#x22;" u2="&#x219;" k="50" />
  971. <hkern u1="&#x22;" u2="&#x1ff;" k="40" />
  972. <hkern u1="&#x22;" u2="&#x1eb;" k="40" />
  973. <hkern u1="&#x22;" u2="&#x1d2;" k="40" />
  974. <hkern u1="&#x22;" u2="&#x161;" k="50" />
  975. <hkern u1="&#x22;" u2="&#x15f;" k="50" />
  976. <hkern u1="&#x22;" u2="&#x15d;" k="50" />
  977. <hkern u1="&#x22;" u2="&#x15b;" k="50" />
  978. <hkern u1="&#x22;" u2="&#x153;" k="40" />
  979. <hkern u1="&#x22;" u2="&#x151;" k="40" />
  980. <hkern u1="&#x22;" u2="&#x14f;" k="40" />
  981. <hkern u1="&#x22;" u2="&#x14d;" k="40" />
  982. <hkern u1="&#x22;" u2="&#x11b;" k="40" />
  983. <hkern u1="&#x22;" u2="&#x119;" k="40" />
  984. <hkern u1="&#x22;" u2="&#x117;" k="40" />
  985. <hkern u1="&#x22;" u2="&#x115;" k="40" />
  986. <hkern u1="&#x22;" u2="&#x113;" k="40" />
  987. <hkern u1="&#x22;" u2="&#x111;" k="40" />
  988. <hkern u1="&#x22;" u2="&#x10f;" k="40" />
  989. <hkern u1="&#x22;" u2="&#x10d;" k="40" />
  990. <hkern u1="&#x22;" u2="&#x10b;" k="40" />
  991. <hkern u1="&#x22;" u2="&#x109;" k="40" />
  992. <hkern u1="&#x22;" u2="&#x107;" k="40" />
  993. <hkern u1="&#x22;" u2="&#xf8;" k="40" />
  994. <hkern u1="&#x22;" u2="&#xf6;" k="40" />
  995. <hkern u1="&#x22;" u2="&#xf5;" k="40" />
  996. <hkern u1="&#x22;" u2="&#xf4;" k="40" />
  997. <hkern u1="&#x22;" u2="&#xf3;" k="40" />
  998. <hkern u1="&#x22;" u2="&#xf2;" k="40" />
  999. <hkern u1="&#x22;" u2="&#xf0;" k="40" />
  1000. <hkern u1="&#x22;" u2="&#xeb;" k="40" />
  1001. <hkern u1="&#x22;" u2="&#xea;" k="40" />
  1002. <hkern u1="&#x22;" u2="&#xe9;" k="40" />
  1003. <hkern u1="&#x22;" u2="&#xe8;" k="40" />
  1004. <hkern u1="&#x22;" u2="&#xe7;" k="40" />
  1005. <hkern u1="&#x22;" u2="&#xdf;" k="10" />
  1006. <hkern u1="&#x22;" u2="s" k="50" />
  1007. <hkern u1="&#x22;" u2="q" k="40" />
  1008. <hkern u1="&#x22;" u2="o" k="40" />
  1009. <hkern u1="&#x22;" u2="f" k="10" />
  1010. <hkern u1="&#x22;" u2="e" k="40" />
  1011. <hkern u1="&#x22;" u2="d" k="40" />
  1012. <hkern u1="&#x22;" u2="c" k="40" />
  1013. <hkern u1="&#x2d;" g2="x.sc" k="15" />
  1014. <hkern u1="&#x2d;" u2="&#x222b;" k="10" />
  1015. <hkern u1="&#x2d;" u2="&#x2211;" k="50" />
  1016. <hkern u1="&#x2d;" u2="&#x220f;" k="10" />
  1017. <hkern u1="&#x2d;" u2="&#x394;" k="10" />
  1018. <hkern u1="&#x2d;" u2="x" k="20" />
  1019. <hkern u1="&#x2d;" u2="X" k="20" />
  1020. <hkern u1="A" g2="ampersand.caps" k="20" />
  1021. <hkern u1="A" g2="quotesingle.caps" k="60" />
  1022. <hkern u1="A" g2="quotedbl.caps" k="80" />
  1023. <hkern u1="A" g2="asterisk.caps" k="60" />
  1024. <hkern u1="A" g2="question.caps" k="90" />
  1025. <hkern u1="A" u2="V" k="30" />
  1026. <hkern u1="B" g2="quotesingle.caps" k="30" />
  1027. <hkern u1="B" g2="quotedbl.caps" k="30" />
  1028. <hkern u1="B" g2="asterisk.caps" k="20" />
  1029. <hkern u1="B" g2="question.caps" k="60" />
  1030. <hkern u1="B" g2="exclam.caps" k="70" />
  1031. <hkern u1="B" u2="_" k="20" />
  1032. <hkern u1="B" u2="X" k="25" />
  1033. <hkern u1="B" u2="M" k="5" />
  1034. <hkern u1="C" g2="question.caps" k="20" />
  1035. <hkern u1="C" g2="exclam.caps" k="40" />
  1036. <hkern u1="D" g2="ampersand.caps" k="10" />
  1037. <hkern u1="D" g2="quotesingle.caps" k="10" />
  1038. <hkern u1="D" g2="quotedbl.caps" k="10" />
  1039. <hkern u1="D" g2="bracketright.caps" k="20" />
  1040. <hkern u1="D" g2="asterisk.caps" k="10" />
  1041. <hkern u1="D" g2="question.caps" k="70" />
  1042. <hkern u1="D" u2="&#x7d;" k="-30" />
  1043. <hkern u1="F" g2="ampersand.caps" k="30" />
  1044. <hkern u1="F" g2="question.caps" k="10" />
  1045. <hkern u1="F" g2="exclam.caps" k="40" />
  1046. <hkern u1="F" g2="m.sc" k="25" />
  1047. <hkern u1="F" u2="M" k="15" />
  1048. <hkern u1="G" g2="question.caps" k="20" />
  1049. <hkern u1="G" g2="exclam.caps" k="40" />
  1050. <hkern u1="H" g2="question.caps" k="50" />
  1051. <hkern u1="H" g2="exclam.caps" k="20" />
  1052. <hkern u1="I" g2="question.caps" k="50" />
  1053. <hkern u1="I" g2="exclam.caps" k="20" />
  1054. <hkern u1="J" g2="question.caps" k="30" />
  1055. <hkern u1="J" g2="exclam.caps" k="20" />
  1056. <hkern u1="K" g2="ampersand.caps" k="40" />
  1057. <hkern u1="K" g2="question.caps" k="40" />
  1058. <hkern u1="K" g2="exclam.caps" k="20" />
  1059. <hkern u1="L" g2="quotesingle.caps" k="60" />
  1060. <hkern u1="L" g2="quotedbl.caps" k="60" />
  1061. <hkern u1="L" g2="asterisk.caps" k="80" />
  1062. <hkern u1="L" g2="periodcentered.caps" k="20" />
  1063. <hkern u1="L" g2="question.caps" k="80" />
  1064. <hkern u1="L" g2="exclam.caps" k="40" />
  1065. <hkern u1="M" g2="question.caps" k="50" />
  1066. <hkern u1="M" g2="exclam.caps" k="40" />
  1067. <hkern u1="N" g2="question.caps" k="50" />
  1068. <hkern u1="N" g2="exclam.caps" k="20" />
  1069. <hkern u1="O" g2="ampersand.caps" k="10" />
  1070. <hkern u1="O" g2="quotesingle.caps" k="10" />
  1071. <hkern u1="O" g2="quotedbl.caps" k="10" />
  1072. <hkern u1="O" g2="bracketright.caps" k="20" />
  1073. <hkern u1="O" g2="asterisk.caps" k="10" />
  1074. <hkern u1="O" g2="question.caps" k="70" />
  1075. <hkern u1="O" u2="&#x7d;" k="-30" />
  1076. <hkern u1="P" g2="ampersand.caps" k="30" />
  1077. <hkern u1="P" g2="questiondown.caps" k="10" />
  1078. <hkern u1="P" g2="question.caps" k="40" />
  1079. <hkern u1="P" g2="exclam.caps" k="30" />
  1080. <hkern u1="P" g2="m.sc" k="10" />
  1081. <hkern u1="P" u2="_" k="30" />
  1082. <hkern u1="P" u2="X" k="30" />
  1083. <hkern u1="P" u2="M" k="20" />
  1084. <hkern u1="Q" g2="ampersand.caps" k="10" />
  1085. <hkern u1="Q" g2="quotesingle.caps" k="10" />
  1086. <hkern u1="Q" g2="quotedbl.caps" k="10" />
  1087. <hkern u1="Q" g2="bracketright.caps" k="20" />
  1088. <hkern u1="Q" g2="asterisk.caps" k="10" />
  1089. <hkern u1="Q" g2="question.caps" k="70" />
  1090. <hkern u1="Q" u2="&#x7d;" k="-30" />
  1091. <hkern u1="R" g2="ampersand.caps" k="10" />
  1092. <hkern u1="R" g2="question.caps" k="40" />
  1093. <hkern u1="R" g2="exclam.caps" k="50" />
  1094. <hkern u1="S" g2="question.caps" k="50" />
  1095. <hkern u1="S" g2="exclam.caps" k="60" />
  1096. <hkern u1="T" g2="ampersand.caps" k="50" />
  1097. <hkern u1="T" g2="exclam.caps" k="30" />
  1098. <hkern u1="U" g2="question.caps" k="30" />
  1099. <hkern u1="V" g2="ampersand.caps" k="70" />
  1100. <hkern u1="V" g2="question.caps" k="20" />
  1101. <hkern u1="V" u2="&#x1ebd;" k="50" />
  1102. <hkern u1="V" u2="&#x1eb9;" k="50" />
  1103. <hkern u1="V" u2="&#x1ea1;" k="45" />
  1104. <hkern u1="V" u2="&#x1ea0;" k="60" />
  1105. <hkern u1="V" u2="&#x1fb;" k="45" />
  1106. <hkern u1="V" u2="&#x1fa;" k="60" />
  1107. <hkern u1="V" u2="&#x1ce;" k="45" />
  1108. <hkern u1="V" u2="&#x1cd;" k="60" />
  1109. <hkern u1="V" u2="&#x11b;" k="50" />
  1110. <hkern u1="V" u2="&#x119;" k="50" />
  1111. <hkern u1="V" u2="&#x117;" k="50" />
  1112. <hkern u1="V" u2="&#x115;" k="50" />
  1113. <hkern u1="V" u2="&#x113;" k="50" />
  1114. <hkern u1="V" u2="&#x105;" k="45" />
  1115. <hkern u1="V" u2="&#x104;" k="60" />
  1116. <hkern u1="V" u2="&#x103;" k="45" />
  1117. <hkern u1="V" u2="&#x102;" k="60" />
  1118. <hkern u1="V" u2="&#x101;" k="45" />
  1119. <hkern u1="V" u2="&#x100;" k="60" />
  1120. <hkern u1="V" u2="&#xeb;" k="50" />
  1121. <hkern u1="V" u2="&#xea;" k="50" />
  1122. <hkern u1="V" u2="&#xe9;" k="50" />
  1123. <hkern u1="V" u2="&#xe8;" k="50" />
  1124. <hkern u1="V" u2="&#xe5;" k="45" />
  1125. <hkern u1="V" u2="&#xe4;" k="45" />
  1126. <hkern u1="V" u2="&#xe3;" k="45" />
  1127. <hkern u1="V" u2="&#xe2;" k="45" />
  1128. <hkern u1="V" u2="&#xe1;" k="45" />
  1129. <hkern u1="V" u2="&#xe0;" k="45" />
  1130. <hkern u1="V" u2="&#xc5;" k="60" />
  1131. <hkern u1="V" u2="&#xc4;" k="60" />
  1132. <hkern u1="V" u2="&#xc3;" k="60" />
  1133. <hkern u1="V" u2="&#xc2;" k="60" />
  1134. <hkern u1="V" u2="&#xc1;" k="60" />
  1135. <hkern u1="V" u2="&#xc0;" k="60" />
  1136. <hkern u1="V" u2="e" k="50" />
  1137. <hkern u1="V" u2="a" k="45" />
  1138. <hkern u1="V" u2="A" k="30" />
  1139. <hkern u1="W" g2="ampersand.caps" k="70" />
  1140. <hkern u1="W" g2="question.caps" k="20" />
  1141. <hkern u1="X" g2="ampersand.caps" k="20" />
  1142. <hkern u1="X" g2="periodcentered.caps" k="10" />
  1143. <hkern u1="X" g2="exclam.caps" k="30" />
  1144. <hkern u1="X" u2="&#x2013;" k="15" />
  1145. <hkern u1="X" u2="&#x2d;" k="20" />
  1146. <hkern u1="Y" g2="ampersand.caps" k="60" />
  1147. <hkern u1="Y" g2="question.caps" k="20" />
  1148. <hkern u1="Z" g2="question.caps" k="30" />
  1149. <hkern u1="_" u2="&#x2202;" k="30" />
  1150. <hkern u1="_" u2="&#x3c0;" k="30" />
  1151. <hkern u1="_" u2="&#x18f;" k="40" />
  1152. <hkern u1="b" g2="asterisk.caps" k="20" />
  1153. <hkern u1="f" g2="asterisk.caps" k="-70" />
  1154. <hkern u1="f" u2="&#x22;" k="-50" />
  1155. <hkern u1="h" u2="&#x27;" k="50" />
  1156. <hkern u1="m" u2="&#x27;" k="50" />
  1157. <hkern u1="n" u2="&#x27;" k="50" />
  1158. <hkern u1="o" g2="asterisk.caps" k="20" />
  1159. <hkern u1="p" g2="asterisk.caps" k="20" />
  1160. <hkern u1="s" u2="&#x27;" k="40" />
  1161. <hkern u1="u" u2="&#x22;" k="40" />
  1162. <hkern u1="&#xc0;" g2="ampersand.caps" k="20" />
  1163. <hkern u1="&#xc0;" g2="quotesingle.caps" k="60" />
  1164. <hkern u1="&#xc0;" g2="quotedbl.caps" k="80" />
  1165. <hkern u1="&#xc0;" g2="asterisk.caps" k="60" />
  1166. <hkern u1="&#xc0;" g2="question.caps" k="90" />
  1167. <hkern u1="&#xc0;" u2="V" k="30" />
  1168. <hkern u1="&#xc1;" g2="ampersand.caps" k="20" />
  1169. <hkern u1="&#xc1;" g2="quotesingle.caps" k="60" />
  1170. <hkern u1="&#xc1;" g2="quotedbl.caps" k="80" />
  1171. <hkern u1="&#xc1;" g2="asterisk.caps" k="60" />
  1172. <hkern u1="&#xc1;" g2="question.caps" k="90" />
  1173. <hkern u1="&#xc1;" u2="V" k="30" />
  1174. <hkern u1="&#xc2;" g2="ampersand.caps" k="20" />
  1175. <hkern u1="&#xc2;" g2="quotesingle.caps" k="60" />
  1176. <hkern u1="&#xc2;" g2="quotedbl.caps" k="80" />
  1177. <hkern u1="&#xc2;" g2="asterisk.caps" k="60" />
  1178. <hkern u1="&#xc2;" g2="question.caps" k="90" />
  1179. <hkern u1="&#xc2;" u2="V" k="30" />
  1180. <hkern u1="&#xc3;" g2="ampersand.caps" k="20" />
  1181. <hkern u1="&#xc3;" g2="quotesingle.caps" k="60" />
  1182. <hkern u1="&#xc3;" g2="quotedbl.caps" k="80" />
  1183. <hkern u1="&#xc3;" g2="asterisk.caps" k="60" />
  1184. <hkern u1="&#xc3;" g2="question.caps" k="90" />
  1185. <hkern u1="&#xc3;" u2="V" k="30" />
  1186. <hkern u1="&#xc4;" g2="ampersand.caps" k="20" />
  1187. <hkern u1="&#xc4;" g2="quotesingle.caps" k="60" />
  1188. <hkern u1="&#xc4;" g2="quotedbl.caps" k="80" />
  1189. <hkern u1="&#xc4;" g2="asterisk.caps" k="60" />
  1190. <hkern u1="&#xc4;" g2="question.caps" k="90" />
  1191. <hkern u1="&#xc4;" u2="V" k="30" />
  1192. <hkern u1="&#xc5;" g2="ampersand.caps" k="20" />
  1193. <hkern u1="&#xc5;" g2="quotesingle.caps" k="60" />
  1194. <hkern u1="&#xc5;" g2="quotedbl.caps" k="80" />
  1195. <hkern u1="&#xc5;" g2="asterisk.caps" k="60" />
  1196. <hkern u1="&#xc5;" g2="question.caps" k="90" />
  1197. <hkern u1="&#xc5;" u2="V" k="30" />
  1198. <hkern u1="&#xc7;" g2="question.caps" k="20" />
  1199. <hkern u1="&#xc7;" g2="exclam.caps" k="40" />
  1200. <hkern u1="&#xcc;" g2="question.caps" k="50" />
  1201. <hkern u1="&#xcc;" g2="exclam.caps" k="20" />
  1202. <hkern u1="&#xcd;" g2="question.caps" k="50" />
  1203. <hkern u1="&#xcd;" g2="exclam.caps" k="20" />
  1204. <hkern u1="&#xce;" g2="question.caps" k="50" />
  1205. <hkern u1="&#xce;" g2="exclam.caps" k="20" />
  1206. <hkern u1="&#xcf;" g2="question.caps" k="50" />
  1207. <hkern u1="&#xcf;" g2="exclam.caps" k="20" />
  1208. <hkern u1="&#xd0;" g2="ampersand.caps" k="10" />
  1209. <hkern u1="&#xd0;" g2="quotesingle.caps" k="10" />
  1210. <hkern u1="&#xd0;" g2="quotedbl.caps" k="10" />
  1211. <hkern u1="&#xd0;" g2="bracketright.caps" k="20" />
  1212. <hkern u1="&#xd0;" g2="asterisk.caps" k="10" />
  1213. <hkern u1="&#xd0;" g2="question.caps" k="70" />
  1214. <hkern u1="&#xd0;" u2="&#x7d;" k="-30" />
  1215. <hkern u1="&#xd1;" g2="question.caps" k="50" />
  1216. <hkern u1="&#xd1;" g2="exclam.caps" k="20" />
  1217. <hkern u1="&#xd2;" g2="ampersand.caps" k="10" />
  1218. <hkern u1="&#xd2;" g2="quotesingle.caps" k="10" />
  1219. <hkern u1="&#xd2;" g2="quotedbl.caps" k="10" />
  1220. <hkern u1="&#xd2;" g2="bracketright.caps" k="20" />
  1221. <hkern u1="&#xd2;" g2="asterisk.caps" k="10" />
  1222. <hkern u1="&#xd2;" g2="question.caps" k="70" />
  1223. <hkern u1="&#xd2;" u2="&#x7d;" k="-30" />
  1224. <hkern u1="&#xd3;" g2="ampersand.caps" k="10" />
  1225. <hkern u1="&#xd3;" g2="quotesingle.caps" k="10" />
  1226. <hkern u1="&#xd3;" g2="quotedbl.caps" k="10" />
  1227. <hkern u1="&#xd3;" g2="bracketright.caps" k="20" />
  1228. <hkern u1="&#xd3;" g2="asterisk.caps" k="10" />
  1229. <hkern u1="&#xd3;" g2="question.caps" k="70" />
  1230. <hkern u1="&#xd3;" u2="&#x7d;" k="-30" />
  1231. <hkern u1="&#xd4;" g2="ampersand.caps" k="10" />
  1232. <hkern u1="&#xd4;" g2="quotesingle.caps" k="10" />
  1233. <hkern u1="&#xd4;" g2="quotedbl.caps" k="10" />
  1234. <hkern u1="&#xd4;" g2="bracketright.caps" k="20" />
  1235. <hkern u1="&#xd4;" g2="asterisk.caps" k="10" />
  1236. <hkern u1="&#xd4;" g2="question.caps" k="70" />
  1237. <hkern u1="&#xd4;" u2="&#x7d;" k="-30" />
  1238. <hkern u1="&#xd5;" g2="ampersand.caps" k="10" />
  1239. <hkern u1="&#xd5;" g2="quotesingle.caps" k="10" />
  1240. <hkern u1="&#xd5;" g2="quotedbl.caps" k="10" />
  1241. <hkern u1="&#xd5;" g2="bracketright.caps" k="20" />
  1242. <hkern u1="&#xd5;" g2="asterisk.caps" k="10" />
  1243. <hkern u1="&#xd5;" g2="question.caps" k="70" />
  1244. <hkern u1="&#xd5;" u2="&#x7d;" k="-30" />
  1245. <hkern u1="&#xd6;" g2="ampersand.caps" k="10" />
  1246. <hkern u1="&#xd6;" g2="quotesingle.caps" k="10" />
  1247. <hkern u1="&#xd6;" g2="quotedbl.caps" k="10" />
  1248. <hkern u1="&#xd6;" g2="bracketright.caps" k="20" />
  1249. <hkern u1="&#xd6;" g2="asterisk.caps" k="10" />
  1250. <hkern u1="&#xd6;" g2="question.caps" k="70" />
  1251. <hkern u1="&#xd6;" u2="&#x7d;" k="-30" />
  1252. <hkern u1="&#xd8;" g2="ampersand.caps" k="10" />
  1253. <hkern u1="&#xd8;" g2="quotesingle.caps" k="10" />
  1254. <hkern u1="&#xd8;" g2="quotedbl.caps" k="10" />
  1255. <hkern u1="&#xd8;" g2="bracketright.caps" k="20" />
  1256. <hkern u1="&#xd8;" g2="asterisk.caps" k="10" />
  1257. <hkern u1="&#xd8;" g2="question.caps" k="70" />
  1258. <hkern u1="&#xd8;" u2="&#x7d;" k="-30" />
  1259. <hkern u1="&#xd9;" g2="question.caps" k="30" />
  1260. <hkern u1="&#xda;" g2="question.caps" k="30" />
  1261. <hkern u1="&#xdb;" g2="question.caps" k="30" />
  1262. <hkern u1="&#xdc;" g2="question.caps" k="30" />
  1263. <hkern u1="&#xdd;" g2="ampersand.caps" k="60" />
  1264. <hkern u1="&#xdd;" g2="question.caps" k="20" />
  1265. <hkern u1="&#xde;" g2="x.sc" k="10" />
  1266. <hkern u1="&#xde;" g2="m.sc" k="10" />
  1267. <hkern u1="&#xde;" u2="_" k="40" />
  1268. <hkern u1="&#xdf;" g2="quotesingle.sc" k="20" />
  1269. <hkern u1="&#xdf;" g2="quotedbl.sc" k="20" />
  1270. <hkern u1="&#xdf;" g2="asterisk.sc" k="20" />
  1271. <hkern u1="&#xdf;" g2="question.sc" k="20" />
  1272. <hkern u1="&#xdf;" g2="exclam.sc" k="40" />
  1273. <hkern u1="&#xdf;" g2="bracketright.sc" k="20" />
  1274. <hkern u1="&#xdf;" g2="braceright.sc" k="30" />
  1275. <hkern u1="&#xf0;" g2="ampersand.caps" k="10" />
  1276. <hkern u1="&#xf0;" g2="quotesingle.caps" k="10" />
  1277. <hkern u1="&#xf0;" g2="quotedbl.caps" k="10" />
  1278. <hkern u1="&#xf0;" g2="bracketright.caps" k="20" />
  1279. <hkern u1="&#xf0;" g2="asterisk.caps" k="10" />
  1280. <hkern u1="&#xf0;" g2="question.caps" k="70" />
  1281. <hkern u1="&#xf0;" u2="&#x7d;" k="-30" />
  1282. <hkern u1="&#xf1;" u2="&#x27;" k="50" />
  1283. <hkern u1="&#xf2;" g2="asterisk.caps" k="20" />
  1284. <hkern u1="&#xf3;" g2="asterisk.caps" k="20" />
  1285. <hkern u1="&#xf4;" g2="asterisk.caps" k="20" />
  1286. <hkern u1="&#xf5;" g2="asterisk.caps" k="20" />
  1287. <hkern u1="&#xf6;" g2="asterisk.caps" k="20" />
  1288. <hkern u1="&#xf8;" g2="asterisk.caps" k="20" />
  1289. <hkern u1="&#xf9;" u2="&#x22;" k="40" />
  1290. <hkern u1="&#xfa;" u2="&#x22;" k="40" />
  1291. <hkern u1="&#xfb;" u2="&#x22;" k="40" />
  1292. <hkern u1="&#xfc;" u2="&#x22;" k="40" />
  1293. <hkern u1="&#xfe;" g2="asterisk.caps" k="20" />
  1294. <hkern u1="&#x100;" g2="ampersand.caps" k="20" />
  1295. <hkern u1="&#x100;" g2="quotesingle.caps" k="60" />
  1296. <hkern u1="&#x100;" g2="quotedbl.caps" k="80" />
  1297. <hkern u1="&#x100;" g2="asterisk.caps" k="60" />
  1298. <hkern u1="&#x100;" g2="question.caps" k="90" />
  1299. <hkern u1="&#x100;" u2="V" k="30" />
  1300. <hkern u1="&#x102;" g2="ampersand.caps" k="20" />
  1301. <hkern u1="&#x102;" g2="quotesingle.caps" k="60" />
  1302. <hkern u1="&#x102;" g2="quotedbl.caps" k="80" />
  1303. <hkern u1="&#x102;" g2="asterisk.caps" k="60" />
  1304. <hkern u1="&#x102;" g2="question.caps" k="90" />
  1305. <hkern u1="&#x102;" u2="V" k="30" />
  1306. <hkern u1="&#x104;" g2="ampersand.caps" k="20" />
  1307. <hkern u1="&#x104;" g2="quotesingle.caps" k="60" />
  1308. <hkern u1="&#x104;" g2="quotedbl.caps" k="80" />
  1309. <hkern u1="&#x104;" g2="asterisk.caps" k="60" />
  1310. <hkern u1="&#x104;" g2="question.caps" k="90" />
  1311. <hkern u1="&#x104;" u2="V" k="30" />
  1312. <hkern u1="&#x106;" g2="question.caps" k="20" />
  1313. <hkern u1="&#x106;" g2="exclam.caps" k="40" />
  1314. <hkern u1="&#x108;" g2="question.caps" k="20" />
  1315. <hkern u1="&#x108;" g2="exclam.caps" k="40" />
  1316. <hkern u1="&#x10a;" g2="question.caps" k="20" />
  1317. <hkern u1="&#x10a;" g2="exclam.caps" k="40" />
  1318. <hkern u1="&#x10c;" g2="question.caps" k="20" />
  1319. <hkern u1="&#x10c;" g2="exclam.caps" k="40" />
  1320. <hkern u1="&#x10e;" g2="ampersand.caps" k="10" />
  1321. <hkern u1="&#x10e;" g2="quotesingle.caps" k="10" />
  1322. <hkern u1="&#x10e;" g2="quotedbl.caps" k="10" />
  1323. <hkern u1="&#x10e;" g2="bracketright.caps" k="20" />
  1324. <hkern u1="&#x10e;" g2="asterisk.caps" k="10" />
  1325. <hkern u1="&#x10e;" g2="question.caps" k="70" />
  1326. <hkern u1="&#x10e;" u2="&#x7d;" k="-30" />
  1327. <hkern u1="&#x110;" g2="ampersand.caps" k="10" />
  1328. <hkern u1="&#x110;" g2="quotesingle.caps" k="10" />
  1329. <hkern u1="&#x110;" g2="quotedbl.caps" k="10" />
  1330. <hkern u1="&#x110;" g2="bracketright.caps" k="20" />
  1331. <hkern u1="&#x110;" g2="asterisk.caps" k="10" />
  1332. <hkern u1="&#x110;" g2="question.caps" k="70" />
  1333. <hkern u1="&#x110;" u2="&#x7d;" k="-30" />
  1334. <hkern u1="&#x11c;" g2="question.caps" k="20" />
  1335. <hkern u1="&#x11c;" g2="exclam.caps" k="40" />
  1336. <hkern u1="&#x11e;" g2="question.caps" k="20" />
  1337. <hkern u1="&#x11e;" g2="exclam.caps" k="40" />
  1338. <hkern u1="&#x120;" g2="question.caps" k="20" />
  1339. <hkern u1="&#x120;" g2="exclam.caps" k="40" />
  1340. <hkern u1="&#x122;" g2="question.caps" k="20" />
  1341. <hkern u1="&#x122;" g2="exclam.caps" k="40" />
  1342. <hkern u1="&#x124;" g2="question.caps" k="50" />
  1343. <hkern u1="&#x124;" g2="exclam.caps" k="20" />
  1344. <hkern u1="&#x125;" u2="&#x27;" k="50" />
  1345. <hkern u1="&#x126;" g2="question.caps" k="50" />
  1346. <hkern u1="&#x126;" g2="exclam.caps" k="20" />
  1347. <hkern u1="&#x127;" u2="&#x27;" k="50" />
  1348. <hkern u1="&#x128;" g2="question.caps" k="50" />
  1349. <hkern u1="&#x128;" g2="exclam.caps" k="20" />
  1350. <hkern u1="&#x12a;" g2="question.caps" k="50" />
  1351. <hkern u1="&#x12a;" g2="exclam.caps" k="20" />
  1352. <hkern u1="&#x12c;" g2="question.caps" k="50" />
  1353. <hkern u1="&#x12c;" g2="exclam.caps" k="20" />
  1354. <hkern u1="&#x12e;" g2="question.caps" k="50" />
  1355. <hkern u1="&#x12e;" g2="exclam.caps" k="20" />
  1356. <hkern u1="&#x130;" g2="question.caps" k="50" />
  1357. <hkern u1="&#x130;" g2="exclam.caps" k="20" />
  1358. <hkern u1="&#x132;" g2="question.caps" k="30" />
  1359. <hkern u1="&#x132;" g2="exclam.caps" k="20" />
  1360. <hkern u1="&#x134;" g2="question.caps" k="30" />
  1361. <hkern u1="&#x134;" g2="exclam.caps" k="20" />
  1362. <hkern u1="&#x136;" g2="ampersand.caps" k="40" />
  1363. <hkern u1="&#x136;" g2="question.caps" k="40" />
  1364. <hkern u1="&#x136;" g2="exclam.caps" k="20" />
  1365. <hkern u1="&#x139;" g2="quotesingle.caps" k="60" />
  1366. <hkern u1="&#x139;" g2="quotedbl.caps" k="60" />
  1367. <hkern u1="&#x139;" g2="asterisk.caps" k="80" />
  1368. <hkern u1="&#x139;" g2="periodcentered.caps" k="20" />
  1369. <hkern u1="&#x139;" g2="question.caps" k="80" />
  1370. <hkern u1="&#x139;" g2="exclam.caps" k="40" />
  1371. <hkern u1="&#x13b;" g2="quotesingle.caps" k="60" />
  1372. <hkern u1="&#x13b;" g2="quotedbl.caps" k="60" />
  1373. <hkern u1="&#x13b;" g2="asterisk.caps" k="80" />
  1374. <hkern u1="&#x13b;" g2="periodcentered.caps" k="20" />
  1375. <hkern u1="&#x13b;" g2="question.caps" k="80" />
  1376. <hkern u1="&#x13b;" g2="exclam.caps" k="40" />
  1377. <hkern u1="&#x13d;" g2="quotesingle.caps" k="60" />
  1378. <hkern u1="&#x13d;" g2="quotedbl.caps" k="60" />
  1379. <hkern u1="&#x13d;" g2="asterisk.caps" k="80" />
  1380. <hkern u1="&#x13d;" g2="periodcentered.caps" k="20" />
  1381. <hkern u1="&#x13d;" g2="question.caps" k="80" />
  1382. <hkern u1="&#x13d;" g2="exclam.caps" k="40" />
  1383. <hkern u1="&#x13f;" g2="quotesingle.caps" k="60" />
  1384. <hkern u1="&#x13f;" g2="quotedbl.caps" k="60" />
  1385. <hkern u1="&#x13f;" g2="asterisk.caps" k="80" />
  1386. <hkern u1="&#x13f;" g2="periodcentered.caps" k="20" />
  1387. <hkern u1="&#x13f;" g2="question.caps" k="80" />
  1388. <hkern u1="&#x13f;" g2="exclam.caps" k="40" />
  1389. <hkern u1="&#x141;" g2="quotesingle.caps" k="60" />
  1390. <hkern u1="&#x141;" g2="quotedbl.caps" k="60" />
  1391. <hkern u1="&#x141;" g2="asterisk.caps" k="80" />
  1392. <hkern u1="&#x141;" g2="periodcentered.caps" k="20" />
  1393. <hkern u1="&#x141;" g2="question.caps" k="80" />
  1394. <hkern u1="&#x141;" g2="exclam.caps" k="40" />
  1395. <hkern u1="&#x143;" g2="question.caps" k="50" />
  1396. <hkern u1="&#x143;" g2="exclam.caps" k="20" />
  1397. <hkern u1="&#x144;" u2="&#x27;" k="50" />
  1398. <hkern u1="&#x145;" g2="question.caps" k="50" />
  1399. <hkern u1="&#x145;" g2="exclam.caps" k="20" />
  1400. <hkern u1="&#x146;" u2="&#x27;" k="50" />
  1401. <hkern u1="&#x147;" g2="question.caps" k="50" />
  1402. <hkern u1="&#x147;" g2="exclam.caps" k="20" />
  1403. <hkern u1="&#x148;" u2="&#x27;" k="50" />
  1404. <hkern u1="&#x149;" u2="&#x27;" k="50" />
  1405. <hkern u1="&#x14a;" g2="question.caps" k="50" />
  1406. <hkern u1="&#x14a;" g2="exclam.caps" k="20" />
  1407. <hkern u1="&#x14b;" u2="&#x27;" k="50" />
  1408. <hkern u1="&#x14c;" g2="ampersand.caps" k="10" />
  1409. <hkern u1="&#x14c;" g2="quotesingle.caps" k="10" />
  1410. <hkern u1="&#x14c;" g2="quotedbl.caps" k="10" />
  1411. <hkern u1="&#x14c;" g2="bracketright.caps" k="20" />
  1412. <hkern u1="&#x14c;" g2="asterisk.caps" k="10" />
  1413. <hkern u1="&#x14c;" g2="question.caps" k="70" />
  1414. <hkern u1="&#x14c;" u2="&#x7d;" k="-30" />
  1415. <hkern u1="&#x14d;" g2="asterisk.caps" k="20" />
  1416. <hkern u1="&#x14e;" g2="ampersand.caps" k="10" />
  1417. <hkern u1="&#x14e;" g2="quotesingle.caps" k="10" />
  1418. <hkern u1="&#x14e;" g2="quotedbl.caps" k="10" />
  1419. <hkern u1="&#x14e;" g2="bracketright.caps" k="20" />
  1420. <hkern u1="&#x14e;" g2="asterisk.caps" k="10" />
  1421. <hkern u1="&#x14e;" g2="question.caps" k="70" />
  1422. <hkern u1="&#x14e;" u2="&#x7d;" k="-30" />
  1423. <hkern u1="&#x14f;" g2="asterisk.caps" k="20" />
  1424. <hkern u1="&#x150;" g2="ampersand.caps" k="10" />
  1425. <hkern u1="&#x150;" g2="quotesingle.caps" k="10" />
  1426. <hkern u1="&#x150;" g2="quotedbl.caps" k="10" />
  1427. <hkern u1="&#x150;" g2="bracketright.caps" k="20" />
  1428. <hkern u1="&#x150;" g2="asterisk.caps" k="10" />
  1429. <hkern u1="&#x150;" g2="question.caps" k="70" />
  1430. <hkern u1="&#x150;" u2="&#x7d;" k="-30" />
  1431. <hkern u1="&#x151;" g2="asterisk.caps" k="20" />
  1432. <hkern u1="&#x154;" g2="ampersand.caps" k="10" />
  1433. <hkern u1="&#x154;" g2="question.caps" k="40" />
  1434. <hkern u1="&#x154;" g2="exclam.caps" k="50" />
  1435. <hkern u1="&#x156;" g2="ampersand.caps" k="10" />
  1436. <hkern u1="&#x156;" g2="question.caps" k="40" />
  1437. <hkern u1="&#x156;" g2="exclam.caps" k="50" />
  1438. <hkern u1="&#x158;" g2="ampersand.caps" k="10" />
  1439. <hkern u1="&#x158;" g2="question.caps" k="40" />
  1440. <hkern u1="&#x158;" g2="exclam.caps" k="50" />
  1441. <hkern u1="&#x15a;" g2="question.caps" k="50" />
  1442. <hkern u1="&#x15a;" g2="exclam.caps" k="60" />
  1443. <hkern u1="&#x15b;" u2="&#x27;" k="40" />
  1444. <hkern u1="&#x15c;" g2="question.caps" k="50" />
  1445. <hkern u1="&#x15c;" g2="exclam.caps" k="60" />
  1446. <hkern u1="&#x15d;" u2="&#x27;" k="40" />
  1447. <hkern u1="&#x15e;" g2="question.caps" k="50" />
  1448. <hkern u1="&#x15e;" g2="exclam.caps" k="60" />
  1449. <hkern u1="&#x15f;" u2="&#x27;" k="40" />
  1450. <hkern u1="&#x160;" g2="question.caps" k="50" />
  1451. <hkern u1="&#x160;" g2="exclam.caps" k="60" />
  1452. <hkern u1="&#x161;" u2="&#x27;" k="40" />
  1453. <hkern u1="&#x162;" g2="ampersand.caps" k="50" />
  1454. <hkern u1="&#x162;" g2="exclam.caps" k="30" />
  1455. <hkern u1="&#x164;" g2="ampersand.caps" k="50" />
  1456. <hkern u1="&#x164;" g2="exclam.caps" k="30" />
  1457. <hkern u1="&#x166;" g2="ampersand.caps" k="50" />
  1458. <hkern u1="&#x166;" g2="exclam.caps" k="30" />
  1459. <hkern u1="&#x168;" g2="question.caps" k="30" />
  1460. <hkern u1="&#x169;" u2="&#x22;" k="40" />
  1461. <hkern u1="&#x16a;" g2="question.caps" k="30" />
  1462. <hkern u1="&#x16b;" u2="&#x22;" k="40" />
  1463. <hkern u1="&#x16c;" g2="question.caps" k="30" />
  1464. <hkern u1="&#x16d;" u2="&#x22;" k="40" />
  1465. <hkern u1="&#x16e;" g2="question.caps" k="30" />
  1466. <hkern u1="&#x16f;" u2="&#x22;" k="40" />
  1467. <hkern u1="&#x170;" g2="question.caps" k="30" />
  1468. <hkern u1="&#x171;" u2="&#x22;" k="40" />
  1469. <hkern u1="&#x172;" g2="question.caps" k="30" />
  1470. <hkern u1="&#x173;" u2="&#x22;" k="40" />
  1471. <hkern u1="&#x174;" g2="ampersand.caps" k="70" />
  1472. <hkern u1="&#x174;" g2="question.caps" k="20" />
  1473. <hkern u1="&#x176;" g2="ampersand.caps" k="60" />
  1474. <hkern u1="&#x176;" g2="question.caps" k="20" />
  1475. <hkern u1="&#x178;" g2="ampersand.caps" k="60" />
  1476. <hkern u1="&#x178;" g2="question.caps" k="20" />
  1477. <hkern u1="&#x179;" g2="question.caps" k="30" />
  1478. <hkern u1="&#x17b;" g2="question.caps" k="30" />
  1479. <hkern u1="&#x17d;" g2="question.caps" k="30" />
  1480. <hkern u1="&#x18f;" g2="ampersand.caps" k="10" />
  1481. <hkern u1="&#x18f;" g2="quotesingle.caps" k="10" />
  1482. <hkern u1="&#x18f;" g2="quotedbl.caps" k="10" />
  1483. <hkern u1="&#x18f;" g2="bracketright.caps" k="20" />
  1484. <hkern u1="&#x18f;" g2="asterisk.caps" k="10" />
  1485. <hkern u1="&#x18f;" g2="question.caps" k="70" />
  1486. <hkern u1="&#x18f;" u2="&#x7d;" k="-30" />
  1487. <hkern u1="&#x19d;" g2="question.caps" k="50" />
  1488. <hkern u1="&#x19d;" g2="exclam.caps" k="20" />
  1489. <hkern u1="&#x1cd;" g2="ampersand.caps" k="20" />
  1490. <hkern u1="&#x1cd;" g2="quotesingle.caps" k="60" />
  1491. <hkern u1="&#x1cd;" g2="quotedbl.caps" k="80" />
  1492. <hkern u1="&#x1cd;" g2="asterisk.caps" k="60" />
  1493. <hkern u1="&#x1cd;" g2="question.caps" k="90" />
  1494. <hkern u1="&#x1cd;" u2="V" k="30" />
  1495. <hkern u1="&#x1cf;" g2="question.caps" k="50" />
  1496. <hkern u1="&#x1cf;" g2="exclam.caps" k="20" />
  1497. <hkern u1="&#x1d1;" g2="ampersand.caps" k="10" />
  1498. <hkern u1="&#x1d1;" g2="quotesingle.caps" k="10" />
  1499. <hkern u1="&#x1d1;" g2="quotedbl.caps" k="10" />
  1500. <hkern u1="&#x1d1;" g2="bracketright.caps" k="20" />
  1501. <hkern u1="&#x1d1;" g2="asterisk.caps" k="10" />
  1502. <hkern u1="&#x1d1;" g2="question.caps" k="70" />
  1503. <hkern u1="&#x1d1;" u2="&#x7d;" k="-30" />
  1504. <hkern u1="&#x1d2;" g2="asterisk.caps" k="20" />
  1505. <hkern u1="&#x1d3;" g2="question.caps" k="30" />
  1506. <hkern u1="&#x1d4;" u2="&#x22;" k="40" />
  1507. <hkern u1="&#x1d5;" g2="question.caps" k="30" />
  1508. <hkern u1="&#x1d6;" u2="&#x22;" k="40" />
  1509. <hkern u1="&#x1d7;" g2="question.caps" k="30" />
  1510. <hkern u1="&#x1d8;" u2="&#x22;" k="40" />
  1511. <hkern u1="&#x1d9;" g2="question.caps" k="30" />
  1512. <hkern u1="&#x1da;" u2="&#x22;" k="40" />
  1513. <hkern u1="&#x1db;" g2="question.caps" k="30" />
  1514. <hkern u1="&#x1dc;" u2="&#x22;" k="40" />
  1515. <hkern u1="&#x1e6;" g2="question.caps" k="20" />
  1516. <hkern u1="&#x1e6;" g2="exclam.caps" k="40" />
  1517. <hkern u1="&#x1ea;" g2="ampersand.caps" k="10" />
  1518. <hkern u1="&#x1ea;" g2="quotesingle.caps" k="10" />
  1519. <hkern u1="&#x1ea;" g2="quotedbl.caps" k="10" />
  1520. <hkern u1="&#x1ea;" g2="bracketright.caps" k="20" />
  1521. <hkern u1="&#x1ea;" g2="asterisk.caps" k="10" />
  1522. <hkern u1="&#x1ea;" g2="question.caps" k="70" />
  1523. <hkern u1="&#x1ea;" u2="&#x7d;" k="-30" />
  1524. <hkern u1="&#x1eb;" g2="asterisk.caps" k="20" />
  1525. <hkern u1="&#x1f4;" g2="question.caps" k="20" />
  1526. <hkern u1="&#x1f4;" g2="exclam.caps" k="40" />
  1527. <hkern u1="&#x1fa;" g2="ampersand.caps" k="20" />
  1528. <hkern u1="&#x1fa;" g2="quotesingle.caps" k="60" />
  1529. <hkern u1="&#x1fa;" g2="quotedbl.caps" k="80" />
  1530. <hkern u1="&#x1fa;" g2="asterisk.caps" k="60" />
  1531. <hkern u1="&#x1fa;" g2="question.caps" k="90" />
  1532. <hkern u1="&#x1fa;" u2="V" k="30" />
  1533. <hkern u1="&#x1fe;" g2="ampersand.caps" k="10" />
  1534. <hkern u1="&#x1fe;" g2="quotesingle.caps" k="10" />
  1535. <hkern u1="&#x1fe;" g2="quotedbl.caps" k="10" />
  1536. <hkern u1="&#x1fe;" g2="bracketright.caps" k="20" />
  1537. <hkern u1="&#x1fe;" g2="asterisk.caps" k="10" />
  1538. <hkern u1="&#x1fe;" g2="question.caps" k="70" />
  1539. <hkern u1="&#x1fe;" u2="&#x7d;" k="-30" />
  1540. <hkern u1="&#x1ff;" g2="asterisk.caps" k="20" />
  1541. <hkern u1="&#x218;" g2="question.caps" k="50" />
  1542. <hkern u1="&#x218;" g2="exclam.caps" k="60" />
  1543. <hkern u1="&#x219;" u2="&#x27;" k="40" />
  1544. <hkern u1="&#x21a;" g2="ampersand.caps" k="50" />
  1545. <hkern u1="&#x21a;" g2="exclam.caps" k="30" />
  1546. <hkern u1="&#x232;" g2="ampersand.caps" k="60" />
  1547. <hkern u1="&#x232;" g2="question.caps" k="20" />
  1548. <hkern u1="&#x259;" g2="asterisk.caps" k="20" />
  1549. <hkern u1="&#x272;" u2="&#x27;" k="50" />
  1550. <hkern u1="&#x1e0c;" g2="ampersand.caps" k="10" />
  1551. <hkern u1="&#x1e0c;" g2="quotesingle.caps" k="10" />
  1552. <hkern u1="&#x1e0c;" g2="quotedbl.caps" k="10" />
  1553. <hkern u1="&#x1e0c;" g2="bracketright.caps" k="20" />
  1554. <hkern u1="&#x1e0c;" g2="asterisk.caps" k="10" />
  1555. <hkern u1="&#x1e0c;" g2="question.caps" k="70" />
  1556. <hkern u1="&#x1e0c;" u2="&#x7d;" k="-30" />
  1557. <hkern u1="&#x1e24;" g2="question.caps" k="50" />
  1558. <hkern u1="&#x1e24;" g2="exclam.caps" k="20" />
  1559. <hkern u1="&#x1e25;" u2="&#x27;" k="50" />
  1560. <hkern u1="&#x1e44;" g2="question.caps" k="50" />
  1561. <hkern u1="&#x1e44;" g2="exclam.caps" k="20" />
  1562. <hkern u1="&#x1e45;" u2="&#x27;" k="50" />
  1563. <hkern u1="&#x1e5a;" g2="ampersand.caps" k="10" />
  1564. <hkern u1="&#x1e5a;" g2="question.caps" k="40" />
  1565. <hkern u1="&#x1e5a;" g2="exclam.caps" k="50" />
  1566. <hkern u1="&#x1e62;" g2="question.caps" k="50" />
  1567. <hkern u1="&#x1e62;" g2="exclam.caps" k="60" />
  1568. <hkern u1="&#x1e63;" u2="&#x27;" k="40" />
  1569. <hkern u1="&#x1e6c;" g2="ampersand.caps" k="50" />
  1570. <hkern u1="&#x1e6c;" g2="exclam.caps" k="30" />
  1571. <hkern u1="&#x1e80;" g2="ampersand.caps" k="70" />
  1572. <hkern u1="&#x1e80;" g2="question.caps" k="20" />
  1573. <hkern u1="&#x1e82;" g2="ampersand.caps" k="70" />
  1574. <hkern u1="&#x1e82;" g2="question.caps" k="20" />
  1575. <hkern u1="&#x1e84;" g2="ampersand.caps" k="70" />
  1576. <hkern u1="&#x1e84;" g2="question.caps" k="20" />
  1577. <hkern u1="&#x1e92;" g2="question.caps" k="30" />
  1578. <hkern u1="&#x1e9e;" g2="question.caps" k="50" />
  1579. <hkern u1="&#x1e9e;" g2="exclam.caps" k="60" />
  1580. <hkern u1="&#x1ea0;" g2="ampersand.caps" k="20" />
  1581. <hkern u1="&#x1ea0;" g2="quotesingle.caps" k="60" />
  1582. <hkern u1="&#x1ea0;" g2="quotedbl.caps" k="80" />
  1583. <hkern u1="&#x1ea0;" g2="asterisk.caps" k="60" />
  1584. <hkern u1="&#x1ea0;" g2="question.caps" k="90" />
  1585. <hkern u1="&#x1ea0;" u2="V" k="30" />
  1586. <hkern u1="&#x1eca;" g2="question.caps" k="50" />
  1587. <hkern u1="&#x1eca;" g2="exclam.caps" k="20" />
  1588. <hkern u1="&#x1ecc;" g2="ampersand.caps" k="10" />
  1589. <hkern u1="&#x1ecc;" g2="quotesingle.caps" k="10" />
  1590. <hkern u1="&#x1ecc;" g2="quotedbl.caps" k="10" />
  1591. <hkern u1="&#x1ecc;" g2="bracketright.caps" k="20" />
  1592. <hkern u1="&#x1ecc;" g2="asterisk.caps" k="10" />
  1593. <hkern u1="&#x1ecc;" g2="question.caps" k="70" />
  1594. <hkern u1="&#x1ecc;" u2="&#x7d;" k="-30" />
  1595. <hkern u1="&#x1ecd;" g2="asterisk.caps" k="20" />
  1596. <hkern u1="&#x1ee4;" g2="question.caps" k="30" />
  1597. <hkern u1="&#x1ee5;" u2="&#x22;" k="40" />
  1598. <hkern u1="&#x1ef2;" g2="ampersand.caps" k="60" />
  1599. <hkern u1="&#x1ef2;" g2="question.caps" k="20" />
  1600. <hkern u1="&#x1ef8;" g2="ampersand.caps" k="60" />
  1601. <hkern u1="&#x1ef8;" g2="question.caps" k="20" />
  1602. <hkern u1="&#x2013;" g2="x.sc" k="10" />
  1603. <hkern u1="&#x2013;" u2="&#x2211;" k="30" />
  1604. <hkern u1="&#x2013;" u2="&#x220f;" k="5" />
  1605. <hkern u1="&#x2013;" u2="x" k="5" />
  1606. <hkern u1="&#x2013;" u2="X" k="15" />
  1607. <hkern u1="&#x2014;" u2="X" k="15" />
  1608. <hkern u1="&#x2044;" g2="six.denominator" k="240" />
  1609. <hkern u1="&#x2044;" g2="four.denominator" k="260" />
  1610. <hkern u1="&#x2044;" g2="one.denominator" k="220" />
  1611. <hkern u1="&#x2044;" g2="zero.denominator" k="250" />
  1612. <hkern g1="c_h" u2="&#x27;" k="50" />
  1613. <hkern g1="s_h" u2="&#x27;" k="50" />
  1614. <hkern g1="a.sc" g2="quotesingle.sc" k="40" />
  1615. <hkern g1="a.sc" g2="quotedbl.sc" k="40" />
  1616. <hkern g1="a.sc" g2="asterisk.sc" k="60" />
  1617. <hkern g1="a.sc" g2="periodcentered.sc" k="20" />
  1618. <hkern g1="a.sc" g2="question.sc" k="40" />
  1619. <hkern g1="a.sc" g2="exclamdown.sc" k="40" />
  1620. <hkern g1="a.sc" g2="braceleft.sc" k="10" />
  1621. <hkern g1="aacute.sc" g2="quotesingle.sc" k="40" />
  1622. <hkern g1="aacute.sc" g2="quotedbl.sc" k="40" />
  1623. <hkern g1="aacute.sc" g2="asterisk.sc" k="60" />
  1624. <hkern g1="aacute.sc" g2="periodcentered.sc" k="20" />
  1625. <hkern g1="aacute.sc" g2="question.sc" k="40" />
  1626. <hkern g1="aacute.sc" g2="exclamdown.sc" k="40" />
  1627. <hkern g1="aacute.sc" g2="braceleft.sc" k="10" />
  1628. <hkern g1="abreve.sc" g2="quotesingle.sc" k="40" />
  1629. <hkern g1="abreve.sc" g2="quotedbl.sc" k="40" />
  1630. <hkern g1="abreve.sc" g2="asterisk.sc" k="60" />
  1631. <hkern g1="abreve.sc" g2="periodcentered.sc" k="20" />
  1632. <hkern g1="abreve.sc" g2="question.sc" k="40" />
  1633. <hkern g1="abreve.sc" g2="exclamdown.sc" k="40" />
  1634. <hkern g1="abreve.sc" g2="braceleft.sc" k="10" />
  1635. <hkern g1="acaron.sc" g2="quotesingle.sc" k="40" />
  1636. <hkern g1="acaron.sc" g2="quotedbl.sc" k="40" />
  1637. <hkern g1="acaron.sc" g2="asterisk.sc" k="60" />
  1638. <hkern g1="acaron.sc" g2="periodcentered.sc" k="20" />
  1639. <hkern g1="acaron.sc" g2="question.sc" k="40" />
  1640. <hkern g1="acaron.sc" g2="exclamdown.sc" k="40" />
  1641. <hkern g1="acaron.sc" g2="braceleft.sc" k="10" />
  1642. <hkern g1="acircumflex.sc" g2="quotesingle.sc" k="40" />
  1643. <hkern g1="acircumflex.sc" g2="quotedbl.sc" k="40" />
  1644. <hkern g1="acircumflex.sc" g2="asterisk.sc" k="60" />
  1645. <hkern g1="acircumflex.sc" g2="periodcentered.sc" k="20" />
  1646. <hkern g1="acircumflex.sc" g2="question.sc" k="40" />
  1647. <hkern g1="acircumflex.sc" g2="exclamdown.sc" k="40" />
  1648. <hkern g1="acircumflex.sc" g2="braceleft.sc" k="10" />
  1649. <hkern g1="adieresis.sc" g2="quotesingle.sc" k="40" />
  1650. <hkern g1="adieresis.sc" g2="quotedbl.sc" k="40" />
  1651. <hkern g1="adieresis.sc" g2="asterisk.sc" k="60" />
  1652. <hkern g1="adieresis.sc" g2="periodcentered.sc" k="20" />
  1653. <hkern g1="adieresis.sc" g2="question.sc" k="40" />
  1654. <hkern g1="adieresis.sc" g2="exclamdown.sc" k="40" />
  1655. <hkern g1="adieresis.sc" g2="braceleft.sc" k="10" />
  1656. <hkern g1="adotbelow.sc" g2="quotesingle.sc" k="40" />
  1657. <hkern g1="adotbelow.sc" g2="quotedbl.sc" k="40" />
  1658. <hkern g1="adotbelow.sc" g2="asterisk.sc" k="60" />
  1659. <hkern g1="adotbelow.sc" g2="periodcentered.sc" k="20" />
  1660. <hkern g1="adotbelow.sc" g2="question.sc" k="40" />
  1661. <hkern g1="adotbelow.sc" g2="exclamdown.sc" k="40" />
  1662. <hkern g1="adotbelow.sc" g2="braceleft.sc" k="10" />
  1663. <hkern g1="agrave.sc" g2="quotesingle.sc" k="40" />
  1664. <hkern g1="agrave.sc" g2="quotedbl.sc" k="40" />
  1665. <hkern g1="agrave.sc" g2="asterisk.sc" k="60" />
  1666. <hkern g1="agrave.sc" g2="periodcentered.sc" k="20" />
  1667. <hkern g1="agrave.sc" g2="question.sc" k="40" />
  1668. <hkern g1="agrave.sc" g2="exclamdown.sc" k="40" />
  1669. <hkern g1="agrave.sc" g2="braceleft.sc" k="10" />
  1670. <hkern g1="amacron.sc" g2="quotesingle.sc" k="40" />
  1671. <hkern g1="amacron.sc" g2="quotedbl.sc" k="40" />
  1672. <hkern g1="amacron.sc" g2="asterisk.sc" k="60" />
  1673. <hkern g1="amacron.sc" g2="periodcentered.sc" k="20" />
  1674. <hkern g1="amacron.sc" g2="question.sc" k="40" />
  1675. <hkern g1="amacron.sc" g2="exclamdown.sc" k="40" />
  1676. <hkern g1="amacron.sc" g2="braceleft.sc" k="10" />
  1677. <hkern g1="aogonek.sc" g2="quotesingle.sc" k="40" />
  1678. <hkern g1="aogonek.sc" g2="quotedbl.sc" k="40" />
  1679. <hkern g1="aogonek.sc" g2="asterisk.sc" k="60" />
  1680. <hkern g1="aogonek.sc" g2="periodcentered.sc" k="20" />
  1681. <hkern g1="aogonek.sc" g2="question.sc" k="40" />
  1682. <hkern g1="aogonek.sc" g2="exclamdown.sc" k="40" />
  1683. <hkern g1="aogonek.sc" g2="braceleft.sc" k="10" />
  1684. <hkern g1="aring.sc" g2="quotesingle.sc" k="40" />
  1685. <hkern g1="aring.sc" g2="quotedbl.sc" k="40" />
  1686. <hkern g1="aring.sc" g2="asterisk.sc" k="60" />
  1687. <hkern g1="aring.sc" g2="periodcentered.sc" k="20" />
  1688. <hkern g1="aring.sc" g2="question.sc" k="40" />
  1689. <hkern g1="aring.sc" g2="exclamdown.sc" k="40" />
  1690. <hkern g1="aring.sc" g2="braceleft.sc" k="10" />
  1691. <hkern g1="aringacute.sc" g2="quotesingle.sc" k="40" />
  1692. <hkern g1="aringacute.sc" g2="quotedbl.sc" k="40" />
  1693. <hkern g1="aringacute.sc" g2="asterisk.sc" k="60" />
  1694. <hkern g1="aringacute.sc" g2="periodcentered.sc" k="20" />
  1695. <hkern g1="aringacute.sc" g2="question.sc" k="40" />
  1696. <hkern g1="aringacute.sc" g2="exclamdown.sc" k="40" />
  1697. <hkern g1="aringacute.sc" g2="braceleft.sc" k="10" />
  1698. <hkern g1="atilde.sc" g2="quotesingle.sc" k="40" />
  1699. <hkern g1="atilde.sc" g2="quotedbl.sc" k="40" />
  1700. <hkern g1="atilde.sc" g2="asterisk.sc" k="60" />
  1701. <hkern g1="atilde.sc" g2="periodcentered.sc" k="20" />
  1702. <hkern g1="atilde.sc" g2="question.sc" k="40" />
  1703. <hkern g1="atilde.sc" g2="exclamdown.sc" k="40" />
  1704. <hkern g1="atilde.sc" g2="braceleft.sc" k="10" />
  1705. <hkern g1="b.sc" g2="quotesingle.sc" k="20" />
  1706. <hkern g1="b.sc" g2="quotedbl.sc" k="20" />
  1707. <hkern g1="b.sc" g2="asterisk.sc" k="30" />
  1708. <hkern g1="b.sc" g2="exclam.sc" k="50" />
  1709. <hkern g1="b.sc" g2="x.sc" k="10" />
  1710. <hkern g1="b.sc" g2="m.sc" k="5" />
  1711. <hkern g1="b.sc" u2="&#x2122;" k="60" />
  1712. <hkern g1="c.sc" g2="periodcentered.sc" k="-10" />
  1713. <hkern g1="c.sc" g2="parenright.sc" k="-30" />
  1714. <hkern g1="cacute.sc" g2="periodcentered.sc" k="-10" />
  1715. <hkern g1="cacute.sc" g2="parenright.sc" k="-30" />
  1716. <hkern g1="ccaron.sc" g2="periodcentered.sc" k="-10" />
  1717. <hkern g1="ccaron.sc" g2="parenright.sc" k="-30" />
  1718. <hkern g1="ccedilla.sc" g2="periodcentered.sc" k="-10" />
  1719. <hkern g1="ccedilla.sc" g2="parenright.sc" k="-30" />
  1720. <hkern g1="ccircumflex.sc" g2="periodcentered.sc" k="-10" />
  1721. <hkern g1="ccircumflex.sc" g2="parenright.sc" k="-30" />
  1722. <hkern g1="cdotaccent.sc" g2="periodcentered.sc" k="-10" />
  1723. <hkern g1="cdotaccent.sc" g2="parenright.sc" k="-30" />
  1724. <hkern g1="d.sc" g2="quotesingle.sc" k="10" />
  1725. <hkern g1="d.sc" g2="quotedbl.sc" k="10" />
  1726. <hkern g1="d.sc" g2="asterisk.sc" k="20" />
  1727. <hkern g1="d.sc" g2="exclam.sc" k="30" />
  1728. <hkern g1="d.sc" g2="bracketright.sc" k="10" />
  1729. <hkern g1="d.sc" g2="braceright.sc" k="30" />
  1730. <hkern g1="d.sc" g2="parenright.sc" k="30" />
  1731. <hkern g1="eth.sc" g2="quotesingle.sc" k="10" />
  1732. <hkern g1="eth.sc" g2="quotedbl.sc" k="10" />
  1733. <hkern g1="eth.sc" g2="asterisk.sc" k="20" />
  1734. <hkern g1="eth.sc" g2="exclam.sc" k="30" />
  1735. <hkern g1="eth.sc" g2="bracketright.sc" k="10" />
  1736. <hkern g1="eth.sc" g2="braceright.sc" k="30" />
  1737. <hkern g1="eth.sc" g2="parenright.sc" k="30" />
  1738. <hkern g1="dcaron.sc" g2="quotesingle.sc" k="10" />
  1739. <hkern g1="dcaron.sc" g2="quotedbl.sc" k="10" />
  1740. <hkern g1="dcaron.sc" g2="asterisk.sc" k="20" />
  1741. <hkern g1="dcaron.sc" g2="exclam.sc" k="30" />
  1742. <hkern g1="dcaron.sc" g2="bracketright.sc" k="10" />
  1743. <hkern g1="dcaron.sc" g2="braceright.sc" k="30" />
  1744. <hkern g1="dcaron.sc" g2="parenright.sc" k="30" />
  1745. <hkern g1="dcroat.sc" g2="quotesingle.sc" k="10" />
  1746. <hkern g1="dcroat.sc" g2="quotedbl.sc" k="10" />
  1747. <hkern g1="dcroat.sc" g2="asterisk.sc" k="20" />
  1748. <hkern g1="dcroat.sc" g2="exclam.sc" k="30" />
  1749. <hkern g1="dcroat.sc" g2="bracketright.sc" k="10" />
  1750. <hkern g1="dcroat.sc" g2="braceright.sc" k="30" />
  1751. <hkern g1="dcroat.sc" g2="parenright.sc" k="30" />
  1752. <hkern g1="ddotbelow.sc" g2="quotesingle.sc" k="10" />
  1753. <hkern g1="ddotbelow.sc" g2="quotedbl.sc" k="10" />
  1754. <hkern g1="ddotbelow.sc" g2="asterisk.sc" k="20" />
  1755. <hkern g1="ddotbelow.sc" g2="exclam.sc" k="30" />
  1756. <hkern g1="ddotbelow.sc" g2="bracketright.sc" k="10" />
  1757. <hkern g1="ddotbelow.sc" g2="braceright.sc" k="30" />
  1758. <hkern g1="ddotbelow.sc" g2="parenright.sc" k="30" />
  1759. <hkern g1="schwa.sc" g2="quotesingle.sc" k="10" />
  1760. <hkern g1="schwa.sc" g2="quotedbl.sc" k="10" />
  1761. <hkern g1="schwa.sc" g2="asterisk.sc" k="20" />
  1762. <hkern g1="schwa.sc" g2="exclam.sc" k="30" />
  1763. <hkern g1="schwa.sc" g2="bracketright.sc" k="10" />
  1764. <hkern g1="schwa.sc" g2="braceright.sc" k="30" />
  1765. <hkern g1="schwa.sc" g2="parenright.sc" k="30" />
  1766. <hkern g1="f.sc" g2="m.sc" k="20" />
  1767. <hkern g1="g.sc" g2="exclam.sc" k="30" />
  1768. <hkern g1="gacute.sc" g2="exclam.sc" k="30" />
  1769. <hkern g1="gbreve.sc" g2="exclam.sc" k="30" />
  1770. <hkern g1="gcaron.sc" g2="exclam.sc" k="30" />
  1771. <hkern g1="gcircumflex.sc" g2="exclam.sc" k="30" />
  1772. <hkern g1="gcommaaccent.sc" g2="exclam.sc" k="30" />
  1773. <hkern g1="gdotaccent.sc" g2="exclam.sc" k="30" />
  1774. <hkern g1="h.sc" g2="exclam.sc" k="50" />
  1775. <hkern g1="hbar.sc" g2="exclam.sc" k="50" />
  1776. <hkern g1="hcircumflex.sc" g2="exclam.sc" k="50" />
  1777. <hkern g1="hdotbelow.sc" g2="exclam.sc" k="50" />
  1778. <hkern g1="i.sc" g2="exclam.sc" k="50" />
  1779. <hkern g1="dotlessi.sc" g2="exclam.sc" k="50" />
  1780. <hkern g1="iacute.sc" g2="exclam.sc" k="50" />
  1781. <hkern g1="ibreve.sc" g2="exclam.sc" k="50" />
  1782. <hkern g1="icaron.sc" g2="exclam.sc" k="50" />
  1783. <hkern g1="icircumflex.sc" g2="exclam.sc" k="50" />
  1784. <hkern g1="idieresis.sc" g2="exclam.sc" k="50" />
  1785. <hkern g1="idotbelow.sc" g2="exclam.sc" k="50" />
  1786. <hkern g1="igrave.sc" g2="exclam.sc" k="50" />
  1787. <hkern g1="imacron.sc" g2="exclam.sc" k="50" />
  1788. <hkern g1="iogonek.sc" g2="exclam.sc" k="50" />
  1789. <hkern g1="itilde.sc" g2="exclam.sc" k="50" />
  1790. <hkern g1="k.sc" g2="quotesingle.sc" k="20" />
  1791. <hkern g1="k.sc" g2="quotedbl.sc" k="20" />
  1792. <hkern g1="k.sc" g2="asterisk.sc" k="20" />
  1793. <hkern g1="k.sc" g2="question.sc" k="30" />
  1794. <hkern g1="k.sc" g2="exclam.sc" k="60" />
  1795. <hkern g1="k.sc" g2="bracketright.sc" k="20" />
  1796. <hkern g1="k.sc" g2="braceright.sc" k="20" />
  1797. <hkern g1="kcommaaccent.sc" g2="quotesingle.sc" k="20" />
  1798. <hkern g1="kcommaaccent.sc" g2="quotedbl.sc" k="20" />
  1799. <hkern g1="kcommaaccent.sc" g2="asterisk.sc" k="20" />
  1800. <hkern g1="kcommaaccent.sc" g2="question.sc" k="30" />
  1801. <hkern g1="kcommaaccent.sc" g2="exclam.sc" k="60" />
  1802. <hkern g1="kcommaaccent.sc" g2="bracketright.sc" k="20" />
  1803. <hkern g1="kcommaaccent.sc" g2="braceright.sc" k="20" />
  1804. <hkern g1="kgreenlandic.sc" g2="quotesingle.sc" k="20" />
  1805. <hkern g1="kgreenlandic.sc" g2="quotedbl.sc" k="20" />
  1806. <hkern g1="kgreenlandic.sc" g2="asterisk.sc" k="20" />
  1807. <hkern g1="kgreenlandic.sc" g2="question.sc" k="30" />
  1808. <hkern g1="kgreenlandic.sc" g2="exclam.sc" k="60" />
  1809. <hkern g1="kgreenlandic.sc" g2="bracketright.sc" k="20" />
  1810. <hkern g1="kgreenlandic.sc" g2="braceright.sc" k="20" />
  1811. <hkern g1="l.sc" g2="quotesingle.sc" k="120" />
  1812. <hkern g1="l.sc" g2="quotedbl.sc" k="120" />
  1813. <hkern g1="l.sc" g2="asterisk.sc" k="130" />
  1814. <hkern g1="l.sc" g2="question.sc" k="60" />
  1815. <hkern g1="l.sc" g2="exclam.sc" k="40" />
  1816. <hkern g1="l.sc" g2="parenright.sc" k="20" />
  1817. <hkern g1="lacute.sc" g2="quotesingle.sc" k="120" />
  1818. <hkern g1="lacute.sc" g2="quotedbl.sc" k="120" />
  1819. <hkern g1="lacute.sc" g2="asterisk.sc" k="130" />
  1820. <hkern g1="lacute.sc" g2="question.sc" k="60" />
  1821. <hkern g1="lacute.sc" g2="exclam.sc" k="40" />
  1822. <hkern g1="lacute.sc" g2="parenright.sc" k="20" />
  1823. <hkern g1="lcaron.sc" g2="quotesingle.sc" k="120" />
  1824. <hkern g1="lcaron.sc" g2="quotedbl.sc" k="120" />
  1825. <hkern g1="lcaron.sc" g2="asterisk.sc" k="130" />
  1826. <hkern g1="lcaron.sc" g2="question.sc" k="60" />
  1827. <hkern g1="lcaron.sc" g2="exclam.sc" k="40" />
  1828. <hkern g1="lcaron.sc" g2="parenright.sc" k="20" />
  1829. <hkern g1="lcommaaccent.sc" g2="quotesingle.sc" k="120" />
  1830. <hkern g1="lcommaaccent.sc" g2="quotedbl.sc" k="120" />
  1831. <hkern g1="lcommaaccent.sc" g2="asterisk.sc" k="130" />
  1832. <hkern g1="lcommaaccent.sc" g2="question.sc" k="60" />
  1833. <hkern g1="lcommaaccent.sc" g2="exclam.sc" k="40" />
  1834. <hkern g1="lcommaaccent.sc" g2="parenright.sc" k="20" />
  1835. <hkern g1="ldot.sc" g2="quotesingle.sc" k="120" />
  1836. <hkern g1="ldot.sc" g2="quotedbl.sc" k="120" />
  1837. <hkern g1="ldot.sc" g2="asterisk.sc" k="130" />
  1838. <hkern g1="ldot.sc" g2="question.sc" k="60" />
  1839. <hkern g1="ldot.sc" g2="exclam.sc" k="40" />
  1840. <hkern g1="ldot.sc" g2="parenright.sc" k="20" />
  1841. <hkern g1="ldot.sc" g2="germandbls.sc" k="-20" />
  1842. <hkern g1="ldot.sc" g2="rdotbelow.sc" k="-20" />
  1843. <hkern g1="ldot.sc" g2="rcommaaccent.sc" k="-20" />
  1844. <hkern g1="ldot.sc" g2="rcaron.sc" k="-20" />
  1845. <hkern g1="ldot.sc" g2="racute.sc" k="-20" />
  1846. <hkern g1="ldot.sc" g2="r.sc" k="-20" />
  1847. <hkern g1="ldot.sc" g2="thorn.sc" k="-20" />
  1848. <hkern g1="ldot.sc" g2="p.sc" k="-20" />
  1849. <hkern g1="ldot.sc" g2="ntilde.sc" k="-20" />
  1850. <hkern g1="ldot.sc" g2="eng.sc" k="-20" />
  1851. <hkern g1="ldot.sc" g2="ndotaccent.sc" k="-20" />
  1852. <hkern g1="ldot.sc" g2="ncommaaccent.sc" k="-20" />
  1853. <hkern g1="ldot.sc" g2="ncaron.sc" k="-20" />
  1854. <hkern g1="ldot.sc" g2="nacute.sc" k="-20" />
  1855. <hkern g1="ldot.sc" g2="n.sc" k="-20" />
  1856. <hkern g1="ldot.sc" g2="lslash.sc" k="-20" />
  1857. <hkern g1="ldot.sc" g2="ldot.sc" k="-20" />
  1858. <hkern g1="ldot.sc" g2="lcommaaccent.sc" k="-20" />
  1859. <hkern g1="ldot.sc" g2="lcaron.sc" k="-20" />
  1860. <hkern g1="ldot.sc" g2="lacute.sc" k="-20" />
  1861. <hkern g1="ldot.sc" g2="l.sc" k="-20" />
  1862. <hkern g1="ldot.sc" g2="kgreenlandic.sc" k="-20" />
  1863. <hkern g1="ldot.sc" g2="kcommaaccent.sc" k="-20" />
  1864. <hkern g1="ldot.sc" g2="k.sc" k="-20" />
  1865. <hkern g1="ldot.sc" g2="itilde.sc" k="-20" />
  1866. <hkern g1="ldot.sc" g2="iogonek.sc" k="-20" />
  1867. <hkern g1="ldot.sc" g2="imacron.sc" k="-20" />
  1868. <hkern g1="ldot.sc" g2="ij.sc" k="-20" />
  1869. <hkern g1="ldot.sc" g2="igrave.sc" k="-20" />
  1870. <hkern g1="ldot.sc" g2="idotbelow.sc" k="-20" />
  1871. <hkern g1="ldot.sc" g2="idotaccent.sc" k="-20" />
  1872. <hkern g1="ldot.sc" g2="idieresis.sc" k="-20" />
  1873. <hkern g1="ldot.sc" g2="icircumflex.sc" k="-20" />
  1874. <hkern g1="ldot.sc" g2="icaron.sc" k="-20" />
  1875. <hkern g1="ldot.sc" g2="ibreve.sc" k="-20" />
  1876. <hkern g1="ldot.sc" g2="iacute.sc" k="-20" />
  1877. <hkern g1="ldot.sc" g2="dotlessi.sc" k="-20" />
  1878. <hkern g1="ldot.sc" g2="i.sc" k="-20" />
  1879. <hkern g1="ldot.sc" g2="hdotbelow.sc" k="-20" />
  1880. <hkern g1="ldot.sc" g2="hcircumflex.sc" k="-20" />
  1881. <hkern g1="ldot.sc" g2="hbar.sc" k="-20" />
  1882. <hkern g1="ldot.sc" g2="h.sc" k="-20" />
  1883. <hkern g1="ldot.sc" g2="f.sc" k="-20" />
  1884. <hkern g1="ldot.sc" g2="etilde.sc" k="-20" />
  1885. <hkern g1="ldot.sc" g2="eogonek.sc" k="-20" />
  1886. <hkern g1="ldot.sc" g2="emacron.sc" k="-20" />
  1887. <hkern g1="ldot.sc" g2="egrave.sc" k="-20" />
  1888. <hkern g1="ldot.sc" g2="edotbelow.sc" k="-20" />
  1889. <hkern g1="ldot.sc" g2="edotaccent.sc" k="-20" />
  1890. <hkern g1="ldot.sc" g2="edieresis.sc" k="-20" />
  1891. <hkern g1="ldot.sc" g2="ecircumflex.sc" k="-20" />
  1892. <hkern g1="ldot.sc" g2="ecaron.sc" k="-20" />
  1893. <hkern g1="ldot.sc" g2="ebreve.sc" k="-20" />
  1894. <hkern g1="ldot.sc" g2="eacute.sc" k="-20" />
  1895. <hkern g1="ldot.sc" g2="e.sc" k="-20" />
  1896. <hkern g1="ldot.sc" g2="ddotbelow.sc" k="-20" />
  1897. <hkern g1="ldot.sc" g2="dcroat.sc" k="-20" />
  1898. <hkern g1="ldot.sc" g2="dcaron.sc" k="-20" />
  1899. <hkern g1="ldot.sc" g2="eth.sc" k="-20" />
  1900. <hkern g1="ldot.sc" g2="d.sc" k="-20" />
  1901. <hkern g1="ldot.sc" g2="b.sc" k="-20" />
  1902. <hkern g1="lslash.sc" g2="quotesingle.sc" k="120" />
  1903. <hkern g1="lslash.sc" g2="quotedbl.sc" k="120" />
  1904. <hkern g1="lslash.sc" g2="asterisk.sc" k="130" />
  1905. <hkern g1="lslash.sc" g2="question.sc" k="60" />
  1906. <hkern g1="lslash.sc" g2="exclam.sc" k="40" />
  1907. <hkern g1="lslash.sc" g2="parenright.sc" k="20" />
  1908. <hkern g1="m.sc" g2="quotesingle.sc" k="30" />
  1909. <hkern g1="m.sc" g2="quotedbl.sc" k="30" />
  1910. <hkern g1="m.sc" g2="asterisk.sc" k="20" />
  1911. <hkern g1="m.sc" g2="question.sc" k="30" />
  1912. <hkern g1="m.sc" g2="exclam.sc" k="50" />
  1913. <hkern g1="m.sc" g2="bracketright.sc" k="10" />
  1914. <hkern g1="m.sc" g2="braceright.sc" k="30" />
  1915. <hkern g1="m.sc" g2="parenright.sc" k="10" />
  1916. <hkern g1="n.sc" g2="exclam.sc" k="50" />
  1917. <hkern g1="nacute.sc" g2="exclam.sc" k="50" />
  1918. <hkern g1="ncaron.sc" g2="exclam.sc" k="50" />
  1919. <hkern g1="ncommaaccent.sc" g2="exclam.sc" k="50" />
  1920. <hkern g1="ndotaccent.sc" g2="exclam.sc" k="50" />
  1921. <hkern g1="eng.sc" g2="exclam.sc" k="50" />
  1922. <hkern g1="nhookleft.sc" g2="exclam.sc" k="50" />
  1923. <hkern g1="ntilde.sc" g2="exclam.sc" k="50" />
  1924. <hkern g1="o.sc" g2="quotesingle.sc" k="10" />
  1925. <hkern g1="o.sc" g2="quotedbl.sc" k="10" />
  1926. <hkern g1="o.sc" g2="asterisk.sc" k="20" />
  1927. <hkern g1="o.sc" g2="exclam.sc" k="30" />
  1928. <hkern g1="o.sc" g2="bracketright.sc" k="10" />
  1929. <hkern g1="o.sc" g2="braceright.sc" k="30" />
  1930. <hkern g1="o.sc" g2="parenright.sc" k="30" />
  1931. <hkern g1="oacute.sc" g2="quotesingle.sc" k="10" />
  1932. <hkern g1="oacute.sc" g2="quotedbl.sc" k="10" />
  1933. <hkern g1="oacute.sc" g2="asterisk.sc" k="20" />
  1934. <hkern g1="oacute.sc" g2="exclam.sc" k="30" />
  1935. <hkern g1="oacute.sc" g2="bracketright.sc" k="10" />
  1936. <hkern g1="oacute.sc" g2="braceright.sc" k="30" />
  1937. <hkern g1="oacute.sc" g2="parenright.sc" k="30" />
  1938. <hkern g1="obreve.sc" g2="quotesingle.sc" k="10" />
  1939. <hkern g1="obreve.sc" g2="quotedbl.sc" k="10" />
  1940. <hkern g1="obreve.sc" g2="asterisk.sc" k="20" />
  1941. <hkern g1="obreve.sc" g2="exclam.sc" k="30" />
  1942. <hkern g1="obreve.sc" g2="bracketright.sc" k="10" />
  1943. <hkern g1="obreve.sc" g2="braceright.sc" k="30" />
  1944. <hkern g1="obreve.sc" g2="parenright.sc" k="30" />
  1945. <hkern g1="ocaron.sc" g2="quotesingle.sc" k="10" />
  1946. <hkern g1="ocaron.sc" g2="quotedbl.sc" k="10" />
  1947. <hkern g1="ocaron.sc" g2="asterisk.sc" k="20" />
  1948. <hkern g1="ocaron.sc" g2="exclam.sc" k="30" />
  1949. <hkern g1="ocaron.sc" g2="bracketright.sc" k="10" />
  1950. <hkern g1="ocaron.sc" g2="braceright.sc" k="30" />
  1951. <hkern g1="ocaron.sc" g2="parenright.sc" k="30" />
  1952. <hkern g1="ocircumflex.sc" g2="quotesingle.sc" k="10" />
  1953. <hkern g1="ocircumflex.sc" g2="quotedbl.sc" k="10" />
  1954. <hkern g1="ocircumflex.sc" g2="asterisk.sc" k="20" />
  1955. <hkern g1="ocircumflex.sc" g2="exclam.sc" k="30" />
  1956. <hkern g1="ocircumflex.sc" g2="bracketright.sc" k="10" />
  1957. <hkern g1="ocircumflex.sc" g2="braceright.sc" k="30" />
  1958. <hkern g1="ocircumflex.sc" g2="parenright.sc" k="30" />
  1959. <hkern g1="odieresis.sc" g2="quotesingle.sc" k="10" />
  1960. <hkern g1="odieresis.sc" g2="quotedbl.sc" k="10" />
  1961. <hkern g1="odieresis.sc" g2="asterisk.sc" k="20" />
  1962. <hkern g1="odieresis.sc" g2="exclam.sc" k="30" />
  1963. <hkern g1="odieresis.sc" g2="bracketright.sc" k="10" />
  1964. <hkern g1="odieresis.sc" g2="braceright.sc" k="30" />
  1965. <hkern g1="odieresis.sc" g2="parenright.sc" k="30" />
  1966. <hkern g1="odotbelow.sc" g2="quotesingle.sc" k="10" />
  1967. <hkern g1="odotbelow.sc" g2="quotedbl.sc" k="10" />
  1968. <hkern g1="odotbelow.sc" g2="asterisk.sc" k="20" />
  1969. <hkern g1="odotbelow.sc" g2="exclam.sc" k="30" />
  1970. <hkern g1="odotbelow.sc" g2="bracketright.sc" k="10" />
  1971. <hkern g1="odotbelow.sc" g2="braceright.sc" k="30" />
  1972. <hkern g1="odotbelow.sc" g2="parenright.sc" k="30" />
  1973. <hkern g1="ograve.sc" g2="quotesingle.sc" k="10" />
  1974. <hkern g1="ograve.sc" g2="quotedbl.sc" k="10" />
  1975. <hkern g1="ograve.sc" g2="asterisk.sc" k="20" />
  1976. <hkern g1="ograve.sc" g2="exclam.sc" k="30" />
  1977. <hkern g1="ograve.sc" g2="bracketright.sc" k="10" />
  1978. <hkern g1="ograve.sc" g2="braceright.sc" k="30" />
  1979. <hkern g1="ograve.sc" g2="parenright.sc" k="30" />
  1980. <hkern g1="ohungarumlaut.sc" g2="quotesingle.sc" k="10" />
  1981. <hkern g1="ohungarumlaut.sc" g2="quotedbl.sc" k="10" />
  1982. <hkern g1="ohungarumlaut.sc" g2="asterisk.sc" k="20" />
  1983. <hkern g1="ohungarumlaut.sc" g2="exclam.sc" k="30" />
  1984. <hkern g1="ohungarumlaut.sc" g2="bracketright.sc" k="10" />
  1985. <hkern g1="ohungarumlaut.sc" g2="braceright.sc" k="30" />
  1986. <hkern g1="ohungarumlaut.sc" g2="parenright.sc" k="30" />
  1987. <hkern g1="omacron.sc" g2="quotesingle.sc" k="10" />
  1988. <hkern g1="omacron.sc" g2="quotedbl.sc" k="10" />
  1989. <hkern g1="omacron.sc" g2="asterisk.sc" k="20" />
  1990. <hkern g1="omacron.sc" g2="exclam.sc" k="30" />
  1991. <hkern g1="omacron.sc" g2="bracketright.sc" k="10" />
  1992. <hkern g1="omacron.sc" g2="braceright.sc" k="30" />
  1993. <hkern g1="omacron.sc" g2="parenright.sc" k="30" />
  1994. <hkern g1="oogonek.sc" g2="quotesingle.sc" k="10" />
  1995. <hkern g1="oogonek.sc" g2="quotedbl.sc" k="10" />
  1996. <hkern g1="oogonek.sc" g2="asterisk.sc" k="20" />
  1997. <hkern g1="oogonek.sc" g2="exclam.sc" k="30" />
  1998. <hkern g1="oogonek.sc" g2="bracketright.sc" k="10" />
  1999. <hkern g1="oogonek.sc" g2="braceright.sc" k="30" />
  2000. <hkern g1="oogonek.sc" g2="parenright.sc" k="30" />
  2001. <hkern g1="oslash.sc" g2="quotesingle.sc" k="10" />
  2002. <hkern g1="oslash.sc" g2="quotedbl.sc" k="10" />
  2003. <hkern g1="oslash.sc" g2="asterisk.sc" k="20" />
  2004. <hkern g1="oslash.sc" g2="exclam.sc" k="30" />
  2005. <hkern g1="oslash.sc" g2="bracketright.sc" k="10" />
  2006. <hkern g1="oslash.sc" g2="braceright.sc" k="30" />
  2007. <hkern g1="oslash.sc" g2="parenright.sc" k="30" />
  2008. <hkern g1="oslashacute.sc" g2="quotesingle.sc" k="10" />
  2009. <hkern g1="oslashacute.sc" g2="quotedbl.sc" k="10" />
  2010. <hkern g1="oslashacute.sc" g2="asterisk.sc" k="20" />
  2011. <hkern g1="oslashacute.sc" g2="exclam.sc" k="30" />
  2012. <hkern g1="oslashacute.sc" g2="bracketright.sc" k="10" />
  2013. <hkern g1="oslashacute.sc" g2="braceright.sc" k="30" />
  2014. <hkern g1="oslashacute.sc" g2="parenright.sc" k="30" />
  2015. <hkern g1="otilde.sc" g2="quotesingle.sc" k="10" />
  2016. <hkern g1="otilde.sc" g2="quotedbl.sc" k="10" />
  2017. <hkern g1="otilde.sc" g2="asterisk.sc" k="20" />
  2018. <hkern g1="otilde.sc" g2="exclam.sc" k="30" />
  2019. <hkern g1="otilde.sc" g2="bracketright.sc" k="10" />
  2020. <hkern g1="otilde.sc" g2="braceright.sc" k="30" />
  2021. <hkern g1="otilde.sc" g2="parenright.sc" k="30" />
  2022. <hkern g1="p.sc" g2="quotesingle.sc" k="10" />
  2023. <hkern g1="p.sc" g2="quotedbl.sc" k="10" />
  2024. <hkern g1="p.sc" g2="question.sc" k="20" />
  2025. <hkern g1="p.sc" g2="exclam.sc" k="40" />
  2026. <hkern g1="p.sc" g2="braceright.sc" k="10" />
  2027. <hkern g1="p.sc" g2="parenright.sc" k="40" />
  2028. <hkern g1="p.sc" g2="x.sc" k="10" />
  2029. <hkern g1="p.sc" g2="m.sc" k="10" />
  2030. <hkern g1="p.sc" u2="&#x2122;" k="30" />
  2031. <hkern g1="p.sc" u2="_" k="20" />
  2032. <hkern g1="thorn.sc" u2="_" k="20" />
  2033. <hkern g1="q.sc" g2="quotesingle.sc" k="10" />
  2034. <hkern g1="q.sc" g2="quotedbl.sc" k="10" />
  2035. <hkern g1="q.sc" g2="asterisk.sc" k="20" />
  2036. <hkern g1="q.sc" g2="exclam.sc" k="30" />
  2037. <hkern g1="q.sc" g2="bracketright.sc" k="10" />
  2038. <hkern g1="q.sc" g2="braceright.sc" k="30" />
  2039. <hkern g1="q.sc" g2="parenright.sc" k="30" />
  2040. <hkern g1="r.sc" g2="quotesingle.sc" k="10" />
  2041. <hkern g1="r.sc" g2="quotedbl.sc" k="10" />
  2042. <hkern g1="r.sc" g2="asterisk.sc" k="20" />
  2043. <hkern g1="r.sc" g2="exclam.sc" k="40" />
  2044. <hkern g1="racute.sc" g2="quotesingle.sc" k="10" />
  2045. <hkern g1="racute.sc" g2="quotedbl.sc" k="10" />
  2046. <hkern g1="racute.sc" g2="asterisk.sc" k="20" />
  2047. <hkern g1="racute.sc" g2="exclam.sc" k="40" />
  2048. <hkern g1="rcaron.sc" g2="quotesingle.sc" k="10" />
  2049. <hkern g1="rcaron.sc" g2="quotedbl.sc" k="10" />
  2050. <hkern g1="rcaron.sc" g2="asterisk.sc" k="20" />
  2051. <hkern g1="rcaron.sc" g2="exclam.sc" k="40" />
  2052. <hkern g1="rcommaaccent.sc" g2="quotesingle.sc" k="10" />
  2053. <hkern g1="rcommaaccent.sc" g2="quotedbl.sc" k="10" />
  2054. <hkern g1="rcommaaccent.sc" g2="asterisk.sc" k="20" />
  2055. <hkern g1="rcommaaccent.sc" g2="exclam.sc" k="40" />
  2056. <hkern g1="rdotbelow.sc" g2="quotesingle.sc" k="10" />
  2057. <hkern g1="rdotbelow.sc" g2="quotedbl.sc" k="10" />
  2058. <hkern g1="rdotbelow.sc" g2="asterisk.sc" k="20" />
  2059. <hkern g1="rdotbelow.sc" g2="exclam.sc" k="40" />
  2060. <hkern g1="s.sc" g2="quotesingle.sc" k="20" />
  2061. <hkern g1="s.sc" g2="quotedbl.sc" k="20" />
  2062. <hkern g1="s.sc" g2="asterisk.sc" k="20" />
  2063. <hkern g1="s.sc" g2="question.sc" k="20" />
  2064. <hkern g1="s.sc" g2="exclam.sc" k="40" />
  2065. <hkern g1="s.sc" g2="bracketright.sc" k="20" />
  2066. <hkern g1="s.sc" g2="braceright.sc" k="30" />
  2067. <hkern g1="sacute.sc" g2="quotesingle.sc" k="20" />
  2068. <hkern g1="sacute.sc" g2="quotedbl.sc" k="20" />
  2069. <hkern g1="sacute.sc" g2="asterisk.sc" k="20" />
  2070. <hkern g1="sacute.sc" g2="question.sc" k="20" />
  2071. <hkern g1="sacute.sc" g2="exclam.sc" k="40" />
  2072. <hkern g1="sacute.sc" g2="bracketright.sc" k="20" />
  2073. <hkern g1="sacute.sc" g2="braceright.sc" k="30" />
  2074. <hkern g1="scaron.sc" g2="quotesingle.sc" k="20" />
  2075. <hkern g1="scaron.sc" g2="quotedbl.sc" k="20" />
  2076. <hkern g1="scaron.sc" g2="asterisk.sc" k="20" />
  2077. <hkern g1="scaron.sc" g2="question.sc" k="20" />
  2078. <hkern g1="scaron.sc" g2="exclam.sc" k="40" />
  2079. <hkern g1="scaron.sc" g2="bracketright.sc" k="20" />
  2080. <hkern g1="scaron.sc" g2="braceright.sc" k="30" />
  2081. <hkern g1="scedilla.sc" g2="quotesingle.sc" k="20" />
  2082. <hkern g1="scedilla.sc" g2="quotedbl.sc" k="20" />
  2083. <hkern g1="scedilla.sc" g2="asterisk.sc" k="20" />
  2084. <hkern g1="scedilla.sc" g2="question.sc" k="20" />
  2085. <hkern g1="scedilla.sc" g2="exclam.sc" k="40" />
  2086. <hkern g1="scedilla.sc" g2="bracketright.sc" k="20" />
  2087. <hkern g1="scedilla.sc" g2="braceright.sc" k="30" />
  2088. <hkern g1="scircumflex.sc" g2="quotesingle.sc" k="20" />
  2089. <hkern g1="scircumflex.sc" g2="quotedbl.sc" k="20" />
  2090. <hkern g1="scircumflex.sc" g2="asterisk.sc" k="20" />
  2091. <hkern g1="scircumflex.sc" g2="question.sc" k="20" />
  2092. <hkern g1="scircumflex.sc" g2="exclam.sc" k="40" />
  2093. <hkern g1="scircumflex.sc" g2="bracketright.sc" k="20" />
  2094. <hkern g1="scircumflex.sc" g2="braceright.sc" k="30" />
  2095. <hkern g1="scommaaccent.sc" g2="quotesingle.sc" k="20" />
  2096. <hkern g1="scommaaccent.sc" g2="quotedbl.sc" k="20" />
  2097. <hkern g1="scommaaccent.sc" g2="asterisk.sc" k="20" />
  2098. <hkern g1="scommaaccent.sc" g2="question.sc" k="20" />
  2099. <hkern g1="scommaaccent.sc" g2="exclam.sc" k="40" />
  2100. <hkern g1="scommaaccent.sc" g2="bracketright.sc" k="20" />
  2101. <hkern g1="scommaaccent.sc" g2="braceright.sc" k="30" />
  2102. <hkern g1="sdotbelow.sc" g2="quotesingle.sc" k="20" />
  2103. <hkern g1="sdotbelow.sc" g2="quotedbl.sc" k="20" />
  2104. <hkern g1="sdotbelow.sc" g2="asterisk.sc" k="20" />
  2105. <hkern g1="sdotbelow.sc" g2="question.sc" k="20" />
  2106. <hkern g1="sdotbelow.sc" g2="exclam.sc" k="40" />
  2107. <hkern g1="sdotbelow.sc" g2="bracketright.sc" k="20" />
  2108. <hkern g1="sdotbelow.sc" g2="braceright.sc" k="30" />
  2109. <hkern g1="germandbls.sc" g2="quotesingle.sc" k="20" />
  2110. <hkern g1="germandbls.sc" g2="quotedbl.sc" k="20" />
  2111. <hkern g1="germandbls.sc" g2="asterisk.sc" k="20" />
  2112. <hkern g1="germandbls.sc" g2="question.sc" k="20" />
  2113. <hkern g1="germandbls.sc" g2="exclam.sc" k="40" />
  2114. <hkern g1="germandbls.sc" g2="bracketright.sc" k="20" />
  2115. <hkern g1="germandbls.sc" g2="braceright.sc" k="30" />
  2116. <hkern g1="t.sc" g2="exclam.sc" k="40" />
  2117. <hkern g1="t.sc" g2="braceright.sc" k="20" />
  2118. <hkern g1="tbar.sc" g2="exclam.sc" k="40" />
  2119. <hkern g1="tbar.sc" g2="braceright.sc" k="20" />
  2120. <hkern g1="tcaron.sc" g2="exclam.sc" k="40" />
  2121. <hkern g1="tcaron.sc" g2="braceright.sc" k="20" />
  2122. <hkern g1="tcedilla.sc" g2="exclam.sc" k="40" />
  2123. <hkern g1="tcedilla.sc" g2="braceright.sc" k="20" />
  2124. <hkern g1="tcommaaccent.sc" g2="exclam.sc" k="40" />
  2125. <hkern g1="tcommaaccent.sc" g2="braceright.sc" k="20" />
  2126. <hkern g1="tdotbelow.sc" g2="exclam.sc" k="40" />
  2127. <hkern g1="tdotbelow.sc" g2="braceright.sc" k="20" />
  2128. <hkern g1="u.sc" g2="question.sc" k="20" />
  2129. <hkern g1="u.sc" g2="exclam.sc" k="40" />
  2130. <hkern g1="u.sc" g2="bracketright.sc" k="20" />
  2131. <hkern g1="u.sc" g2="braceright.sc" k="20" />
  2132. <hkern g1="u.sc" g2="parenright.sc" k="10" />
  2133. <hkern g1="uacute.sc" g2="question.sc" k="20" />
  2134. <hkern g1="uacute.sc" g2="exclam.sc" k="40" />
  2135. <hkern g1="uacute.sc" g2="bracketright.sc" k="20" />
  2136. <hkern g1="uacute.sc" g2="braceright.sc" k="20" />
  2137. <hkern g1="uacute.sc" g2="parenright.sc" k="10" />
  2138. <hkern g1="ubreve.sc" g2="question.sc" k="20" />
  2139. <hkern g1="ubreve.sc" g2="exclam.sc" k="40" />
  2140. <hkern g1="ubreve.sc" g2="bracketright.sc" k="20" />
  2141. <hkern g1="ubreve.sc" g2="braceright.sc" k="20" />
  2142. <hkern g1="ubreve.sc" g2="parenright.sc" k="10" />
  2143. <hkern g1="ucaron.sc" g2="question.sc" k="20" />
  2144. <hkern g1="ucaron.sc" g2="exclam.sc" k="40" />
  2145. <hkern g1="ucaron.sc" g2="bracketright.sc" k="20" />
  2146. <hkern g1="ucaron.sc" g2="braceright.sc" k="20" />
  2147. <hkern g1="ucaron.sc" g2="parenright.sc" k="10" />
  2148. <hkern g1="ucircumflex.sc" g2="question.sc" k="20" />
  2149. <hkern g1="ucircumflex.sc" g2="exclam.sc" k="40" />
  2150. <hkern g1="ucircumflex.sc" g2="bracketright.sc" k="20" />
  2151. <hkern g1="ucircumflex.sc" g2="braceright.sc" k="20" />
  2152. <hkern g1="ucircumflex.sc" g2="parenright.sc" k="10" />
  2153. <hkern g1="udieresis.sc" g2="question.sc" k="20" />
  2154. <hkern g1="udieresis.sc" g2="exclam.sc" k="40" />
  2155. <hkern g1="udieresis.sc" g2="bracketright.sc" k="20" />
  2156. <hkern g1="udieresis.sc" g2="braceright.sc" k="20" />
  2157. <hkern g1="udieresis.sc" g2="parenright.sc" k="10" />
  2158. <hkern g1="udieresisacute.sc" g2="question.sc" k="20" />
  2159. <hkern g1="udieresisacute.sc" g2="exclam.sc" k="40" />
  2160. <hkern g1="udieresisacute.sc" g2="bracketright.sc" k="20" />
  2161. <hkern g1="udieresisacute.sc" g2="braceright.sc" k="20" />
  2162. <hkern g1="udieresisacute.sc" g2="parenright.sc" k="10" />
  2163. <hkern g1="udieresiscaron.sc" g2="question.sc" k="20" />
  2164. <hkern g1="udieresiscaron.sc" g2="exclam.sc" k="40" />
  2165. <hkern g1="udieresiscaron.sc" g2="bracketright.sc" k="20" />
  2166. <hkern g1="udieresiscaron.sc" g2="braceright.sc" k="20" />
  2167. <hkern g1="udieresiscaron.sc" g2="parenright.sc" k="10" />
  2168. <hkern g1="udieresisgrave.sc" g2="question.sc" k="20" />
  2169. <hkern g1="udieresisgrave.sc" g2="exclam.sc" k="40" />
  2170. <hkern g1="udieresisgrave.sc" g2="bracketright.sc" k="20" />
  2171. <hkern g1="udieresisgrave.sc" g2="braceright.sc" k="20" />
  2172. <hkern g1="udieresisgrave.sc" g2="parenright.sc" k="10" />
  2173. <hkern g1="udieresismacron.sc" g2="question.sc" k="20" />
  2174. <hkern g1="udieresismacron.sc" g2="exclam.sc" k="40" />
  2175. <hkern g1="udieresismacron.sc" g2="bracketright.sc" k="20" />
  2176. <hkern g1="udieresismacron.sc" g2="braceright.sc" k="20" />
  2177. <hkern g1="udieresismacron.sc" g2="parenright.sc" k="10" />
  2178. <hkern g1="udotbelow.sc" g2="question.sc" k="20" />
  2179. <hkern g1="udotbelow.sc" g2="exclam.sc" k="40" />
  2180. <hkern g1="udotbelow.sc" g2="bracketright.sc" k="20" />
  2181. <hkern g1="udotbelow.sc" g2="braceright.sc" k="20" />
  2182. <hkern g1="udotbelow.sc" g2="parenright.sc" k="10" />
  2183. <hkern g1="ugrave.sc" g2="question.sc" k="20" />
  2184. <hkern g1="ugrave.sc" g2="exclam.sc" k="40" />
  2185. <hkern g1="ugrave.sc" g2="bracketright.sc" k="20" />
  2186. <hkern g1="ugrave.sc" g2="braceright.sc" k="20" />
  2187. <hkern g1="ugrave.sc" g2="parenright.sc" k="10" />
  2188. <hkern g1="uhungarumlaut.sc" g2="question.sc" k="20" />
  2189. <hkern g1="uhungarumlaut.sc" g2="exclam.sc" k="40" />
  2190. <hkern g1="uhungarumlaut.sc" g2="bracketright.sc" k="20" />
  2191. <hkern g1="uhungarumlaut.sc" g2="braceright.sc" k="20" />
  2192. <hkern g1="uhungarumlaut.sc" g2="parenright.sc" k="10" />
  2193. <hkern g1="umacron.sc" g2="question.sc" k="20" />
  2194. <hkern g1="umacron.sc" g2="exclam.sc" k="40" />
  2195. <hkern g1="umacron.sc" g2="bracketright.sc" k="20" />
  2196. <hkern g1="umacron.sc" g2="braceright.sc" k="20" />
  2197. <hkern g1="umacron.sc" g2="parenright.sc" k="10" />
  2198. <hkern g1="uogonek.sc" g2="question.sc" k="20" />
  2199. <hkern g1="uogonek.sc" g2="exclam.sc" k="40" />
  2200. <hkern g1="uogonek.sc" g2="bracketright.sc" k="20" />
  2201. <hkern g1="uogonek.sc" g2="braceright.sc" k="20" />
  2202. <hkern g1="uogonek.sc" g2="parenright.sc" k="10" />
  2203. <hkern g1="uring.sc" g2="question.sc" k="20" />
  2204. <hkern g1="uring.sc" g2="exclam.sc" k="40" />
  2205. <hkern g1="uring.sc" g2="bracketright.sc" k="20" />
  2206. <hkern g1="uring.sc" g2="braceright.sc" k="20" />
  2207. <hkern g1="uring.sc" g2="parenright.sc" k="10" />
  2208. <hkern g1="utilde.sc" g2="question.sc" k="20" />
  2209. <hkern g1="utilde.sc" g2="exclam.sc" k="40" />
  2210. <hkern g1="utilde.sc" g2="bracketright.sc" k="20" />
  2211. <hkern g1="utilde.sc" g2="braceright.sc" k="20" />
  2212. <hkern g1="utilde.sc" g2="parenright.sc" k="10" />
  2213. <hkern g1="v.sc" g2="exclam.sc" k="50" />
  2214. <hkern g1="v.sc" g2="bracketright.sc" k="30" />
  2215. <hkern g1="v.sc" g2="braceright.sc" k="30" />
  2216. <hkern g1="w.sc" g2="exclam.sc" k="50" />
  2217. <hkern g1="w.sc" g2="bracketright.sc" k="30" />
  2218. <hkern g1="w.sc" g2="braceright.sc" k="30" />
  2219. <hkern g1="wacute.sc" g2="exclam.sc" k="50" />
  2220. <hkern g1="wacute.sc" g2="bracketright.sc" k="30" />
  2221. <hkern g1="wacute.sc" g2="braceright.sc" k="30" />
  2222. <hkern g1="wcircumflex.sc" g2="exclam.sc" k="50" />
  2223. <hkern g1="wcircumflex.sc" g2="bracketright.sc" k="30" />
  2224. <hkern g1="wcircumflex.sc" g2="braceright.sc" k="30" />
  2225. <hkern g1="wdieresis.sc" g2="exclam.sc" k="50" />
  2226. <hkern g1="wdieresis.sc" g2="bracketright.sc" k="30" />
  2227. <hkern g1="wdieresis.sc" g2="braceright.sc" k="30" />
  2228. <hkern g1="wgrave.sc" g2="exclam.sc" k="50" />
  2229. <hkern g1="wgrave.sc" g2="bracketright.sc" k="30" />
  2230. <hkern g1="wgrave.sc" g2="braceright.sc" k="30" />
  2231. <hkern g1="x.sc" g2="exclam.sc" k="40" />
  2232. <hkern g1="y.sc" g2="exclam.sc" k="50" />
  2233. <hkern g1="y.sc" g2="braceright.sc" k="20" />
  2234. <hkern g1="yacute.sc" g2="exclam.sc" k="50" />
  2235. <hkern g1="yacute.sc" g2="braceright.sc" k="20" />
  2236. <hkern g1="ycircumflex.sc" g2="exclam.sc" k="50" />
  2237. <hkern g1="ycircumflex.sc" g2="braceright.sc" k="20" />
  2238. <hkern g1="ydieresis.sc" g2="exclam.sc" k="50" />
  2239. <hkern g1="ydieresis.sc" g2="braceright.sc" k="20" />
  2240. <hkern g1="ygrave.sc" g2="exclam.sc" k="50" />
  2241. <hkern g1="ygrave.sc" g2="braceright.sc" k="20" />
  2242. <hkern g1="ymacron.sc" g2="exclam.sc" k="50" />
  2243. <hkern g1="ymacron.sc" g2="braceright.sc" k="20" />
  2244. <hkern g1="ytilde.sc" g2="exclam.sc" k="50" />
  2245. <hkern g1="ytilde.sc" g2="braceright.sc" k="20" />
  2246. <hkern g1="z.sc" g2="quotedbl.sc" k="20" />
  2247. <hkern g1="z.sc" g2="question.sc" k="20" />
  2248. <hkern g1="z.sc" g2="exclam.sc" k="40" />
  2249. <hkern g1="z.sc" g2="bracketright.sc" k="30" />
  2250. <hkern g1="z.sc" g2="braceright.sc" k="30" />
  2251. <hkern g1="z.sc" g2="parenright.sc" k="30" />
  2252. <hkern g1="zacute.sc" g2="quotedbl.sc" k="20" />
  2253. <hkern g1="zacute.sc" g2="question.sc" k="20" />
  2254. <hkern g1="zacute.sc" g2="exclam.sc" k="40" />
  2255. <hkern g1="zacute.sc" g2="bracketright.sc" k="30" />
  2256. <hkern g1="zacute.sc" g2="braceright.sc" k="30" />
  2257. <hkern g1="zacute.sc" g2="parenright.sc" k="30" />
  2258. <hkern g1="zcaron.sc" g2="quotedbl.sc" k="20" />
  2259. <hkern g1="zcaron.sc" g2="question.sc" k="20" />
  2260. <hkern g1="zcaron.sc" g2="exclam.sc" k="40" />
  2261. <hkern g1="zcaron.sc" g2="bracketright.sc" k="30" />
  2262. <hkern g1="zcaron.sc" g2="braceright.sc" k="30" />
  2263. <hkern g1="zcaron.sc" g2="parenright.sc" k="30" />
  2264. <hkern g1="zdotaccent.sc" g2="quotedbl.sc" k="20" />
  2265. <hkern g1="zdotaccent.sc" g2="question.sc" k="20" />
  2266. <hkern g1="zdotaccent.sc" g2="exclam.sc" k="40" />
  2267. <hkern g1="zdotaccent.sc" g2="bracketright.sc" k="30" />
  2268. <hkern g1="zdotaccent.sc" g2="braceright.sc" k="30" />
  2269. <hkern g1="zdotaccent.sc" g2="parenright.sc" k="30" />
  2270. <hkern g1="zdotbelow.sc" g2="quotedbl.sc" k="20" />
  2271. <hkern g1="zdotbelow.sc" g2="question.sc" k="20" />
  2272. <hkern g1="zdotbelow.sc" g2="exclam.sc" k="40" />
  2273. <hkern g1="zdotbelow.sc" g2="bracketright.sc" k="30" />
  2274. <hkern g1="zdotbelow.sc" g2="braceright.sc" k="30" />
  2275. <hkern g1="zdotbelow.sc" g2="parenright.sc" k="30" />
  2276. <hkern g1="zero.numerator" u2="&#x2044;" k="250" />
  2277. <hkern g1="four.numerator" u2="&#x2044;" k="190" />
  2278. <hkern g1="seven.numerator" u2="&#x2044;" k="240" />
  2279. <hkern g1="nine.numerator" u2="&#x2044;" k="250" />
  2280. <hkern g1="exclamdown.caps" g2="IJacute" k="40" />
  2281. <hkern g1="exclamdown.caps" g2="Jacute" k="10" />
  2282. <hkern g1="exclamdown.caps" u2="&#x1ef8;" k="30" />
  2283. <hkern g1="exclamdown.caps" u2="&#x1ef2;" k="30" />
  2284. <hkern g1="exclamdown.caps" u2="&#x1ee4;" k="40" />
  2285. <hkern g1="exclamdown.caps" u2="&#x1ecc;" k="30" />
  2286. <hkern g1="exclamdown.caps" u2="&#x1eca;" k="40" />
  2287. <hkern g1="exclamdown.caps" u2="&#x1ebc;" k="40" />
  2288. <hkern g1="exclamdown.caps" u2="&#x1eb8;" k="40" />
  2289. <hkern g1="exclamdown.caps" u2="&#x1ea0;" k="40" />
  2290. <hkern g1="exclamdown.caps" u2="&#x1e92;" k="40" />
  2291. <hkern g1="exclamdown.caps" u2="&#x1e84;" k="40" />
  2292. <hkern g1="exclamdown.caps" u2="&#x1e82;" k="40" />
  2293. <hkern g1="exclamdown.caps" u2="&#x1e80;" k="40" />
  2294. <hkern g1="exclamdown.caps" u2="&#x1e6c;" k="40" />
  2295. <hkern g1="exclamdown.caps" u2="&#x1e62;" k="50" />
  2296. <hkern g1="exclamdown.caps" u2="&#x1e5a;" k="40" />
  2297. <hkern g1="exclamdown.caps" u2="&#x1e44;" k="40" />
  2298. <hkern g1="exclamdown.caps" u2="&#x1e24;" k="40" />
  2299. <hkern g1="exclamdown.caps" u2="&#x1e0c;" k="40" />
  2300. <hkern g1="exclamdown.caps" u2="&#x232;" k="30" />
  2301. <hkern g1="exclamdown.caps" u2="&#x21a;" k="40" />
  2302. <hkern g1="exclamdown.caps" u2="&#x218;" k="50" />
  2303. <hkern g1="exclamdown.caps" u2="&#x1fe;" k="30" />
  2304. <hkern g1="exclamdown.caps" u2="&#x1fc;" k="40" />
  2305. <hkern g1="exclamdown.caps" u2="&#x1fa;" k="40" />
  2306. <hkern g1="exclamdown.caps" u2="&#x1f4;" k="30" />
  2307. <hkern g1="exclamdown.caps" u2="&#x1ea;" k="30" />
  2308. <hkern g1="exclamdown.caps" u2="&#x1e6;" k="30" />
  2309. <hkern g1="exclamdown.caps" u2="&#x1db;" k="40" />
  2310. <hkern g1="exclamdown.caps" u2="&#x1d9;" k="40" />
  2311. <hkern g1="exclamdown.caps" u2="&#x1d7;" k="40" />
  2312. <hkern g1="exclamdown.caps" u2="&#x1d5;" k="40" />
  2313. <hkern g1="exclamdown.caps" u2="&#x1d3;" k="40" />
  2314. <hkern g1="exclamdown.caps" u2="&#x1d1;" k="30" />
  2315. <hkern g1="exclamdown.caps" u2="&#x1cf;" k="40" />
  2316. <hkern g1="exclamdown.caps" u2="&#x1cd;" k="40" />
  2317. <hkern g1="exclamdown.caps" u2="&#x19d;" k="10" />
  2318. <hkern g1="exclamdown.caps" u2="&#x17d;" k="40" />
  2319. <hkern g1="exclamdown.caps" u2="&#x17b;" k="40" />
  2320. <hkern g1="exclamdown.caps" u2="&#x179;" k="40" />
  2321. <hkern g1="exclamdown.caps" u2="&#x178;" k="30" />
  2322. <hkern g1="exclamdown.caps" u2="&#x176;" k="30" />
  2323. <hkern g1="exclamdown.caps" u2="&#x174;" k="40" />
  2324. <hkern g1="exclamdown.caps" u2="&#x172;" k="40" />
  2325. <hkern g1="exclamdown.caps" u2="&#x170;" k="40" />
  2326. <hkern g1="exclamdown.caps" u2="&#x16e;" k="40" />
  2327. <hkern g1="exclamdown.caps" u2="&#x16c;" k="40" />
  2328. <hkern g1="exclamdown.caps" u2="&#x16a;" k="40" />
  2329. <hkern g1="exclamdown.caps" u2="&#x168;" k="40" />
  2330. <hkern g1="exclamdown.caps" u2="&#x166;" k="40" />
  2331. <hkern g1="exclamdown.caps" u2="&#x164;" k="40" />
  2332. <hkern g1="exclamdown.caps" u2="&#x162;" k="40" />
  2333. <hkern g1="exclamdown.caps" u2="&#x160;" k="50" />
  2334. <hkern g1="exclamdown.caps" u2="&#x15e;" k="50" />
  2335. <hkern g1="exclamdown.caps" u2="&#x15c;" k="50" />
  2336. <hkern g1="exclamdown.caps" u2="&#x15a;" k="50" />
  2337. <hkern g1="exclamdown.caps" u2="&#x158;" k="40" />
  2338. <hkern g1="exclamdown.caps" u2="&#x156;" k="40" />
  2339. <hkern g1="exclamdown.caps" u2="&#x154;" k="40" />
  2340. <hkern g1="exclamdown.caps" u2="&#x152;" k="30" />
  2341. <hkern g1="exclamdown.caps" u2="&#x150;" k="30" />
  2342. <hkern g1="exclamdown.caps" u2="&#x14e;" k="30" />
  2343. <hkern g1="exclamdown.caps" u2="&#x14c;" k="30" />
  2344. <hkern g1="exclamdown.caps" u2="&#x14a;" k="40" />
  2345. <hkern g1="exclamdown.caps" u2="&#x147;" k="40" />
  2346. <hkern g1="exclamdown.caps" u2="&#x145;" k="40" />
  2347. <hkern g1="exclamdown.caps" u2="&#x143;" k="40" />
  2348. <hkern g1="exclamdown.caps" u2="&#x141;" k="40" />
  2349. <hkern g1="exclamdown.caps" u2="&#x13f;" k="40" />
  2350. <hkern g1="exclamdown.caps" u2="&#x13d;" k="40" />
  2351. <hkern g1="exclamdown.caps" u2="&#x13b;" k="40" />
  2352. <hkern g1="exclamdown.caps" u2="&#x139;" k="40" />
  2353. <hkern g1="exclamdown.caps" u2="&#x136;" k="40" />
  2354. <hkern g1="exclamdown.caps" u2="&#x134;" k="10" />
  2355. <hkern g1="exclamdown.caps" u2="&#x132;" k="40" />
  2356. <hkern g1="exclamdown.caps" u2="&#x130;" k="40" />
  2357. <hkern g1="exclamdown.caps" u2="&#x12e;" k="40" />
  2358. <hkern g1="exclamdown.caps" u2="&#x12c;" k="40" />
  2359. <hkern g1="exclamdown.caps" u2="&#x12a;" k="40" />
  2360. <hkern g1="exclamdown.caps" u2="&#x128;" k="40" />
  2361. <hkern g1="exclamdown.caps" u2="&#x126;" k="40" />
  2362. <hkern g1="exclamdown.caps" u2="&#x124;" k="40" />
  2363. <hkern g1="exclamdown.caps" u2="&#x122;" k="30" />
  2364. <hkern g1="exclamdown.caps" u2="&#x120;" k="30" />
  2365. <hkern g1="exclamdown.caps" u2="&#x11e;" k="30" />
  2366. <hkern g1="exclamdown.caps" u2="&#x11c;" k="30" />
  2367. <hkern g1="exclamdown.caps" u2="&#x11a;" k="40" />
  2368. <hkern g1="exclamdown.caps" u2="&#x118;" k="40" />
  2369. <hkern g1="exclamdown.caps" u2="&#x116;" k="40" />
  2370. <hkern g1="exclamdown.caps" u2="&#x114;" k="40" />
  2371. <hkern g1="exclamdown.caps" u2="&#x112;" k="40" />
  2372. <hkern g1="exclamdown.caps" u2="&#x110;" k="40" />
  2373. <hkern g1="exclamdown.caps" u2="&#x10e;" k="40" />
  2374. <hkern g1="exclamdown.caps" u2="&#x10c;" k="30" />
  2375. <hkern g1="exclamdown.caps" u2="&#x10a;" k="30" />
  2376. <hkern g1="exclamdown.caps" u2="&#x108;" k="30" />
  2377. <hkern g1="exclamdown.caps" u2="&#x106;" k="30" />
  2378. <hkern g1="exclamdown.caps" u2="&#x104;" k="40" />
  2379. <hkern g1="exclamdown.caps" u2="&#x102;" k="40" />
  2380. <hkern g1="exclamdown.caps" u2="&#x100;" k="40" />
  2381. <hkern g1="exclamdown.caps" u2="&#xde;" k="40" />
  2382. <hkern g1="exclamdown.caps" u2="&#xdd;" k="30" />
  2383. <hkern g1="exclamdown.caps" u2="&#xdc;" k="40" />
  2384. <hkern g1="exclamdown.caps" u2="&#xdb;" k="40" />
  2385. <hkern g1="exclamdown.caps" u2="&#xda;" k="40" />
  2386. <hkern g1="exclamdown.caps" u2="&#xd9;" k="40" />
  2387. <hkern g1="exclamdown.caps" u2="&#xd8;" k="30" />
  2388. <hkern g1="exclamdown.caps" u2="&#xd6;" k="30" />
  2389. <hkern g1="exclamdown.caps" u2="&#xd5;" k="30" />
  2390. <hkern g1="exclamdown.caps" u2="&#xd4;" k="30" />
  2391. <hkern g1="exclamdown.caps" u2="&#xd3;" k="30" />
  2392. <hkern g1="exclamdown.caps" u2="&#xd2;" k="30" />
  2393. <hkern g1="exclamdown.caps" u2="&#xd1;" k="40" />
  2394. <hkern g1="exclamdown.caps" u2="&#xd0;" k="40" />
  2395. <hkern g1="exclamdown.caps" u2="&#xcf;" k="40" />
  2396. <hkern g1="exclamdown.caps" u2="&#xce;" k="40" />
  2397. <hkern g1="exclamdown.caps" u2="&#xcd;" k="40" />
  2398. <hkern g1="exclamdown.caps" u2="&#xcc;" k="40" />
  2399. <hkern g1="exclamdown.caps" u2="&#xcb;" k="40" />
  2400. <hkern g1="exclamdown.caps" u2="&#xca;" k="40" />
  2401. <hkern g1="exclamdown.caps" u2="&#xc9;" k="40" />
  2402. <hkern g1="exclamdown.caps" u2="&#xc8;" k="40" />
  2403. <hkern g1="exclamdown.caps" u2="&#xc7;" k="30" />
  2404. <hkern g1="exclamdown.caps" u2="&#xc6;" k="40" />
  2405. <hkern g1="exclamdown.caps" u2="&#xc5;" k="40" />
  2406. <hkern g1="exclamdown.caps" u2="&#xc4;" k="40" />
  2407. <hkern g1="exclamdown.caps" u2="&#xc3;" k="40" />
  2408. <hkern g1="exclamdown.caps" u2="&#xc2;" k="40" />
  2409. <hkern g1="exclamdown.caps" u2="&#xc1;" k="40" />
  2410. <hkern g1="exclamdown.caps" u2="&#xc0;" k="40" />
  2411. <hkern g1="exclamdown.caps" u2="Z" k="40" />
  2412. <hkern g1="exclamdown.caps" u2="Y" k="30" />
  2413. <hkern g1="exclamdown.caps" u2="X" k="20" />
  2414. <hkern g1="exclamdown.caps" u2="W" k="40" />
  2415. <hkern g1="exclamdown.caps" u2="V" k="40" />
  2416. <hkern g1="exclamdown.caps" u2="U" k="40" />
  2417. <hkern g1="exclamdown.caps" u2="T" k="40" />
  2418. <hkern g1="exclamdown.caps" u2="S" k="50" />
  2419. <hkern g1="exclamdown.caps" u2="R" k="40" />
  2420. <hkern g1="exclamdown.caps" u2="Q" k="30" />
  2421. <hkern g1="exclamdown.caps" u2="P" k="40" />
  2422. <hkern g1="exclamdown.caps" u2="O" k="30" />
  2423. <hkern g1="exclamdown.caps" u2="N" k="40" />
  2424. <hkern g1="exclamdown.caps" u2="M" k="30" />
  2425. <hkern g1="exclamdown.caps" u2="L" k="40" />
  2426. <hkern g1="exclamdown.caps" u2="K" k="40" />
  2427. <hkern g1="exclamdown.caps" u2="J" k="10" />
  2428. <hkern g1="exclamdown.caps" u2="I" k="40" />
  2429. <hkern g1="exclamdown.caps" u2="H" k="40" />
  2430. <hkern g1="exclamdown.caps" u2="G" k="30" />
  2431. <hkern g1="exclamdown.caps" u2="F" k="40" />
  2432. <hkern g1="exclamdown.caps" u2="E" k="40" />
  2433. <hkern g1="exclamdown.caps" u2="D" k="40" />
  2434. <hkern g1="exclamdown.caps" u2="C" k="30" />
  2435. <hkern g1="exclamdown.caps" u2="B" k="40" />
  2436. <hkern g1="exclamdown.caps" u2="A" k="40" />
  2437. <hkern g1="questiondown.caps" g2="IJacute" k="30" />
  2438. <hkern g1="questiondown.caps" g2="Jacute" k="30" />
  2439. <hkern g1="questiondown.caps" u2="&#x1ee4;" k="50" />
  2440. <hkern g1="questiondown.caps" u2="&#x1ecc;" k="70" />
  2441. <hkern g1="questiondown.caps" u2="&#x1eca;" k="30" />
  2442. <hkern g1="questiondown.caps" u2="&#x1ebc;" k="30" />
  2443. <hkern g1="questiondown.caps" u2="&#x1eb8;" k="30" />
  2444. <hkern g1="questiondown.caps" u2="&#x1ea0;" k="20" />
  2445. <hkern g1="questiondown.caps" u2="&#x1e92;" k="20" />
  2446. <hkern g1="questiondown.caps" u2="&#x1e6c;" k="80" />
  2447. <hkern g1="questiondown.caps" u2="&#x1e62;" k="50" />
  2448. <hkern g1="questiondown.caps" u2="&#x1e5a;" k="30" />
  2449. <hkern g1="questiondown.caps" u2="&#x1e44;" k="30" />
  2450. <hkern g1="questiondown.caps" u2="&#x1e24;" k="30" />
  2451. <hkern g1="questiondown.caps" u2="&#x1e0c;" k="30" />
  2452. <hkern g1="questiondown.caps" u2="&#x21a;" k="80" />
  2453. <hkern g1="questiondown.caps" u2="&#x218;" k="50" />
  2454. <hkern g1="questiondown.caps" u2="&#x1fe;" k="70" />
  2455. <hkern g1="questiondown.caps" u2="&#x1fc;" k="20" />
  2456. <hkern g1="questiondown.caps" u2="&#x1fa;" k="20" />
  2457. <hkern g1="questiondown.caps" u2="&#x1f4;" k="70" />
  2458. <hkern g1="questiondown.caps" u2="&#x1ea;" k="70" />
  2459. <hkern g1="questiondown.caps" u2="&#x1e6;" k="70" />
  2460. <hkern g1="questiondown.caps" u2="&#x1db;" k="50" />
  2461. <hkern g1="questiondown.caps" u2="&#x1d9;" k="50" />
  2462. <hkern g1="questiondown.caps" u2="&#x1d7;" k="50" />
  2463. <hkern g1="questiondown.caps" u2="&#x1d5;" k="50" />
  2464. <hkern g1="questiondown.caps" u2="&#x1d3;" k="50" />
  2465. <hkern g1="questiondown.caps" u2="&#x1d1;" k="70" />
  2466. <hkern g1="questiondown.caps" u2="&#x1cf;" k="30" />
  2467. <hkern g1="questiondown.caps" u2="&#x1cd;" k="20" />
  2468. <hkern g1="questiondown.caps" u2="&#x19d;" k="30" />
  2469. <hkern g1="questiondown.caps" u2="&#x17d;" k="20" />
  2470. <hkern g1="questiondown.caps" u2="&#x17b;" k="20" />
  2471. <hkern g1="questiondown.caps" u2="&#x179;" k="20" />
  2472. <hkern g1="questiondown.caps" u2="&#x172;" k="50" />
  2473. <hkern g1="questiondown.caps" u2="&#x170;" k="50" />
  2474. <hkern g1="questiondown.caps" u2="&#x16e;" k="50" />
  2475. <hkern g1="questiondown.caps" u2="&#x16c;" k="50" />
  2476. <hkern g1="questiondown.caps" u2="&#x16a;" k="50" />
  2477. <hkern g1="questiondown.caps" u2="&#x168;" k="50" />
  2478. <hkern g1="questiondown.caps" u2="&#x166;" k="80" />
  2479. <hkern g1="questiondown.caps" u2="&#x164;" k="80" />
  2480. <hkern g1="questiondown.caps" u2="&#x162;" k="80" />
  2481. <hkern g1="questiondown.caps" u2="&#x160;" k="50" />
  2482. <hkern g1="questiondown.caps" u2="&#x15e;" k="50" />
  2483. <hkern g1="questiondown.caps" u2="&#x15c;" k="50" />
  2484. <hkern g1="questiondown.caps" u2="&#x15a;" k="50" />
  2485. <hkern g1="questiondown.caps" u2="&#x158;" k="30" />
  2486. <hkern g1="questiondown.caps" u2="&#x156;" k="30" />
  2487. <hkern g1="questiondown.caps" u2="&#x154;" k="30" />
  2488. <hkern g1="questiondown.caps" u2="&#x152;" k="70" />
  2489. <hkern g1="questiondown.caps" u2="&#x150;" k="70" />
  2490. <hkern g1="questiondown.caps" u2="&#x14e;" k="70" />
  2491. <hkern g1="questiondown.caps" u2="&#x14c;" k="70" />
  2492. <hkern g1="questiondown.caps" u2="&#x14a;" k="30" />
  2493. <hkern g1="questiondown.caps" u2="&#x147;" k="30" />
  2494. <hkern g1="questiondown.caps" u2="&#x145;" k="30" />
  2495. <hkern g1="questiondown.caps" u2="&#x143;" k="30" />
  2496. <hkern g1="questiondown.caps" u2="&#x141;" k="30" />
  2497. <hkern g1="questiondown.caps" u2="&#x13f;" k="30" />
  2498. <hkern g1="questiondown.caps" u2="&#x13d;" k="30" />
  2499. <hkern g1="questiondown.caps" u2="&#x13b;" k="30" />
  2500. <hkern g1="questiondown.caps" u2="&#x139;" k="30" />
  2501. <hkern g1="questiondown.caps" u2="&#x136;" k="30" />
  2502. <hkern g1="questiondown.caps" u2="&#x134;" k="30" />
  2503. <hkern g1="questiondown.caps" u2="&#x132;" k="30" />
  2504. <hkern g1="questiondown.caps" u2="&#x130;" k="30" />
  2505. <hkern g1="questiondown.caps" u2="&#x12e;" k="30" />
  2506. <hkern g1="questiondown.caps" u2="&#x12c;" k="30" />
  2507. <hkern g1="questiondown.caps" u2="&#x12a;" k="30" />
  2508. <hkern g1="questiondown.caps" u2="&#x128;" k="30" />
  2509. <hkern g1="questiondown.caps" u2="&#x126;" k="30" />
  2510. <hkern g1="questiondown.caps" u2="&#x124;" k="30" />
  2511. <hkern g1="questiondown.caps" u2="&#x122;" k="70" />
  2512. <hkern g1="questiondown.caps" u2="&#x120;" k="70" />
  2513. <hkern g1="questiondown.caps" u2="&#x11e;" k="70" />
  2514. <hkern g1="questiondown.caps" u2="&#x11c;" k="70" />
  2515. <hkern g1="questiondown.caps" u2="&#x11a;" k="30" />
  2516. <hkern g1="questiondown.caps" u2="&#x118;" k="30" />
  2517. <hkern g1="questiondown.caps" u2="&#x116;" k="30" />
  2518. <hkern g1="questiondown.caps" u2="&#x114;" k="30" />
  2519. <hkern g1="questiondown.caps" u2="&#x112;" k="30" />
  2520. <hkern g1="questiondown.caps" u2="&#x110;" k="30" />
  2521. <hkern g1="questiondown.caps" u2="&#x10e;" k="30" />
  2522. <hkern g1="questiondown.caps" u2="&#x10c;" k="70" />
  2523. <hkern g1="questiondown.caps" u2="&#x10a;" k="70" />
  2524. <hkern g1="questiondown.caps" u2="&#x108;" k="70" />
  2525. <hkern g1="questiondown.caps" u2="&#x106;" k="70" />
  2526. <hkern g1="questiondown.caps" u2="&#x104;" k="20" />
  2527. <hkern g1="questiondown.caps" u2="&#x102;" k="20" />
  2528. <hkern g1="questiondown.caps" u2="&#x100;" k="20" />
  2529. <hkern g1="questiondown.caps" u2="&#xde;" k="30" />
  2530. <hkern g1="questiondown.caps" u2="&#xdc;" k="50" />
  2531. <hkern g1="questiondown.caps" u2="&#xdb;" k="50" />
  2532. <hkern g1="questiondown.caps" u2="&#xda;" k="50" />
  2533. <hkern g1="questiondown.caps" u2="&#xd9;" k="50" />
  2534. <hkern g1="questiondown.caps" u2="&#xd8;" k="70" />
  2535. <hkern g1="questiondown.caps" u2="&#xd6;" k="70" />
  2536. <hkern g1="questiondown.caps" u2="&#xd5;" k="70" />
  2537. <hkern g1="questiondown.caps" u2="&#xd4;" k="70" />
  2538. <hkern g1="questiondown.caps" u2="&#xd3;" k="70" />
  2539. <hkern g1="questiondown.caps" u2="&#xd2;" k="70" />
  2540. <hkern g1="questiondown.caps" u2="&#xd1;" k="30" />
  2541. <hkern g1="questiondown.caps" u2="&#xd0;" k="30" />
  2542. <hkern g1="questiondown.caps" u2="&#xcf;" k="30" />
  2543. <hkern g1="questiondown.caps" u2="&#xce;" k="30" />
  2544. <hkern g1="questiondown.caps" u2="&#xcd;" k="30" />
  2545. <hkern g1="questiondown.caps" u2="&#xcc;" k="30" />
  2546. <hkern g1="questiondown.caps" u2="&#xcb;" k="30" />
  2547. <hkern g1="questiondown.caps" u2="&#xca;" k="30" />
  2548. <hkern g1="questiondown.caps" u2="&#xc9;" k="30" />
  2549. <hkern g1="questiondown.caps" u2="&#xc8;" k="30" />
  2550. <hkern g1="questiondown.caps" u2="&#xc7;" k="70" />
  2551. <hkern g1="questiondown.caps" u2="&#xc6;" k="20" />
  2552. <hkern g1="questiondown.caps" u2="&#xc5;" k="20" />
  2553. <hkern g1="questiondown.caps" u2="&#xc4;" k="20" />
  2554. <hkern g1="questiondown.caps" u2="&#xc3;" k="20" />
  2555. <hkern g1="questiondown.caps" u2="&#xc2;" k="20" />
  2556. <hkern g1="questiondown.caps" u2="&#xc1;" k="20" />
  2557. <hkern g1="questiondown.caps" u2="&#xc0;" k="20" />
  2558. <hkern g1="questiondown.caps" u2="Z" k="20" />
  2559. <hkern g1="questiondown.caps" u2="X" k="20" />
  2560. <hkern g1="questiondown.caps" u2="U" k="50" />
  2561. <hkern g1="questiondown.caps" u2="T" k="80" />
  2562. <hkern g1="questiondown.caps" u2="S" k="50" />
  2563. <hkern g1="questiondown.caps" u2="R" k="30" />
  2564. <hkern g1="questiondown.caps" u2="Q" k="70" />
  2565. <hkern g1="questiondown.caps" u2="P" k="30" />
  2566. <hkern g1="questiondown.caps" u2="O" k="70" />
  2567. <hkern g1="questiondown.caps" u2="N" k="30" />
  2568. <hkern g1="questiondown.caps" u2="L" k="30" />
  2569. <hkern g1="questiondown.caps" u2="K" k="30" />
  2570. <hkern g1="questiondown.caps" u2="J" k="30" />
  2571. <hkern g1="questiondown.caps" u2="I" k="30" />
  2572. <hkern g1="questiondown.caps" u2="H" k="30" />
  2573. <hkern g1="questiondown.caps" u2="G" k="70" />
  2574. <hkern g1="questiondown.caps" u2="F" k="30" />
  2575. <hkern g1="questiondown.caps" u2="E" k="30" />
  2576. <hkern g1="questiondown.caps" u2="D" k="30" />
  2577. <hkern g1="questiondown.caps" u2="C" k="70" />
  2578. <hkern g1="questiondown.caps" u2="B" k="30" />
  2579. <hkern g1="questiondown.caps" u2="A" k="20" />
  2580. <hkern g1="periodcentered.caps" u2="&#x1ef8;" k="50" />
  2581. <hkern g1="periodcentered.caps" u2="&#x1ef2;" k="50" />
  2582. <hkern g1="periodcentered.caps" u2="&#x232;" k="50" />
  2583. <hkern g1="periodcentered.caps" u2="&#x178;" k="50" />
  2584. <hkern g1="periodcentered.caps" u2="&#x176;" k="50" />
  2585. <hkern g1="periodcentered.caps" u2="&#xdd;" k="50" />
  2586. <hkern g1="periodcentered.caps" u2="Y" k="50" />
  2587. <hkern g1="asterisk.caps" u2="&#x1ecc;" k="10" />
  2588. <hkern g1="asterisk.caps" u2="&#x1ea0;" k="60" />
  2589. <hkern g1="asterisk.caps" u2="&#x1fe;" k="10" />
  2590. <hkern g1="asterisk.caps" u2="&#x1fc;" k="60" />
  2591. <hkern g1="asterisk.caps" u2="&#x1fa;" k="60" />
  2592. <hkern g1="asterisk.caps" u2="&#x1f4;" k="10" />
  2593. <hkern g1="asterisk.caps" u2="&#x1ea;" k="10" />
  2594. <hkern g1="asterisk.caps" u2="&#x1e6;" k="10" />
  2595. <hkern g1="asterisk.caps" u2="&#x1d1;" k="10" />
  2596. <hkern g1="asterisk.caps" u2="&#x1cd;" k="60" />
  2597. <hkern g1="asterisk.caps" u2="&#x152;" k="10" />
  2598. <hkern g1="asterisk.caps" u2="&#x150;" k="10" />
  2599. <hkern g1="asterisk.caps" u2="&#x14e;" k="10" />
  2600. <hkern g1="asterisk.caps" u2="&#x14c;" k="10" />
  2601. <hkern g1="asterisk.caps" u2="&#x122;" k="10" />
  2602. <hkern g1="asterisk.caps" u2="&#x120;" k="10" />
  2603. <hkern g1="asterisk.caps" u2="&#x11e;" k="10" />
  2604. <hkern g1="asterisk.caps" u2="&#x11c;" k="10" />
  2605. <hkern g1="asterisk.caps" u2="&#x10c;" k="10" />
  2606. <hkern g1="asterisk.caps" u2="&#x10a;" k="10" />
  2607. <hkern g1="asterisk.caps" u2="&#x108;" k="10" />
  2608. <hkern g1="asterisk.caps" u2="&#x106;" k="10" />
  2609. <hkern g1="asterisk.caps" u2="&#x104;" k="60" />
  2610. <hkern g1="asterisk.caps" u2="&#x102;" k="60" />
  2611. <hkern g1="asterisk.caps" u2="&#x100;" k="60" />
  2612. <hkern g1="asterisk.caps" u2="&#xd8;" k="10" />
  2613. <hkern g1="asterisk.caps" u2="&#xd6;" k="10" />
  2614. <hkern g1="asterisk.caps" u2="&#xd5;" k="10" />
  2615. <hkern g1="asterisk.caps" u2="&#xd4;" k="10" />
  2616. <hkern g1="asterisk.caps" u2="&#xd3;" k="10" />
  2617. <hkern g1="asterisk.caps" u2="&#xd2;" k="10" />
  2618. <hkern g1="asterisk.caps" u2="&#xc7;" k="10" />
  2619. <hkern g1="asterisk.caps" u2="&#xc6;" k="60" />
  2620. <hkern g1="asterisk.caps" u2="&#xc5;" k="60" />
  2621. <hkern g1="asterisk.caps" u2="&#xc4;" k="60" />
  2622. <hkern g1="asterisk.caps" u2="&#xc3;" k="60" />
  2623. <hkern g1="asterisk.caps" u2="&#xc2;" k="60" />
  2624. <hkern g1="asterisk.caps" u2="&#xc1;" k="60" />
  2625. <hkern g1="asterisk.caps" u2="&#xc0;" k="60" />
  2626. <hkern g1="asterisk.caps" u2="Q" k="10" />
  2627. <hkern g1="asterisk.caps" u2="O" k="10" />
  2628. <hkern g1="asterisk.caps" u2="G" k="10" />
  2629. <hkern g1="asterisk.caps" u2="C" k="10" />
  2630. <hkern g1="asterisk.caps" u2="A" k="60" />
  2631. <hkern g1="parenleft.caps" u2="&#x1ecc;" k="30" />
  2632. <hkern g1="parenleft.caps" u2="&#x1fe;" k="30" />
  2633. <hkern g1="parenleft.caps" u2="&#x1f4;" k="30" />
  2634. <hkern g1="parenleft.caps" u2="&#x1ea;" k="30" />
  2635. <hkern g1="parenleft.caps" u2="&#x1e6;" k="30" />
  2636. <hkern g1="parenleft.caps" u2="&#x1d1;" k="30" />
  2637. <hkern g1="parenleft.caps" u2="&#x152;" k="30" />
  2638. <hkern g1="parenleft.caps" u2="&#x150;" k="30" />
  2639. <hkern g1="parenleft.caps" u2="&#x14e;" k="30" />
  2640. <hkern g1="parenleft.caps" u2="&#x14c;" k="30" />
  2641. <hkern g1="parenleft.caps" u2="&#x122;" k="30" />
  2642. <hkern g1="parenleft.caps" u2="&#x120;" k="30" />
  2643. <hkern g1="parenleft.caps" u2="&#x11e;" k="30" />
  2644. <hkern g1="parenleft.caps" u2="&#x11c;" k="30" />
  2645. <hkern g1="parenleft.caps" u2="&#x10c;" k="30" />
  2646. <hkern g1="parenleft.caps" u2="&#x10a;" k="30" />
  2647. <hkern g1="parenleft.caps" u2="&#x108;" k="30" />
  2648. <hkern g1="parenleft.caps" u2="&#x106;" k="30" />
  2649. <hkern g1="parenleft.caps" u2="&#xd8;" k="30" />
  2650. <hkern g1="parenleft.caps" u2="&#xd6;" k="30" />
  2651. <hkern g1="parenleft.caps" u2="&#xd5;" k="30" />
  2652. <hkern g1="parenleft.caps" u2="&#xd4;" k="30" />
  2653. <hkern g1="parenleft.caps" u2="&#xd3;" k="30" />
  2654. <hkern g1="parenleft.caps" u2="&#xd2;" k="30" />
  2655. <hkern g1="parenleft.caps" u2="&#xc7;" k="30" />
  2656. <hkern g1="parenleft.caps" u2="Q" k="30" />
  2657. <hkern g1="parenleft.caps" u2="O" k="30" />
  2658. <hkern g1="parenleft.caps" u2="G" k="30" />
  2659. <hkern g1="parenleft.caps" u2="C" k="30" />
  2660. <hkern g1="quotedbl.caps" u2="&#x1ea0;" k="80" />
  2661. <hkern g1="quotedbl.caps" u2="&#x1fc;" k="80" />
  2662. <hkern g1="quotedbl.caps" u2="&#x1fa;" k="80" />
  2663. <hkern g1="quotedbl.caps" u2="&#x1cd;" k="80" />
  2664. <hkern g1="quotedbl.caps" u2="&#x104;" k="80" />
  2665. <hkern g1="quotedbl.caps" u2="&#x102;" k="80" />
  2666. <hkern g1="quotedbl.caps" u2="&#x100;" k="80" />
  2667. <hkern g1="quotedbl.caps" u2="&#xc6;" k="80" />
  2668. <hkern g1="quotedbl.caps" u2="&#xc5;" k="80" />
  2669. <hkern g1="quotedbl.caps" u2="&#xc4;" k="80" />
  2670. <hkern g1="quotedbl.caps" u2="&#xc3;" k="80" />
  2671. <hkern g1="quotedbl.caps" u2="&#xc2;" k="80" />
  2672. <hkern g1="quotedbl.caps" u2="&#xc1;" k="80" />
  2673. <hkern g1="quotedbl.caps" u2="&#xc0;" k="80" />
  2674. <hkern g1="quotedbl.caps" u2="A" k="80" />
  2675. <hkern g1="quotesingle.caps" u2="&#x1ecc;" k="20" />
  2676. <hkern g1="quotesingle.caps" u2="&#x1ea0;" k="80" />
  2677. <hkern g1="quotesingle.caps" u2="&#x1fe;" k="20" />
  2678. <hkern g1="quotesingle.caps" u2="&#x1fc;" k="80" />
  2679. <hkern g1="quotesingle.caps" u2="&#x1fa;" k="80" />
  2680. <hkern g1="quotesingle.caps" u2="&#x1f4;" k="20" />
  2681. <hkern g1="quotesingle.caps" u2="&#x1ea;" k="20" />
  2682. <hkern g1="quotesingle.caps" u2="&#x1e6;" k="20" />
  2683. <hkern g1="quotesingle.caps" u2="&#x1d1;" k="20" />
  2684. <hkern g1="quotesingle.caps" u2="&#x1cd;" k="80" />
  2685. <hkern g1="quotesingle.caps" u2="&#x152;" k="20" />
  2686. <hkern g1="quotesingle.caps" u2="&#x150;" k="20" />
  2687. <hkern g1="quotesingle.caps" u2="&#x14e;" k="20" />
  2688. <hkern g1="quotesingle.caps" u2="&#x14c;" k="20" />
  2689. <hkern g1="quotesingle.caps" u2="&#x122;" k="20" />
  2690. <hkern g1="quotesingle.caps" u2="&#x120;" k="20" />
  2691. <hkern g1="quotesingle.caps" u2="&#x11e;" k="20" />
  2692. <hkern g1="quotesingle.caps" u2="&#x11c;" k="20" />
  2693. <hkern g1="quotesingle.caps" u2="&#x10c;" k="20" />
  2694. <hkern g1="quotesingle.caps" u2="&#x10a;" k="20" />
  2695. <hkern g1="quotesingle.caps" u2="&#x108;" k="20" />
  2696. <hkern g1="quotesingle.caps" u2="&#x106;" k="20" />
  2697. <hkern g1="quotesingle.caps" u2="&#x104;" k="80" />
  2698. <hkern g1="quotesingle.caps" u2="&#x102;" k="80" />
  2699. <hkern g1="quotesingle.caps" u2="&#x100;" k="80" />
  2700. <hkern g1="quotesingle.caps" u2="&#xd8;" k="20" />
  2701. <hkern g1="quotesingle.caps" u2="&#xd6;" k="20" />
  2702. <hkern g1="quotesingle.caps" u2="&#xd5;" k="20" />
  2703. <hkern g1="quotesingle.caps" u2="&#xd4;" k="20" />
  2704. <hkern g1="quotesingle.caps" u2="&#xd3;" k="20" />
  2705. <hkern g1="quotesingle.caps" u2="&#xd2;" k="20" />
  2706. <hkern g1="quotesingle.caps" u2="&#xc7;" k="20" />
  2707. <hkern g1="quotesingle.caps" u2="&#xc6;" k="80" />
  2708. <hkern g1="quotesingle.caps" u2="&#xc5;" k="80" />
  2709. <hkern g1="quotesingle.caps" u2="&#xc4;" k="80" />
  2710. <hkern g1="quotesingle.caps" u2="&#xc3;" k="80" />
  2711. <hkern g1="quotesingle.caps" u2="&#xc2;" k="80" />
  2712. <hkern g1="quotesingle.caps" u2="&#xc1;" k="80" />
  2713. <hkern g1="quotesingle.caps" u2="&#xc0;" k="80" />
  2714. <hkern g1="quotesingle.caps" u2="Q" k="20" />
  2715. <hkern g1="quotesingle.caps" u2="O" k="20" />
  2716. <hkern g1="quotesingle.caps" u2="G" k="20" />
  2717. <hkern g1="quotesingle.caps" u2="C" k="20" />
  2718. <hkern g1="quotesingle.caps" u2="A" k="80" />
  2719. <hkern g1="parenleft.sc" g2="sdotbelow.sc" k="20" />
  2720. <hkern g1="parenleft.sc" g2="scommaaccent.sc" k="20" />
  2721. <hkern g1="parenleft.sc" g2="scircumflex.sc" k="20" />
  2722. <hkern g1="parenleft.sc" g2="scedilla.sc" k="20" />
  2723. <hkern g1="parenleft.sc" g2="scaron.sc" k="20" />
  2724. <hkern g1="parenleft.sc" g2="sacute.sc" k="20" />
  2725. <hkern g1="parenleft.sc" g2="s.sc" k="20" />
  2726. <hkern g1="parenleft.sc" g2="q.sc" k="30" />
  2727. <hkern g1="parenleft.sc" g2="oe.sc" k="30" />
  2728. <hkern g1="parenleft.sc" g2="otilde.sc" k="30" />
  2729. <hkern g1="parenleft.sc" g2="oslashacute.sc" k="30" />
  2730. <hkern g1="parenleft.sc" g2="oslash.sc" k="30" />
  2731. <hkern g1="parenleft.sc" g2="oogonek.sc" k="30" />
  2732. <hkern g1="parenleft.sc" g2="omacron.sc" k="30" />
  2733. <hkern g1="parenleft.sc" g2="ohungarumlaut.sc" k="30" />
  2734. <hkern g1="parenleft.sc" g2="ograve.sc" k="30" />
  2735. <hkern g1="parenleft.sc" g2="odotbelow.sc" k="30" />
  2736. <hkern g1="parenleft.sc" g2="odieresis.sc" k="30" />
  2737. <hkern g1="parenleft.sc" g2="ocircumflex.sc" k="30" />
  2738. <hkern g1="parenleft.sc" g2="ocaron.sc" k="30" />
  2739. <hkern g1="parenleft.sc" g2="obreve.sc" k="30" />
  2740. <hkern g1="parenleft.sc" g2="oacute.sc" k="30" />
  2741. <hkern g1="parenleft.sc" g2="o.sc" k="30" />
  2742. <hkern g1="parenleft.sc" g2="gdotaccent.sc" k="30" />
  2743. <hkern g1="parenleft.sc" g2="gcommaaccent.sc" k="30" />
  2744. <hkern g1="parenleft.sc" g2="gcircumflex.sc" k="30" />
  2745. <hkern g1="parenleft.sc" g2="gcaron.sc" k="30" />
  2746. <hkern g1="parenleft.sc" g2="gbreve.sc" k="30" />
  2747. <hkern g1="parenleft.sc" g2="gacute.sc" k="30" />
  2748. <hkern g1="parenleft.sc" g2="g.sc" k="30" />
  2749. <hkern g1="parenleft.sc" g2="schwa.sc" k="30" />
  2750. <hkern g1="parenleft.sc" g2="cdotaccent.sc" k="30" />
  2751. <hkern g1="parenleft.sc" g2="ccircumflex.sc" k="30" />
  2752. <hkern g1="parenleft.sc" g2="ccedilla.sc" k="30" />
  2753. <hkern g1="parenleft.sc" g2="ccaron.sc" k="30" />
  2754. <hkern g1="parenleft.sc" g2="cacute.sc" k="30" />
  2755. <hkern g1="parenleft.sc" g2="c.sc" k="30" />
  2756. <hkern g1="parenright.sc" g2="aeacute.sc" k="10" />
  2757. <hkern g1="parenright.sc" g2="ae.sc" k="10" />
  2758. <hkern g1="parenright.sc" g2="atilde.sc" k="10" />
  2759. <hkern g1="parenright.sc" g2="aringacute.sc" k="10" />
  2760. <hkern g1="parenright.sc" g2="aring.sc" k="10" />
  2761. <hkern g1="parenright.sc" g2="aogonek.sc" k="10" />
  2762. <hkern g1="parenright.sc" g2="amacron.sc" k="10" />
  2763. <hkern g1="parenright.sc" g2="agrave.sc" k="10" />
  2764. <hkern g1="parenright.sc" g2="adotbelow.sc" k="10" />
  2765. <hkern g1="parenright.sc" g2="adieresis.sc" k="10" />
  2766. <hkern g1="parenright.sc" g2="acircumflex.sc" k="10" />
  2767. <hkern g1="parenright.sc" g2="acaron.sc" k="10" />
  2768. <hkern g1="parenright.sc" g2="abreve.sc" k="10" />
  2769. <hkern g1="parenright.sc" g2="aacute.sc" k="10" />
  2770. <hkern g1="parenright.sc" g2="a.sc" k="10" />
  2771. <hkern g1="braceleft.sc" g2="zdotbelow.sc" k="30" />
  2772. <hkern g1="braceleft.sc" g2="zdotaccent.sc" k="30" />
  2773. <hkern g1="braceleft.sc" g2="zcaron.sc" k="30" />
  2774. <hkern g1="braceleft.sc" g2="zacute.sc" k="30" />
  2775. <hkern g1="braceleft.sc" g2="z.sc" k="30" />
  2776. <hkern g1="braceleft.sc" g2="ytilde.sc" k="20" />
  2777. <hkern g1="braceleft.sc" g2="ymacron.sc" k="20" />
  2778. <hkern g1="braceleft.sc" g2="ygrave.sc" k="20" />
  2779. <hkern g1="braceleft.sc" g2="ydieresis.sc" k="20" />
  2780. <hkern g1="braceleft.sc" g2="ycircumflex.sc" k="20" />
  2781. <hkern g1="braceleft.sc" g2="yacute.sc" k="20" />
  2782. <hkern g1="braceleft.sc" g2="y.sc" k="20" />
  2783. <hkern g1="braceleft.sc" g2="wgrave.sc" k="30" />
  2784. <hkern g1="braceleft.sc" g2="wdieresis.sc" k="30" />
  2785. <hkern g1="braceleft.sc" g2="wcircumflex.sc" k="30" />
  2786. <hkern g1="braceleft.sc" g2="wacute.sc" k="30" />
  2787. <hkern g1="braceleft.sc" g2="w.sc" k="30" />
  2788. <hkern g1="braceleft.sc" g2="v.sc" k="30" />
  2789. <hkern g1="braceleft.sc" g2="utilde.sc" k="20" />
  2790. <hkern g1="braceleft.sc" g2="uring.sc" k="20" />
  2791. <hkern g1="braceleft.sc" g2="uogonek.sc" k="20" />
  2792. <hkern g1="braceleft.sc" g2="umacron.sc" k="20" />
  2793. <hkern g1="braceleft.sc" g2="uhungarumlaut.sc" k="20" />
  2794. <hkern g1="braceleft.sc" g2="ugrave.sc" k="20" />
  2795. <hkern g1="braceleft.sc" g2="udotbelow.sc" k="20" />
  2796. <hkern g1="braceleft.sc" g2="udieresismacron.sc" k="20" />
  2797. <hkern g1="braceleft.sc" g2="udieresisgrave.sc" k="20" />
  2798. <hkern g1="braceleft.sc" g2="udieresiscaron.sc" k="20" />
  2799. <hkern g1="braceleft.sc" g2="udieresisacute.sc" k="20" />
  2800. <hkern g1="braceleft.sc" g2="udieresis.sc" k="20" />
  2801. <hkern g1="braceleft.sc" g2="ucircumflex.sc" k="20" />
  2802. <hkern g1="braceleft.sc" g2="ucaron.sc" k="20" />
  2803. <hkern g1="braceleft.sc" g2="ubreve.sc" k="20" />
  2804. <hkern g1="braceleft.sc" g2="uacute.sc" k="20" />
  2805. <hkern g1="braceleft.sc" g2="u.sc" k="20" />
  2806. <hkern g1="braceleft.sc" g2="tdotbelow.sc" k="20" />
  2807. <hkern g1="braceleft.sc" g2="tcommaaccent.sc" k="20" />
  2808. <hkern g1="braceleft.sc" g2="tcedilla.sc" k="20" />
  2809. <hkern g1="braceleft.sc" g2="tcaron.sc" k="20" />
  2810. <hkern g1="braceleft.sc" g2="tbar.sc" k="20" />
  2811. <hkern g1="braceleft.sc" g2="t.sc" k="20" />
  2812. <hkern g1="braceleft.sc" g2="sdotbelow.sc" k="30" />
  2813. <hkern g1="braceleft.sc" g2="scommaaccent.sc" k="30" />
  2814. <hkern g1="braceleft.sc" g2="scircumflex.sc" k="30" />
  2815. <hkern g1="braceleft.sc" g2="scedilla.sc" k="30" />
  2816. <hkern g1="braceleft.sc" g2="scaron.sc" k="30" />
  2817. <hkern g1="braceleft.sc" g2="sacute.sc" k="30" />
  2818. <hkern g1="braceleft.sc" g2="s.sc" k="30" />
  2819. <hkern g1="braceleft.sc" g2="q.sc" k="30" />
  2820. <hkern g1="braceleft.sc" g2="oe.sc" k="30" />
  2821. <hkern g1="braceleft.sc" g2="otilde.sc" k="30" />
  2822. <hkern g1="braceleft.sc" g2="oslashacute.sc" k="30" />
  2823. <hkern g1="braceleft.sc" g2="oslash.sc" k="30" />
  2824. <hkern g1="braceleft.sc" g2="oogonek.sc" k="30" />
  2825. <hkern g1="braceleft.sc" g2="omacron.sc" k="30" />
  2826. <hkern g1="braceleft.sc" g2="ohungarumlaut.sc" k="30" />
  2827. <hkern g1="braceleft.sc" g2="ograve.sc" k="30" />
  2828. <hkern g1="braceleft.sc" g2="odotbelow.sc" k="30" />
  2829. <hkern g1="braceleft.sc" g2="odieresis.sc" k="30" />
  2830. <hkern g1="braceleft.sc" g2="ocircumflex.sc" k="30" />
  2831. <hkern g1="braceleft.sc" g2="ocaron.sc" k="30" />
  2832. <hkern g1="braceleft.sc" g2="obreve.sc" k="30" />
  2833. <hkern g1="braceleft.sc" g2="oacute.sc" k="30" />
  2834. <hkern g1="braceleft.sc" g2="o.sc" k="30" />
  2835. <hkern g1="braceleft.sc" g2="m.sc" k="30" />
  2836. <hkern g1="braceleft.sc" g2="gdotaccent.sc" k="30" />
  2837. <hkern g1="braceleft.sc" g2="gcommaaccent.sc" k="30" />
  2838. <hkern g1="braceleft.sc" g2="gcircumflex.sc" k="30" />
  2839. <hkern g1="braceleft.sc" g2="gcaron.sc" k="30" />
  2840. <hkern g1="braceleft.sc" g2="gbreve.sc" k="30" />
  2841. <hkern g1="braceleft.sc" g2="gacute.sc" k="30" />
  2842. <hkern g1="braceleft.sc" g2="g.sc" k="30" />
  2843. <hkern g1="braceleft.sc" g2="schwa.sc" k="30" />
  2844. <hkern g1="braceleft.sc" g2="cdotaccent.sc" k="30" />
  2845. <hkern g1="braceleft.sc" g2="ccircumflex.sc" k="30" />
  2846. <hkern g1="braceleft.sc" g2="ccedilla.sc" k="30" />
  2847. <hkern g1="braceleft.sc" g2="ccaron.sc" k="30" />
  2848. <hkern g1="braceleft.sc" g2="cacute.sc" k="30" />
  2849. <hkern g1="braceleft.sc" g2="c.sc" k="30" />
  2850. <hkern g1="braceright.sc" g2="aeacute.sc" k="10" />
  2851. <hkern g1="braceright.sc" g2="ae.sc" k="10" />
  2852. <hkern g1="braceright.sc" g2="atilde.sc" k="10" />
  2853. <hkern g1="braceright.sc" g2="aringacute.sc" k="10" />
  2854. <hkern g1="braceright.sc" g2="aring.sc" k="10" />
  2855. <hkern g1="braceright.sc" g2="aogonek.sc" k="10" />
  2856. <hkern g1="braceright.sc" g2="amacron.sc" k="10" />
  2857. <hkern g1="braceright.sc" g2="agrave.sc" k="10" />
  2858. <hkern g1="braceright.sc" g2="adotbelow.sc" k="10" />
  2859. <hkern g1="braceright.sc" g2="adieresis.sc" k="10" />
  2860. <hkern g1="braceright.sc" g2="acircumflex.sc" k="10" />
  2861. <hkern g1="braceright.sc" g2="acaron.sc" k="10" />
  2862. <hkern g1="braceright.sc" g2="abreve.sc" k="10" />
  2863. <hkern g1="braceright.sc" g2="aacute.sc" k="10" />
  2864. <hkern g1="braceright.sc" g2="a.sc" k="10" />
  2865. <hkern g1="bracketleft.sc" g2="ytilde.sc" k="20" />
  2866. <hkern g1="bracketleft.sc" g2="ymacron.sc" k="20" />
  2867. <hkern g1="bracketleft.sc" g2="ygrave.sc" k="20" />
  2868. <hkern g1="bracketleft.sc" g2="ydieresis.sc" k="20" />
  2869. <hkern g1="bracketleft.sc" g2="ycircumflex.sc" k="20" />
  2870. <hkern g1="bracketleft.sc" g2="yacute.sc" k="20" />
  2871. <hkern g1="bracketleft.sc" g2="y.sc" k="20" />
  2872. <hkern g1="bracketleft.sc" g2="wgrave.sc" k="30" />
  2873. <hkern g1="bracketleft.sc" g2="wdieresis.sc" k="30" />
  2874. <hkern g1="bracketleft.sc" g2="wcircumflex.sc" k="30" />
  2875. <hkern g1="bracketleft.sc" g2="wacute.sc" k="30" />
  2876. <hkern g1="bracketleft.sc" g2="w.sc" k="30" />
  2877. <hkern g1="bracketleft.sc" g2="v.sc" k="30" />
  2878. <hkern g1="bracketleft.sc" g2="utilde.sc" k="20" />
  2879. <hkern g1="bracketleft.sc" g2="uring.sc" k="20" />
  2880. <hkern g1="bracketleft.sc" g2="uogonek.sc" k="20" />
  2881. <hkern g1="bracketleft.sc" g2="umacron.sc" k="20" />
  2882. <hkern g1="bracketleft.sc" g2="uhungarumlaut.sc" k="20" />
  2883. <hkern g1="bracketleft.sc" g2="ugrave.sc" k="20" />
  2884. <hkern g1="bracketleft.sc" g2="udotbelow.sc" k="20" />
  2885. <hkern g1="bracketleft.sc" g2="udieresismacron.sc" k="20" />
  2886. <hkern g1="bracketleft.sc" g2="udieresisgrave.sc" k="20" />
  2887. <hkern g1="bracketleft.sc" g2="udieresiscaron.sc" k="20" />
  2888. <hkern g1="bracketleft.sc" g2="udieresisacute.sc" k="20" />
  2889. <hkern g1="bracketleft.sc" g2="udieresis.sc" k="20" />
  2890. <hkern g1="bracketleft.sc" g2="ucircumflex.sc" k="20" />
  2891. <hkern g1="bracketleft.sc" g2="ucaron.sc" k="20" />
  2892. <hkern g1="bracketleft.sc" g2="ubreve.sc" k="20" />
  2893. <hkern g1="bracketleft.sc" g2="uacute.sc" k="20" />
  2894. <hkern g1="bracketleft.sc" g2="u.sc" k="20" />
  2895. <hkern g1="bracketleft.sc" g2="sdotbelow.sc" k="20" />
  2896. <hkern g1="bracketleft.sc" g2="scommaaccent.sc" k="20" />
  2897. <hkern g1="bracketleft.sc" g2="scircumflex.sc" k="20" />
  2898. <hkern g1="bracketleft.sc" g2="scedilla.sc" k="20" />
  2899. <hkern g1="bracketleft.sc" g2="scaron.sc" k="20" />
  2900. <hkern g1="bracketleft.sc" g2="sacute.sc" k="20" />
  2901. <hkern g1="bracketleft.sc" g2="s.sc" k="20" />
  2902. <hkern g1="bracketleft.sc" g2="q.sc" k="10" />
  2903. <hkern g1="bracketleft.sc" g2="oe.sc" k="10" />
  2904. <hkern g1="bracketleft.sc" g2="otilde.sc" k="10" />
  2905. <hkern g1="bracketleft.sc" g2="oslashacute.sc" k="10" />
  2906. <hkern g1="bracketleft.sc" g2="oslash.sc" k="10" />
  2907. <hkern g1="bracketleft.sc" g2="oogonek.sc" k="10" />
  2908. <hkern g1="bracketleft.sc" g2="omacron.sc" k="10" />
  2909. <hkern g1="bracketleft.sc" g2="ohungarumlaut.sc" k="10" />
  2910. <hkern g1="bracketleft.sc" g2="ograve.sc" k="10" />
  2911. <hkern g1="bracketleft.sc" g2="odotbelow.sc" k="10" />
  2912. <hkern g1="bracketleft.sc" g2="odieresis.sc" k="10" />
  2913. <hkern g1="bracketleft.sc" g2="ocircumflex.sc" k="10" />
  2914. <hkern g1="bracketleft.sc" g2="ocaron.sc" k="10" />
  2915. <hkern g1="bracketleft.sc" g2="obreve.sc" k="10" />
  2916. <hkern g1="bracketleft.sc" g2="oacute.sc" k="10" />
  2917. <hkern g1="bracketleft.sc" g2="o.sc" k="10" />
  2918. <hkern g1="bracketleft.sc" g2="m.sc" k="10" />
  2919. <hkern g1="bracketleft.sc" g2="gdotaccent.sc" k="10" />
  2920. <hkern g1="bracketleft.sc" g2="gcommaaccent.sc" k="10" />
  2921. <hkern g1="bracketleft.sc" g2="gcircumflex.sc" k="10" />
  2922. <hkern g1="bracketleft.sc" g2="gcaron.sc" k="10" />
  2923. <hkern g1="bracketleft.sc" g2="gbreve.sc" k="10" />
  2924. <hkern g1="bracketleft.sc" g2="gacute.sc" k="10" />
  2925. <hkern g1="bracketleft.sc" g2="g.sc" k="10" />
  2926. <hkern g1="bracketleft.sc" g2="schwa.sc" k="10" />
  2927. <hkern g1="bracketleft.sc" g2="cdotaccent.sc" k="10" />
  2928. <hkern g1="bracketleft.sc" g2="ccircumflex.sc" k="10" />
  2929. <hkern g1="bracketleft.sc" g2="ccedilla.sc" k="10" />
  2930. <hkern g1="bracketleft.sc" g2="ccaron.sc" k="10" />
  2931. <hkern g1="bracketleft.sc" g2="cacute.sc" k="10" />
  2932. <hkern g1="bracketleft.sc" g2="c.sc" k="10" />
  2933. <hkern g1="exclamdown.sc" g2="zdotbelow.sc" k="40" />
  2934. <hkern g1="exclamdown.sc" g2="zdotaccent.sc" k="40" />
  2935. <hkern g1="exclamdown.sc" g2="zcaron.sc" k="40" />
  2936. <hkern g1="exclamdown.sc" g2="zacute.sc" k="40" />
  2937. <hkern g1="exclamdown.sc" g2="z.sc" k="40" />
  2938. <hkern g1="exclamdown.sc" g2="ytilde.sc" k="70" />
  2939. <hkern g1="exclamdown.sc" g2="ymacron.sc" k="70" />
  2940. <hkern g1="exclamdown.sc" g2="ygrave.sc" k="70" />
  2941. <hkern g1="exclamdown.sc" g2="ydieresis.sc" k="70" />
  2942. <hkern g1="exclamdown.sc" g2="ycircumflex.sc" k="70" />
  2943. <hkern g1="exclamdown.sc" g2="yacute.sc" k="70" />
  2944. <hkern g1="exclamdown.sc" g2="y.sc" k="70" />
  2945. <hkern g1="exclamdown.sc" g2="x.sc" k="40" />
  2946. <hkern g1="exclamdown.sc" g2="wgrave.sc" k="50" />
  2947. <hkern g1="exclamdown.sc" g2="wdieresis.sc" k="50" />
  2948. <hkern g1="exclamdown.sc" g2="wcircumflex.sc" k="50" />
  2949. <hkern g1="exclamdown.sc" g2="wacute.sc" k="50" />
  2950. <hkern g1="exclamdown.sc" g2="w.sc" k="50" />
  2951. <hkern g1="exclamdown.sc" g2="v.sc" k="50" />
  2952. <hkern g1="exclamdown.sc" g2="utilde.sc" k="60" />
  2953. <hkern g1="exclamdown.sc" g2="uring.sc" k="60" />
  2954. <hkern g1="exclamdown.sc" g2="uogonek.sc" k="60" />
  2955. <hkern g1="exclamdown.sc" g2="umacron.sc" k="60" />
  2956. <hkern g1="exclamdown.sc" g2="uhungarumlaut.sc" k="60" />
  2957. <hkern g1="exclamdown.sc" g2="ugrave.sc" k="60" />
  2958. <hkern g1="exclamdown.sc" g2="udotbelow.sc" k="60" />
  2959. <hkern g1="exclamdown.sc" g2="udieresismacron.sc" k="60" />
  2960. <hkern g1="exclamdown.sc" g2="udieresisgrave.sc" k="60" />
  2961. <hkern g1="exclamdown.sc" g2="udieresiscaron.sc" k="60" />
  2962. <hkern g1="exclamdown.sc" g2="udieresisacute.sc" k="60" />
  2963. <hkern g1="exclamdown.sc" g2="udieresis.sc" k="60" />
  2964. <hkern g1="exclamdown.sc" g2="ucircumflex.sc" k="60" />
  2965. <hkern g1="exclamdown.sc" g2="ucaron.sc" k="60" />
  2966. <hkern g1="exclamdown.sc" g2="ubreve.sc" k="60" />
  2967. <hkern g1="exclamdown.sc" g2="uacute.sc" k="60" />
  2968. <hkern g1="exclamdown.sc" g2="u.sc" k="60" />
  2969. <hkern g1="exclamdown.sc" g2="tdotbelow.sc" k="50" />
  2970. <hkern g1="exclamdown.sc" g2="tcommaaccent.sc" k="50" />
  2971. <hkern g1="exclamdown.sc" g2="tcedilla.sc" k="50" />
  2972. <hkern g1="exclamdown.sc" g2="tcaron.sc" k="50" />
  2973. <hkern g1="exclamdown.sc" g2="tbar.sc" k="50" />
  2974. <hkern g1="exclamdown.sc" g2="t.sc" k="50" />
  2975. <hkern g1="exclamdown.sc" g2="germandbls.sc" k="50" />
  2976. <hkern g1="exclamdown.sc" g2="sdotbelow.sc" k="30" />
  2977. <hkern g1="exclamdown.sc" g2="scommaaccent.sc" k="30" />
  2978. <hkern g1="exclamdown.sc" g2="scircumflex.sc" k="30" />
  2979. <hkern g1="exclamdown.sc" g2="scedilla.sc" k="30" />
  2980. <hkern g1="exclamdown.sc" g2="scaron.sc" k="30" />
  2981. <hkern g1="exclamdown.sc" g2="sacute.sc" k="30" />
  2982. <hkern g1="exclamdown.sc" g2="s.sc" k="30" />
  2983. <hkern g1="exclamdown.sc" g2="rdotbelow.sc" k="50" />
  2984. <hkern g1="exclamdown.sc" g2="rcommaaccent.sc" k="50" />
  2985. <hkern g1="exclamdown.sc" g2="rcaron.sc" k="50" />
  2986. <hkern g1="exclamdown.sc" g2="racute.sc" k="50" />
  2987. <hkern g1="exclamdown.sc" g2="r.sc" k="50" />
  2988. <hkern g1="exclamdown.sc" g2="q.sc" k="30" />
  2989. <hkern g1="exclamdown.sc" g2="thorn.sc" k="50" />
  2990. <hkern g1="exclamdown.sc" g2="p.sc" k="50" />
  2991. <hkern g1="exclamdown.sc" g2="oe.sc" k="30" />
  2992. <hkern g1="exclamdown.sc" g2="otilde.sc" k="30" />
  2993. <hkern g1="exclamdown.sc" g2="oslashacute.sc" k="30" />
  2994. <hkern g1="exclamdown.sc" g2="oslash.sc" k="30" />
  2995. <hkern g1="exclamdown.sc" g2="oogonek.sc" k="30" />
  2996. <hkern g1="exclamdown.sc" g2="omacron.sc" k="30" />
  2997. <hkern g1="exclamdown.sc" g2="ohungarumlaut.sc" k="30" />
  2998. <hkern g1="exclamdown.sc" g2="ograve.sc" k="30" />
  2999. <hkern g1="exclamdown.sc" g2="odotbelow.sc" k="30" />
  3000. <hkern g1="exclamdown.sc" g2="odieresis.sc" k="30" />
  3001. <hkern g1="exclamdown.sc" g2="ocircumflex.sc" k="30" />
  3002. <hkern g1="exclamdown.sc" g2="ocaron.sc" k="30" />
  3003. <hkern g1="exclamdown.sc" g2="obreve.sc" k="30" />
  3004. <hkern g1="exclamdown.sc" g2="oacute.sc" k="30" />
  3005. <hkern g1="exclamdown.sc" g2="o.sc" k="30" />
  3006. <hkern g1="exclamdown.sc" g2="ntilde.sc" k="50" />
  3007. <hkern g1="exclamdown.sc" g2="eng.sc" k="50" />
  3008. <hkern g1="exclamdown.sc" g2="ndotaccent.sc" k="50" />
  3009. <hkern g1="exclamdown.sc" g2="ncommaaccent.sc" k="50" />
  3010. <hkern g1="exclamdown.sc" g2="ncaron.sc" k="50" />
  3011. <hkern g1="exclamdown.sc" g2="nacute.sc" k="50" />
  3012. <hkern g1="exclamdown.sc" g2="n.sc" k="50" />
  3013. <hkern g1="exclamdown.sc" g2="m.sc" k="50" />
  3014. <hkern g1="exclamdown.sc" g2="lslash.sc" k="50" />
  3015. <hkern g1="exclamdown.sc" g2="ldot.sc" k="50" />
  3016. <hkern g1="exclamdown.sc" g2="lcommaaccent.sc" k="50" />
  3017. <hkern g1="exclamdown.sc" g2="lcaron.sc" k="50" />
  3018. <hkern g1="exclamdown.sc" g2="lacute.sc" k="50" />
  3019. <hkern g1="exclamdown.sc" g2="l.sc" k="50" />
  3020. <hkern g1="exclamdown.sc" g2="kgreenlandic.sc" k="50" />
  3021. <hkern g1="exclamdown.sc" g2="kcommaaccent.sc" k="50" />
  3022. <hkern g1="exclamdown.sc" g2="k.sc" k="50" />
  3023. <hkern g1="exclamdown.sc" g2="itilde.sc" k="50" />
  3024. <hkern g1="exclamdown.sc" g2="iogonek.sc" k="50" />
  3025. <hkern g1="exclamdown.sc" g2="imacron.sc" k="50" />
  3026. <hkern g1="exclamdown.sc" g2="ij.sc" k="50" />
  3027. <hkern g1="exclamdown.sc" g2="igrave.sc" k="50" />
  3028. <hkern g1="exclamdown.sc" g2="idotbelow.sc" k="50" />
  3029. <hkern g1="exclamdown.sc" g2="idotaccent.sc" k="50" />
  3030. <hkern g1="exclamdown.sc" g2="idieresis.sc" k="50" />
  3031. <hkern g1="exclamdown.sc" g2="icircumflex.sc" k="50" />
  3032. <hkern g1="exclamdown.sc" g2="icaron.sc" k="50" />
  3033. <hkern g1="exclamdown.sc" g2="ibreve.sc" k="50" />
  3034. <hkern g1="exclamdown.sc" g2="iacute.sc" k="50" />
  3035. <hkern g1="exclamdown.sc" g2="dotlessi.sc" k="50" />
  3036. <hkern g1="exclamdown.sc" g2="i.sc" k="50" />
  3037. <hkern g1="exclamdown.sc" g2="hdotbelow.sc" k="50" />
  3038. <hkern g1="exclamdown.sc" g2="hcircumflex.sc" k="50" />
  3039. <hkern g1="exclamdown.sc" g2="hbar.sc" k="50" />
  3040. <hkern g1="exclamdown.sc" g2="h.sc" k="50" />
  3041. <hkern g1="exclamdown.sc" g2="gdotaccent.sc" k="30" />
  3042. <hkern g1="exclamdown.sc" g2="gcommaaccent.sc" k="30" />
  3043. <hkern g1="exclamdown.sc" g2="gcircumflex.sc" k="30" />
  3044. <hkern g1="exclamdown.sc" g2="gcaron.sc" k="30" />
  3045. <hkern g1="exclamdown.sc" g2="gbreve.sc" k="30" />
  3046. <hkern g1="exclamdown.sc" g2="gacute.sc" k="30" />
  3047. <hkern g1="exclamdown.sc" g2="g.sc" k="30" />
  3048. <hkern g1="exclamdown.sc" g2="f.sc" k="50" />
  3049. <hkern g1="exclamdown.sc" g2="schwa.sc" k="30" />
  3050. <hkern g1="exclamdown.sc" g2="etilde.sc" k="50" />
  3051. <hkern g1="exclamdown.sc" g2="eogonek.sc" k="50" />
  3052. <hkern g1="exclamdown.sc" g2="emacron.sc" k="50" />
  3053. <hkern g1="exclamdown.sc" g2="egrave.sc" k="50" />
  3054. <hkern g1="exclamdown.sc" g2="edotbelow.sc" k="50" />
  3055. <hkern g1="exclamdown.sc" g2="edotaccent.sc" k="50" />
  3056. <hkern g1="exclamdown.sc" g2="edieresis.sc" k="50" />
  3057. <hkern g1="exclamdown.sc" g2="ecircumflex.sc" k="50" />
  3058. <hkern g1="exclamdown.sc" g2="ecaron.sc" k="50" />
  3059. <hkern g1="exclamdown.sc" g2="ebreve.sc" k="50" />
  3060. <hkern g1="exclamdown.sc" g2="eacute.sc" k="50" />
  3061. <hkern g1="exclamdown.sc" g2="e.sc" k="50" />
  3062. <hkern g1="exclamdown.sc" g2="ddotbelow.sc" k="50" />
  3063. <hkern g1="exclamdown.sc" g2="dcroat.sc" k="50" />
  3064. <hkern g1="exclamdown.sc" g2="dcaron.sc" k="50" />
  3065. <hkern g1="exclamdown.sc" g2="eth.sc" k="50" />
  3066. <hkern g1="exclamdown.sc" g2="d.sc" k="50" />
  3067. <hkern g1="exclamdown.sc" g2="cdotaccent.sc" k="30" />
  3068. <hkern g1="exclamdown.sc" g2="ccircumflex.sc" k="30" />
  3069. <hkern g1="exclamdown.sc" g2="ccedilla.sc" k="30" />
  3070. <hkern g1="exclamdown.sc" g2="ccaron.sc" k="30" />
  3071. <hkern g1="exclamdown.sc" g2="cacute.sc" k="30" />
  3072. <hkern g1="exclamdown.sc" g2="c.sc" k="30" />
  3073. <hkern g1="exclamdown.sc" g2="b.sc" k="50" />
  3074. <hkern g1="exclamdown.sc" g2="aeacute.sc" k="40" />
  3075. <hkern g1="exclamdown.sc" g2="ae.sc" k="40" />
  3076. <hkern g1="exclamdown.sc" g2="atilde.sc" k="40" />
  3077. <hkern g1="exclamdown.sc" g2="aringacute.sc" k="40" />
  3078. <hkern g1="exclamdown.sc" g2="aring.sc" k="40" />
  3079. <hkern g1="exclamdown.sc" g2="aogonek.sc" k="40" />
  3080. <hkern g1="exclamdown.sc" g2="amacron.sc" k="40" />
  3081. <hkern g1="exclamdown.sc" g2="agrave.sc" k="40" />
  3082. <hkern g1="exclamdown.sc" g2="adotbelow.sc" k="40" />
  3083. <hkern g1="exclamdown.sc" g2="adieresis.sc" k="40" />
  3084. <hkern g1="exclamdown.sc" g2="acircumflex.sc" k="40" />
  3085. <hkern g1="exclamdown.sc" g2="acaron.sc" k="40" />
  3086. <hkern g1="exclamdown.sc" g2="abreve.sc" k="40" />
  3087. <hkern g1="exclamdown.sc" g2="aacute.sc" k="40" />
  3088. <hkern g1="exclamdown.sc" g2="a.sc" k="40" />
  3089. <hkern g1="questiondown.sc" g2="zdotbelow.sc" k="20" />
  3090. <hkern g1="questiondown.sc" g2="zdotaccent.sc" k="20" />
  3091. <hkern g1="questiondown.sc" g2="zcaron.sc" k="20" />
  3092. <hkern g1="questiondown.sc" g2="zacute.sc" k="20" />
  3093. <hkern g1="questiondown.sc" g2="z.sc" k="20" />
  3094. <hkern g1="questiondown.sc" g2="ytilde.sc" k="70" />
  3095. <hkern g1="questiondown.sc" g2="ymacron.sc" k="70" />
  3096. <hkern g1="questiondown.sc" g2="ygrave.sc" k="70" />
  3097. <hkern g1="questiondown.sc" g2="ydieresis.sc" k="70" />
  3098. <hkern g1="questiondown.sc" g2="ycircumflex.sc" k="70" />
  3099. <hkern g1="questiondown.sc" g2="yacute.sc" k="70" />
  3100. <hkern g1="questiondown.sc" g2="y.sc" k="70" />
  3101. <hkern g1="questiondown.sc" g2="wgrave.sc" k="50" />
  3102. <hkern g1="questiondown.sc" g2="wdieresis.sc" k="50" />
  3103. <hkern g1="questiondown.sc" g2="wcircumflex.sc" k="50" />
  3104. <hkern g1="questiondown.sc" g2="wacute.sc" k="50" />
  3105. <hkern g1="questiondown.sc" g2="w.sc" k="50" />
  3106. <hkern g1="questiondown.sc" g2="v.sc" k="50" />
  3107. <hkern g1="questiondown.sc" g2="utilde.sc" k="30" />
  3108. <hkern g1="questiondown.sc" g2="uring.sc" k="30" />
  3109. <hkern g1="questiondown.sc" g2="uogonek.sc" k="30" />
  3110. <hkern g1="questiondown.sc" g2="umacron.sc" k="30" />
  3111. <hkern g1="questiondown.sc" g2="uhungarumlaut.sc" k="30" />
  3112. <hkern g1="questiondown.sc" g2="ugrave.sc" k="30" />
  3113. <hkern g1="questiondown.sc" g2="udotbelow.sc" k="30" />
  3114. <hkern g1="questiondown.sc" g2="udieresismacron.sc" k="30" />
  3115. <hkern g1="questiondown.sc" g2="udieresisgrave.sc" k="30" />
  3116. <hkern g1="questiondown.sc" g2="udieresiscaron.sc" k="30" />
  3117. <hkern g1="questiondown.sc" g2="udieresisacute.sc" k="30" />
  3118. <hkern g1="questiondown.sc" g2="udieresis.sc" k="30" />
  3119. <hkern g1="questiondown.sc" g2="ucircumflex.sc" k="30" />
  3120. <hkern g1="questiondown.sc" g2="ucaron.sc" k="30" />
  3121. <hkern g1="questiondown.sc" g2="ubreve.sc" k="30" />
  3122. <hkern g1="questiondown.sc" g2="uacute.sc" k="30" />
  3123. <hkern g1="questiondown.sc" g2="u.sc" k="30" />
  3124. <hkern g1="questiondown.sc" g2="tdotbelow.sc" k="70" />
  3125. <hkern g1="questiondown.sc" g2="tcommaaccent.sc" k="70" />
  3126. <hkern g1="questiondown.sc" g2="tcedilla.sc" k="70" />
  3127. <hkern g1="questiondown.sc" g2="tcaron.sc" k="70" />
  3128. <hkern g1="questiondown.sc" g2="tbar.sc" k="70" />
  3129. <hkern g1="questiondown.sc" g2="t.sc" k="70" />
  3130. <hkern g1="questiondown.sc" g2="sdotbelow.sc" k="20" />
  3131. <hkern g1="questiondown.sc" g2="scommaaccent.sc" k="20" />
  3132. <hkern g1="questiondown.sc" g2="scircumflex.sc" k="20" />
  3133. <hkern g1="questiondown.sc" g2="scedilla.sc" k="20" />
  3134. <hkern g1="questiondown.sc" g2="scaron.sc" k="20" />
  3135. <hkern g1="questiondown.sc" g2="sacute.sc" k="20" />
  3136. <hkern g1="questiondown.sc" g2="s.sc" k="20" />
  3137. <hkern g1="questiondown.sc" g2="q.sc" k="20" />
  3138. <hkern g1="questiondown.sc" g2="oe.sc" k="20" />
  3139. <hkern g1="questiondown.sc" g2="otilde.sc" k="20" />
  3140. <hkern g1="questiondown.sc" g2="oslashacute.sc" k="20" />
  3141. <hkern g1="questiondown.sc" g2="oslash.sc" k="20" />
  3142. <hkern g1="questiondown.sc" g2="oogonek.sc" k="20" />
  3143. <hkern g1="questiondown.sc" g2="omacron.sc" k="20" />
  3144. <hkern g1="questiondown.sc" g2="ohungarumlaut.sc" k="20" />
  3145. <hkern g1="questiondown.sc" g2="ograve.sc" k="20" />
  3146. <hkern g1="questiondown.sc" g2="odotbelow.sc" k="20" />
  3147. <hkern g1="questiondown.sc" g2="odieresis.sc" k="20" />
  3148. <hkern g1="questiondown.sc" g2="ocircumflex.sc" k="20" />
  3149. <hkern g1="questiondown.sc" g2="ocaron.sc" k="20" />
  3150. <hkern g1="questiondown.sc" g2="obreve.sc" k="20" />
  3151. <hkern g1="questiondown.sc" g2="oacute.sc" k="20" />
  3152. <hkern g1="questiondown.sc" g2="o.sc" k="20" />
  3153. <hkern g1="questiondown.sc" g2="m.sc" k="10" />
  3154. <hkern g1="questiondown.sc" g2="gdotaccent.sc" k="20" />
  3155. <hkern g1="questiondown.sc" g2="gcommaaccent.sc" k="20" />
  3156. <hkern g1="questiondown.sc" g2="gcircumflex.sc" k="20" />
  3157. <hkern g1="questiondown.sc" g2="gcaron.sc" k="20" />
  3158. <hkern g1="questiondown.sc" g2="gbreve.sc" k="20" />
  3159. <hkern g1="questiondown.sc" g2="gacute.sc" k="20" />
  3160. <hkern g1="questiondown.sc" g2="g.sc" k="20" />
  3161. <hkern g1="questiondown.sc" g2="schwa.sc" k="20" />
  3162. <hkern g1="questiondown.sc" g2="cdotaccent.sc" k="20" />
  3163. <hkern g1="questiondown.sc" g2="ccircumflex.sc" k="20" />
  3164. <hkern g1="questiondown.sc" g2="ccedilla.sc" k="20" />
  3165. <hkern g1="questiondown.sc" g2="ccaron.sc" k="20" />
  3166. <hkern g1="questiondown.sc" g2="cacute.sc" k="20" />
  3167. <hkern g1="questiondown.sc" g2="c.sc" k="20" />
  3168. <hkern g1="periodcentered.sc" g2="zdotbelow.sc" k="20" />
  3169. <hkern g1="periodcentered.sc" g2="zdotaccent.sc" k="20" />
  3170. <hkern g1="periodcentered.sc" g2="zcaron.sc" k="20" />
  3171. <hkern g1="periodcentered.sc" g2="zacute.sc" k="20" />
  3172. <hkern g1="periodcentered.sc" g2="z.sc" k="20" />
  3173. <hkern g1="periodcentered.sc" g2="wgrave.sc" k="10" />
  3174. <hkern g1="periodcentered.sc" g2="wdieresis.sc" k="10" />
  3175. <hkern g1="periodcentered.sc" g2="wcircumflex.sc" k="10" />
  3176. <hkern g1="periodcentered.sc" g2="wacute.sc" k="10" />
  3177. <hkern g1="periodcentered.sc" g2="w.sc" k="10" />
  3178. <hkern g1="periodcentered.sc" g2="v.sc" k="10" />
  3179. <hkern g1="periodcentered.sc" g2="tdotbelow.sc" k="30" />
  3180. <hkern g1="periodcentered.sc" g2="tcommaaccent.sc" k="30" />
  3181. <hkern g1="periodcentered.sc" g2="tcedilla.sc" k="30" />
  3182. <hkern g1="periodcentered.sc" g2="tcaron.sc" k="30" />
  3183. <hkern g1="periodcentered.sc" g2="tbar.sc" k="30" />
  3184. <hkern g1="periodcentered.sc" g2="t.sc" k="30" />
  3185. <hkern g1="periodcentered.sc" g2="aeacute.sc" k="20" />
  3186. <hkern g1="periodcentered.sc" g2="ae.sc" k="20" />
  3187. <hkern g1="periodcentered.sc" g2="atilde.sc" k="20" />
  3188. <hkern g1="periodcentered.sc" g2="aringacute.sc" k="20" />
  3189. <hkern g1="periodcentered.sc" g2="aring.sc" k="20" />
  3190. <hkern g1="periodcentered.sc" g2="aogonek.sc" k="20" />
  3191. <hkern g1="periodcentered.sc" g2="amacron.sc" k="20" />
  3192. <hkern g1="periodcentered.sc" g2="agrave.sc" k="20" />
  3193. <hkern g1="periodcentered.sc" g2="adotbelow.sc" k="20" />
  3194. <hkern g1="periodcentered.sc" g2="adieresis.sc" k="20" />
  3195. <hkern g1="periodcentered.sc" g2="acircumflex.sc" k="20" />
  3196. <hkern g1="periodcentered.sc" g2="acaron.sc" k="20" />
  3197. <hkern g1="periodcentered.sc" g2="abreve.sc" k="20" />
  3198. <hkern g1="periodcentered.sc" g2="aacute.sc" k="20" />
  3199. <hkern g1="periodcentered.sc" g2="a.sc" k="20" />
  3200. <hkern g1="asterisk.sc" g2="germandbls.sc" k="20" />
  3201. <hkern g1="asterisk.sc" g2="sdotbelow.sc" k="30" />
  3202. <hkern g1="asterisk.sc" g2="scommaaccent.sc" k="30" />
  3203. <hkern g1="asterisk.sc" g2="scircumflex.sc" k="30" />
  3204. <hkern g1="asterisk.sc" g2="scedilla.sc" k="30" />
  3205. <hkern g1="asterisk.sc" g2="scaron.sc" k="30" />
  3206. <hkern g1="asterisk.sc" g2="sacute.sc" k="30" />
  3207. <hkern g1="asterisk.sc" g2="s.sc" k="30" />
  3208. <hkern g1="asterisk.sc" g2="rdotbelow.sc" k="20" />
  3209. <hkern g1="asterisk.sc" g2="rcommaaccent.sc" k="20" />
  3210. <hkern g1="asterisk.sc" g2="rcaron.sc" k="20" />
  3211. <hkern g1="asterisk.sc" g2="racute.sc" k="20" />
  3212. <hkern g1="asterisk.sc" g2="r.sc" k="20" />
  3213. <hkern g1="asterisk.sc" g2="q.sc" k="30" />
  3214. <hkern g1="asterisk.sc" g2="thorn.sc" k="20" />
  3215. <hkern g1="asterisk.sc" g2="p.sc" k="20" />
  3216. <hkern g1="asterisk.sc" g2="oe.sc" k="30" />
  3217. <hkern g1="asterisk.sc" g2="otilde.sc" k="30" />
  3218. <hkern g1="asterisk.sc" g2="oslashacute.sc" k="30" />
  3219. <hkern g1="asterisk.sc" g2="oslash.sc" k="30" />
  3220. <hkern g1="asterisk.sc" g2="oogonek.sc" k="30" />
  3221. <hkern g1="asterisk.sc" g2="omacron.sc" k="30" />
  3222. <hkern g1="asterisk.sc" g2="ohungarumlaut.sc" k="30" />
  3223. <hkern g1="asterisk.sc" g2="ograve.sc" k="30" />
  3224. <hkern g1="asterisk.sc" g2="odotbelow.sc" k="30" />
  3225. <hkern g1="asterisk.sc" g2="odieresis.sc" k="30" />
  3226. <hkern g1="asterisk.sc" g2="ocircumflex.sc" k="30" />
  3227. <hkern g1="asterisk.sc" g2="ocaron.sc" k="30" />
  3228. <hkern g1="asterisk.sc" g2="obreve.sc" k="30" />
  3229. <hkern g1="asterisk.sc" g2="oacute.sc" k="30" />
  3230. <hkern g1="asterisk.sc" g2="o.sc" k="30" />
  3231. <hkern g1="asterisk.sc" g2="ntilde.sc" k="20" />
  3232. <hkern g1="asterisk.sc" g2="eng.sc" k="20" />
  3233. <hkern g1="asterisk.sc" g2="ndotaccent.sc" k="20" />
  3234. <hkern g1="asterisk.sc" g2="ncommaaccent.sc" k="20" />
  3235. <hkern g1="asterisk.sc" g2="ncaron.sc" k="20" />
  3236. <hkern g1="asterisk.sc" g2="nacute.sc" k="20" />
  3237. <hkern g1="asterisk.sc" g2="n.sc" k="20" />
  3238. <hkern g1="asterisk.sc" g2="m.sc" k="10" />
  3239. <hkern g1="asterisk.sc" g2="lslash.sc" k="20" />
  3240. <hkern g1="asterisk.sc" g2="ldot.sc" k="20" />
  3241. <hkern g1="asterisk.sc" g2="lcommaaccent.sc" k="20" />
  3242. <hkern g1="asterisk.sc" g2="lcaron.sc" k="20" />
  3243. <hkern g1="asterisk.sc" g2="lacute.sc" k="20" />
  3244. <hkern g1="asterisk.sc" g2="l.sc" k="20" />
  3245. <hkern g1="asterisk.sc" g2="kgreenlandic.sc" k="20" />
  3246. <hkern g1="asterisk.sc" g2="kcommaaccent.sc" k="20" />
  3247. <hkern g1="asterisk.sc" g2="k.sc" k="20" />
  3248. <hkern g1="asterisk.sc" g2="itilde.sc" k="20" />
  3249. <hkern g1="asterisk.sc" g2="iogonek.sc" k="20" />
  3250. <hkern g1="asterisk.sc" g2="imacron.sc" k="20" />
  3251. <hkern g1="asterisk.sc" g2="ij.sc" k="20" />
  3252. <hkern g1="asterisk.sc" g2="igrave.sc" k="20" />
  3253. <hkern g1="asterisk.sc" g2="idotbelow.sc" k="20" />
  3254. <hkern g1="asterisk.sc" g2="idotaccent.sc" k="20" />
  3255. <hkern g1="asterisk.sc" g2="idieresis.sc" k="20" />
  3256. <hkern g1="asterisk.sc" g2="icircumflex.sc" k="20" />
  3257. <hkern g1="asterisk.sc" g2="icaron.sc" k="20" />
  3258. <hkern g1="asterisk.sc" g2="ibreve.sc" k="20" />
  3259. <hkern g1="asterisk.sc" g2="iacute.sc" k="20" />
  3260. <hkern g1="asterisk.sc" g2="dotlessi.sc" k="20" />
  3261. <hkern g1="asterisk.sc" g2="i.sc" k="20" />
  3262. <hkern g1="asterisk.sc" g2="hdotbelow.sc" k="20" />
  3263. <hkern g1="asterisk.sc" g2="hcircumflex.sc" k="20" />
  3264. <hkern g1="asterisk.sc" g2="hbar.sc" k="20" />
  3265. <hkern g1="asterisk.sc" g2="h.sc" k="20" />
  3266. <hkern g1="asterisk.sc" g2="gdotaccent.sc" k="30" />
  3267. <hkern g1="asterisk.sc" g2="gcommaaccent.sc" k="30" />
  3268. <hkern g1="asterisk.sc" g2="gcircumflex.sc" k="30" />
  3269. <hkern g1="asterisk.sc" g2="gcaron.sc" k="30" />
  3270. <hkern g1="asterisk.sc" g2="gbreve.sc" k="30" />
  3271. <hkern g1="asterisk.sc" g2="gacute.sc" k="30" />
  3272. <hkern g1="asterisk.sc" g2="g.sc" k="30" />
  3273. <hkern g1="asterisk.sc" g2="f.sc" k="20" />
  3274. <hkern g1="asterisk.sc" g2="schwa.sc" k="30" />
  3275. <hkern g1="asterisk.sc" g2="etilde.sc" k="20" />
  3276. <hkern g1="asterisk.sc" g2="eogonek.sc" k="20" />
  3277. <hkern g1="asterisk.sc" g2="emacron.sc" k="20" />
  3278. <hkern g1="asterisk.sc" g2="egrave.sc" k="20" />
  3279. <hkern g1="asterisk.sc" g2="edotbelow.sc" k="20" />
  3280. <hkern g1="asterisk.sc" g2="edotaccent.sc" k="20" />
  3281. <hkern g1="asterisk.sc" g2="edieresis.sc" k="20" />
  3282. <hkern g1="asterisk.sc" g2="ecircumflex.sc" k="20" />
  3283. <hkern g1="asterisk.sc" g2="ecaron.sc" k="20" />
  3284. <hkern g1="asterisk.sc" g2="ebreve.sc" k="20" />
  3285. <hkern g1="asterisk.sc" g2="eacute.sc" k="20" />
  3286. <hkern g1="asterisk.sc" g2="e.sc" k="20" />
  3287. <hkern g1="asterisk.sc" g2="ddotbelow.sc" k="20" />
  3288. <hkern g1="asterisk.sc" g2="dcroat.sc" k="20" />
  3289. <hkern g1="asterisk.sc" g2="dcaron.sc" k="20" />
  3290. <hkern g1="asterisk.sc" g2="eth.sc" k="20" />
  3291. <hkern g1="asterisk.sc" g2="d.sc" k="20" />
  3292. <hkern g1="asterisk.sc" g2="cdotaccent.sc" k="30" />
  3293. <hkern g1="asterisk.sc" g2="ccircumflex.sc" k="30" />
  3294. <hkern g1="asterisk.sc" g2="ccedilla.sc" k="30" />
  3295. <hkern g1="asterisk.sc" g2="ccaron.sc" k="30" />
  3296. <hkern g1="asterisk.sc" g2="cacute.sc" k="30" />
  3297. <hkern g1="asterisk.sc" g2="c.sc" k="30" />
  3298. <hkern g1="asterisk.sc" g2="b.sc" k="20" />
  3299. <hkern g1="asterisk.sc" g2="aeacute.sc" k="80" />
  3300. <hkern g1="asterisk.sc" g2="ae.sc" k="80" />
  3301. <hkern g1="asterisk.sc" g2="atilde.sc" k="80" />
  3302. <hkern g1="asterisk.sc" g2="aringacute.sc" k="80" />
  3303. <hkern g1="asterisk.sc" g2="aring.sc" k="80" />
  3304. <hkern g1="asterisk.sc" g2="aogonek.sc" k="80" />
  3305. <hkern g1="asterisk.sc" g2="amacron.sc" k="80" />
  3306. <hkern g1="asterisk.sc" g2="agrave.sc" k="80" />
  3307. <hkern g1="asterisk.sc" g2="adotbelow.sc" k="80" />
  3308. <hkern g1="asterisk.sc" g2="adieresis.sc" k="80" />
  3309. <hkern g1="asterisk.sc" g2="acircumflex.sc" k="80" />
  3310. <hkern g1="asterisk.sc" g2="acaron.sc" k="80" />
  3311. <hkern g1="asterisk.sc" g2="abreve.sc" k="80" />
  3312. <hkern g1="asterisk.sc" g2="aacute.sc" k="80" />
  3313. <hkern g1="asterisk.sc" g2="a.sc" k="80" />
  3314. <hkern g1="quotedbl.sc" g2="zdotbelow.sc" k="20" />
  3315. <hkern g1="quotedbl.sc" g2="zdotaccent.sc" k="20" />
  3316. <hkern g1="quotedbl.sc" g2="zcaron.sc" k="20" />
  3317. <hkern g1="quotedbl.sc" g2="zacute.sc" k="20" />
  3318. <hkern g1="quotedbl.sc" g2="z.sc" k="20" />
  3319. <hkern g1="quotedbl.sc" g2="germandbls.sc" k="20" />
  3320. <hkern g1="quotedbl.sc" g2="rdotbelow.sc" k="20" />
  3321. <hkern g1="quotedbl.sc" g2="rcommaaccent.sc" k="20" />
  3322. <hkern g1="quotedbl.sc" g2="rcaron.sc" k="20" />
  3323. <hkern g1="quotedbl.sc" g2="racute.sc" k="20" />
  3324. <hkern g1="quotedbl.sc" g2="r.sc" k="20" />
  3325. <hkern g1="quotedbl.sc" g2="q.sc" k="20" />
  3326. <hkern g1="quotedbl.sc" g2="thorn.sc" k="20" />
  3327. <hkern g1="quotedbl.sc" g2="p.sc" k="20" />
  3328. <hkern g1="quotedbl.sc" g2="oe.sc" k="20" />
  3329. <hkern g1="quotedbl.sc" g2="otilde.sc" k="20" />
  3330. <hkern g1="quotedbl.sc" g2="oslashacute.sc" k="20" />
  3331. <hkern g1="quotedbl.sc" g2="oslash.sc" k="20" />
  3332. <hkern g1="quotedbl.sc" g2="oogonek.sc" k="20" />
  3333. <hkern g1="quotedbl.sc" g2="omacron.sc" k="20" />
  3334. <hkern g1="quotedbl.sc" g2="ohungarumlaut.sc" k="20" />
  3335. <hkern g1="quotedbl.sc" g2="ograve.sc" k="20" />
  3336. <hkern g1="quotedbl.sc" g2="odotbelow.sc" k="20" />
  3337. <hkern g1="quotedbl.sc" g2="odieresis.sc" k="20" />
  3338. <hkern g1="quotedbl.sc" g2="ocircumflex.sc" k="20" />
  3339. <hkern g1="quotedbl.sc" g2="ocaron.sc" k="20" />
  3340. <hkern g1="quotedbl.sc" g2="obreve.sc" k="20" />
  3341. <hkern g1="quotedbl.sc" g2="oacute.sc" k="20" />
  3342. <hkern g1="quotedbl.sc" g2="o.sc" k="20" />
  3343. <hkern g1="quotedbl.sc" g2="ntilde.sc" k="20" />
  3344. <hkern g1="quotedbl.sc" g2="eng.sc" k="20" />
  3345. <hkern g1="quotedbl.sc" g2="ndotaccent.sc" k="20" />
  3346. <hkern g1="quotedbl.sc" g2="ncommaaccent.sc" k="20" />
  3347. <hkern g1="quotedbl.sc" g2="ncaron.sc" k="20" />
  3348. <hkern g1="quotedbl.sc" g2="nacute.sc" k="20" />
  3349. <hkern g1="quotedbl.sc" g2="n.sc" k="20" />
  3350. <hkern g1="quotedbl.sc" g2="m.sc" k="30" />
  3351. <hkern g1="quotedbl.sc" g2="lslash.sc" k="20" />
  3352. <hkern g1="quotedbl.sc" g2="ldot.sc" k="20" />
  3353. <hkern g1="quotedbl.sc" g2="lcommaaccent.sc" k="20" />
  3354. <hkern g1="quotedbl.sc" g2="lcaron.sc" k="20" />
  3355. <hkern g1="quotedbl.sc" g2="lacute.sc" k="20" />
  3356. <hkern g1="quotedbl.sc" g2="l.sc" k="20" />
  3357. <hkern g1="quotedbl.sc" g2="kgreenlandic.sc" k="20" />
  3358. <hkern g1="quotedbl.sc" g2="kcommaaccent.sc" k="20" />
  3359. <hkern g1="quotedbl.sc" g2="k.sc" k="20" />
  3360. <hkern g1="quotedbl.sc" g2="itilde.sc" k="20" />
  3361. <hkern g1="quotedbl.sc" g2="iogonek.sc" k="20" />
  3362. <hkern g1="quotedbl.sc" g2="imacron.sc" k="20" />
  3363. <hkern g1="quotedbl.sc" g2="ij.sc" k="20" />
  3364. <hkern g1="quotedbl.sc" g2="igrave.sc" k="20" />
  3365. <hkern g1="quotedbl.sc" g2="idotbelow.sc" k="20" />
  3366. <hkern g1="quotedbl.sc" g2="idotaccent.sc" k="20" />
  3367. <hkern g1="quotedbl.sc" g2="idieresis.sc" k="20" />
  3368. <hkern g1="quotedbl.sc" g2="icircumflex.sc" k="20" />
  3369. <hkern g1="quotedbl.sc" g2="icaron.sc" k="20" />
  3370. <hkern g1="quotedbl.sc" g2="ibreve.sc" k="20" />
  3371. <hkern g1="quotedbl.sc" g2="iacute.sc" k="20" />
  3372. <hkern g1="quotedbl.sc" g2="dotlessi.sc" k="20" />
  3373. <hkern g1="quotedbl.sc" g2="i.sc" k="20" />
  3374. <hkern g1="quotedbl.sc" g2="hdotbelow.sc" k="20" />
  3375. <hkern g1="quotedbl.sc" g2="hcircumflex.sc" k="20" />
  3376. <hkern g1="quotedbl.sc" g2="hbar.sc" k="20" />
  3377. <hkern g1="quotedbl.sc" g2="h.sc" k="20" />
  3378. <hkern g1="quotedbl.sc" g2="gdotaccent.sc" k="20" />
  3379. <hkern g1="quotedbl.sc" g2="gcommaaccent.sc" k="20" />
  3380. <hkern g1="quotedbl.sc" g2="gcircumflex.sc" k="20" />
  3381. <hkern g1="quotedbl.sc" g2="gcaron.sc" k="20" />
  3382. <hkern g1="quotedbl.sc" g2="gbreve.sc" k="20" />
  3383. <hkern g1="quotedbl.sc" g2="gacute.sc" k="20" />
  3384. <hkern g1="quotedbl.sc" g2="g.sc" k="20" />
  3385. <hkern g1="quotedbl.sc" g2="f.sc" k="20" />
  3386. <hkern g1="quotedbl.sc" g2="schwa.sc" k="20" />
  3387. <hkern g1="quotedbl.sc" g2="etilde.sc" k="20" />
  3388. <hkern g1="quotedbl.sc" g2="eogonek.sc" k="20" />
  3389. <hkern g1="quotedbl.sc" g2="emacron.sc" k="20" />
  3390. <hkern g1="quotedbl.sc" g2="egrave.sc" k="20" />
  3391. <hkern g1="quotedbl.sc" g2="edotbelow.sc" k="20" />
  3392. <hkern g1="quotedbl.sc" g2="edotaccent.sc" k="20" />
  3393. <hkern g1="quotedbl.sc" g2="edieresis.sc" k="20" />
  3394. <hkern g1="quotedbl.sc" g2="ecircumflex.sc" k="20" />
  3395. <hkern g1="quotedbl.sc" g2="ecaron.sc" k="20" />
  3396. <hkern g1="quotedbl.sc" g2="ebreve.sc" k="20" />
  3397. <hkern g1="quotedbl.sc" g2="eacute.sc" k="20" />
  3398. <hkern g1="quotedbl.sc" g2="e.sc" k="20" />
  3399. <hkern g1="quotedbl.sc" g2="ddotbelow.sc" k="20" />
  3400. <hkern g1="quotedbl.sc" g2="dcroat.sc" k="20" />
  3401. <hkern g1="quotedbl.sc" g2="dcaron.sc" k="20" />
  3402. <hkern g1="quotedbl.sc" g2="eth.sc" k="20" />
  3403. <hkern g1="quotedbl.sc" g2="d.sc" k="20" />
  3404. <hkern g1="quotedbl.sc" g2="cdotaccent.sc" k="20" />
  3405. <hkern g1="quotedbl.sc" g2="ccircumflex.sc" k="20" />
  3406. <hkern g1="quotedbl.sc" g2="ccedilla.sc" k="20" />
  3407. <hkern g1="quotedbl.sc" g2="ccaron.sc" k="20" />
  3408. <hkern g1="quotedbl.sc" g2="cacute.sc" k="20" />
  3409. <hkern g1="quotedbl.sc" g2="c.sc" k="20" />
  3410. <hkern g1="quotedbl.sc" g2="b.sc" k="20" />
  3411. <hkern g1="quotedbl.sc" g2="aeacute.sc" k="40" />
  3412. <hkern g1="quotedbl.sc" g2="ae.sc" k="40" />
  3413. <hkern g1="quotedbl.sc" g2="atilde.sc" k="40" />
  3414. <hkern g1="quotedbl.sc" g2="aringacute.sc" k="40" />
  3415. <hkern g1="quotedbl.sc" g2="aring.sc" k="40" />
  3416. <hkern g1="quotedbl.sc" g2="aogonek.sc" k="40" />
  3417. <hkern g1="quotedbl.sc" g2="amacron.sc" k="40" />
  3418. <hkern g1="quotedbl.sc" g2="agrave.sc" k="40" />
  3419. <hkern g1="quotedbl.sc" g2="adotbelow.sc" k="40" />
  3420. <hkern g1="quotedbl.sc" g2="adieresis.sc" k="40" />
  3421. <hkern g1="quotedbl.sc" g2="acircumflex.sc" k="40" />
  3422. <hkern g1="quotedbl.sc" g2="acaron.sc" k="40" />
  3423. <hkern g1="quotedbl.sc" g2="abreve.sc" k="40" />
  3424. <hkern g1="quotedbl.sc" g2="aacute.sc" k="40" />
  3425. <hkern g1="quotedbl.sc" g2="a.sc" k="40" />
  3426. <hkern g1="quotesingle.sc" g2="germandbls.sc" k="20" />
  3427. <hkern g1="quotesingle.sc" g2="rdotbelow.sc" k="20" />
  3428. <hkern g1="quotesingle.sc" g2="rcommaaccent.sc" k="20" />
  3429. <hkern g1="quotesingle.sc" g2="rcaron.sc" k="20" />
  3430. <hkern g1="quotesingle.sc" g2="racute.sc" k="20" />
  3431. <hkern g1="quotesingle.sc" g2="r.sc" k="20" />
  3432. <hkern g1="quotesingle.sc" g2="q.sc" k="30" />
  3433. <hkern g1="quotesingle.sc" g2="thorn.sc" k="20" />
  3434. <hkern g1="quotesingle.sc" g2="p.sc" k="20" />
  3435. <hkern g1="quotesingle.sc" g2="oe.sc" k="30" />
  3436. <hkern g1="quotesingle.sc" g2="otilde.sc" k="30" />
  3437. <hkern g1="quotesingle.sc" g2="oslashacute.sc" k="30" />
  3438. <hkern g1="quotesingle.sc" g2="oslash.sc" k="30" />
  3439. <hkern g1="quotesingle.sc" g2="oogonek.sc" k="30" />
  3440. <hkern g1="quotesingle.sc" g2="omacron.sc" k="30" />
  3441. <hkern g1="quotesingle.sc" g2="ohungarumlaut.sc" k="30" />
  3442. <hkern g1="quotesingle.sc" g2="ograve.sc" k="30" />
  3443. <hkern g1="quotesingle.sc" g2="odotbelow.sc" k="30" />
  3444. <hkern g1="quotesingle.sc" g2="odieresis.sc" k="30" />
  3445. <hkern g1="quotesingle.sc" g2="ocircumflex.sc" k="30" />
  3446. <hkern g1="quotesingle.sc" g2="ocaron.sc" k="30" />
  3447. <hkern g1="quotesingle.sc" g2="obreve.sc" k="30" />
  3448. <hkern g1="quotesingle.sc" g2="oacute.sc" k="30" />
  3449. <hkern g1="quotesingle.sc" g2="o.sc" k="30" />
  3450. <hkern g1="quotesingle.sc" g2="ntilde.sc" k="20" />
  3451. <hkern g1="quotesingle.sc" g2="eng.sc" k="20" />
  3452. <hkern g1="quotesingle.sc" g2="ndotaccent.sc" k="20" />
  3453. <hkern g1="quotesingle.sc" g2="ncommaaccent.sc" k="20" />
  3454. <hkern g1="quotesingle.sc" g2="ncaron.sc" k="20" />
  3455. <hkern g1="quotesingle.sc" g2="nacute.sc" k="20" />
  3456. <hkern g1="quotesingle.sc" g2="n.sc" k="20" />
  3457. <hkern g1="quotesingle.sc" g2="m.sc" k="30" />
  3458. <hkern g1="quotesingle.sc" g2="lslash.sc" k="20" />
  3459. <hkern g1="quotesingle.sc" g2="ldot.sc" k="20" />
  3460. <hkern g1="quotesingle.sc" g2="lcommaaccent.sc" k="20" />
  3461. <hkern g1="quotesingle.sc" g2="lcaron.sc" k="20" />
  3462. <hkern g1="quotesingle.sc" g2="lacute.sc" k="20" />
  3463. <hkern g1="quotesingle.sc" g2="l.sc" k="20" />
  3464. <hkern g1="quotesingle.sc" g2="kgreenlandic.sc" k="20" />
  3465. <hkern g1="quotesingle.sc" g2="kcommaaccent.sc" k="20" />
  3466. <hkern g1="quotesingle.sc" g2="k.sc" k="20" />
  3467. <hkern g1="quotesingle.sc" g2="itilde.sc" k="20" />
  3468. <hkern g1="quotesingle.sc" g2="iogonek.sc" k="20" />
  3469. <hkern g1="quotesingle.sc" g2="imacron.sc" k="20" />
  3470. <hkern g1="quotesingle.sc" g2="ij.sc" k="20" />
  3471. <hkern g1="quotesingle.sc" g2="igrave.sc" k="20" />
  3472. <hkern g1="quotesingle.sc" g2="idotbelow.sc" k="20" />
  3473. <hkern g1="quotesingle.sc" g2="idotaccent.sc" k="20" />
  3474. <hkern g1="quotesingle.sc" g2="idieresis.sc" k="20" />
  3475. <hkern g1="quotesingle.sc" g2="icircumflex.sc" k="20" />
  3476. <hkern g1="quotesingle.sc" g2="icaron.sc" k="20" />
  3477. <hkern g1="quotesingle.sc" g2="ibreve.sc" k="20" />
  3478. <hkern g1="quotesingle.sc" g2="iacute.sc" k="20" />
  3479. <hkern g1="quotesingle.sc" g2="dotlessi.sc" k="20" />
  3480. <hkern g1="quotesingle.sc" g2="i.sc" k="20" />
  3481. <hkern g1="quotesingle.sc" g2="hdotbelow.sc" k="20" />
  3482. <hkern g1="quotesingle.sc" g2="hcircumflex.sc" k="20" />
  3483. <hkern g1="quotesingle.sc" g2="hbar.sc" k="20" />
  3484. <hkern g1="quotesingle.sc" g2="h.sc" k="20" />
  3485. <hkern g1="quotesingle.sc" g2="gdotaccent.sc" k="30" />
  3486. <hkern g1="quotesingle.sc" g2="gcommaaccent.sc" k="30" />
  3487. <hkern g1="quotesingle.sc" g2="gcircumflex.sc" k="30" />
  3488. <hkern g1="quotesingle.sc" g2="gcaron.sc" k="30" />
  3489. <hkern g1="quotesingle.sc" g2="gbreve.sc" k="30" />
  3490. <hkern g1="quotesingle.sc" g2="gacute.sc" k="30" />
  3491. <hkern g1="quotesingle.sc" g2="g.sc" k="30" />
  3492. <hkern g1="quotesingle.sc" g2="f.sc" k="20" />
  3493. <hkern g1="quotesingle.sc" g2="schwa.sc" k="30" />
  3494. <hkern g1="quotesingle.sc" g2="etilde.sc" k="20" />
  3495. <hkern g1="quotesingle.sc" g2="eogonek.sc" k="20" />
  3496. <hkern g1="quotesingle.sc" g2="emacron.sc" k="20" />
  3497. <hkern g1="quotesingle.sc" g2="egrave.sc" k="20" />
  3498. <hkern g1="quotesingle.sc" g2="edotbelow.sc" k="20" />
  3499. <hkern g1="quotesingle.sc" g2="edotaccent.sc" k="20" />
  3500. <hkern g1="quotesingle.sc" g2="edieresis.sc" k="20" />
  3501. <hkern g1="quotesingle.sc" g2="ecircumflex.sc" k="20" />
  3502. <hkern g1="quotesingle.sc" g2="ecaron.sc" k="20" />
  3503. <hkern g1="quotesingle.sc" g2="ebreve.sc" k="20" />
  3504. <hkern g1="quotesingle.sc" g2="eacute.sc" k="20" />
  3505. <hkern g1="quotesingle.sc" g2="e.sc" k="20" />
  3506. <hkern g1="quotesingle.sc" g2="ddotbelow.sc" k="20" />
  3507. <hkern g1="quotesingle.sc" g2="dcroat.sc" k="20" />
  3508. <hkern g1="quotesingle.sc" g2="dcaron.sc" k="20" />
  3509. <hkern g1="quotesingle.sc" g2="eth.sc" k="20" />
  3510. <hkern g1="quotesingle.sc" g2="d.sc" k="20" />
  3511. <hkern g1="quotesingle.sc" g2="cdotaccent.sc" k="30" />
  3512. <hkern g1="quotesingle.sc" g2="ccircumflex.sc" k="30" />
  3513. <hkern g1="quotesingle.sc" g2="ccedilla.sc" k="30" />
  3514. <hkern g1="quotesingle.sc" g2="ccaron.sc" k="30" />
  3515. <hkern g1="quotesingle.sc" g2="cacute.sc" k="30" />
  3516. <hkern g1="quotesingle.sc" g2="c.sc" k="30" />
  3517. <hkern g1="quotesingle.sc" g2="b.sc" k="20" />
  3518. <hkern g1="quotesingle.sc" g2="aeacute.sc" k="40" />
  3519. <hkern g1="quotesingle.sc" g2="ae.sc" k="40" />
  3520. <hkern g1="quotesingle.sc" g2="atilde.sc" k="40" />
  3521. <hkern g1="quotesingle.sc" g2="aringacute.sc" k="40" />
  3522. <hkern g1="quotesingle.sc" g2="aring.sc" k="40" />
  3523. <hkern g1="quotesingle.sc" g2="aogonek.sc" k="40" />
  3524. <hkern g1="quotesingle.sc" g2="amacron.sc" k="40" />
  3525. <hkern g1="quotesingle.sc" g2="agrave.sc" k="40" />
  3526. <hkern g1="quotesingle.sc" g2="adotbelow.sc" k="40" />
  3527. <hkern g1="quotesingle.sc" g2="adieresis.sc" k="40" />
  3528. <hkern g1="quotesingle.sc" g2="acircumflex.sc" k="40" />
  3529. <hkern g1="quotesingle.sc" g2="acaron.sc" k="40" />
  3530. <hkern g1="quotesingle.sc" g2="abreve.sc" k="40" />
  3531. <hkern g1="quotesingle.sc" g2="aacute.sc" k="40" />
  3532. <hkern g1="quotesingle.sc" g2="a.sc" k="40" />
  3533. <hkern g1="ampersand.caps" g2="IJacute" k="10" />
  3534. <hkern g1="ampersand.caps" u2="&#x1ef8;" k="70" />
  3535. <hkern g1="ampersand.caps" u2="&#x1ef2;" k="70" />
  3536. <hkern g1="ampersand.caps" u2="&#x1ee4;" k="20" />
  3537. <hkern g1="ampersand.caps" u2="&#x1ecc;" k="20" />
  3538. <hkern g1="ampersand.caps" u2="&#x1eca;" k="10" />
  3539. <hkern g1="ampersand.caps" u2="&#x1ebc;" k="10" />
  3540. <hkern g1="ampersand.caps" u2="&#x1eb8;" k="10" />
  3541. <hkern g1="ampersand.caps" u2="&#x1ea0;" k="10" />
  3542. <hkern g1="ampersand.caps" u2="&#x1e84;" k="70" />
  3543. <hkern g1="ampersand.caps" u2="&#x1e82;" k="70" />
  3544. <hkern g1="ampersand.caps" u2="&#x1e80;" k="70" />
  3545. <hkern g1="ampersand.caps" u2="&#x1e6c;" k="70" />
  3546. <hkern g1="ampersand.caps" u2="&#x1e5a;" k="10" />
  3547. <hkern g1="ampersand.caps" u2="&#x1e44;" k="10" />
  3548. <hkern g1="ampersand.caps" u2="&#x1e24;" k="10" />
  3549. <hkern g1="ampersand.caps" u2="&#x1e0c;" k="10" />
  3550. <hkern g1="ampersand.caps" u2="&#x232;" k="70" />
  3551. <hkern g1="ampersand.caps" u2="&#x21a;" k="70" />
  3552. <hkern g1="ampersand.caps" u2="&#x1fe;" k="20" />
  3553. <hkern g1="ampersand.caps" u2="&#x1fc;" k="10" />
  3554. <hkern g1="ampersand.caps" u2="&#x1fa;" k="10" />
  3555. <hkern g1="ampersand.caps" u2="&#x1f4;" k="20" />
  3556. <hkern g1="ampersand.caps" u2="&#x1ea;" k="20" />
  3557. <hkern g1="ampersand.caps" u2="&#x1e6;" k="20" />
  3558. <hkern g1="ampersand.caps" u2="&#x1db;" k="20" />
  3559. <hkern g1="ampersand.caps" u2="&#x1d9;" k="20" />
  3560. <hkern g1="ampersand.caps" u2="&#x1d7;" k="20" />
  3561. <hkern g1="ampersand.caps" u2="&#x1d5;" k="20" />
  3562. <hkern g1="ampersand.caps" u2="&#x1d3;" k="20" />
  3563. <hkern g1="ampersand.caps" u2="&#x1d1;" k="20" />
  3564. <hkern g1="ampersand.caps" u2="&#x1cf;" k="10" />
  3565. <hkern g1="ampersand.caps" u2="&#x1cd;" k="10" />
  3566. <hkern g1="ampersand.caps" u2="&#x178;" k="70" />
  3567. <hkern g1="ampersand.caps" u2="&#x176;" k="70" />
  3568. <hkern g1="ampersand.caps" u2="&#x174;" k="70" />
  3569. <hkern g1="ampersand.caps" u2="&#x172;" k="20" />
  3570. <hkern g1="ampersand.caps" u2="&#x170;" k="20" />
  3571. <hkern g1="ampersand.caps" u2="&#x16e;" k="20" />
  3572. <hkern g1="ampersand.caps" u2="&#x16c;" k="20" />
  3573. <hkern g1="ampersand.caps" u2="&#x16a;" k="20" />
  3574. <hkern g1="ampersand.caps" u2="&#x168;" k="20" />
  3575. <hkern g1="ampersand.caps" u2="&#x166;" k="70" />
  3576. <hkern g1="ampersand.caps" u2="&#x164;" k="70" />
  3577. <hkern g1="ampersand.caps" u2="&#x162;" k="70" />
  3578. <hkern g1="ampersand.caps" u2="&#x158;" k="10" />
  3579. <hkern g1="ampersand.caps" u2="&#x156;" k="10" />
  3580. <hkern g1="ampersand.caps" u2="&#x154;" k="10" />
  3581. <hkern g1="ampersand.caps" u2="&#x152;" k="20" />
  3582. <hkern g1="ampersand.caps" u2="&#x150;" k="20" />
  3583. <hkern g1="ampersand.caps" u2="&#x14e;" k="20" />
  3584. <hkern g1="ampersand.caps" u2="&#x14c;" k="20" />
  3585. <hkern g1="ampersand.caps" u2="&#x14a;" k="10" />
  3586. <hkern g1="ampersand.caps" u2="&#x147;" k="10" />
  3587. <hkern g1="ampersand.caps" u2="&#x145;" k="10" />
  3588. <hkern g1="ampersand.caps" u2="&#x143;" k="10" />
  3589. <hkern g1="ampersand.caps" u2="&#x141;" k="10" />
  3590. <hkern g1="ampersand.caps" u2="&#x13f;" k="10" />
  3591. <hkern g1="ampersand.caps" u2="&#x13d;" k="10" />
  3592. <hkern g1="ampersand.caps" u2="&#x13b;" k="10" />
  3593. <hkern g1="ampersand.caps" u2="&#x139;" k="10" />
  3594. <hkern g1="ampersand.caps" u2="&#x136;" k="10" />
  3595. <hkern g1="ampersand.caps" u2="&#x132;" k="10" />
  3596. <hkern g1="ampersand.caps" u2="&#x130;" k="10" />
  3597. <hkern g1="ampersand.caps" u2="&#x12e;" k="10" />
  3598. <hkern g1="ampersand.caps" u2="&#x12c;" k="10" />
  3599. <hkern g1="ampersand.caps" u2="&#x12a;" k="10" />
  3600. <hkern g1="ampersand.caps" u2="&#x128;" k="10" />
  3601. <hkern g1="ampersand.caps" u2="&#x126;" k="10" />
  3602. <hkern g1="ampersand.caps" u2="&#x124;" k="10" />
  3603. <hkern g1="ampersand.caps" u2="&#x122;" k="20" />
  3604. <hkern g1="ampersand.caps" u2="&#x120;" k="20" />
  3605. <hkern g1="ampersand.caps" u2="&#x11e;" k="20" />
  3606. <hkern g1="ampersand.caps" u2="&#x11c;" k="20" />
  3607. <hkern g1="ampersand.caps" u2="&#x11a;" k="10" />
  3608. <hkern g1="ampersand.caps" u2="&#x118;" k="10" />
  3609. <hkern g1="ampersand.caps" u2="&#x116;" k="10" />
  3610. <hkern g1="ampersand.caps" u2="&#x114;" k="10" />
  3611. <hkern g1="ampersand.caps" u2="&#x112;" k="10" />
  3612. <hkern g1="ampersand.caps" u2="&#x110;" k="10" />
  3613. <hkern g1="ampersand.caps" u2="&#x10e;" k="10" />
  3614. <hkern g1="ampersand.caps" u2="&#x10c;" k="20" />
  3615. <hkern g1="ampersand.caps" u2="&#x10a;" k="20" />
  3616. <hkern g1="ampersand.caps" u2="&#x108;" k="20" />
  3617. <hkern g1="ampersand.caps" u2="&#x106;" k="20" />
  3618. <hkern g1="ampersand.caps" u2="&#x104;" k="10" />
  3619. <hkern g1="ampersand.caps" u2="&#x102;" k="10" />
  3620. <hkern g1="ampersand.caps" u2="&#x100;" k="10" />
  3621. <hkern g1="ampersand.caps" u2="&#xde;" k="10" />
  3622. <hkern g1="ampersand.caps" u2="&#xdd;" k="70" />
  3623. <hkern g1="ampersand.caps" u2="&#xdc;" k="20" />
  3624. <hkern g1="ampersand.caps" u2="&#xdb;" k="20" />
  3625. <hkern g1="ampersand.caps" u2="&#xda;" k="20" />
  3626. <hkern g1="ampersand.caps" u2="&#xd9;" k="20" />
  3627. <hkern g1="ampersand.caps" u2="&#xd8;" k="20" />
  3628. <hkern g1="ampersand.caps" u2="&#xd6;" k="20" />
  3629. <hkern g1="ampersand.caps" u2="&#xd5;" k="20" />
  3630. <hkern g1="ampersand.caps" u2="&#xd4;" k="20" />
  3631. <hkern g1="ampersand.caps" u2="&#xd3;" k="20" />
  3632. <hkern g1="ampersand.caps" u2="&#xd2;" k="20" />
  3633. <hkern g1="ampersand.caps" u2="&#xd1;" k="10" />
  3634. <hkern g1="ampersand.caps" u2="&#xd0;" k="10" />
  3635. <hkern g1="ampersand.caps" u2="&#xcf;" k="10" />
  3636. <hkern g1="ampersand.caps" u2="&#xce;" k="10" />
  3637. <hkern g1="ampersand.caps" u2="&#xcd;" k="10" />
  3638. <hkern g1="ampersand.caps" u2="&#xcc;" k="10" />
  3639. <hkern g1="ampersand.caps" u2="&#xcb;" k="10" />
  3640. <hkern g1="ampersand.caps" u2="&#xca;" k="10" />
  3641. <hkern g1="ampersand.caps" u2="&#xc9;" k="10" />
  3642. <hkern g1="ampersand.caps" u2="&#xc8;" k="10" />
  3643. <hkern g1="ampersand.caps" u2="&#xc7;" k="20" />
  3644. <hkern g1="ampersand.caps" u2="&#xc6;" k="10" />
  3645. <hkern g1="ampersand.caps" u2="&#xc5;" k="10" />
  3646. <hkern g1="ampersand.caps" u2="&#xc4;" k="10" />
  3647. <hkern g1="ampersand.caps" u2="&#xc3;" k="10" />
  3648. <hkern g1="ampersand.caps" u2="&#xc2;" k="10" />
  3649. <hkern g1="ampersand.caps" u2="&#xc1;" k="10" />
  3650. <hkern g1="ampersand.caps" u2="&#xc0;" k="10" />
  3651. <hkern g1="ampersand.caps" u2="Y" k="70" />
  3652. <hkern g1="ampersand.caps" u2="X" k="20" />
  3653. <hkern g1="ampersand.caps" u2="W" k="70" />
  3654. <hkern g1="ampersand.caps" u2="V" k="70" />
  3655. <hkern g1="ampersand.caps" u2="U" k="20" />
  3656. <hkern g1="ampersand.caps" u2="T" k="70" />
  3657. <hkern g1="ampersand.caps" u2="R" k="10" />
  3658. <hkern g1="ampersand.caps" u2="Q" k="20" />
  3659. <hkern g1="ampersand.caps" u2="P" k="10" />
  3660. <hkern g1="ampersand.caps" u2="O" k="20" />
  3661. <hkern g1="ampersand.caps" u2="N" k="10" />
  3662. <hkern g1="ampersand.caps" u2="L" k="10" />
  3663. <hkern g1="ampersand.caps" u2="K" k="10" />
  3664. <hkern g1="ampersand.caps" u2="I" k="10" />
  3665. <hkern g1="ampersand.caps" u2="H" k="10" />
  3666. <hkern g1="ampersand.caps" u2="G" k="20" />
  3667. <hkern g1="ampersand.caps" u2="F" k="10" />
  3668. <hkern g1="ampersand.caps" u2="E" k="10" />
  3669. <hkern g1="ampersand.caps" u2="D" k="10" />
  3670. <hkern g1="ampersand.caps" u2="C" k="20" />
  3671. <hkern g1="ampersand.caps" u2="B" k="10" />
  3672. <hkern g1="ampersand.caps" u2="A" k="10" />
  3673. <hkern g1="florin.sc" g2="sterling.sc" k="100" />
  3674. <hkern g1="IJacute" g2="question.caps" k="30" />
  3675. <hkern g1="IJacute" g2="exclam.caps" k="20" />
  3676. <hkern g1="B" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  3677. <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  3678. <hkern g1="B" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  3679. <hkern g1="B" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  3680. <hkern g1="B" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3681. <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
  3682. <hkern g1="B" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  3683. <hkern g1="B" g2="parenright,parenright.caps,parenright.sc" k="30" />
  3684. <hkern g1="B" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  3685. <hkern g1="B" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  3686. <hkern g1="B" g2="slash,slash.caps,slash.sc" k="20" />
  3687. <hkern g1="Delta" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="80" />
  3688. <hkern g1="Delta" g2="backslash,backslash.caps,backslash.sc" k="40" />
  3689. <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="25" />
  3690. <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  3691. <hkern g1="F" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  3692. <hkern g1="F" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-10" />
  3693. <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  3694. <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="30" />
  3695. <hkern g1="F" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="70" />
  3696. <hkern g1="F" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="40" />
  3697. <hkern g1="F" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  3698. <hkern g1="F" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="30" />
  3699. <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
  3700. <hkern g1="F" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  3701. <hkern g1="F" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
  3702. <hkern g1="F" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="50" />
  3703. <hkern g1="M" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  3704. <hkern g1="M" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  3705. <hkern g1="M" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  3706. <hkern g1="M" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3707. <hkern g1="M" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  3708. <hkern g1="M" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  3709. <hkern g1="M" g2="parenright,parenright.caps,parenright.sc" k="20" />
  3710. <hkern g1="M" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  3711. <hkern g1="M" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3712. <hkern g1="M" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  3713. <hkern g1="M" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3714. <hkern g1="M" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  3715. <hkern g1="M" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3716. <hkern g1="M" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  3717. <hkern g1="M" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  3718. <hkern g1="M" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  3719. <hkern g1="M" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  3720. <hkern g1="M" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3721. <hkern g1="M" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3722. <hkern g1="M" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
  3723. <hkern g1="M" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  3724. <hkern g1="M" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  3725. <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="55" />
  3726. <hkern g1="P" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  3727. <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  3728. <hkern g1="P" g2="parenright,parenright.caps,parenright.sc" k="10" />
  3729. <hkern g1="P" g2="slash,slash.caps,slash.sc" k="60" />
  3730. <hkern g1="P" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  3731. <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="15" />
  3732. <hkern g1="P" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="65" />
  3733. <hkern g1="P" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="45" />
  3734. <hkern g1="P" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  3735. <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="140" />
  3736. <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
  3737. <hkern g1="P" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  3738. <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  3739. <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="15" />
  3740. <hkern g1="P" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  3741. <hkern g1="P" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  3742. <hkern g1="P" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="15" />
  3743. <hkern g1="P" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  3744. <hkern g1="P" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  3745. <hkern g1="P" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3746. <hkern g1="P" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="-5" />
  3747. <hkern g1="Thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  3748. <hkern g1="Thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  3749. <hkern g1="Thorn" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3750. <hkern g1="Thorn" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3751. <hkern g1="Thorn" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  3752. <hkern g1="Thorn" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  3753. <hkern g1="Thorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3754. <hkern g1="Thorn" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  3755. <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  3756. <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
  3757. <hkern g1="X" g2="slash,slash.caps,slash.sc" k="10" />
  3758. <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  3759. <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  3760. <hkern g1="X" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3761. <hkern g1="X" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  3762. <hkern g1="X" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  3763. <hkern g1="X" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
  3764. <hkern g1="X" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  3765. <hkern g1="X" g2="f,germandbls,Germandbls,fi,fl" k="30" />
  3766. <hkern g1="X" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
  3767. <hkern g1="X" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  3768. <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="20" />
  3769. <hkern g1="X" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  3770. <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  3771. <hkern g1="X" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  3772. <hkern g1="X" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
  3773. <hkern g1="X" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  3774. <hkern g1="X" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
  3775. <hkern g1="at" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  3776. <hkern g1="at" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3777. <hkern g1="at" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3778. <hkern g1="b.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3779. <hkern g1="b.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  3780. <hkern g1="b.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  3781. <hkern g1="b.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  3782. <hkern g1="b.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  3783. <hkern g1="b.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  3784. <hkern g1="b.sc" g2="quotedblleft.sc,quoteleft.sc" k="10" />
  3785. <hkern g1="b.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  3786. <hkern g1="bar" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  3787. <hkern g1="bar" g2="slash,slash.caps,slash.sc" k="10" />
  3788. <hkern g1="cent.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
  3789. <hkern g1="cent.sc" g2="three,three.lf,three.osf,three.sc" k="-30" />
  3790. <hkern g1="currency.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3791. <hkern g1="emdash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  3792. <hkern g1="emdash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="35" />
  3793. <hkern g1="emdash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  3794. <hkern g1="emdash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  3795. <hkern g1="emdash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3796. <hkern g1="emdash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  3797. <hkern g1="emdash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  3798. <hkern g1="emdash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3799. <hkern g1="emdash" g2="two,two.lf,two.osf,two.sc" k="10" />
  3800. <hkern g1="emdash" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3801. <hkern g1="endash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  3802. <hkern g1="endash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  3803. <hkern g1="endash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
  3804. <hkern g1="endash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3805. <hkern g1="endash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  3806. <hkern g1="endash" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3807. <hkern g1="endash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3808. <hkern g1="endash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  3809. <hkern g1="endash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  3810. <hkern g1="endash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  3811. <hkern g1="endash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3812. <hkern g1="endash" g2="two,two.lf,two.osf,two.sc" k="15" />
  3813. <hkern g1="endash" g2="seven,seven.lf,seven.osf,seven.sc" k="25" />
  3814. <hkern g1="endash" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  3815. <hkern g1="f.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  3816. <hkern g1="f.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3817. <hkern g1="f.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3818. <hkern g1="f.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  3819. <hkern g1="f.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  3820. <hkern g1="f.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  3821. <hkern g1="f.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="5" />
  3822. <hkern g1="f.sc" g2="quotedblright.sc,quoteright.sc" k="-30" />
  3823. <hkern g1="f.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  3824. <hkern g1="fraction" g2="slash,slash.caps,slash.sc" k="80" />
  3825. <hkern g1="fraction" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="200" />
  3826. <hkern g1="fraction" g2="zero.denominator,one.denominator,two.denominator,three.denominator,four.denominator,five.denominator,six.denominator,seven.denominator,eight.denominator,nine.denominator" k="220" />
  3827. <hkern g1="hyphen" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  3828. <hkern g1="hyphen" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  3829. <hkern g1="hyphen" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
  3830. <hkern g1="hyphen" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  3831. <hkern g1="hyphen" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  3832. <hkern g1="hyphen" g2="backslash,backslash.caps,backslash.sc" k="20" />
  3833. <hkern g1="hyphen" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  3834. <hkern g1="hyphen" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  3835. <hkern g1="hyphen" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="25" />
  3836. <hkern g1="hyphen" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  3837. <hkern g1="hyphen" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  3838. <hkern g1="hyphen" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3839. <hkern g1="hyphen" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  3840. <hkern g1="hyphen" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="25" />
  3841. <hkern g1="hyphen" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  3842. <hkern g1="hyphen" g2="two,two.lf,two.osf,two.sc" k="20" />
  3843. <hkern g1="hyphen" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3844. <hkern g1="hyphen" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="5" />
  3845. <hkern g1="hyphen" g2="florin,florin.lf,florin.osf,florin.sc" k="5" />
  3846. <hkern g1="integral" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3847. <hkern g1="m.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3848. <hkern g1="m.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  3849. <hkern g1="m.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  3850. <hkern g1="m.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  3851. <hkern g1="m.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  3852. <hkern g1="m.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  3853. <hkern g1="m.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  3854. <hkern g1="m.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  3855. <hkern g1="m.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  3856. <hkern g1="p.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3857. <hkern g1="p.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3858. <hkern g1="p.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="100" />
  3859. <hkern g1="p.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  3860. <hkern g1="p.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3861. <hkern g1="p.sc" g2="quotedblright.sc,quoteright.sc" k="-10" />
  3862. <hkern g1="p.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  3863. <hkern g1="p.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  3864. <hkern g1="partialdiff" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  3865. <hkern g1="partialdiff" g2="slash,slash.caps,slash.sc" k="10" />
  3866. <hkern g1="product" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3867. <hkern g1="sterling.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
  3868. <hkern g1="sterling.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3869. <hkern g1="sterling.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
  3870. <hkern g1="sterling.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
  3871. <hkern g1="sterling.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-10" />
  3872. <hkern g1="sterling.sc" g2="one,one.lf,one.osf,one.sc" k="-10" />
  3873. <hkern g1="sterling.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  3874. <hkern g1="thorn.sc" g2="slash,slash.caps,slash.sc" k="30" />
  3875. <hkern g1="underscore" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  3876. <hkern g1="underscore" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
  3877. <hkern g1="underscore" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
  3878. <hkern g1="underscore" g2="backslash,backslash.caps,backslash.sc" k="40" />
  3879. <hkern g1="underscore" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="40" />
  3880. <hkern g1="underscore" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
  3881. <hkern g1="underscore" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  3882. <hkern g1="underscore" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="60" />
  3883. <hkern g1="underscore" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  3884. <hkern g1="underscore" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  3885. <hkern g1="underscore" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  3886. <hkern g1="underscore" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
  3887. <hkern g1="underscore" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  3888. <hkern g1="underscore" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3889. <hkern g1="underscore" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  3890. <hkern g1="underscore" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  3891. <hkern g1="underscore" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  3892. <hkern g1="underscore" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
  3893. <hkern g1="underscore" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3894. <hkern g1="underscore" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  3895. <hkern g1="underscore" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  3896. <hkern g1="underscore" g2="florin,florin.lf,florin.osf,florin.sc" k="-100" />
  3897. <hkern g1="underscore" g2="one,one.lf,one.osf,one.sc" k="10" />
  3898. <hkern g1="underscore" g2="four,four.lf,four.osf,four.sc" k="40" />
  3899. <hkern g1="underscore" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  3900. <hkern g1="underscore" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  3901. <hkern g1="underscore" g2="J,Jcircumflex,Nhookleft,Jacute" k="-20" />
  3902. <hkern g1="underscore" g2="cent,cent.lf,cent.osf,cent.sc" k="25" />
  3903. <hkern g1="underscore" g2="currency,currency.lf,currency.osf,currency.sc" k="30" />
  3904. <hkern g1="underscore" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3905. <hkern g1="underscore" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="60" />
  3906. <hkern g1="underscore" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="70" />
  3907. <hkern g1="underscore" g2="percent.lf,perthousand.lf" k="70" />
  3908. <hkern g1="underscore" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  3909. <hkern g1="x" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  3910. <hkern g1="x" g2="parenright,parenright.caps,parenright.sc" k="30" />
  3911. <hkern g1="x" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  3912. <hkern g1="x" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  3913. <hkern g1="x" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3914. <hkern g1="x" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3915. <hkern g1="x" g2="question,question.caps,question.sc" k="30" />
  3916. <hkern g1="x.sc" g2="slash,slash.caps,slash.sc" k="10" />
  3917. <hkern g1="x.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3918. <hkern g1="x.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3919. <hkern g1="x.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3920. <hkern g1="x.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
  3921. <hkern g1="x.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  3922. <hkern g1="zero.numerator,one.numerator,two.numerator,three.numerator,four.numerator,five.numerator,six.numerator,seven.numerator,eight.numerator,nine.numerator" g2="fraction" k="200" />
  3923. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  3924. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="slash,slash.caps,slash.sc" k="80" />
  3925. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="130" />
  3926. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="70" />
  3927. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  3928. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="two,two.lf,two.osf,two.sc" k="45" />
  3929. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  3930. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  3931. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="one,one.lf,one.osf,one.sc" k="5" />
  3932. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="four,four.lf,four.osf,four.sc" k="80" />
  3933. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="45" />
  3934. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="50" />
  3935. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  3936. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  3937. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash" k="50" />
  3938. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash" k="30" />
  3939. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen.caps" k="30" />
  3940. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="underscore" k="40" />
  3941. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
  3942. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="60" />
  3943. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  3944. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="45" />
  3945. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
  3946. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="parenright,parenright.caps,parenright.sc" k="20" />
  3947. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  3948. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="80" />
  3949. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  3950. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  3951. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  3952. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3953. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="-20" />
  3954. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="35" />
  3955. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  3956. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  3957. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3958. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  3959. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="25" />
  3960. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="60" />
  3961. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  3962. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  3963. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="endash" k="5" />
  3964. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="m.sc" k="10" />
  3965. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="trademark" k="50" />
  3966. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="70" />
  3967. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  3968. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
  3969. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
  3970. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3971. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
  3972. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="parenright,parenright.caps,parenright.sc" k="30" />
  3973. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  3974. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="slash,slash.caps,slash.sc" k="20" />
  3975. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3976. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="15" />
  3977. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3978. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  3979. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="25" />
  3980. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  3981. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  3982. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3983. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3984. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  3985. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  3986. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  3987. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="5" />
  3988. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="underscore" k="40" />
  3989. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="M" k="5" />
  3990. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="X" k="30" />
  3991. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="x" k="10" />
  3992. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="braceright,braceright.caps,braceright.sc" k="10" />
  3993. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  3994. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  3995. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  3996. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3997. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  3998. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  3999. <hkern g1="J,IJ,Jcircumflex,IJacute" g2="m.sc" k="10" />
  4000. <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  4001. <hkern g1="K,Kcommaaccent" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  4002. <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  4003. <hkern g1="K,Kcommaaccent" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  4004. <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  4005. <hkern g1="K,Kcommaaccent" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  4006. <hkern g1="K,Kcommaaccent" g2="slash,slash.caps,slash.sc" k="20" />
  4007. <hkern g1="K,Kcommaaccent" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  4008. <hkern g1="K,Kcommaaccent" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="25" />
  4009. <hkern g1="K,Kcommaaccent" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  4010. <hkern g1="K,Kcommaaccent" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="45" />
  4011. <hkern g1="K,Kcommaaccent" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  4012. <hkern g1="K,Kcommaaccent" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  4013. <hkern g1="K,Kcommaaccent" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  4014. <hkern g1="K,Kcommaaccent" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  4015. <hkern g1="K,Kcommaaccent" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  4016. <hkern g1="K,Kcommaaccent" g2="f,germandbls,Germandbls,fi,fl" k="25" />
  4017. <hkern g1="K,Kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="50" />
  4018. <hkern g1="K,Kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  4019. <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  4020. <hkern g1="K,Kcommaaccent" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="60" />
  4021. <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="50" />
  4022. <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  4023. <hkern g1="K,Kcommaaccent" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  4024. <hkern g1="K,Kcommaaccent" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  4025. <hkern g1="K,Kcommaaccent" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4026. <hkern g1="K,Kcommaaccent" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  4027. <hkern g1="K,Kcommaaccent" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="60" />
  4028. <hkern g1="K,Kcommaaccent" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
  4029. <hkern g1="K,Kcommaaccent" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  4030. <hkern g1="K,Kcommaaccent" g2="endash" k="30" />
  4031. <hkern g1="K,Kcommaaccent" g2="hyphen.caps" k="20" />
  4032. <hkern g1="K,Kcommaaccent" g2="M" k="10" />
  4033. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="110" />
  4034. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="40" />
  4035. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="60" />
  4036. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="100" />
  4037. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4038. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="parenright,parenright.caps,parenright.sc" k="40" />
  4039. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  4040. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="80" />
  4041. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="backslash,backslash.caps,backslash.sc" k="50" />
  4042. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  4043. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  4044. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  4045. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="70" />
  4046. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
  4047. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
  4048. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="110" />
  4049. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4050. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
  4051. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedblright.sc,quoteright.sc" k="80" />
  4052. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen.caps" k="40" />
  4053. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="trademark" k="60" />
  4054. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="80" />
  4055. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  4056. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  4057. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenright,parenright.caps,parenright.sc" k="40" />
  4058. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  4059. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="30" />
  4060. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="slash,slash.caps,slash.sc" k="40" />
  4061. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="backslash,backslash.caps,backslash.sc" k="30" />
  4062. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  4063. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  4064. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="10" />
  4065. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  4066. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
  4067. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  4068. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="bracketright,bracketright.caps,bracketright.sc" k="5" />
  4069. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="70" />
  4070. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="20" />
  4071. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="endash" k="5" />
  4072. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="underscore" k="10" />
  4073. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="m.sc" k="10" />
  4074. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="x.sc" k="40" />
  4075. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="braceright,braceright.caps,braceright.sc" k="5" />
  4076. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="60" />
  4077. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  4078. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenright,parenright.caps,parenright.sc" k="10" />
  4079. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="slash,slash.caps,slash.sc" k="50" />
  4080. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="40" />
  4081. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="100" />
  4082. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="120" />
  4083. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="115" />
  4084. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="100" />
  4085. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="50" />
  4086. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  4087. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  4088. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  4089. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="70" />
  4090. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="40" />
  4091. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="120" />
  4092. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="100" />
  4093. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="95" />
  4094. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="70" />
  4095. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="90" />
  4096. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="110" />
  4097. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="20" />
  4098. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="80" />
  4099. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  4100. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  4101. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="50" />
  4102. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  4103. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  4104. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash" k="40" />
  4105. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="underscore" k="70" />
  4106. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m.sc" k="70" />
  4107. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="M" k="10" />
  4108. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x" k="80" />
  4109. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x.sc" k="30" />
  4110. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  4111. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  4112. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="5" />
  4113. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4114. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="slash,slash.caps,slash.sc" k="10" />
  4115. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="M" k="10" />
  4116. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="X" k="5" />
  4117. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="45" />
  4118. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  4119. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="slash,slash.caps,slash.sc" k="70" />
  4120. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  4121. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="35" />
  4122. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="60" />
  4123. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="45" />
  4124. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="50" />
  4125. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
  4126. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  4127. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  4128. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="f,germandbls,Germandbls,fi,fl" k="30" />
  4129. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="70" />
  4130. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="50" />
  4131. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="20" />
  4132. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  4133. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  4134. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
  4135. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  4136. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4137. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  4138. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  4139. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="20" />
  4140. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  4141. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  4142. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="endash" k="10" />
  4143. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="underscore" k="50" />
  4144. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m.sc" k="20" />
  4145. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="M" k="10" />
  4146. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x" k="30" />
  4147. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen" k="30" />
  4148. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="50" />
  4149. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  4150. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
  4151. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4152. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="slash,slash.caps,slash.sc" k="60" />
  4153. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="25" />
  4154. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="70" />
  4155. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="90" />
  4156. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="85" />
  4157. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="70" />
  4158. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
  4159. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="100" />
  4160. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  4161. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  4162. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="50" />
  4163. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  4164. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="80" />
  4165. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="80" />
  4166. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  4167. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  4168. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  4169. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
  4170. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  4171. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="30" />
  4172. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  4173. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  4174. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="30" />
  4175. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
  4176. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  4177. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="endash" k="30" />
  4178. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="underscore" k="60" />
  4179. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m.sc" k="50" />
  4180. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="M" k="30" />
  4181. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x" k="20" />
  4182. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x.sc" k="20" />
  4183. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen" k="40" />
  4184. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4185. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  4186. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="8" />
  4187. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
  4188. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="12" />
  4189. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  4190. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  4191. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="trademark" k="40" />
  4192. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="braceright,braceright.caps,braceright.sc" k="20" />
  4193. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-5" />
  4194. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  4195. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  4196. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  4197. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  4198. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
  4199. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="35" />
  4200. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  4201. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  4202. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4203. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedblleft.sc,quoteleft.sc" k="50" />
  4204. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedblright.sc,quoteright.sc" k="50" />
  4205. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
  4206. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  4207. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  4208. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="trademark" k="60" />
  4209. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  4210. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4211. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="slash,slash.caps,slash.sc" k="90" />
  4212. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  4213. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="130" />
  4214. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  4215. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  4216. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  4217. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  4218. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  4219. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4220. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4221. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="160" />
  4222. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="four,four.lf,four.osf,four.sc" k="110" />
  4223. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="underscore" k="10" />
  4224. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="hyphen" k="30" />
  4225. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="70" />
  4226. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
  4227. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
  4228. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
  4229. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="110" />
  4230. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="25" />
  4231. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  4232. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  4233. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  4234. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  4235. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  4236. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4237. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  4238. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
  4239. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="22" />
  4240. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  4241. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4242. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  4243. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  4244. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="question,question.caps,question.sc" k="60" />
  4245. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="underscore" k="30" />
  4246. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="x" k="25" />
  4247. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="braceright,braceright.caps,braceright.sc" k="20" />
  4248. <hkern g1="backslash,backslash.caps,backslash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  4249. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="90" />
  4250. <hkern g1="backslash,backslash.caps,backslash.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
  4251. <hkern g1="backslash,backslash.caps,backslash.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="-20" />
  4252. <hkern g1="backslash,backslash.caps,backslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  4253. <hkern g1="backslash,backslash.caps,backslash.sc" g2="f,germandbls,Germandbls,fi,fl" k="-20" />
  4254. <hkern g1="backslash,backslash.caps,backslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  4255. <hkern g1="backslash,backslash.caps,backslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  4256. <hkern g1="backslash,backslash.caps,backslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
  4257. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
  4258. <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblright.sc,quoteright.sc" k="60" />
  4259. <hkern g1="backslash,backslash.caps,backslash.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4260. <hkern g1="backslash,backslash.caps,backslash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  4261. <hkern g1="backslash,backslash.caps,backslash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  4262. <hkern g1="backslash,backslash.caps,backslash.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  4263. <hkern g1="backslash,backslash.caps,backslash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  4264. <hkern g1="backslash,backslash.caps,backslash.sc" g2="question,question.caps,question.sc" k="70" />
  4265. <hkern g1="backslash,backslash.caps,backslash.sc" g2="hyphen" k="30" />
  4266. <hkern g1="backslash,backslash.caps,backslash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="50" />
  4267. <hkern g1="backslash,backslash.caps,backslash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="40" />
  4268. <hkern g1="backslash,backslash.caps,backslash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  4269. <hkern g1="backslash,backslash.caps,backslash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="50" />
  4270. <hkern g1="backslash,backslash.caps,backslash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="10" />
  4271. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  4272. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  4273. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  4274. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="30" />
  4275. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="60" />
  4276. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
  4277. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  4278. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
  4279. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  4280. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="20" />
  4281. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  4282. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  4283. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4284. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
  4285. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  4286. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-40" />
  4287. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  4288. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="40" />
  4289. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  4290. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent.lf,perthousand.lf" k="10" />
  4291. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="M" k="10" />
  4292. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  4293. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
  4294. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  4295. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
  4296. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="60" />
  4297. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="90" />
  4298. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="slash,slash.caps,slash.sc" k="80" />
  4299. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
  4300. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  4301. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  4302. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  4303. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
  4304. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  4305. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  4306. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  4307. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  4308. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  4309. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  4310. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
  4311. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="40" />
  4312. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  4313. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4314. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="30" />
  4315. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  4316. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="one,one.lf,one.osf,one.sc" k="40" />
  4317. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  4318. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  4319. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  4320. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  4321. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  4322. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  4323. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="underscore" k="10" />
  4324. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Delta" k="10" />
  4325. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="summation" k="70" />
  4326. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="five,five.lf,five.osf,five.sc" k="40" />
  4327. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="50" />
  4328. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="80" />
  4329. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="60" />
  4330. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="40" />
  4331. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
  4332. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
  4333. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="backslash,backslash.caps,backslash.sc" k="-20" />
  4334. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  4335. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  4336. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  4337. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  4338. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="question,question.caps,question.sc" k="10" />
  4339. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="underscore" k="10" />
  4340. <hkern g1="d,dcaron,dcroat,ddotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-5" />
  4341. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="slash,slash.caps,slash.sc" k="20" />
  4342. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  4343. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  4344. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="-10" />
  4345. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  4346. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  4347. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  4348. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  4349. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  4350. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  4351. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  4352. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
  4353. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="-10" />
  4354. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="underscore" k="30" />
  4355. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="m.sc" k="10" />
  4356. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="trademark" k="30" />
  4357. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="x.sc" k="15" />
  4358. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
  4359. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
  4360. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="60" />
  4361. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  4362. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="slash,slash.caps,slash.sc" k="60" />
  4363. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  4364. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="25" />
  4365. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  4366. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="35" />
  4367. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  4368. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="20" />
  4369. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="f,germandbls,Germandbls,fi,fl" k="30" />
  4370. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  4371. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
  4372. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="50" />
  4373. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
  4374. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  4375. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="20" />
  4376. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4377. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  4378. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  4379. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  4380. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  4381. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedblleft.sc,quoteleft.sc" k="40" />
  4382. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="two,two.lf,two.osf,two.sc" k="70" />
  4383. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="three,three.lf,three.osf,three.sc" k="10" />
  4384. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
  4385. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="30" />
  4386. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="60" />
  4387. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-20" />
  4388. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
  4389. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="one,one.lf,one.osf,one.sc" k="20" />
  4390. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  4391. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  4392. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
  4393. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  4394. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  4395. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  4396. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  4397. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="40" />
  4398. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="M" k="20" />
  4399. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="x" k="30" />
  4400. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
  4401. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="70" />
  4402. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="40" />
  4403. <hkern g1="f" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-20" />
  4404. <hkern g1="f" g2="parenright,parenright.caps,parenright.sc" k="-100" />
  4405. <hkern g1="f" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-60" />
  4406. <hkern g1="f" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-80" />
  4407. <hkern g1="f" g2="backslash,backslash.caps,backslash.sc" k="-70" />
  4408. <hkern g1="f" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  4409. <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  4410. <hkern g1="f" g2="bracketright,bracketright.caps,bracketright.sc" k="-90" />
  4411. <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  4412. <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4413. <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  4414. <hkern g1="f" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="5" />
  4415. <hkern g1="f" g2="asterisk,asterisk.caps,asterisk.sc" k="-100" />
  4416. <hkern g1="f" g2="question,question.caps,question.sc" k="-60" />
  4417. <hkern g1="f" g2="underscore" k="10" />
  4418. <hkern g1="f" g2="trademark" k="-110" />
  4419. <hkern g1="f" g2="brokenbar" k="-50" />
  4420. <hkern g1="f" g2="paragraph" k="-60" />
  4421. <hkern g1="f" g2="section" k="-110" />
  4422. <hkern g1="f" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-60" />
  4423. <hkern g1="f" g2="braceright,braceright.caps,braceright.sc" k="-30" />
  4424. <hkern g1="f" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="16" />
  4425. <hkern g1="f" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="30" />
  4426. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4427. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="slash,slash.caps,slash.sc" k="80" />
  4428. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="100" />
  4429. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4430. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="underscore" k="100" />
  4431. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  4432. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="parenright,parenright.caps,parenright.sc" k="20" />
  4433. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  4434. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  4435. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="backslash,backslash.caps,backslash.sc" k="30" />
  4436. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  4437. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  4438. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="bracketright,bracketright.caps,bracketright.sc" k="15" />
  4439. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  4440. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  4441. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4442. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  4443. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  4444. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  4445. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  4446. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="question,question.caps,question.sc" k="80" />
  4447. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="x" k="5" />
  4448. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="20" />
  4449. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="braceright,braceright.caps,braceright.sc" k="10" />
  4450. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="slash,slash.caps,slash.sc" k="20" />
  4451. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  4452. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  4453. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  4454. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  4455. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  4456. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblright.sc,quoteright.sc" k="30" />
  4457. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  4458. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
  4459. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="hyphen" k="60" />
  4460. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  4461. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  4462. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
  4463. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  4464. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  4465. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="95" />
  4466. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="90" />
  4467. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="105" />
  4468. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  4469. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="100" />
  4470. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblright.sc,quoteright.sc" k="90" />
  4471. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  4472. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="40" />
  4473. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="trademark" k="115" />
  4474. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="hyphen" k="20" />
  4475. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  4476. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  4477. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4478. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="slash,slash.caps,slash.sc" k="80" />
  4479. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  4480. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  4481. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4482. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4483. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  4484. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  4485. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="underscore" k="70" />
  4486. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  4487. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="slash,slash.caps,slash.sc" k="20" />
  4488. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="backslash,backslash.caps,backslash.sc" k="15" />
  4489. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  4490. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  4491. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="40" />
  4492. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  4493. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  4494. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  4495. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  4496. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="15" />
  4497. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  4498. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  4499. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  4500. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
  4501. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  4502. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  4503. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  4504. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  4505. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4506. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  4507. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  4508. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  4509. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-50" />
  4510. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  4511. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  4512. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
  4513. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  4514. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  4515. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  4516. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  4517. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  4518. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m.sc" k="5" />
  4519. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="M" k="10" />
  4520. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x" k="10" />
  4521. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x.sc" k="10" />
  4522. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Schwa" k="20" />
  4523. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="mu" k="10" />
  4524. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="pi" k="20" />
  4525. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  4526. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
  4527. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="-20" />
  4528. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  4529. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="70" />
  4530. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="100" />
  4531. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="80" />
  4532. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="slash,slash.caps,slash.sc" k="10" />
  4533. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
  4534. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  4535. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  4536. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  4537. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  4538. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  4539. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  4540. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="30" />
  4541. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  4542. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="70" />
  4543. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  4544. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  4545. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblleft.sc,quoteleft.sc" k="30" />
  4546. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblright.sc,quoteright.sc" k="50" />
  4547. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4548. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
  4549. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="one,one.lf,one.osf,one.sc" k="50" />
  4550. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  4551. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="50" />
  4552. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="70" />
  4553. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent.lf,perthousand.lf" k="20" />
  4554. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="60" />
  4555. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  4556. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="m.sc" k="20" />
  4557. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
  4558. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  4559. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="70" />
  4560. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="90" />
  4561. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="60" />
  4562. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="70" />
  4563. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="100" />
  4564. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  4565. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="slash,slash.caps,slash.sc" k="40" />
  4566. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
  4567. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  4568. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="30" />
  4569. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  4570. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="60" />
  4571. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-10" />
  4572. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="50" />
  4573. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="f,germandbls,Germandbls,fi,fl" k="40" />
  4574. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
  4575. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
  4576. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  4577. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
  4578. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  4579. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
  4580. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  4581. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="30" />
  4582. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="30" />
  4583. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
  4584. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  4585. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  4586. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
  4587. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4588. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  4589. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="30" />
  4590. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-60" />
  4591. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  4592. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  4593. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="40" />
  4594. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  4595. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="60" />
  4596. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="40" />
  4597. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
  4598. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  4599. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  4600. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent.lf,perthousand.lf" k="40" />
  4601. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="50" />
  4602. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="X" k="50" />
  4603. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x" k="90" />
  4604. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Schwa" k="50" />
  4605. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="pi" k="10" />
  4606. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="at" k="10" />
  4607. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
  4608. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="40" />
  4609. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="80" />
  4610. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
  4611. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  4612. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
  4613. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="80" />
  4614. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  4615. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  4616. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="slash,slash.caps,slash.sc" k="100" />
  4617. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  4618. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  4619. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="70" />
  4620. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  4621. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  4622. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="80" />
  4623. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  4624. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="60" />
  4625. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="60" />
  4626. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="30" />
  4627. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="30" />
  4628. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  4629. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="80" />
  4630. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="two,two.lf,two.osf,two.sc" k="70" />
  4631. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  4632. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
  4633. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="100" />
  4634. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="120" />
  4635. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
  4636. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="four,four.lf,four.osf,four.sc" k="70" />
  4637. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="40" />
  4638. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  4639. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  4640. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  4641. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="-10" />
  4642. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Delta" k="80" />
  4643. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="at" k="50" />
  4644. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
  4645. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="60" />
  4646. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
  4647. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  4648. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
  4649. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
  4650. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="80" />
  4651. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="30" />
  4652. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="slash,slash.caps,slash.sc" k="60" />
  4653. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  4654. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="80" />
  4655. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  4656. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  4657. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  4658. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
  4659. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  4660. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  4661. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="two,two.lf,two.osf,two.sc" k="10" />
  4662. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="-10" />
  4663. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  4664. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="florin,florin.lf,florin.osf,florin.sc" k="40" />
  4665. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="four,four.lf,four.osf,four.sc" k="50" />
  4666. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  4667. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-10" />
  4668. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="fraction" k="140" />
  4669. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="m.sc" k="10" />
  4670. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="M" k="30" />
  4671. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="at" k="20" />
  4672. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="50" />
  4673. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  4674. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="three,three.lf,three.osf,three.sc" k="-40" />
  4675. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  4676. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  4677. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="m.sc" k="20" />
  4678. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="110" />
  4679. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
  4680. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  4681. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="130" />
  4682. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  4683. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="90" />
  4684. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="80" />
  4685. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="50" />
  4686. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  4687. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  4688. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
  4689. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  4690. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="40" />
  4691. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="M" k="10" />
  4692. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="x" k="30" />
  4693. <hkern g1="quotedblright.sc,quoteright.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  4694. <hkern g1="quotedblright.sc,quoteright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4695. <hkern g1="quotedblright.sc,quoteright.sc" g2="slash,slash.caps,slash.sc" k="150" />
  4696. <hkern g1="quotedblright.sc,quoteright.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="60" />
  4697. <hkern g1="quotedblright.sc,quoteright.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  4698. <hkern g1="quotedblright.sc,quoteright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
  4699. <hkern g1="quotedblright.sc,quoteright.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  4700. <hkern g1="quotedblright.sc,quoteright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="120" />
  4701. <hkern g1="quotedblright.sc,quoteright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
  4702. <hkern g1="quotedblright.sc,quoteright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="160" />
  4703. <hkern g1="quotedblright.sc,quoteright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="100" />
  4704. <hkern g1="quotedblright.sc,quoteright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  4705. <hkern g1="quotedblright.sc,quoteright.sc" g2="m.sc" k="20" />
  4706. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  4707. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  4708. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  4709. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  4710. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  4711. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  4712. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  4713. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
  4714. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="trademark" k="20" />
  4715. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  4716. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="parenright,parenright.caps,parenright.sc" k="30" />
  4717. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  4718. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  4719. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  4720. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  4721. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  4722. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  4723. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  4724. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  4725. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  4726. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="x" k="5" />
  4727. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="braceright,braceright.caps,braceright.sc" k="10" />
  4728. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="5" />
  4729. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4730. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="parenright,parenright.caps,parenright.sc" k="20" />
  4731. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  4732. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  4733. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="slash,slash.caps,slash.sc" k="10" />
  4734. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  4735. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  4736. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  4737. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  4738. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  4739. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="10" />
  4740. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  4741. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  4742. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  4743. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="25" />
  4744. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  4745. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  4746. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4747. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  4748. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="25" />
  4749. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  4750. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  4751. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4752. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  4753. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  4754. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  4755. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedblleft.sc,quoteleft.sc" k="10" />
  4756. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  4757. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  4758. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="10" />
  4759. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="question,question.caps,question.sc" k="50" />
  4760. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  4761. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="underscore" k="15" />
  4762. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m.sc" k="10" />
  4763. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="trademark" k="50" />
  4764. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x" k="20" />
  4765. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x.sc" k="25" />
  4766. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="40" />
  4767. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="braceright,braceright.caps,braceright.sc" k="40" />
  4768. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  4769. <hkern g1="slash,slash.caps,slash.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  4770. <hkern g1="slash,slash.caps,slash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4771. <hkern g1="slash,slash.caps,slash.sc" g2="slash,slash.caps,slash.sc" k="90" />
  4772. <hkern g1="slash,slash.caps,slash.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  4773. <hkern g1="slash,slash.caps,slash.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  4774. <hkern g1="slash,slash.caps,slash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="80" />
  4775. <hkern g1="slash,slash.caps,slash.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
  4776. <hkern g1="slash,slash.caps,slash.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  4777. <hkern g1="slash,slash.caps,slash.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  4778. <hkern g1="slash,slash.caps,slash.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  4779. <hkern g1="slash,slash.caps,slash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  4780. <hkern g1="slash,slash.caps,slash.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  4781. <hkern g1="slash,slash.caps,slash.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
  4782. <hkern g1="slash,slash.caps,slash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  4783. <hkern g1="slash,slash.caps,slash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4784. <hkern g1="slash,slash.caps,slash.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="50" />
  4785. <hkern g1="slash,slash.caps,slash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="55" />
  4786. <hkern g1="slash,slash.caps,slash.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
  4787. <hkern g1="slash,slash.caps,slash.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  4788. <hkern g1="slash,slash.caps,slash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  4789. <hkern g1="slash,slash.caps,slash.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="40" />
  4790. <hkern g1="slash,slash.caps,slash.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  4791. <hkern g1="slash,slash.caps,slash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  4792. <hkern g1="slash,slash.caps,slash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  4793. <hkern g1="slash,slash.caps,slash.sc" g2="underscore" k="40" />
  4794. <hkern g1="slash,slash.caps,slash.sc" g2="at" k="50" />
  4795. <hkern g1="slash,slash.caps,slash.sc" g2="integral" k="30" />
  4796. <hkern g1="slash,slash.caps,slash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="40" />
  4797. <hkern g1="slash,slash.caps,slash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="20" />
  4798. <hkern g1="slash,slash.caps,slash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  4799. <hkern g1="slash,slash.caps,slash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="30" />
  4800. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="slash,slash.caps,slash.sc" k="60" />
  4801. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  4802. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  4803. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  4804. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  4805. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  4806. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4807. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="80" />
  4808. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  4809. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="underscore" k="50" />
  4810. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="m.sc" k="10" />
  4811. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  4812. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="parenright,parenright.caps,parenright.sc" k="30" />
  4813. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  4814. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  4815. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
  4816. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  4817. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4818. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="question,question.caps,question.sc" k="60" />
  4819. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="underscore" k="30" />
  4820. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="braceright,braceright.caps,braceright.sc" k="25" />
  4821. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-5" />
  4822. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="slash,slash.caps,slash.sc" k="30" />
  4823. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  4824. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  4825. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  4826. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  4827. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  4828. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4829. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="70" />
  4830. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  4831. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  4832. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="underscore" k="50" />
  4833. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4834. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="parenright,parenright.caps,parenright.sc" k="40" />
  4835. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  4836. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  4837. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  4838. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  4839. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  4840. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  4841. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="question,question.caps,question.sc" k="50" />
  4842. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="underscore" k="30" />
  4843. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="braceright,braceright.caps,braceright.sc" k="25" />
  4844. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-10" />
  4845. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="slash,slash.caps,slash.sc" k="60" />
  4846. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="35" />
  4847. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  4848. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  4849. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  4850. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  4851. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="70" />
  4852. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  4853. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="underscore" k="50" />
  4854. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="m.sc" k="20" />
  4855. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  4856. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="5" />
  4857. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  4858. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  4859. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="25" />
  4860. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="15" />
  4861. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="30" />
  4862. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  4863. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  4864. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="m.sc" k="10" />
  4865. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  4866. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4867. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  4868. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="slash,slash.caps,slash.sc" k="50" />
  4869. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  4870. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  4871. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="two,two.lf,two.osf,two.sc" k="75" />
  4872. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="40" />
  4873. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  4874. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
  4875. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  4876. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="30" />
  4877. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  4878. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  4879. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
  4880. <hkern g1="one,one.lf,one.osf,one.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  4881. <hkern g1="one,one.lf,one.osf,one.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  4882. <hkern g1="one,one.lf,one.osf,one.sc" g2="slash,slash.caps,slash.sc" k="60" />
  4883. <hkern g1="one,one.lf,one.osf,one.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  4884. <hkern g1="one,one.lf,one.osf,one.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  4885. <hkern g1="one,one.lf,one.osf,one.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  4886. <hkern g1="one,one.lf,one.osf,one.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="5" />
  4887. <hkern g1="one,one.lf,one.osf,one.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="15" />
  4888. <hkern g1="one,one.lf,one.osf,one.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  4889. <hkern g1="two,two.lf,two.osf,two.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  4890. <hkern g1="two,two.lf,two.osf,two.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  4891. <hkern g1="two,two.lf,two.osf,two.sc" g2="slash,slash.caps,slash.sc" k="70" />
  4892. <hkern g1="two,two.lf,two.osf,two.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  4893. <hkern g1="two,two.lf,two.osf,two.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  4894. <hkern g1="two,two.lf,two.osf,two.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  4895. <hkern g1="two,two.lf,two.osf,two.sc" g2="two,two.lf,two.osf,two.sc" k="90" />
  4896. <hkern g1="two,two.lf,two.osf,two.sc" g2="three,three.lf,three.osf,three.sc" k="40" />
  4897. <hkern g1="two,two.lf,two.osf,two.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  4898. <hkern g1="two,two.lf,two.osf,two.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  4899. <hkern g1="two,two.lf,two.osf,two.sc" g2="one,one.lf,one.osf,one.sc" k="20" />
  4900. <hkern g1="two,two.lf,two.osf,two.sc" g2="four,four.lf,four.osf,four.sc" k="75" />
  4901. <hkern g1="two,two.lf,two.osf,two.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="60" />
  4902. <hkern g1="two,two.lf,two.osf,two.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  4903. <hkern g1="two,two.lf,two.osf,two.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  4904. <hkern g1="two,two.lf,two.osf,two.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  4905. <hkern g1="two,two.lf,two.osf,two.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  4906. <hkern g1="two,two.lf,two.osf,two.sc" g2="five,five.lf,five.osf,five.sc" k="55" />
  4907. <hkern g1="four,four.lf,four.osf,four.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4908. <hkern g1="four,four.lf,four.osf,four.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  4909. <hkern g1="four,four.lf,four.osf,four.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
  4910. <hkern g1="four,four.lf,four.osf,four.sc" g2="slash,slash.caps,slash.sc" k="20" />
  4911. <hkern g1="four,four.lf,four.osf,four.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  4912. <hkern g1="four,four.lf,four.osf,four.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  4913. <hkern g1="four,four.lf,four.osf,four.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="25" />
  4914. <hkern g1="four,four.lf,four.osf,four.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
  4915. <hkern g1="four,four.lf,four.osf,four.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  4916. <hkern g1="four,four.lf,four.osf,four.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  4917. <hkern g1="four,four.lf,four.osf,four.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
  4918. <hkern g1="four,four.lf,four.osf,four.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  4919. <hkern g1="four,four.lf,four.osf,four.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
  4920. <hkern g1="five,five.lf,five.osf,five.sc" g2="two,two.lf,two.osf,two.sc" k="65" />
  4921. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  4922. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  4923. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="slash,slash.caps,slash.sc" k="50" />
  4924. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  4925. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
  4926. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  4927. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  4928. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="one,one.lf,one.osf,one.sc" k="5" />
  4929. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="four,four.lf,four.osf,four.sc" k="15" />
  4930. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="15" />
  4931. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="15" />
  4932. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  4933. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  4934. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
  4935. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  4936. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-10" />
  4937. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="parenright,parenright.caps,parenright.sc" k="10" />
  4938. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-10" />
  4939. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
  4940. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="40" />
  4941. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  4942. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="braceright,braceright.caps,braceright.sc" k="-30" />
  4943. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  4944. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  4945. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="backslash,backslash.caps,backslash.sc" k="10" />
  4946. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  4947. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  4948. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  4949. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="parenright,parenright.caps,parenright.sc" k="20" />
  4950. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  4951. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="-10" />
  4952. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  4953. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  4954. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="parenright,parenright.caps,parenright.sc" k="30" />
  4955. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  4956. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="slash,slash.caps,slash.sc" k="10" />
  4957. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  4958. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  4959. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  4960. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  4961. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  4962. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  4963. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  4964. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4965. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="40" />
  4966. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  4967. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  4968. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  4969. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  4970. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  4971. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  4972. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  4973. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  4974. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  4975. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  4976. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  4977. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  4978. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  4979. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  4980. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  4981. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  4982. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  4983. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  4984. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  4985. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="30" />
  4986. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  4987. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  4988. <hkern g1="ordfeminine,ordmasculine" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4989. <hkern g1="ordfeminine,ordmasculine" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  4990. <hkern g1="ordfeminine,ordmasculine" g2="question,question.caps,question.sc" k="40" />
  4991. <hkern g1="ordfeminine,ordmasculine" g2="braceright,braceright.caps,braceright.sc" k="20" />
  4992. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  4993. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="slash,slash.caps,slash.sc" k="40" />
  4994. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  4995. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  4996. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  4997. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
  4998. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  4999. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  5000. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  5001. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblright.sc,quoteright.sc" k="60" />
  5002. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  5003. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
  5004. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="one,one.lf,one.osf,one.sc" k="30" />
  5005. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  5006. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  5007. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
  5008. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  5009. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  5010. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="60" />
  5011. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="question,question.caps,question.sc" k="60" />
  5012. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  5013. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  5014. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  5015. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-5" />
  5016. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  5017. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  5018. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  5019. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  5020. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  5021. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="25" />
  5022. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="25" />
  5023. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  5024. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-60" />
  5025. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  5026. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  5027. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ordfeminine,ordmasculine" k="10" />
  5028. <hkern g1="braceright,braceright.caps,braceright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="80" />
  5029. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  5030. <hkern g1="braceright,braceright.caps,braceright.sc" g2="slash,slash.caps,slash.sc" k="100" />
  5031. <hkern g1="braceright,braceright.caps,braceright.sc" g2="backslash,backslash.caps,backslash.sc" k="90" />
  5032. <hkern g1="braceright,braceright.caps,braceright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  5033. <hkern g1="braceright,braceright.caps,braceright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="70" />
  5034. <hkern g1="braceright,braceright.caps,braceright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  5035. <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedblright.sc,quoteright.sc" k="40" />
  5036. <hkern g1="braceright,braceright.caps,braceright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  5037. <hkern g1="braceright,braceright.caps,braceright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  5038. <hkern g1="braceright,braceright.caps,braceright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  5039. <hkern g1="braceright,braceright.caps,braceright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  5040. <hkern g1="braceright,braceright.caps,braceright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  5041. <hkern g1="braceright,braceright.caps,braceright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  5042. <hkern g1="braceright,braceright.caps,braceright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="50" />
  5043. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="70" />
  5044. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  5045. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="slash,slash.caps,slash.sc" k="90" />
  5046. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  5047. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  5048. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="80" />
  5049. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  5050. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  5051. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
  5052. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  5053. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
  5054. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="40" />
  5055. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  5056. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="70" />
  5057. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  5058. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="parenright,parenright.caps,parenright.sc" k="10" />
  5059. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  5060. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="backslash,backslash.caps,backslash.sc" k="50" />
  5061. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  5062. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  5063. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  5064. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  5065. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5066. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5067. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  5068. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="question,question.caps,question.sc" k="60" />
  5069. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  5070. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  5071. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  5072. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="-10" />
  5073. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-25" />
  5074. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-30" />
  5075. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
  5076. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-10" />
  5077. <hkern g1="cent,cent.osf" g2="slash,slash.caps,slash.sc" k="10" />
  5078. <hkern g1="cent,cent.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  5079. <hkern g1="currency,currency.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  5080. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  5081. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="slash,slash.caps,slash.sc" k="10" />
  5082. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  5083. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
  5084. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="5" />
  5085. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  5086. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  5087. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
  5088. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  5089. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="50" />
  5090. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5091. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  5092. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="question,question.caps,question.sc" k="40" />
  5093. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  5094. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="-10" />
  5095. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-10" />
  5096. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="quotedblright.sc,quoteright.sc" k="-20" />
  5097. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  5098. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  5099. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  5100. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  5101. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
  5102. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  5103. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
  5104. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="four,four.lf,four.osf,four.sc" k="45" />
  5105. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="40" />
  5106. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
  5107. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
  5108. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  5109. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
  5110. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  5111. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="f,germandbls,Germandbls,fi,fl" k="-5" />
  5112. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
  5113. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5114. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-10" />
  5115. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-10" />
  5116. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-20" />
  5117. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
  5118. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  5119. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="5" />
  5120. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  5121. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="two,two.lf,two.osf,two.sc" k="40" />
  5122. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
  5123. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  5124. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5125. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  5126. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="slash,slash.caps,slash.sc" k="70" />
  5127. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  5128. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  5129. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  5130. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  5131. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  5132. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  5133. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  5134. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  5135. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  5136. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="question,question.caps,question.sc" k="30" />
  5137. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="slash,slash.caps,slash.sc" k="30" />
  5138. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  5139. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  5140. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  5141. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  5142. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  5143. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5144. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  5145. <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  5146. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
  5147. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="slash,slash.caps,slash.sc" k="35" />
  5148. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  5149. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  5150. <hkern g1="k,kcommaaccent,kgreenlandic" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5151. <hkern g1="k,kcommaaccent,kgreenlandic" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  5152. <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
  5153. <hkern g1="k,kcommaaccent,kgreenlandic" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="35" />
  5154. <hkern g1="k,kcommaaccent,kgreenlandic" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  5155. <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  5156. <hkern g1="k,kcommaaccent,kgreenlandic" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  5157. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5158. <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="question,question.caps,question.sc" k="20" />
  5159. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  5160. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  5161. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="slash,slash.caps,slash.sc" k="50" />
  5162. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  5163. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  5164. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  5165. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  5166. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  5167. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  5168. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  5169. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  5170. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="30" />
  5171. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="20" />
  5172. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  5173. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
  5174. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  5175. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="40" />
  5176. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="20" />
  5177. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="40" />
  5178. <hkern g1="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="20" />
  5179. <hkern g1="parenright,parenright.caps,parenright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="60" />
  5180. <hkern g1="parenright,parenright.caps,parenright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  5181. <hkern g1="parenright,parenright.caps,parenright.sc" g2="slash,slash.caps,slash.sc" k="90" />
  5182. <hkern g1="parenright,parenright.caps,parenright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  5183. <hkern g1="parenright,parenright.caps,parenright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  5184. <hkern g1="parenright,parenright.caps,parenright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
  5185. <hkern g1="parenright,parenright.caps,parenright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  5186. <hkern g1="parenright,parenright.caps,parenright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  5187. <hkern g1="parenright,parenright.caps,parenright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  5188. <hkern g1="parenright,parenright.caps,parenright.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,radical,infinity,approxequal,notequal,lessequal,greaterequal,plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  5189. <hkern g1="parenright,parenright.caps,parenright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  5190. <hkern g1="parenright,parenright.caps,parenright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="70" />
  5191. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  5192. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  5193. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="-30" />
  5194. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  5195. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  5196. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
  5197. <hkern g1="question,question.caps,question.sc" g2="slash,slash.caps,slash.sc" k="40" />
  5198. <hkern g1="question,question.caps,question.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  5199. <hkern g1="question,question.caps,question.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  5200. <hkern g1="question,question.caps,question.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="90" />
  5201. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  5202. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="20" />
  5203. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
  5204. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="slash,slash.caps,slash.sc" k="10" />
  5205. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
  5206. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  5207. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  5208. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
  5209. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  5210. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5211. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-5" />
  5212. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="question,question.caps,question.sc" k="20" />
  5213. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="braceright,braceright.caps,braceright.sc" k="20" />
  5214. <hkern g1="sterling,sterling.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  5215. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  5216. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="slash,slash.caps,slash.sc" k="10" />
  5217. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="backslash,backslash.caps,backslash.sc" k="20" />
  5218. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  5219. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  5220. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  5221. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="25" />
  5222. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  5223. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  5224. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  5225. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="asterisk,asterisk.caps,asterisk.sc" k="-10" />
  5226. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="question,question.caps,question.sc" k="40" />
  5227. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="braceright,braceright.caps,braceright.sc" k="30" />
  5228. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
  5229. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="parenright,parenright.caps,parenright.sc" k="60" />
  5230. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  5231. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  5232. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="60" />
  5233. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  5234. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  5235. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="question,question.caps,question.sc" k="70" />
  5236. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="slash,slash.caps,slash.sc" k="10" />
  5237. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  5238. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  5239. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  5240. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  5241. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  5242. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  5243. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="parenright,parenright.caps,parenright.sc" k="50" />
  5244. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,schwa,ddotbelow,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  5245. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  5246. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  5247. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  5248. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="braceright,braceright.caps,braceright.sc" k="30" />
  5249. </font>
  5250. </defs></svg>