123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250 |
- <?xml version="1.0" standalone="no"?>
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
- <metadata></metadata>
- <defs>
- <font id="indivisa_text_sansblack" horiz-adv-x="620" >
- <font-face units-per-em="1000" ascent="750" descent="-250" />
- <missing-glyph horiz-adv-x="250" />
- <glyph unicode="/symbol3/" 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" />
- <glyph unicode="/symbol2/" 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" />
- <glyph unicode="/symbol5/" horiz-adv-x="705" d="M232 -6l-132 136l124 234l129 -136zM474 -6l-121 234l128 136l124 -234z" />
- <glyph unicode="/symbol1/" 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" />
- <glyph unicode="/symbol4/" 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" />
- <glyph unicode=" " horiz-adv-x="250" />
- <glyph unicode="	" horiz-adv-x="250" />
- <glyph unicode=" " horiz-adv-x="250" />
- <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" />
- <glyph unicode=""" horiz-adv-x="427" d="M192 760l10 -30l-46 -287h-59l-42 317h137zM382 760l10 -30l-46 -287h-59l-42 317h137z" />
- <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 " />
- <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" />
- <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" />
- <glyph unicode="&" 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" />
- <glyph unicode="'" horiz-adv-x="237" d="M182 760l10 -30l-46 -287h-59l-42 317h137z" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="+" d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
- <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" />
- <glyph unicode="-" horiz-adv-x="415" d="M30 251v50h355v-50h-355z" />
- <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" />
- <glyph unicode="/" horiz-adv-x="366" d="M330 745l8 -8l-187 -747l-82 15l-8 8l187 747z" />
- <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" />
- <glyph unicode="1" horiz-adv-x="395" d="M138 519h-3l-95 -10l-25 110l280 80l20 -20v-679h-180v384q0 97 3 135z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="<" d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
- <glyph unicode="=" d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
- <glyph unicode=">" d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="I" horiz-adv-x="315" d="M250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
- <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" />
- <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" />
- <glyph unicode="L" horiz-adv-x="520" d="M510 140v-140h-445v503q0 110 -10 187l175 10l20 -20v-550z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="T" horiz-adv-x="585" d="M385 0h-185v554q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-554z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="Z" horiz-adv-x="584" d="M60 0l-30 120l311 419l-296 -9l10 160h447l47 -120l-307 -418l300 8l-10 -160h-472z" />
- <glyph unicode="[" horiz-adv-x="444" d="M120 760h274v-134h-104v-690h104v-134h-274v958z" />
- <glyph unicode="\" horiz-adv-x="397" d="M247 -10l-187 747l8 8l82 15l187 -747l-8 -8z" />
- <glyph unicode="]" horiz-adv-x="444" d="M324 760v-958h-274v134h104v690h-104v134h274z" />
- <glyph unicode="^" horiz-adv-x="526" d="M175 210h-95l150 340h66l150 -340h-95l-90 208z" />
- <glyph unicode="_" horiz-adv-x="470" d="M0 -240v50h470v-50h-470z" />
- <glyph unicode="`" horiz-adv-x="276" d="M201 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="l" horiz-adv-x="295" d="M235 0h-180v563q0 91 -15 178l175 19l20 -20v-740z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph unicode="z" horiz-adv-x="460" d="M23 355l10 145h377l20 -115l-211 -245h61q87 0 160 10l-10 -150h-390l-20 115l220 244z" />
- <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" />
- <glyph unicode="|" horiz-adv-x="325" d="M128 -260l-8 8v1009l77 3l8 -8v-1009z" />
- <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" />
- <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" />
- <glyph unicode="¡" 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" />
- <glyph unicode="¢" 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" />
- <glyph unicode="£" 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" />
- <glyph unicode="¤" 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" />
- <glyph unicode="¥" 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" />
- <glyph unicode="¦" horiz-adv-x="325" d="M205 348l-77 -3l-8 8v404l77 3l8 -8v-404zM205 -257l-77 -3l-8 8v400l77 3l8 -8v-400z" />
- <glyph unicode="§" 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" />
- <glyph unicode="¨" 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" />
- <glyph unicode="©" 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" />
- <glyph unicode="ª" 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" />
- <glyph unicode="«" 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" />
- <glyph unicode="¬" d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
- <glyph unicode="®" 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" />
- <glyph unicode="¯" horiz-adv-x="410" d="M45 618v96h298v-96h-298z" />
- <glyph unicode="°" 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" />
- <glyph unicode="±" 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" />
- <glyph unicode="²" 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" />
- <glyph unicode="³" 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" />
- <glyph unicode="´" horiz-adv-x="276" d="M261 766l10 -30q-62 -97 -156 -170l-70 10q38 108 56 198z" />
- <glyph unicode="¶" 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" />
- <glyph unicode="·" 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" />
- <glyph unicode="¸" 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" />
- <glyph unicode="¹" horiz-adv-x="306" d="M109 646h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
- <glyph unicode="º" 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" />
- <glyph unicode="»" 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" />
- <glyph unicode="¼" 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" />
- <glyph unicode="½" 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" />
- <glyph unicode="¾" 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" />
- <glyph unicode="¿" 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" />
- <glyph unicode="À" 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" />
- <glyph unicode="Á" 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" />
- <glyph unicode="Â" 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" />
- <glyph unicode="Ã" 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" />
- <glyph unicode="Ä" 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" />
- <glyph unicode="Å" 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" />
- <glyph unicode="Æ" 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" />
- <glyph unicode="Ç" 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" />
- <glyph unicode="È" 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" />
- <glyph unicode="É" 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" />
- <glyph unicode="Ê" 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" />
- <glyph unicode="Ë" 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" />
- <glyph unicode="Ì" 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" />
- <glyph unicode="Í" 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" />
- <glyph unicode="Î" 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" />
- <glyph unicode="Ï" 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" />
- <glyph unicode="Ð" 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" />
- <glyph unicode="Ñ" 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" />
- <glyph unicode="Ò" 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" />
- <glyph unicode="Ó" 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" />
- <glyph unicode="Ô" 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" />
- <glyph unicode="Õ" 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" />
- <glyph unicode="Ö" 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" />
- <glyph unicode="×" d="M459 130l-148 152l-152 -152l-64 64l153 153l-149 153l60 60q57 -54 151 -151l151 151l64 -64l-151 -151q118 -120 151 -153v-11z" />
- <glyph unicode="Ø" 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" />
- <glyph unicode="Ù" 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" />
- <glyph unicode="Ú" 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" />
- <glyph unicode="Û" 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 " />
- <glyph unicode="Ü" 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" />
- <glyph unicode="Ý" 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" />
- <glyph unicode="Þ" 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" />
- <glyph unicode="ß" 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" />
- <glyph unicode="à" 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" />
- <glyph unicode="á" 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" />
- <glyph unicode="â" 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" />
- <glyph unicode="ã" 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" />
- <glyph unicode="ä" 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" />
- <glyph unicode="å" 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" />
- <glyph unicode="æ" 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" />
- <glyph unicode="ç" 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" />
- <glyph unicode="è" 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" />
- <glyph unicode="é" 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" />
- <glyph unicode="ê" 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" />
- <glyph unicode="ë" 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" />
- <glyph unicode="ì" horiz-adv-x="295" d="M191 566q-94 73 -156 170l10 30l160 8q18 -90 56 -198zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
- <glyph unicode="í" 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" />
- <glyph unicode="î" 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" />
- <glyph unicode="ï" 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 " />
- <glyph unicode="ð" 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" />
- <glyph unicode="ñ" 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" />
- <glyph unicode="ò" 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" />
- <glyph unicode="ó" 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" />
- <glyph unicode="ô" 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" />
- <glyph unicode="õ" 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" />
- <glyph unicode="ö" 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" />
- <glyph unicode="÷" 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" />
- <glyph unicode="ø" 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" />
- <glyph unicode="ù" 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" />
- <glyph unicode="ú" 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" />
- <glyph unicode="û" 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" />
- <glyph unicode="ü" 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" />
- <glyph unicode="ý" 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" />
- <glyph unicode="þ" 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" />
- <glyph unicode="ÿ" 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" />
- <glyph unicode="Ā" 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" />
- <glyph unicode="ā" 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" />
- <glyph unicode="Ă" 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" />
- <glyph unicode="ă" 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" />
- <glyph unicode="Ą" 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" />
- <glyph unicode="ą" 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" />
- <glyph unicode="Ć" 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" />
- <glyph unicode="ć" 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 " />
- <glyph unicode="Ĉ" 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" />
- <glyph unicode="ĉ" 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" />
- <glyph unicode="Ċ" 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" />
- <glyph unicode="ċ" 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" />
- <glyph unicode="Č" 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" />
- <glyph unicode="č" 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" />
- <glyph unicode="Ď" 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 " />
- <glyph unicode="ď" 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" />
- <glyph unicode="Đ" 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" />
- <glyph unicode="đ" 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" />
- <glyph unicode="Ē" 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" />
- <glyph unicode="ē" 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" />
- <glyph unicode="Ĕ" 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" />
- <glyph unicode="ĕ" 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" />
- <glyph unicode="Ė" 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" />
- <glyph unicode="ė" 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" />
- <glyph unicode="Ę" 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" />
- <glyph unicode="ę" 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" />
- <glyph unicode="Ě" 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" />
- <glyph unicode="ě" 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" />
- <glyph unicode="Ĝ" 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" />
- <glyph unicode="ĝ" 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" />
- <glyph unicode="Ğ" 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" />
- <glyph unicode="ğ" 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" />
- <glyph unicode="Ġ" 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" />
- <glyph unicode="ġ" 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" />
- <glyph unicode="Ģ" 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" />
- <glyph unicode="ģ" 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" />
- <glyph unicode="Ĥ" 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" />
- <glyph unicode="ĥ" 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" />
- <glyph unicode="Ħ" 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" />
- <glyph unicode="ħ" 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" />
- <glyph unicode="Ĩ" 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" />
- <glyph unicode="ĩ" 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" />
- <glyph unicode="Ī" horiz-adv-x="315" d="M1 809v96h298v-96h-298zM250 0h-185v503q0 110 -10 187l175 10l20 -20v-680z" />
- <glyph unicode="ī" horiz-adv-x="295" d="M13 618v96h269v-96h-269zM55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
- <glyph unicode="Ĭ" 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" />
- <glyph unicode="ĭ" 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" />
- <glyph unicode="Į" 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" />
- <glyph unicode="į" 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" />
- <glyph unicode="İ" 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" />
- <glyph unicode="ı" horiz-adv-x="295" d="M55 0v313q0 91 -15 178l175 19l20 -20v-490h-180z" />
- <glyph unicode="IJ" 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" />
- <glyph unicode="ij" 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" />
- <glyph unicode="Ĵ" 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" />
- <glyph unicode="ĵ" 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" />
- <glyph unicode="Ķ" 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" />
- <glyph unicode="ķ" 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 " />
- <glyph unicode="ĸ" 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" />
- <glyph unicode="Ĺ" 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" />
- <glyph unicode="ĺ" 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" />
- <glyph unicode="Ļ" 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" />
- <glyph unicode="ļ" 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" />
- <glyph unicode="Ľ" 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" />
- <glyph unicode="ľ" horiz-adv-x="295" d="M457 786l10 -30q-38 -102 -110 -210h-59q15 152 22 240h137zM235 0h-180v563q0 91 -15 178l175 19l20 -20v-740z" />
- <glyph unicode="Ŀ" 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" />
- <glyph unicode="ŀ" 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" />
- <glyph unicode="Ł" 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" />
- <glyph unicode="ł" horiz-adv-x="295" d="M235 0h-180v328l-90 -50l-40 74l130 72v139q0 91 -15 178l175 19l20 -20v-216l89 49l41 -74l-130 -72v-427z" />
- <glyph unicode="Ń" 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" />
- <glyph unicode="ń" 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" />
- <glyph unicode="Ņ" 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" />
- <glyph unicode="ņ" 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" />
- <glyph unicode="Ň" 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" />
- <glyph unicode="ň" 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" />
- <glyph unicode="ʼn" 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" />
- <glyph unicode="Ŋ" 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" />
- <glyph unicode="ŋ" 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" />
- <glyph unicode="Ō" 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" />
- <glyph unicode="ō" 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" />
- <glyph unicode="Ŏ" 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" />
- <glyph unicode="ŏ" 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" />
- <glyph unicode="Ő" 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" />
- <glyph unicode="ő" 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" />
- <glyph unicode="Œ" 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" />
- <glyph unicode="œ" 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" />
- <glyph unicode="Ŕ" 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" />
- <glyph unicode="ŕ" 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" />
- <glyph unicode="Ŗ" 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" />
- <glyph unicode="ŗ" 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" />
- <glyph unicode="Ř" 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" />
- <glyph unicode="ř" 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" />
- <glyph unicode="Ś" 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" />
- <glyph unicode="ś" 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" />
- <glyph unicode="Ŝ" 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" />
- <glyph unicode="ŝ" 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" />
- <glyph unicode="Ş" 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" />
- <glyph unicode="ş" 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" />
- <glyph unicode="Š" 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" />
- <glyph unicode="š" 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" />
- <glyph unicode="Ţ" 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" />
- <glyph unicode="ţ" 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" />
- <glyph unicode="Ť" 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" />
- <glyph unicode="ť" 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" />
- <glyph unicode="Ŧ" horiz-adv-x="585" d="M385 0h-185v300h-100v90h100v164q-60 -2 -190 -8l10 144h545l10 -144q-130 6 -190 8v-164h101v-90h-101v-300z" />
- <glyph unicode="ŧ" 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" />
- <glyph unicode="Ũ" 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" />
- <glyph unicode="ũ" 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" />
- <glyph unicode="Ū" 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" />
- <glyph unicode="ū" 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" />
- <glyph unicode="Ŭ" 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" />
- <glyph unicode="ŭ" 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" />
- <glyph unicode="Ů" 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" />
- <glyph unicode="ů" 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" />
- <glyph unicode="Ű" 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" />
- <glyph unicode="ű" 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" />
- <glyph unicode="Ų" 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" />
- <glyph unicode="ų" 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" />
- <glyph unicode="Ŵ" 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" />
- <glyph unicode="ŵ" 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" />
- <glyph unicode="Ŷ" 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" />
- <glyph unicode="ŷ" 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" />
- <glyph unicode="Ÿ" 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" />
- <glyph unicode="Ź" 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" />
- <glyph unicode="ź" 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" />
- <glyph unicode="Ż" 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" />
- <glyph unicode="ż" 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" />
- <glyph unicode="Ž" 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" />
- <glyph unicode="ž" 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" />
- <glyph unicode="Ə" 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" />
- <glyph unicode="ƒ" 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" />
- <glyph unicode="Ɲ" 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" />
- <glyph unicode="Ǎ" 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" />
- <glyph unicode="ǎ" 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" />
- <glyph unicode="Ǐ" 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" />
- <glyph unicode="ǐ" 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" />
- <glyph unicode="Ǒ" 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" />
- <glyph unicode="ǒ" 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" />
- <glyph unicode="Ǔ" 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 " />
- <glyph unicode="ǔ" 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" />
- <glyph unicode="Ǖ" 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" />
- <glyph unicode="ǖ" 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" />
- <glyph unicode="Ǘ" 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" />
- <glyph unicode="ǘ" 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" />
- <glyph unicode="Ǚ" 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" />
- <glyph unicode="ǚ" 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" />
- <glyph unicode="Ǜ" 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" />
- <glyph unicode="ǜ" 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" />
- <glyph unicode="Ǧ" 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" />
- <glyph unicode="ǧ" 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" />
- <glyph unicode="Ǫ" 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" />
- <glyph unicode="ǫ" 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" />
- <glyph unicode="Ǵ" 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" />
- <glyph unicode="ǵ" 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" />
- <glyph unicode="Ǻ" 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" />
- <glyph unicode="ǻ" 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" />
- <glyph unicode="Ǽ" 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" />
- <glyph unicode="ǽ" 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 " />
- <glyph unicode="Ǿ" 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" />
- <glyph unicode="ǿ" 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" />
- <glyph unicode="Ș" 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" />
- <glyph unicode="ș" 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" />
- <glyph unicode="Ț" 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" />
- <glyph unicode="ț" 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" />
- <glyph unicode="Ȳ" 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" />
- <glyph unicode="ȳ" 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" />
- <glyph unicode="ȷ" 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" />
- <glyph unicode="ə" 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" />
- <glyph unicode="ɲ" 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" />
- <glyph unicode="ˆ" 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" />
- <glyph unicode="ˇ" 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" />
- <glyph unicode="˘" 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" />
- <glyph unicode="˙" 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" />
- <glyph unicode="˚" 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" />
- <glyph unicode="˛" 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" />
- <glyph unicode="˜" 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" />
- <glyph unicode="˝" 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" />
- <glyph unicode="Δ" horiz-adv-x="650" d="M222 690h210l213 -670l-2 -20h-636l-2 20zM204 134h207l-103 364z" />
- <glyph unicode="Ω" 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 " />
- <glyph unicode="μ" 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" />
- <glyph unicode="π" 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" />
- <glyph unicode="Ḍ" 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" />
- <glyph unicode="ḍ" 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" />
- <glyph unicode="Ḥ" 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" />
- <glyph unicode="ḥ" 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" />
- <glyph unicode="Ṅ" 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" />
- <glyph unicode="ṅ" 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" />
- <glyph unicode="Ṛ" 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" />
- <glyph unicode="ṛ" 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" />
- <glyph unicode="Ṣ" 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" />
- <glyph unicode="ṣ" 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" />
- <glyph unicode="Ṭ" 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" />
- <glyph unicode="ṭ" 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" />
- <glyph unicode="Ẁ" 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" />
- <glyph unicode="ẁ" 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" />
- <glyph unicode="Ẃ" 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" />
- <glyph unicode="ẃ" 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" />
- <glyph unicode="Ẅ" 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" />
- <glyph unicode="ẅ" 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" />
- <glyph unicode="Ẓ" 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" />
- <glyph unicode="ẓ" 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" />
- <glyph unicode="ẞ" 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" />
- <glyph unicode="Ạ" 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 " />
- <glyph unicode="ạ" 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" />
- <glyph unicode="Ẹ" 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" />
- <glyph unicode="ẹ" 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" />
- <glyph unicode="Ẽ" 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 " />
- <glyph unicode="ẽ" 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" />
- <glyph unicode="Ị" 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" />
- <glyph unicode="ị" 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" />
- <glyph unicode="Ọ" 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" />
- <glyph unicode="ọ" 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" />
- <glyph unicode="Ụ" 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" />
- <glyph unicode="ụ" 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" />
- <glyph unicode="Ỳ" 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" />
- <glyph unicode="ỳ" 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" />
- <glyph unicode="Ỹ" 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" />
- <glyph unicode="ỹ" 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" />
- <glyph unicode=" " />
- <glyph unicode="–" horiz-adv-x="595" d="M30 251v50h535v-50h-535z" />
- <glyph unicode="—" horiz-adv-x="924" d="M30 251v50h864v-50h-864z" />
- <glyph unicode="‘" 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" />
- <glyph unicode="’" 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" />
- <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" />
- <glyph unicode="“" 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" />
- <glyph unicode="”" 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" />
- <glyph unicode="„" 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" />
- <glyph unicode="†" 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" />
- <glyph unicode="‡" 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" />
- <glyph unicode="•" 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" />
- <glyph unicode="…" 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" />
- <glyph unicode="‰" 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" />
- <glyph unicode="‹" horiz-adv-x="295" d="M37 269v48q88 71 173 183l46 -18q-21 -95 -86 -189q65 -94 86 -189l-46 -18q-85 112 -173 183z" />
- <glyph unicode="›" 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" />
- <glyph unicode="⁄" horiz-adv-x="630" d="M560 700l-425 -710h-65l424 710h66z" />
- <glyph unicode="⁰" 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" />
- <glyph unicode="⁴" 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" />
- <glyph unicode="⁵" 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" />
- <glyph unicode="⁶" 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" />
- <glyph unicode="⁷" 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" />
- <glyph unicode="⁸" 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" />
- <glyph unicode="⁹" 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" />
- <glyph unicode="ⁿ" 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" />
- <glyph unicode="₀" 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" />
- <glyph unicode="₁" horiz-adv-x="306" d="M109 224h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
- <glyph unicode="₂" 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" />
- <glyph unicode="₃" 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" />
- <glyph unicode="₄" 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" />
- <glyph unicode="₅" 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" />
- <glyph unicode="₆" 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" />
- <glyph unicode="₇" 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" />
- <glyph unicode="₈" 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" />
- <glyph unicode="₉" 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" />
- <glyph unicode="€" 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" />
- <glyph unicode="™" 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" />
- <glyph unicode="∂" 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" />
- <glyph unicode="∏" horiz-adv-x="769" d="M729 670l-5 -114h-70v-696h-180v696h-179v-696h-180v696h-70l-5 134h669z" />
- <glyph unicode="∑" horiz-adv-x="600" d="M35 -20l219 295l-219 295l30 120h495l20 -20l-4 -120l-346 9l195 -262v-44l-194 -262l349 9v-140h-515z" />
- <glyph unicode="−" d="M530 303h-450v85q170 5 452 5l8 -8z" />
- <glyph unicode="√" horiz-adv-x="656" d="M636 731l-208 -731h-189l-126 366h-108v134h237l101 -371l135 631l148 -10z" />
- <glyph unicode="∞" 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" />
- <glyph unicode="∫" 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" />
- <glyph unicode="≈" 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" />
- <glyph unicode="≠" 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" />
- <glyph unicode="≤" d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
- <glyph unicode="≥" d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
- <glyph unicode="◊" horiz-adv-x="643" d="M60 319v46l209 325l97 10l217 -336v-45l-213 -319l-96 -10zM320 62h1l174 280l-175 287h-1l-171 -288z" />
- <glyph unicode="◼" horiz-adv-x="510" d="M0 510h510v-510h-510v510z" />
- <glyph unicode="ff" 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" />
- <glyph unicode="fi" 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" />
- <glyph unicode="fl" 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" />
- <glyph unicode="ffi" 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" />
- <glyph unicode="ffl" 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" />
- <glyph unicode="st" 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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="251" d="M198 -70h-150v438q0 72 -12 140l146 15l16 -16v-577z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="425" d="M417 304l-117 -374h-176l-116 386l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="386" d="M23 204l8 116h310l16 -92l-169 -185h46q76 0 132 8l-9 -121h-320l-17 93l178 184z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="251" d="M198 290h-150v438q0 72 -12 140l146 15l16 -16v-577z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="425" d="M417 664l-117 -374h-176l-116 386l158 12l45 -206q13 -66 17 -104h2q3 32 20 104l44 206l115 -8z" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="386" d="M23 564l8 116h310l16 -92l-169 -185h46q76 0 132 8l-9 -121h-320l-17 93l178 184z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="444" d="M230 0h-180v394q0 94 -9 146h378l20 -19l-4 -110l-205 9v-118l161 5l-5 -117l-156 7v-197z" />
- <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" />
- <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 " />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="615" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-202h155v59q0 88 -9 154l170 8l19 -19v-529h-180v207h-155v-207z" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="279" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
- <glyph horiz-adv-x="279" d="M230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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 " />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="279" d="M15 658v96h250v-96h-250zM230 0h-180v386q0 88 -9 154l169 8l20 -19v-529z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="460" d="M444 129v-129h-394v386q0 88 -9 154l169 8l20 -19v-409z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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 " />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="507" d="M344 0h-180v414q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-414z" />
- <glyph horiz-adv-x="507" d="M344 0h-180v205h-103v90h103v119q-107 -4 -158 -7l10 133h476l9 -133q-50 3 -157 7v-119h103v-90h-103v-205z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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 " />
- <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" />
- <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" />
- <glyph horiz-adv-x="556" d="M176 1l-176 529l193 18l77 -276q22 -80 25 -100q16 68 24 93l83 283l144 -9l10 -18l-177 -520h-203z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="508" d="M55 0l-29 112l248 287l-235 -8l9 149h385l46 -112l-243 -286l235 7l-10 -149h-406z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="306" d="M109 284h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="395" d="M138 519h-3l-95 -10l-25 110l280 80l20 -20v-679h-180v384q0 97 3 135z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="306" d="M109 586h-2l-59 -4l-18 75l196 49l15 -14v-400h-134v215q0 56 2 79z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="455" d="M188 369h-3l-95 -10l-25 110l280 80l20 -20v-529h-180v234q0 97 3 135z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M113 0v130h120v254q0 97 3 135h-3l-95 -10l-25 110l280 80l20 -20v-549h120v-130h-420z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M92 530l13 160h436l22 -20v-100q-217 -241 -226 -570h-185q9 156 78 303.5t170 243.5v3h-97q-124 0 -211 -20z" />
- <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" />
- <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" />
- <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" />
- <glyph d="M123 0v130h132v104q0 97 3 135h-3l-125 -18l-25 110l310 88l20 -20v-399h108v-130h-420z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M92 379l13 160h436l22 -20v-100q-217 -241 -226 -570h-185q9 156 78 303.5t170 243.5v3h-97q-124 0 -211 -20z" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="371" d="M118 382h-3l-76 -4l-24 103l256 66l20 -19v-528h-176v279q0 74 3 103z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M124 0v130h132v104q0 97 3 135h-3l-125 -18l-25 110l306 88l20 -20v-399h108v-130h-416z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="366" d="M330 717l8 -8l-187 -747l-82 15l-8 8l187 747z" />
- <glyph horiz-adv-x="397" d="M247 -36l-187 747l8 8l82 15l187 -747l-8 -8z" />
- <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" />
- <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 " />
- <glyph horiz-adv-x="449" d="M365 -10q-137 58 -211 148t-74 207t74 207t211 148l64 -90q-163 -104 -163 -265t163 -265z" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="444" d="M120 690h274v-134h-104v-422h104v-134h-274v690z" />
- <glyph horiz-adv-x="444" d="M324 690v-690h-274v134h104v422h-104v134h274z" />
- <glyph horiz-adv-x="415" d="M30 323v50h355v-50h-355z" />
- <glyph horiz-adv-x="600" d="M30 323v50h535v-50h-535z" />
- <glyph horiz-adv-x="924" d="M30 323v50h864v-50h-864z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph horiz-adv-x="487" d="M182 760l10 -30l-46 -287h-59l-42 317h137zM432 760l10 -30l-46 -287h-59l-42 317h137z" />
- <glyph horiz-adv-x="254" d="M40 763l4 6q71 7 157 7l13 -17l-69 -339h-46l-22 155z" />
- <glyph horiz-adv-x="415" d="M30 248v50h355v-50h-355z" />
- <glyph horiz-adv-x="595" d="M30 248v50h535v-50h-535z" />
- <glyph horiz-adv-x="924" d="M30 249v50h864v-50h-864z" />
- <glyph horiz-adv-x="449" d="M365 -85q-137 58 -211 148t-74 207t74 207t211 148l64 -90q-163 -104 -163 -265t163 -265z" />
- <glyph horiz-adv-x="449" d="M84 625q137 -58 211 -148t74 -207t-74 -207t-211 -148l-64 90q163 104 163 265t-163 265z" />
- <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" />
- <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" />
- <glyph horiz-adv-x="444" d="M120 613h274v-134h-104v-422h104v-134h-274v690z" />
- <glyph horiz-adv-x="444" d="M324 613v-690h-274v134h104v422h-104v134h274z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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 " />
- <glyph horiz-adv-x="324" d="M61 -10l142 577l11 4l82 -21l-142 -577l-11 -3z" />
- <glyph horiz-adv-x="355" d="M295 -10l-82 -20l-11 3l-142 577l82 21l11 -4z" />
- <glyph horiz-adv-x="497" d="M202 610l10 -30l-56 -287h-59l-52 317h157zM442 610l10 -30l-56 -287h-59l-52 317h157z" />
- <glyph horiz-adv-x="257" d="M202 610l10 -30l-56 -287h-59l-52 317h157z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
- <glyph d="M530 303h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <glyph d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
- <glyph d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
- <glyph d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
- <glyph d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M525 415v-253h-90v171h-370v85q170 5 452 5z" />
- <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" />
- <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" />
- <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" />
- <glyph d="M530 228h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
- <glyph d="M530 228h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M530 328h-450v85q170 5 452 5l8 -8zM530 128h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <glyph d="M90 18v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
- <glyph d="M218 273l312 -160v-95l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95z" />
- <glyph d="M85 148v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 0h-450v85q170 5 452 5l8 -8z" />
- <glyph d="M223 356l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 0h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <glyph d="M530 303h-175v-178h-88l-1 178h-186v85q47 1 186 3l-1 174h90v-173q69 1 177 1l8 -8z" />
- <glyph d="M530 303h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M530 403h-450v85q170 5 452 5l8 -8zM530 203h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <glyph d="M90 93v95l312 160l-311 148v95q72 -28 220.5 -98t229.5 -112l4 -11v-55z" />
- <glyph d="M530 93l-455 222v55l4 11q81 42 229.5 112t220.5 98v-95l-311 -148l312 -160v-95z" />
- <glyph d="M85 223v90l312 118l-311 113v90q219 -76 458 -168l6 -11v-55zM535 75h-450v85q170 5 452 5l8 -8z" />
- <glyph d="M223 431l312 -118v-90l-465 177v55l6 11q239 92 458 168v-90zM525 75h-450v85q170 5 452 5l8 -8z" />
- <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" />
- <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" />
- <glyph d="M525 339v-253h-90v171h-370v85q170 5 452 5z" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern u1="!" u2="ỹ" k="20" />
- <hkern u1="!" u2="ỳ" k="20" />
- <hkern u1="!" u2="ụ" k="30" />
- <hkern u1="!" u2="ȳ" k="20" />
- <hkern u1="!" u2="ǜ" k="30" />
- <hkern u1="!" u2="ǚ" k="30" />
- <hkern u1="!" u2="ǘ" k="30" />
- <hkern u1="!" u2="ǖ" k="30" />
- <hkern u1="!" u2="ǔ" k="30" />
- <hkern u1="!" u2="ŷ" k="20" />
- <hkern u1="!" u2="ų" k="30" />
- <hkern u1="!" u2="ű" k="30" />
- <hkern u1="!" u2="ů" k="30" />
- <hkern u1="!" u2="ŭ" k="30" />
- <hkern u1="!" u2="ū" k="30" />
- <hkern u1="!" u2="ũ" k="30" />
- <hkern u1="!" u2="ÿ" k="20" />
- <hkern u1="!" u2="ý" k="20" />
- <hkern u1="!" u2="ü" k="30" />
- <hkern u1="!" u2="û" k="30" />
- <hkern u1="!" u2="ú" k="30" />
- <hkern u1="!" u2="ù" k="30" />
- <hkern u1="!" u2="y" k="20" />
- <hkern u1="!" u2="u" k="30" />
- <hkern u1=""" g2="s_h" k="50" />
- <hkern u1=""" g2="c_t" k="40" />
- <hkern u1=""" g2="c_h" k="40" />
- <hkern u1=""" u2="fl" k="10" />
- <hkern u1=""" u2="fi" k="10" />
- <hkern u1=""" u2="ọ" k="40" />
- <hkern u1=""" u2="ẽ" k="40" />
- <hkern u1=""" u2="ẹ" k="40" />
- <hkern u1=""" u2="ẞ" k="10" />
- <hkern u1=""" u2="ṣ" k="50" />
- <hkern u1=""" u2="ḍ" k="40" />
- <hkern u1=""" u2="ə" k="40" />
- <hkern u1=""" u2="ș" k="50" />
- <hkern u1=""" u2="ǿ" k="40" />
- <hkern u1=""" u2="ǫ" k="40" />
- <hkern u1=""" u2="ǒ" k="40" />
- <hkern u1=""" u2="š" k="50" />
- <hkern u1=""" u2="ş" k="50" />
- <hkern u1=""" u2="ŝ" k="50" />
- <hkern u1=""" u2="ś" k="50" />
- <hkern u1=""" u2="œ" k="40" />
- <hkern u1=""" u2="ő" k="40" />
- <hkern u1=""" u2="ŏ" k="40" />
- <hkern u1=""" u2="ō" k="40" />
- <hkern u1=""" u2="ě" k="40" />
- <hkern u1=""" u2="ę" k="40" />
- <hkern u1=""" u2="ė" k="40" />
- <hkern u1=""" u2="ĕ" k="40" />
- <hkern u1=""" u2="ē" k="40" />
- <hkern u1=""" u2="đ" k="40" />
- <hkern u1=""" u2="ď" k="40" />
- <hkern u1=""" u2="č" k="40" />
- <hkern u1=""" u2="ċ" k="40" />
- <hkern u1=""" u2="ĉ" k="40" />
- <hkern u1=""" u2="ć" k="40" />
- <hkern u1=""" u2="ø" k="40" />
- <hkern u1=""" u2="ö" k="40" />
- <hkern u1=""" u2="õ" k="40" />
- <hkern u1=""" u2="ô" k="40" />
- <hkern u1=""" u2="ó" k="40" />
- <hkern u1=""" u2="ò" k="40" />
- <hkern u1=""" u2="ð" k="40" />
- <hkern u1=""" u2="ë" k="40" />
- <hkern u1=""" u2="ê" k="40" />
- <hkern u1=""" u2="é" k="40" />
- <hkern u1=""" u2="è" k="40" />
- <hkern u1=""" u2="ç" k="40" />
- <hkern u1=""" u2="ß" k="10" />
- <hkern u1=""" u2="s" k="50" />
- <hkern u1=""" u2="q" k="40" />
- <hkern u1=""" u2="o" k="40" />
- <hkern u1=""" u2="f" k="10" />
- <hkern u1=""" u2="e" k="40" />
- <hkern u1=""" u2="d" k="40" />
- <hkern u1=""" u2="c" k="40" />
- <hkern u1="-" g2="x.sc" k="15" />
- <hkern u1="-" u2="∫" k="10" />
- <hkern u1="-" u2="∑" k="50" />
- <hkern u1="-" u2="∏" k="10" />
- <hkern u1="-" u2="Δ" k="10" />
- <hkern u1="-" u2="x" k="20" />
- <hkern u1="-" u2="X" k="20" />
- <hkern u1="A" g2="ampersand.caps" k="20" />
- <hkern u1="A" g2="quotesingle.caps" k="60" />
- <hkern u1="A" g2="quotedbl.caps" k="80" />
- <hkern u1="A" g2="asterisk.caps" k="60" />
- <hkern u1="A" g2="question.caps" k="90" />
- <hkern u1="A" u2="V" k="30" />
- <hkern u1="B" g2="quotesingle.caps" k="30" />
- <hkern u1="B" g2="quotedbl.caps" k="30" />
- <hkern u1="B" g2="asterisk.caps" k="20" />
- <hkern u1="B" g2="question.caps" k="60" />
- <hkern u1="B" g2="exclam.caps" k="70" />
- <hkern u1="B" u2="_" k="20" />
- <hkern u1="B" u2="X" k="25" />
- <hkern u1="B" u2="M" k="5" />
- <hkern u1="C" g2="question.caps" k="20" />
- <hkern u1="C" g2="exclam.caps" k="40" />
- <hkern u1="D" g2="ampersand.caps" k="10" />
- <hkern u1="D" g2="quotesingle.caps" k="10" />
- <hkern u1="D" g2="quotedbl.caps" k="10" />
- <hkern u1="D" g2="bracketright.caps" k="20" />
- <hkern u1="D" g2="asterisk.caps" k="10" />
- <hkern u1="D" g2="question.caps" k="70" />
- <hkern u1="D" u2="}" k="-30" />
- <hkern u1="F" g2="ampersand.caps" k="30" />
- <hkern u1="F" g2="question.caps" k="10" />
- <hkern u1="F" g2="exclam.caps" k="40" />
- <hkern u1="F" g2="m.sc" k="25" />
- <hkern u1="F" u2="M" k="15" />
- <hkern u1="G" g2="question.caps" k="20" />
- <hkern u1="G" g2="exclam.caps" k="40" />
- <hkern u1="H" g2="question.caps" k="50" />
- <hkern u1="H" g2="exclam.caps" k="20" />
- <hkern u1="I" g2="question.caps" k="50" />
- <hkern u1="I" g2="exclam.caps" k="20" />
- <hkern u1="J" g2="question.caps" k="30" />
- <hkern u1="J" g2="exclam.caps" k="20" />
- <hkern u1="K" g2="ampersand.caps" k="40" />
- <hkern u1="K" g2="question.caps" k="40" />
- <hkern u1="K" g2="exclam.caps" k="20" />
- <hkern u1="L" g2="quotesingle.caps" k="60" />
- <hkern u1="L" g2="quotedbl.caps" k="60" />
- <hkern u1="L" g2="asterisk.caps" k="80" />
- <hkern u1="L" g2="periodcentered.caps" k="20" />
- <hkern u1="L" g2="question.caps" k="80" />
- <hkern u1="L" g2="exclam.caps" k="40" />
- <hkern u1="M" g2="question.caps" k="50" />
- <hkern u1="M" g2="exclam.caps" k="40" />
- <hkern u1="N" g2="question.caps" k="50" />
- <hkern u1="N" g2="exclam.caps" k="20" />
- <hkern u1="O" g2="ampersand.caps" k="10" />
- <hkern u1="O" g2="quotesingle.caps" k="10" />
- <hkern u1="O" g2="quotedbl.caps" k="10" />
- <hkern u1="O" g2="bracketright.caps" k="20" />
- <hkern u1="O" g2="asterisk.caps" k="10" />
- <hkern u1="O" g2="question.caps" k="70" />
- <hkern u1="O" u2="}" k="-30" />
- <hkern u1="P" g2="ampersand.caps" k="30" />
- <hkern u1="P" g2="questiondown.caps" k="10" />
- <hkern u1="P" g2="question.caps" k="40" />
- <hkern u1="P" g2="exclam.caps" k="30" />
- <hkern u1="P" g2="m.sc" k="10" />
- <hkern u1="P" u2="_" k="30" />
- <hkern u1="P" u2="X" k="30" />
- <hkern u1="P" u2="M" k="20" />
- <hkern u1="Q" g2="ampersand.caps" k="10" />
- <hkern u1="Q" g2="quotesingle.caps" k="10" />
- <hkern u1="Q" g2="quotedbl.caps" k="10" />
- <hkern u1="Q" g2="bracketright.caps" k="20" />
- <hkern u1="Q" g2="asterisk.caps" k="10" />
- <hkern u1="Q" g2="question.caps" k="70" />
- <hkern u1="Q" u2="}" k="-30" />
- <hkern u1="R" g2="ampersand.caps" k="10" />
- <hkern u1="R" g2="question.caps" k="40" />
- <hkern u1="R" g2="exclam.caps" k="50" />
- <hkern u1="S" g2="question.caps" k="50" />
- <hkern u1="S" g2="exclam.caps" k="60" />
- <hkern u1="T" g2="ampersand.caps" k="50" />
- <hkern u1="T" g2="exclam.caps" k="30" />
- <hkern u1="U" g2="question.caps" k="30" />
- <hkern u1="V" g2="ampersand.caps" k="70" />
- <hkern u1="V" g2="question.caps" k="20" />
- <hkern u1="V" u2="ẽ" k="50" />
- <hkern u1="V" u2="ẹ" k="50" />
- <hkern u1="V" u2="ạ" k="45" />
- <hkern u1="V" u2="Ạ" k="60" />
- <hkern u1="V" u2="ǻ" k="45" />
- <hkern u1="V" u2="Ǻ" k="60" />
- <hkern u1="V" u2="ǎ" k="45" />
- <hkern u1="V" u2="Ǎ" k="60" />
- <hkern u1="V" u2="ě" k="50" />
- <hkern u1="V" u2="ę" k="50" />
- <hkern u1="V" u2="ė" k="50" />
- <hkern u1="V" u2="ĕ" k="50" />
- <hkern u1="V" u2="ē" k="50" />
- <hkern u1="V" u2="ą" k="45" />
- <hkern u1="V" u2="Ą" k="60" />
- <hkern u1="V" u2="ă" k="45" />
- <hkern u1="V" u2="Ă" k="60" />
- <hkern u1="V" u2="ā" k="45" />
- <hkern u1="V" u2="Ā" k="60" />
- <hkern u1="V" u2="ë" k="50" />
- <hkern u1="V" u2="ê" k="50" />
- <hkern u1="V" u2="é" k="50" />
- <hkern u1="V" u2="è" k="50" />
- <hkern u1="V" u2="å" k="45" />
- <hkern u1="V" u2="ä" k="45" />
- <hkern u1="V" u2="ã" k="45" />
- <hkern u1="V" u2="â" k="45" />
- <hkern u1="V" u2="á" k="45" />
- <hkern u1="V" u2="à" k="45" />
- <hkern u1="V" u2="Å" k="60" />
- <hkern u1="V" u2="Ä" k="60" />
- <hkern u1="V" u2="Ã" k="60" />
- <hkern u1="V" u2="Â" k="60" />
- <hkern u1="V" u2="Á" k="60" />
- <hkern u1="V" u2="À" k="60" />
- <hkern u1="V" u2="e" k="50" />
- <hkern u1="V" u2="a" k="45" />
- <hkern u1="V" u2="A" k="30" />
- <hkern u1="W" g2="ampersand.caps" k="70" />
- <hkern u1="W" g2="question.caps" k="20" />
- <hkern u1="X" g2="ampersand.caps" k="20" />
- <hkern u1="X" g2="periodcentered.caps" k="10" />
- <hkern u1="X" g2="exclam.caps" k="30" />
- <hkern u1="X" u2="–" k="15" />
- <hkern u1="X" u2="-" k="20" />
- <hkern u1="Y" g2="ampersand.caps" k="60" />
- <hkern u1="Y" g2="question.caps" k="20" />
- <hkern u1="Z" g2="question.caps" k="30" />
- <hkern u1="_" u2="∂" k="30" />
- <hkern u1="_" u2="π" k="30" />
- <hkern u1="_" u2="Ə" k="40" />
- <hkern u1="b" g2="asterisk.caps" k="20" />
- <hkern u1="f" g2="asterisk.caps" k="-70" />
- <hkern u1="f" u2=""" k="-50" />
- <hkern u1="h" u2="'" k="50" />
- <hkern u1="m" u2="'" k="50" />
- <hkern u1="n" u2="'" k="50" />
- <hkern u1="o" g2="asterisk.caps" k="20" />
- <hkern u1="p" g2="asterisk.caps" k="20" />
- <hkern u1="s" u2="'" k="40" />
- <hkern u1="u" u2=""" k="40" />
- <hkern u1="À" g2="ampersand.caps" k="20" />
- <hkern u1="À" g2="quotesingle.caps" k="60" />
- <hkern u1="À" g2="quotedbl.caps" k="80" />
- <hkern u1="À" g2="asterisk.caps" k="60" />
- <hkern u1="À" g2="question.caps" k="90" />
- <hkern u1="À" u2="V" k="30" />
- <hkern u1="Á" g2="ampersand.caps" k="20" />
- <hkern u1="Á" g2="quotesingle.caps" k="60" />
- <hkern u1="Á" g2="quotedbl.caps" k="80" />
- <hkern u1="Á" g2="asterisk.caps" k="60" />
- <hkern u1="Á" g2="question.caps" k="90" />
- <hkern u1="Á" u2="V" k="30" />
- <hkern u1="Â" g2="ampersand.caps" k="20" />
- <hkern u1="Â" g2="quotesingle.caps" k="60" />
- <hkern u1="Â" g2="quotedbl.caps" k="80" />
- <hkern u1="Â" g2="asterisk.caps" k="60" />
- <hkern u1="Â" g2="question.caps" k="90" />
- <hkern u1="Â" u2="V" k="30" />
- <hkern u1="Ã" g2="ampersand.caps" k="20" />
- <hkern u1="Ã" g2="quotesingle.caps" k="60" />
- <hkern u1="Ã" g2="quotedbl.caps" k="80" />
- <hkern u1="Ã" g2="asterisk.caps" k="60" />
- <hkern u1="Ã" g2="question.caps" k="90" />
- <hkern u1="Ã" u2="V" k="30" />
- <hkern u1="Ä" g2="ampersand.caps" k="20" />
- <hkern u1="Ä" g2="quotesingle.caps" k="60" />
- <hkern u1="Ä" g2="quotedbl.caps" k="80" />
- <hkern u1="Ä" g2="asterisk.caps" k="60" />
- <hkern u1="Ä" g2="question.caps" k="90" />
- <hkern u1="Ä" u2="V" k="30" />
- <hkern u1="Å" g2="ampersand.caps" k="20" />
- <hkern u1="Å" g2="quotesingle.caps" k="60" />
- <hkern u1="Å" g2="quotedbl.caps" k="80" />
- <hkern u1="Å" g2="asterisk.caps" k="60" />
- <hkern u1="Å" g2="question.caps" k="90" />
- <hkern u1="Å" u2="V" k="30" />
- <hkern u1="Ç" g2="question.caps" k="20" />
- <hkern u1="Ç" g2="exclam.caps" k="40" />
- <hkern u1="Ì" g2="question.caps" k="50" />
- <hkern u1="Ì" g2="exclam.caps" k="20" />
- <hkern u1="Í" g2="question.caps" k="50" />
- <hkern u1="Í" g2="exclam.caps" k="20" />
- <hkern u1="Î" g2="question.caps" k="50" />
- <hkern u1="Î" g2="exclam.caps" k="20" />
- <hkern u1="Ï" g2="question.caps" k="50" />
- <hkern u1="Ï" g2="exclam.caps" k="20" />
- <hkern u1="Ð" g2="ampersand.caps" k="10" />
- <hkern u1="Ð" g2="quotesingle.caps" k="10" />
- <hkern u1="Ð" g2="quotedbl.caps" k="10" />
- <hkern u1="Ð" g2="bracketright.caps" k="20" />
- <hkern u1="Ð" g2="asterisk.caps" k="10" />
- <hkern u1="Ð" g2="question.caps" k="70" />
- <hkern u1="Ð" u2="}" k="-30" />
- <hkern u1="Ñ" g2="question.caps" k="50" />
- <hkern u1="Ñ" g2="exclam.caps" k="20" />
- <hkern u1="Ò" g2="ampersand.caps" k="10" />
- <hkern u1="Ò" g2="quotesingle.caps" k="10" />
- <hkern u1="Ò" g2="quotedbl.caps" k="10" />
- <hkern u1="Ò" g2="bracketright.caps" k="20" />
- <hkern u1="Ò" g2="asterisk.caps" k="10" />
- <hkern u1="Ò" g2="question.caps" k="70" />
- <hkern u1="Ò" u2="}" k="-30" />
- <hkern u1="Ó" g2="ampersand.caps" k="10" />
- <hkern u1="Ó" g2="quotesingle.caps" k="10" />
- <hkern u1="Ó" g2="quotedbl.caps" k="10" />
- <hkern u1="Ó" g2="bracketright.caps" k="20" />
- <hkern u1="Ó" g2="asterisk.caps" k="10" />
- <hkern u1="Ó" g2="question.caps" k="70" />
- <hkern u1="Ó" u2="}" k="-30" />
- <hkern u1="Ô" g2="ampersand.caps" k="10" />
- <hkern u1="Ô" g2="quotesingle.caps" k="10" />
- <hkern u1="Ô" g2="quotedbl.caps" k="10" />
- <hkern u1="Ô" g2="bracketright.caps" k="20" />
- <hkern u1="Ô" g2="asterisk.caps" k="10" />
- <hkern u1="Ô" g2="question.caps" k="70" />
- <hkern u1="Ô" u2="}" k="-30" />
- <hkern u1="Õ" g2="ampersand.caps" k="10" />
- <hkern u1="Õ" g2="quotesingle.caps" k="10" />
- <hkern u1="Õ" g2="quotedbl.caps" k="10" />
- <hkern u1="Õ" g2="bracketright.caps" k="20" />
- <hkern u1="Õ" g2="asterisk.caps" k="10" />
- <hkern u1="Õ" g2="question.caps" k="70" />
- <hkern u1="Õ" u2="}" k="-30" />
- <hkern u1="Ö" g2="ampersand.caps" k="10" />
- <hkern u1="Ö" g2="quotesingle.caps" k="10" />
- <hkern u1="Ö" g2="quotedbl.caps" k="10" />
- <hkern u1="Ö" g2="bracketright.caps" k="20" />
- <hkern u1="Ö" g2="asterisk.caps" k="10" />
- <hkern u1="Ö" g2="question.caps" k="70" />
- <hkern u1="Ö" u2="}" k="-30" />
- <hkern u1="Ø" g2="ampersand.caps" k="10" />
- <hkern u1="Ø" g2="quotesingle.caps" k="10" />
- <hkern u1="Ø" g2="quotedbl.caps" k="10" />
- <hkern u1="Ø" g2="bracketright.caps" k="20" />
- <hkern u1="Ø" g2="asterisk.caps" k="10" />
- <hkern u1="Ø" g2="question.caps" k="70" />
- <hkern u1="Ø" u2="}" k="-30" />
- <hkern u1="Ù" g2="question.caps" k="30" />
- <hkern u1="Ú" g2="question.caps" k="30" />
- <hkern u1="Û" g2="question.caps" k="30" />
- <hkern u1="Ü" g2="question.caps" k="30" />
- <hkern u1="Ý" g2="ampersand.caps" k="60" />
- <hkern u1="Ý" g2="question.caps" k="20" />
- <hkern u1="Þ" g2="x.sc" k="10" />
- <hkern u1="Þ" g2="m.sc" k="10" />
- <hkern u1="Þ" u2="_" k="40" />
- <hkern u1="ß" g2="quotesingle.sc" k="20" />
- <hkern u1="ß" g2="quotedbl.sc" k="20" />
- <hkern u1="ß" g2="asterisk.sc" k="20" />
- <hkern u1="ß" g2="question.sc" k="20" />
- <hkern u1="ß" g2="exclam.sc" k="40" />
- <hkern u1="ß" g2="bracketright.sc" k="20" />
- <hkern u1="ß" g2="braceright.sc" k="30" />
- <hkern u1="ð" g2="ampersand.caps" k="10" />
- <hkern u1="ð" g2="quotesingle.caps" k="10" />
- <hkern u1="ð" g2="quotedbl.caps" k="10" />
- <hkern u1="ð" g2="bracketright.caps" k="20" />
- <hkern u1="ð" g2="asterisk.caps" k="10" />
- <hkern u1="ð" g2="question.caps" k="70" />
- <hkern u1="ð" u2="}" k="-30" />
- <hkern u1="ñ" u2="'" k="50" />
- <hkern u1="ò" g2="asterisk.caps" k="20" />
- <hkern u1="ó" g2="asterisk.caps" k="20" />
- <hkern u1="ô" g2="asterisk.caps" k="20" />
- <hkern u1="õ" g2="asterisk.caps" k="20" />
- <hkern u1="ö" g2="asterisk.caps" k="20" />
- <hkern u1="ø" g2="asterisk.caps" k="20" />
- <hkern u1="ù" u2=""" k="40" />
- <hkern u1="ú" u2=""" k="40" />
- <hkern u1="û" u2=""" k="40" />
- <hkern u1="ü" u2=""" k="40" />
- <hkern u1="þ" g2="asterisk.caps" k="20" />
- <hkern u1="Ā" g2="ampersand.caps" k="20" />
- <hkern u1="Ā" g2="quotesingle.caps" k="60" />
- <hkern u1="Ā" g2="quotedbl.caps" k="80" />
- <hkern u1="Ā" g2="asterisk.caps" k="60" />
- <hkern u1="Ā" g2="question.caps" k="90" />
- <hkern u1="Ā" u2="V" k="30" />
- <hkern u1="Ă" g2="ampersand.caps" k="20" />
- <hkern u1="Ă" g2="quotesingle.caps" k="60" />
- <hkern u1="Ă" g2="quotedbl.caps" k="80" />
- <hkern u1="Ă" g2="asterisk.caps" k="60" />
- <hkern u1="Ă" g2="question.caps" k="90" />
- <hkern u1="Ă" u2="V" k="30" />
- <hkern u1="Ą" g2="ampersand.caps" k="20" />
- <hkern u1="Ą" g2="quotesingle.caps" k="60" />
- <hkern u1="Ą" g2="quotedbl.caps" k="80" />
- <hkern u1="Ą" g2="asterisk.caps" k="60" />
- <hkern u1="Ą" g2="question.caps" k="90" />
- <hkern u1="Ą" u2="V" k="30" />
- <hkern u1="Ć" g2="question.caps" k="20" />
- <hkern u1="Ć" g2="exclam.caps" k="40" />
- <hkern u1="Ĉ" g2="question.caps" k="20" />
- <hkern u1="Ĉ" g2="exclam.caps" k="40" />
- <hkern u1="Ċ" g2="question.caps" k="20" />
- <hkern u1="Ċ" g2="exclam.caps" k="40" />
- <hkern u1="Č" g2="question.caps" k="20" />
- <hkern u1="Č" g2="exclam.caps" k="40" />
- <hkern u1="Ď" g2="ampersand.caps" k="10" />
- <hkern u1="Ď" g2="quotesingle.caps" k="10" />
- <hkern u1="Ď" g2="quotedbl.caps" k="10" />
- <hkern u1="Ď" g2="bracketright.caps" k="20" />
- <hkern u1="Ď" g2="asterisk.caps" k="10" />
- <hkern u1="Ď" g2="question.caps" k="70" />
- <hkern u1="Ď" u2="}" k="-30" />
- <hkern u1="Đ" g2="ampersand.caps" k="10" />
- <hkern u1="Đ" g2="quotesingle.caps" k="10" />
- <hkern u1="Đ" g2="quotedbl.caps" k="10" />
- <hkern u1="Đ" g2="bracketright.caps" k="20" />
- <hkern u1="Đ" g2="asterisk.caps" k="10" />
- <hkern u1="Đ" g2="question.caps" k="70" />
- <hkern u1="Đ" u2="}" k="-30" />
- <hkern u1="Ĝ" g2="question.caps" k="20" />
- <hkern u1="Ĝ" g2="exclam.caps" k="40" />
- <hkern u1="Ğ" g2="question.caps" k="20" />
- <hkern u1="Ğ" g2="exclam.caps" k="40" />
- <hkern u1="Ġ" g2="question.caps" k="20" />
- <hkern u1="Ġ" g2="exclam.caps" k="40" />
- <hkern u1="Ģ" g2="question.caps" k="20" />
- <hkern u1="Ģ" g2="exclam.caps" k="40" />
- <hkern u1="Ĥ" g2="question.caps" k="50" />
- <hkern u1="Ĥ" g2="exclam.caps" k="20" />
- <hkern u1="ĥ" u2="'" k="50" />
- <hkern u1="Ħ" g2="question.caps" k="50" />
- <hkern u1="Ħ" g2="exclam.caps" k="20" />
- <hkern u1="ħ" u2="'" k="50" />
- <hkern u1="Ĩ" g2="question.caps" k="50" />
- <hkern u1="Ĩ" g2="exclam.caps" k="20" />
- <hkern u1="Ī" g2="question.caps" k="50" />
- <hkern u1="Ī" g2="exclam.caps" k="20" />
- <hkern u1="Ĭ" g2="question.caps" k="50" />
- <hkern u1="Ĭ" g2="exclam.caps" k="20" />
- <hkern u1="Į" g2="question.caps" k="50" />
- <hkern u1="Į" g2="exclam.caps" k="20" />
- <hkern u1="İ" g2="question.caps" k="50" />
- <hkern u1="İ" g2="exclam.caps" k="20" />
- <hkern u1="IJ" g2="question.caps" k="30" />
- <hkern u1="IJ" g2="exclam.caps" k="20" />
- <hkern u1="Ĵ" g2="question.caps" k="30" />
- <hkern u1="Ĵ" g2="exclam.caps" k="20" />
- <hkern u1="Ķ" g2="ampersand.caps" k="40" />
- <hkern u1="Ķ" g2="question.caps" k="40" />
- <hkern u1="Ķ" g2="exclam.caps" k="20" />
- <hkern u1="Ĺ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ĺ" g2="quotedbl.caps" k="60" />
- <hkern u1="Ĺ" g2="asterisk.caps" k="80" />
- <hkern u1="Ĺ" g2="periodcentered.caps" k="20" />
- <hkern u1="Ĺ" g2="question.caps" k="80" />
- <hkern u1="Ĺ" g2="exclam.caps" k="40" />
- <hkern u1="Ļ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ļ" g2="quotedbl.caps" k="60" />
- <hkern u1="Ļ" g2="asterisk.caps" k="80" />
- <hkern u1="Ļ" g2="periodcentered.caps" k="20" />
- <hkern u1="Ļ" g2="question.caps" k="80" />
- <hkern u1="Ļ" g2="exclam.caps" k="40" />
- <hkern u1="Ľ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ľ" g2="quotedbl.caps" k="60" />
- <hkern u1="Ľ" g2="asterisk.caps" k="80" />
- <hkern u1="Ľ" g2="periodcentered.caps" k="20" />
- <hkern u1="Ľ" g2="question.caps" k="80" />
- <hkern u1="Ľ" g2="exclam.caps" k="40" />
- <hkern u1="Ŀ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ŀ" g2="quotedbl.caps" k="60" />
- <hkern u1="Ŀ" g2="asterisk.caps" k="80" />
- <hkern u1="Ŀ" g2="periodcentered.caps" k="20" />
- <hkern u1="Ŀ" g2="question.caps" k="80" />
- <hkern u1="Ŀ" g2="exclam.caps" k="40" />
- <hkern u1="Ł" g2="quotesingle.caps" k="60" />
- <hkern u1="Ł" g2="quotedbl.caps" k="60" />
- <hkern u1="Ł" g2="asterisk.caps" k="80" />
- <hkern u1="Ł" g2="periodcentered.caps" k="20" />
- <hkern u1="Ł" g2="question.caps" k="80" />
- <hkern u1="Ł" g2="exclam.caps" k="40" />
- <hkern u1="Ń" g2="question.caps" k="50" />
- <hkern u1="Ń" g2="exclam.caps" k="20" />
- <hkern u1="ń" u2="'" k="50" />
- <hkern u1="Ņ" g2="question.caps" k="50" />
- <hkern u1="Ņ" g2="exclam.caps" k="20" />
- <hkern u1="ņ" u2="'" k="50" />
- <hkern u1="Ň" g2="question.caps" k="50" />
- <hkern u1="Ň" g2="exclam.caps" k="20" />
- <hkern u1="ň" u2="'" k="50" />
- <hkern u1="ʼn" u2="'" k="50" />
- <hkern u1="Ŋ" g2="question.caps" k="50" />
- <hkern u1="Ŋ" g2="exclam.caps" k="20" />
- <hkern u1="ŋ" u2="'" k="50" />
- <hkern u1="Ō" g2="ampersand.caps" k="10" />
- <hkern u1="Ō" g2="quotesingle.caps" k="10" />
- <hkern u1="Ō" g2="quotedbl.caps" k="10" />
- <hkern u1="Ō" g2="bracketright.caps" k="20" />
- <hkern u1="Ō" g2="asterisk.caps" k="10" />
- <hkern u1="Ō" g2="question.caps" k="70" />
- <hkern u1="Ō" u2="}" k="-30" />
- <hkern u1="ō" g2="asterisk.caps" k="20" />
- <hkern u1="Ŏ" g2="ampersand.caps" k="10" />
- <hkern u1="Ŏ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ŏ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ŏ" g2="bracketright.caps" k="20" />
- <hkern u1="Ŏ" g2="asterisk.caps" k="10" />
- <hkern u1="Ŏ" g2="question.caps" k="70" />
- <hkern u1="Ŏ" u2="}" k="-30" />
- <hkern u1="ŏ" g2="asterisk.caps" k="20" />
- <hkern u1="Ő" g2="ampersand.caps" k="10" />
- <hkern u1="Ő" g2="quotesingle.caps" k="10" />
- <hkern u1="Ő" g2="quotedbl.caps" k="10" />
- <hkern u1="Ő" g2="bracketright.caps" k="20" />
- <hkern u1="Ő" g2="asterisk.caps" k="10" />
- <hkern u1="Ő" g2="question.caps" k="70" />
- <hkern u1="Ő" u2="}" k="-30" />
- <hkern u1="ő" g2="asterisk.caps" k="20" />
- <hkern u1="Ŕ" g2="ampersand.caps" k="10" />
- <hkern u1="Ŕ" g2="question.caps" k="40" />
- <hkern u1="Ŕ" g2="exclam.caps" k="50" />
- <hkern u1="Ŗ" g2="ampersand.caps" k="10" />
- <hkern u1="Ŗ" g2="question.caps" k="40" />
- <hkern u1="Ŗ" g2="exclam.caps" k="50" />
- <hkern u1="Ř" g2="ampersand.caps" k="10" />
- <hkern u1="Ř" g2="question.caps" k="40" />
- <hkern u1="Ř" g2="exclam.caps" k="50" />
- <hkern u1="Ś" g2="question.caps" k="50" />
- <hkern u1="Ś" g2="exclam.caps" k="60" />
- <hkern u1="ś" u2="'" k="40" />
- <hkern u1="Ŝ" g2="question.caps" k="50" />
- <hkern u1="Ŝ" g2="exclam.caps" k="60" />
- <hkern u1="ŝ" u2="'" k="40" />
- <hkern u1="Ş" g2="question.caps" k="50" />
- <hkern u1="Ş" g2="exclam.caps" k="60" />
- <hkern u1="ş" u2="'" k="40" />
- <hkern u1="Š" g2="question.caps" k="50" />
- <hkern u1="Š" g2="exclam.caps" k="60" />
- <hkern u1="š" u2="'" k="40" />
- <hkern u1="Ţ" g2="ampersand.caps" k="50" />
- <hkern u1="Ţ" g2="exclam.caps" k="30" />
- <hkern u1="Ť" g2="ampersand.caps" k="50" />
- <hkern u1="Ť" g2="exclam.caps" k="30" />
- <hkern u1="Ŧ" g2="ampersand.caps" k="50" />
- <hkern u1="Ŧ" g2="exclam.caps" k="30" />
- <hkern u1="Ũ" g2="question.caps" k="30" />
- <hkern u1="ũ" u2=""" k="40" />
- <hkern u1="Ū" g2="question.caps" k="30" />
- <hkern u1="ū" u2=""" k="40" />
- <hkern u1="Ŭ" g2="question.caps" k="30" />
- <hkern u1="ŭ" u2=""" k="40" />
- <hkern u1="Ů" g2="question.caps" k="30" />
- <hkern u1="ů" u2=""" k="40" />
- <hkern u1="Ű" g2="question.caps" k="30" />
- <hkern u1="ű" u2=""" k="40" />
- <hkern u1="Ų" g2="question.caps" k="30" />
- <hkern u1="ų" u2=""" k="40" />
- <hkern u1="Ŵ" g2="ampersand.caps" k="70" />
- <hkern u1="Ŵ" g2="question.caps" k="20" />
- <hkern u1="Ŷ" g2="ampersand.caps" k="60" />
- <hkern u1="Ŷ" g2="question.caps" k="20" />
- <hkern u1="Ÿ" g2="ampersand.caps" k="60" />
- <hkern u1="Ÿ" g2="question.caps" k="20" />
- <hkern u1="Ź" g2="question.caps" k="30" />
- <hkern u1="Ż" g2="question.caps" k="30" />
- <hkern u1="Ž" g2="question.caps" k="30" />
- <hkern u1="Ə" g2="ampersand.caps" k="10" />
- <hkern u1="Ə" g2="quotesingle.caps" k="10" />
- <hkern u1="Ə" g2="quotedbl.caps" k="10" />
- <hkern u1="Ə" g2="bracketright.caps" k="20" />
- <hkern u1="Ə" g2="asterisk.caps" k="10" />
- <hkern u1="Ə" g2="question.caps" k="70" />
- <hkern u1="Ə" u2="}" k="-30" />
- <hkern u1="Ɲ" g2="question.caps" k="50" />
- <hkern u1="Ɲ" g2="exclam.caps" k="20" />
- <hkern u1="Ǎ" g2="ampersand.caps" k="20" />
- <hkern u1="Ǎ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ǎ" g2="quotedbl.caps" k="80" />
- <hkern u1="Ǎ" g2="asterisk.caps" k="60" />
- <hkern u1="Ǎ" g2="question.caps" k="90" />
- <hkern u1="Ǎ" u2="V" k="30" />
- <hkern u1="Ǐ" g2="question.caps" k="50" />
- <hkern u1="Ǐ" g2="exclam.caps" k="20" />
- <hkern u1="Ǒ" g2="ampersand.caps" k="10" />
- <hkern u1="Ǒ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ǒ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ǒ" g2="bracketright.caps" k="20" />
- <hkern u1="Ǒ" g2="asterisk.caps" k="10" />
- <hkern u1="Ǒ" g2="question.caps" k="70" />
- <hkern u1="Ǒ" u2="}" k="-30" />
- <hkern u1="ǒ" g2="asterisk.caps" k="20" />
- <hkern u1="Ǔ" g2="question.caps" k="30" />
- <hkern u1="ǔ" u2=""" k="40" />
- <hkern u1="Ǖ" g2="question.caps" k="30" />
- <hkern u1="ǖ" u2=""" k="40" />
- <hkern u1="Ǘ" g2="question.caps" k="30" />
- <hkern u1="ǘ" u2=""" k="40" />
- <hkern u1="Ǚ" g2="question.caps" k="30" />
- <hkern u1="ǚ" u2=""" k="40" />
- <hkern u1="Ǜ" g2="question.caps" k="30" />
- <hkern u1="ǜ" u2=""" k="40" />
- <hkern u1="Ǧ" g2="question.caps" k="20" />
- <hkern u1="Ǧ" g2="exclam.caps" k="40" />
- <hkern u1="Ǫ" g2="ampersand.caps" k="10" />
- <hkern u1="Ǫ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ǫ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ǫ" g2="bracketright.caps" k="20" />
- <hkern u1="Ǫ" g2="asterisk.caps" k="10" />
- <hkern u1="Ǫ" g2="question.caps" k="70" />
- <hkern u1="Ǫ" u2="}" k="-30" />
- <hkern u1="ǫ" g2="asterisk.caps" k="20" />
- <hkern u1="Ǵ" g2="question.caps" k="20" />
- <hkern u1="Ǵ" g2="exclam.caps" k="40" />
- <hkern u1="Ǻ" g2="ampersand.caps" k="20" />
- <hkern u1="Ǻ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ǻ" g2="quotedbl.caps" k="80" />
- <hkern u1="Ǻ" g2="asterisk.caps" k="60" />
- <hkern u1="Ǻ" g2="question.caps" k="90" />
- <hkern u1="Ǻ" u2="V" k="30" />
- <hkern u1="Ǿ" g2="ampersand.caps" k="10" />
- <hkern u1="Ǿ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ǿ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ǿ" g2="bracketright.caps" k="20" />
- <hkern u1="Ǿ" g2="asterisk.caps" k="10" />
- <hkern u1="Ǿ" g2="question.caps" k="70" />
- <hkern u1="Ǿ" u2="}" k="-30" />
- <hkern u1="ǿ" g2="asterisk.caps" k="20" />
- <hkern u1="Ș" g2="question.caps" k="50" />
- <hkern u1="Ș" g2="exclam.caps" k="60" />
- <hkern u1="ș" u2="'" k="40" />
- <hkern u1="Ț" g2="ampersand.caps" k="50" />
- <hkern u1="Ț" g2="exclam.caps" k="30" />
- <hkern u1="Ȳ" g2="ampersand.caps" k="60" />
- <hkern u1="Ȳ" g2="question.caps" k="20" />
- <hkern u1="ə" g2="asterisk.caps" k="20" />
- <hkern u1="ɲ" u2="'" k="50" />
- <hkern u1="Ḍ" g2="ampersand.caps" k="10" />
- <hkern u1="Ḍ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ḍ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ḍ" g2="bracketright.caps" k="20" />
- <hkern u1="Ḍ" g2="asterisk.caps" k="10" />
- <hkern u1="Ḍ" g2="question.caps" k="70" />
- <hkern u1="Ḍ" u2="}" k="-30" />
- <hkern u1="Ḥ" g2="question.caps" k="50" />
- <hkern u1="Ḥ" g2="exclam.caps" k="20" />
- <hkern u1="ḥ" u2="'" k="50" />
- <hkern u1="Ṅ" g2="question.caps" k="50" />
- <hkern u1="Ṅ" g2="exclam.caps" k="20" />
- <hkern u1="ṅ" u2="'" k="50" />
- <hkern u1="Ṛ" g2="ampersand.caps" k="10" />
- <hkern u1="Ṛ" g2="question.caps" k="40" />
- <hkern u1="Ṛ" g2="exclam.caps" k="50" />
- <hkern u1="Ṣ" g2="question.caps" k="50" />
- <hkern u1="Ṣ" g2="exclam.caps" k="60" />
- <hkern u1="ṣ" u2="'" k="40" />
- <hkern u1="Ṭ" g2="ampersand.caps" k="50" />
- <hkern u1="Ṭ" g2="exclam.caps" k="30" />
- <hkern u1="Ẁ" g2="ampersand.caps" k="70" />
- <hkern u1="Ẁ" g2="question.caps" k="20" />
- <hkern u1="Ẃ" g2="ampersand.caps" k="70" />
- <hkern u1="Ẃ" g2="question.caps" k="20" />
- <hkern u1="Ẅ" g2="ampersand.caps" k="70" />
- <hkern u1="Ẅ" g2="question.caps" k="20" />
- <hkern u1="Ẓ" g2="question.caps" k="30" />
- <hkern u1="ẞ" g2="question.caps" k="50" />
- <hkern u1="ẞ" g2="exclam.caps" k="60" />
- <hkern u1="Ạ" g2="ampersand.caps" k="20" />
- <hkern u1="Ạ" g2="quotesingle.caps" k="60" />
- <hkern u1="Ạ" g2="quotedbl.caps" k="80" />
- <hkern u1="Ạ" g2="asterisk.caps" k="60" />
- <hkern u1="Ạ" g2="question.caps" k="90" />
- <hkern u1="Ạ" u2="V" k="30" />
- <hkern u1="Ị" g2="question.caps" k="50" />
- <hkern u1="Ị" g2="exclam.caps" k="20" />
- <hkern u1="Ọ" g2="ampersand.caps" k="10" />
- <hkern u1="Ọ" g2="quotesingle.caps" k="10" />
- <hkern u1="Ọ" g2="quotedbl.caps" k="10" />
- <hkern u1="Ọ" g2="bracketright.caps" k="20" />
- <hkern u1="Ọ" g2="asterisk.caps" k="10" />
- <hkern u1="Ọ" g2="question.caps" k="70" />
- <hkern u1="Ọ" u2="}" k="-30" />
- <hkern u1="ọ" g2="asterisk.caps" k="20" />
- <hkern u1="Ụ" g2="question.caps" k="30" />
- <hkern u1="ụ" u2=""" k="40" />
- <hkern u1="Ỳ" g2="ampersand.caps" k="60" />
- <hkern u1="Ỳ" g2="question.caps" k="20" />
- <hkern u1="Ỹ" g2="ampersand.caps" k="60" />
- <hkern u1="Ỹ" g2="question.caps" k="20" />
- <hkern u1="–" g2="x.sc" k="10" />
- <hkern u1="–" u2="∑" k="30" />
- <hkern u1="–" u2="∏" k="5" />
- <hkern u1="–" u2="x" k="5" />
- <hkern u1="–" u2="X" k="15" />
- <hkern u1="—" u2="X" k="15" />
- <hkern u1="⁄" g2="six.denominator" k="240" />
- <hkern u1="⁄" g2="four.denominator" k="260" />
- <hkern u1="⁄" g2="one.denominator" k="220" />
- <hkern u1="⁄" g2="zero.denominator" k="250" />
- <hkern g1="c_h" u2="'" k="50" />
- <hkern g1="s_h" u2="'" k="50" />
- <hkern g1="a.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="a.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="a.sc" g2="asterisk.sc" k="60" />
- <hkern g1="a.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="a.sc" g2="question.sc" k="40" />
- <hkern g1="a.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="a.sc" g2="braceleft.sc" k="10" />
- <hkern g1="aacute.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="aacute.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="aacute.sc" g2="asterisk.sc" k="60" />
- <hkern g1="aacute.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="aacute.sc" g2="question.sc" k="40" />
- <hkern g1="aacute.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="aacute.sc" g2="braceleft.sc" k="10" />
- <hkern g1="abreve.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="abreve.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="abreve.sc" g2="asterisk.sc" k="60" />
- <hkern g1="abreve.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="abreve.sc" g2="question.sc" k="40" />
- <hkern g1="abreve.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="abreve.sc" g2="braceleft.sc" k="10" />
- <hkern g1="acaron.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="acaron.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="acaron.sc" g2="asterisk.sc" k="60" />
- <hkern g1="acaron.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="acaron.sc" g2="question.sc" k="40" />
- <hkern g1="acaron.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="acaron.sc" g2="braceleft.sc" k="10" />
- <hkern g1="acircumflex.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="acircumflex.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="acircumflex.sc" g2="asterisk.sc" k="60" />
- <hkern g1="acircumflex.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="acircumflex.sc" g2="question.sc" k="40" />
- <hkern g1="acircumflex.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="acircumflex.sc" g2="braceleft.sc" k="10" />
- <hkern g1="adieresis.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="adieresis.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="adieresis.sc" g2="asterisk.sc" k="60" />
- <hkern g1="adieresis.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="adieresis.sc" g2="question.sc" k="40" />
- <hkern g1="adieresis.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="adieresis.sc" g2="braceleft.sc" k="10" />
- <hkern g1="adotbelow.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="adotbelow.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="adotbelow.sc" g2="asterisk.sc" k="60" />
- <hkern g1="adotbelow.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="adotbelow.sc" g2="question.sc" k="40" />
- <hkern g1="adotbelow.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="adotbelow.sc" g2="braceleft.sc" k="10" />
- <hkern g1="agrave.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="agrave.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="agrave.sc" g2="asterisk.sc" k="60" />
- <hkern g1="agrave.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="agrave.sc" g2="question.sc" k="40" />
- <hkern g1="agrave.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="agrave.sc" g2="braceleft.sc" k="10" />
- <hkern g1="amacron.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="amacron.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="amacron.sc" g2="asterisk.sc" k="60" />
- <hkern g1="amacron.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="amacron.sc" g2="question.sc" k="40" />
- <hkern g1="amacron.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="amacron.sc" g2="braceleft.sc" k="10" />
- <hkern g1="aogonek.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="aogonek.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="aogonek.sc" g2="asterisk.sc" k="60" />
- <hkern g1="aogonek.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="aogonek.sc" g2="question.sc" k="40" />
- <hkern g1="aogonek.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="aogonek.sc" g2="braceleft.sc" k="10" />
- <hkern g1="aring.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="aring.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="aring.sc" g2="asterisk.sc" k="60" />
- <hkern g1="aring.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="aring.sc" g2="question.sc" k="40" />
- <hkern g1="aring.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="aring.sc" g2="braceleft.sc" k="10" />
- <hkern g1="aringacute.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="aringacute.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="aringacute.sc" g2="asterisk.sc" k="60" />
- <hkern g1="aringacute.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="aringacute.sc" g2="question.sc" k="40" />
- <hkern g1="aringacute.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="aringacute.sc" g2="braceleft.sc" k="10" />
- <hkern g1="atilde.sc" g2="quotesingle.sc" k="40" />
- <hkern g1="atilde.sc" g2="quotedbl.sc" k="40" />
- <hkern g1="atilde.sc" g2="asterisk.sc" k="60" />
- <hkern g1="atilde.sc" g2="periodcentered.sc" k="20" />
- <hkern g1="atilde.sc" g2="question.sc" k="40" />
- <hkern g1="atilde.sc" g2="exclamdown.sc" k="40" />
- <hkern g1="atilde.sc" g2="braceleft.sc" k="10" />
- <hkern g1="b.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="b.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="b.sc" g2="asterisk.sc" k="30" />
- <hkern g1="b.sc" g2="exclam.sc" k="50" />
- <hkern g1="b.sc" g2="x.sc" k="10" />
- <hkern g1="b.sc" g2="m.sc" k="5" />
- <hkern g1="b.sc" u2="™" k="60" />
- <hkern g1="c.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="c.sc" g2="parenright.sc" k="-30" />
- <hkern g1="cacute.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="cacute.sc" g2="parenright.sc" k="-30" />
- <hkern g1="ccaron.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="ccaron.sc" g2="parenright.sc" k="-30" />
- <hkern g1="ccedilla.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="ccedilla.sc" g2="parenright.sc" k="-30" />
- <hkern g1="ccircumflex.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="ccircumflex.sc" g2="parenright.sc" k="-30" />
- <hkern g1="cdotaccent.sc" g2="periodcentered.sc" k="-10" />
- <hkern g1="cdotaccent.sc" g2="parenright.sc" k="-30" />
- <hkern g1="d.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="d.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="d.sc" g2="asterisk.sc" k="20" />
- <hkern g1="d.sc" g2="exclam.sc" k="30" />
- <hkern g1="d.sc" g2="bracketright.sc" k="10" />
- <hkern g1="d.sc" g2="braceright.sc" k="30" />
- <hkern g1="d.sc" g2="parenright.sc" k="30" />
- <hkern g1="eth.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="eth.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="eth.sc" g2="asterisk.sc" k="20" />
- <hkern g1="eth.sc" g2="exclam.sc" k="30" />
- <hkern g1="eth.sc" g2="bracketright.sc" k="10" />
- <hkern g1="eth.sc" g2="braceright.sc" k="30" />
- <hkern g1="eth.sc" g2="parenright.sc" k="30" />
- <hkern g1="dcaron.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="dcaron.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="dcaron.sc" g2="asterisk.sc" k="20" />
- <hkern g1="dcaron.sc" g2="exclam.sc" k="30" />
- <hkern g1="dcaron.sc" g2="bracketright.sc" k="10" />
- <hkern g1="dcaron.sc" g2="braceright.sc" k="30" />
- <hkern g1="dcaron.sc" g2="parenright.sc" k="30" />
- <hkern g1="dcroat.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="dcroat.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="dcroat.sc" g2="asterisk.sc" k="20" />
- <hkern g1="dcroat.sc" g2="exclam.sc" k="30" />
- <hkern g1="dcroat.sc" g2="bracketright.sc" k="10" />
- <hkern g1="dcroat.sc" g2="braceright.sc" k="30" />
- <hkern g1="dcroat.sc" g2="parenright.sc" k="30" />
- <hkern g1="ddotbelow.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="ddotbelow.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="ddotbelow.sc" g2="asterisk.sc" k="20" />
- <hkern g1="ddotbelow.sc" g2="exclam.sc" k="30" />
- <hkern g1="ddotbelow.sc" g2="bracketright.sc" k="10" />
- <hkern g1="ddotbelow.sc" g2="braceright.sc" k="30" />
- <hkern g1="ddotbelow.sc" g2="parenright.sc" k="30" />
- <hkern g1="schwa.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="schwa.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="schwa.sc" g2="asterisk.sc" k="20" />
- <hkern g1="schwa.sc" g2="exclam.sc" k="30" />
- <hkern g1="schwa.sc" g2="bracketright.sc" k="10" />
- <hkern g1="schwa.sc" g2="braceright.sc" k="30" />
- <hkern g1="schwa.sc" g2="parenright.sc" k="30" />
- <hkern g1="f.sc" g2="m.sc" k="20" />
- <hkern g1="g.sc" g2="exclam.sc" k="30" />
- <hkern g1="gacute.sc" g2="exclam.sc" k="30" />
- <hkern g1="gbreve.sc" g2="exclam.sc" k="30" />
- <hkern g1="gcaron.sc" g2="exclam.sc" k="30" />
- <hkern g1="gcircumflex.sc" g2="exclam.sc" k="30" />
- <hkern g1="gcommaaccent.sc" g2="exclam.sc" k="30" />
- <hkern g1="gdotaccent.sc" g2="exclam.sc" k="30" />
- <hkern g1="h.sc" g2="exclam.sc" k="50" />
- <hkern g1="hbar.sc" g2="exclam.sc" k="50" />
- <hkern g1="hcircumflex.sc" g2="exclam.sc" k="50" />
- <hkern g1="hdotbelow.sc" g2="exclam.sc" k="50" />
- <hkern g1="i.sc" g2="exclam.sc" k="50" />
- <hkern g1="dotlessi.sc" g2="exclam.sc" k="50" />
- <hkern g1="iacute.sc" g2="exclam.sc" k="50" />
- <hkern g1="ibreve.sc" g2="exclam.sc" k="50" />
- <hkern g1="icaron.sc" g2="exclam.sc" k="50" />
- <hkern g1="icircumflex.sc" g2="exclam.sc" k="50" />
- <hkern g1="idieresis.sc" g2="exclam.sc" k="50" />
- <hkern g1="idotbelow.sc" g2="exclam.sc" k="50" />
- <hkern g1="igrave.sc" g2="exclam.sc" k="50" />
- <hkern g1="imacron.sc" g2="exclam.sc" k="50" />
- <hkern g1="iogonek.sc" g2="exclam.sc" k="50" />
- <hkern g1="itilde.sc" g2="exclam.sc" k="50" />
- <hkern g1="k.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="k.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="k.sc" g2="asterisk.sc" k="20" />
- <hkern g1="k.sc" g2="question.sc" k="30" />
- <hkern g1="k.sc" g2="exclam.sc" k="60" />
- <hkern g1="k.sc" g2="bracketright.sc" k="20" />
- <hkern g1="k.sc" g2="braceright.sc" k="20" />
- <hkern g1="kcommaaccent.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="kcommaaccent.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="kcommaaccent.sc" g2="asterisk.sc" k="20" />
- <hkern g1="kcommaaccent.sc" g2="question.sc" k="30" />
- <hkern g1="kcommaaccent.sc" g2="exclam.sc" k="60" />
- <hkern g1="kcommaaccent.sc" g2="bracketright.sc" k="20" />
- <hkern g1="kcommaaccent.sc" g2="braceright.sc" k="20" />
- <hkern g1="kgreenlandic.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="kgreenlandic.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="kgreenlandic.sc" g2="asterisk.sc" k="20" />
- <hkern g1="kgreenlandic.sc" g2="question.sc" k="30" />
- <hkern g1="kgreenlandic.sc" g2="exclam.sc" k="60" />
- <hkern g1="kgreenlandic.sc" g2="bracketright.sc" k="20" />
- <hkern g1="kgreenlandic.sc" g2="braceright.sc" k="20" />
- <hkern g1="l.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="l.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="l.sc" g2="asterisk.sc" k="130" />
- <hkern g1="l.sc" g2="question.sc" k="60" />
- <hkern g1="l.sc" g2="exclam.sc" k="40" />
- <hkern g1="l.sc" g2="parenright.sc" k="20" />
- <hkern g1="lacute.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="lacute.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="lacute.sc" g2="asterisk.sc" k="130" />
- <hkern g1="lacute.sc" g2="question.sc" k="60" />
- <hkern g1="lacute.sc" g2="exclam.sc" k="40" />
- <hkern g1="lacute.sc" g2="parenright.sc" k="20" />
- <hkern g1="lcaron.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="lcaron.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="lcaron.sc" g2="asterisk.sc" k="130" />
- <hkern g1="lcaron.sc" g2="question.sc" k="60" />
- <hkern g1="lcaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="lcaron.sc" g2="parenright.sc" k="20" />
- <hkern g1="lcommaaccent.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="lcommaaccent.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="lcommaaccent.sc" g2="asterisk.sc" k="130" />
- <hkern g1="lcommaaccent.sc" g2="question.sc" k="60" />
- <hkern g1="lcommaaccent.sc" g2="exclam.sc" k="40" />
- <hkern g1="lcommaaccent.sc" g2="parenright.sc" k="20" />
- <hkern g1="ldot.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="ldot.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="ldot.sc" g2="asterisk.sc" k="130" />
- <hkern g1="ldot.sc" g2="question.sc" k="60" />
- <hkern g1="ldot.sc" g2="exclam.sc" k="40" />
- <hkern g1="ldot.sc" g2="parenright.sc" k="20" />
- <hkern g1="ldot.sc" g2="germandbls.sc" k="-20" />
- <hkern g1="ldot.sc" g2="rdotbelow.sc" k="-20" />
- <hkern g1="ldot.sc" g2="rcommaaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="rcaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="racute.sc" k="-20" />
- <hkern g1="ldot.sc" g2="r.sc" k="-20" />
- <hkern g1="ldot.sc" g2="thorn.sc" k="-20" />
- <hkern g1="ldot.sc" g2="p.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ntilde.sc" k="-20" />
- <hkern g1="ldot.sc" g2="eng.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ndotaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ncommaaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ncaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="nacute.sc" k="-20" />
- <hkern g1="ldot.sc" g2="n.sc" k="-20" />
- <hkern g1="ldot.sc" g2="lslash.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ldot.sc" k="-20" />
- <hkern g1="ldot.sc" g2="lcommaaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="lcaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="lacute.sc" k="-20" />
- <hkern g1="ldot.sc" g2="l.sc" k="-20" />
- <hkern g1="ldot.sc" g2="kgreenlandic.sc" k="-20" />
- <hkern g1="ldot.sc" g2="kcommaaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="k.sc" k="-20" />
- <hkern g1="ldot.sc" g2="itilde.sc" k="-20" />
- <hkern g1="ldot.sc" g2="iogonek.sc" k="-20" />
- <hkern g1="ldot.sc" g2="imacron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ij.sc" k="-20" />
- <hkern g1="ldot.sc" g2="igrave.sc" k="-20" />
- <hkern g1="ldot.sc" g2="idotbelow.sc" k="-20" />
- <hkern g1="ldot.sc" g2="idotaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="idieresis.sc" k="-20" />
- <hkern g1="ldot.sc" g2="icircumflex.sc" k="-20" />
- <hkern g1="ldot.sc" g2="icaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ibreve.sc" k="-20" />
- <hkern g1="ldot.sc" g2="iacute.sc" k="-20" />
- <hkern g1="ldot.sc" g2="dotlessi.sc" k="-20" />
- <hkern g1="ldot.sc" g2="i.sc" k="-20" />
- <hkern g1="ldot.sc" g2="hdotbelow.sc" k="-20" />
- <hkern g1="ldot.sc" g2="hcircumflex.sc" k="-20" />
- <hkern g1="ldot.sc" g2="hbar.sc" k="-20" />
- <hkern g1="ldot.sc" g2="h.sc" k="-20" />
- <hkern g1="ldot.sc" g2="f.sc" k="-20" />
- <hkern g1="ldot.sc" g2="etilde.sc" k="-20" />
- <hkern g1="ldot.sc" g2="eogonek.sc" k="-20" />
- <hkern g1="ldot.sc" g2="emacron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="egrave.sc" k="-20" />
- <hkern g1="ldot.sc" g2="edotbelow.sc" k="-20" />
- <hkern g1="ldot.sc" g2="edotaccent.sc" k="-20" />
- <hkern g1="ldot.sc" g2="edieresis.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ecircumflex.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ecaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ebreve.sc" k="-20" />
- <hkern g1="ldot.sc" g2="eacute.sc" k="-20" />
- <hkern g1="ldot.sc" g2="e.sc" k="-20" />
- <hkern g1="ldot.sc" g2="ddotbelow.sc" k="-20" />
- <hkern g1="ldot.sc" g2="dcroat.sc" k="-20" />
- <hkern g1="ldot.sc" g2="dcaron.sc" k="-20" />
- <hkern g1="ldot.sc" g2="eth.sc" k="-20" />
- <hkern g1="ldot.sc" g2="d.sc" k="-20" />
- <hkern g1="ldot.sc" g2="b.sc" k="-20" />
- <hkern g1="lslash.sc" g2="quotesingle.sc" k="120" />
- <hkern g1="lslash.sc" g2="quotedbl.sc" k="120" />
- <hkern g1="lslash.sc" g2="asterisk.sc" k="130" />
- <hkern g1="lslash.sc" g2="question.sc" k="60" />
- <hkern g1="lslash.sc" g2="exclam.sc" k="40" />
- <hkern g1="lslash.sc" g2="parenright.sc" k="20" />
- <hkern g1="m.sc" g2="quotesingle.sc" k="30" />
- <hkern g1="m.sc" g2="quotedbl.sc" k="30" />
- <hkern g1="m.sc" g2="asterisk.sc" k="20" />
- <hkern g1="m.sc" g2="question.sc" k="30" />
- <hkern g1="m.sc" g2="exclam.sc" k="50" />
- <hkern g1="m.sc" g2="bracketright.sc" k="10" />
- <hkern g1="m.sc" g2="braceright.sc" k="30" />
- <hkern g1="m.sc" g2="parenright.sc" k="10" />
- <hkern g1="n.sc" g2="exclam.sc" k="50" />
- <hkern g1="nacute.sc" g2="exclam.sc" k="50" />
- <hkern g1="ncaron.sc" g2="exclam.sc" k="50" />
- <hkern g1="ncommaaccent.sc" g2="exclam.sc" k="50" />
- <hkern g1="ndotaccent.sc" g2="exclam.sc" k="50" />
- <hkern g1="eng.sc" g2="exclam.sc" k="50" />
- <hkern g1="nhookleft.sc" g2="exclam.sc" k="50" />
- <hkern g1="ntilde.sc" g2="exclam.sc" k="50" />
- <hkern g1="o.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="o.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="o.sc" g2="asterisk.sc" k="20" />
- <hkern g1="o.sc" g2="exclam.sc" k="30" />
- <hkern g1="o.sc" g2="bracketright.sc" k="10" />
- <hkern g1="o.sc" g2="braceright.sc" k="30" />
- <hkern g1="o.sc" g2="parenright.sc" k="30" />
- <hkern g1="oacute.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="oacute.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="oacute.sc" g2="asterisk.sc" k="20" />
- <hkern g1="oacute.sc" g2="exclam.sc" k="30" />
- <hkern g1="oacute.sc" g2="bracketright.sc" k="10" />
- <hkern g1="oacute.sc" g2="braceright.sc" k="30" />
- <hkern g1="oacute.sc" g2="parenright.sc" k="30" />
- <hkern g1="obreve.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="obreve.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="obreve.sc" g2="asterisk.sc" k="20" />
- <hkern g1="obreve.sc" g2="exclam.sc" k="30" />
- <hkern g1="obreve.sc" g2="bracketright.sc" k="10" />
- <hkern g1="obreve.sc" g2="braceright.sc" k="30" />
- <hkern g1="obreve.sc" g2="parenright.sc" k="30" />
- <hkern g1="ocaron.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="ocaron.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="ocaron.sc" g2="asterisk.sc" k="20" />
- <hkern g1="ocaron.sc" g2="exclam.sc" k="30" />
- <hkern g1="ocaron.sc" g2="bracketright.sc" k="10" />
- <hkern g1="ocaron.sc" g2="braceright.sc" k="30" />
- <hkern g1="ocaron.sc" g2="parenright.sc" k="30" />
- <hkern g1="ocircumflex.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="ocircumflex.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="ocircumflex.sc" g2="asterisk.sc" k="20" />
- <hkern g1="ocircumflex.sc" g2="exclam.sc" k="30" />
- <hkern g1="ocircumflex.sc" g2="bracketright.sc" k="10" />
- <hkern g1="ocircumflex.sc" g2="braceright.sc" k="30" />
- <hkern g1="ocircumflex.sc" g2="parenright.sc" k="30" />
- <hkern g1="odieresis.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="odieresis.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="odieresis.sc" g2="asterisk.sc" k="20" />
- <hkern g1="odieresis.sc" g2="exclam.sc" k="30" />
- <hkern g1="odieresis.sc" g2="bracketright.sc" k="10" />
- <hkern g1="odieresis.sc" g2="braceright.sc" k="30" />
- <hkern g1="odieresis.sc" g2="parenright.sc" k="30" />
- <hkern g1="odotbelow.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="odotbelow.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="odotbelow.sc" g2="asterisk.sc" k="20" />
- <hkern g1="odotbelow.sc" g2="exclam.sc" k="30" />
- <hkern g1="odotbelow.sc" g2="bracketright.sc" k="10" />
- <hkern g1="odotbelow.sc" g2="braceright.sc" k="30" />
- <hkern g1="odotbelow.sc" g2="parenright.sc" k="30" />
- <hkern g1="ograve.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="ograve.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="ograve.sc" g2="asterisk.sc" k="20" />
- <hkern g1="ograve.sc" g2="exclam.sc" k="30" />
- <hkern g1="ograve.sc" g2="bracketright.sc" k="10" />
- <hkern g1="ograve.sc" g2="braceright.sc" k="30" />
- <hkern g1="ograve.sc" g2="parenright.sc" k="30" />
- <hkern g1="ohungarumlaut.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="ohungarumlaut.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="ohungarumlaut.sc" g2="asterisk.sc" k="20" />
- <hkern g1="ohungarumlaut.sc" g2="exclam.sc" k="30" />
- <hkern g1="ohungarumlaut.sc" g2="bracketright.sc" k="10" />
- <hkern g1="ohungarumlaut.sc" g2="braceright.sc" k="30" />
- <hkern g1="ohungarumlaut.sc" g2="parenright.sc" k="30" />
- <hkern g1="omacron.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="omacron.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="omacron.sc" g2="asterisk.sc" k="20" />
- <hkern g1="omacron.sc" g2="exclam.sc" k="30" />
- <hkern g1="omacron.sc" g2="bracketright.sc" k="10" />
- <hkern g1="omacron.sc" g2="braceright.sc" k="30" />
- <hkern g1="omacron.sc" g2="parenright.sc" k="30" />
- <hkern g1="oogonek.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="oogonek.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="oogonek.sc" g2="asterisk.sc" k="20" />
- <hkern g1="oogonek.sc" g2="exclam.sc" k="30" />
- <hkern g1="oogonek.sc" g2="bracketright.sc" k="10" />
- <hkern g1="oogonek.sc" g2="braceright.sc" k="30" />
- <hkern g1="oogonek.sc" g2="parenright.sc" k="30" />
- <hkern g1="oslash.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="oslash.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="oslash.sc" g2="asterisk.sc" k="20" />
- <hkern g1="oslash.sc" g2="exclam.sc" k="30" />
- <hkern g1="oslash.sc" g2="bracketright.sc" k="10" />
- <hkern g1="oslash.sc" g2="braceright.sc" k="30" />
- <hkern g1="oslash.sc" g2="parenright.sc" k="30" />
- <hkern g1="oslashacute.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="oslashacute.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="oslashacute.sc" g2="asterisk.sc" k="20" />
- <hkern g1="oslashacute.sc" g2="exclam.sc" k="30" />
- <hkern g1="oslashacute.sc" g2="bracketright.sc" k="10" />
- <hkern g1="oslashacute.sc" g2="braceright.sc" k="30" />
- <hkern g1="oslashacute.sc" g2="parenright.sc" k="30" />
- <hkern g1="otilde.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="otilde.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="otilde.sc" g2="asterisk.sc" k="20" />
- <hkern g1="otilde.sc" g2="exclam.sc" k="30" />
- <hkern g1="otilde.sc" g2="bracketright.sc" k="10" />
- <hkern g1="otilde.sc" g2="braceright.sc" k="30" />
- <hkern g1="otilde.sc" g2="parenright.sc" k="30" />
- <hkern g1="p.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="p.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="p.sc" g2="question.sc" k="20" />
- <hkern g1="p.sc" g2="exclam.sc" k="40" />
- <hkern g1="p.sc" g2="braceright.sc" k="10" />
- <hkern g1="p.sc" g2="parenright.sc" k="40" />
- <hkern g1="p.sc" g2="x.sc" k="10" />
- <hkern g1="p.sc" g2="m.sc" k="10" />
- <hkern g1="p.sc" u2="™" k="30" />
- <hkern g1="p.sc" u2="_" k="20" />
- <hkern g1="thorn.sc" u2="_" k="20" />
- <hkern g1="q.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="q.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="q.sc" g2="asterisk.sc" k="20" />
- <hkern g1="q.sc" g2="exclam.sc" k="30" />
- <hkern g1="q.sc" g2="bracketright.sc" k="10" />
- <hkern g1="q.sc" g2="braceright.sc" k="30" />
- <hkern g1="q.sc" g2="parenright.sc" k="30" />
- <hkern g1="r.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="r.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="r.sc" g2="asterisk.sc" k="20" />
- <hkern g1="r.sc" g2="exclam.sc" k="40" />
- <hkern g1="racute.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="racute.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="racute.sc" g2="asterisk.sc" k="20" />
- <hkern g1="racute.sc" g2="exclam.sc" k="40" />
- <hkern g1="rcaron.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="rcaron.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="rcaron.sc" g2="asterisk.sc" k="20" />
- <hkern g1="rcaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="rcommaaccent.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="rcommaaccent.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="rcommaaccent.sc" g2="asterisk.sc" k="20" />
- <hkern g1="rcommaaccent.sc" g2="exclam.sc" k="40" />
- <hkern g1="rdotbelow.sc" g2="quotesingle.sc" k="10" />
- <hkern g1="rdotbelow.sc" g2="quotedbl.sc" k="10" />
- <hkern g1="rdotbelow.sc" g2="asterisk.sc" k="20" />
- <hkern g1="rdotbelow.sc" g2="exclam.sc" k="40" />
- <hkern g1="s.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="s.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="s.sc" g2="asterisk.sc" k="20" />
- <hkern g1="s.sc" g2="question.sc" k="20" />
- <hkern g1="s.sc" g2="exclam.sc" k="40" />
- <hkern g1="s.sc" g2="bracketright.sc" k="20" />
- <hkern g1="s.sc" g2="braceright.sc" k="30" />
- <hkern g1="sacute.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="sacute.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="sacute.sc" g2="asterisk.sc" k="20" />
- <hkern g1="sacute.sc" g2="question.sc" k="20" />
- <hkern g1="sacute.sc" g2="exclam.sc" k="40" />
- <hkern g1="sacute.sc" g2="bracketright.sc" k="20" />
- <hkern g1="sacute.sc" g2="braceright.sc" k="30" />
- <hkern g1="scaron.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="scaron.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="scaron.sc" g2="asterisk.sc" k="20" />
- <hkern g1="scaron.sc" g2="question.sc" k="20" />
- <hkern g1="scaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="scaron.sc" g2="bracketright.sc" k="20" />
- <hkern g1="scaron.sc" g2="braceright.sc" k="30" />
- <hkern g1="scedilla.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="scedilla.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="scedilla.sc" g2="asterisk.sc" k="20" />
- <hkern g1="scedilla.sc" g2="question.sc" k="20" />
- <hkern g1="scedilla.sc" g2="exclam.sc" k="40" />
- <hkern g1="scedilla.sc" g2="bracketright.sc" k="20" />
- <hkern g1="scedilla.sc" g2="braceright.sc" k="30" />
- <hkern g1="scircumflex.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="scircumflex.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="scircumflex.sc" g2="asterisk.sc" k="20" />
- <hkern g1="scircumflex.sc" g2="question.sc" k="20" />
- <hkern g1="scircumflex.sc" g2="exclam.sc" k="40" />
- <hkern g1="scircumflex.sc" g2="bracketright.sc" k="20" />
- <hkern g1="scircumflex.sc" g2="braceright.sc" k="30" />
- <hkern g1="scommaaccent.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="scommaaccent.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="scommaaccent.sc" g2="asterisk.sc" k="20" />
- <hkern g1="scommaaccent.sc" g2="question.sc" k="20" />
- <hkern g1="scommaaccent.sc" g2="exclam.sc" k="40" />
- <hkern g1="scommaaccent.sc" g2="bracketright.sc" k="20" />
- <hkern g1="scommaaccent.sc" g2="braceright.sc" k="30" />
- <hkern g1="sdotbelow.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="sdotbelow.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="sdotbelow.sc" g2="asterisk.sc" k="20" />
- <hkern g1="sdotbelow.sc" g2="question.sc" k="20" />
- <hkern g1="sdotbelow.sc" g2="exclam.sc" k="40" />
- <hkern g1="sdotbelow.sc" g2="bracketright.sc" k="20" />
- <hkern g1="sdotbelow.sc" g2="braceright.sc" k="30" />
- <hkern g1="germandbls.sc" g2="quotesingle.sc" k="20" />
- <hkern g1="germandbls.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="germandbls.sc" g2="asterisk.sc" k="20" />
- <hkern g1="germandbls.sc" g2="question.sc" k="20" />
- <hkern g1="germandbls.sc" g2="exclam.sc" k="40" />
- <hkern g1="germandbls.sc" g2="bracketright.sc" k="20" />
- <hkern g1="germandbls.sc" g2="braceright.sc" k="30" />
- <hkern g1="t.sc" g2="exclam.sc" k="40" />
- <hkern g1="t.sc" g2="braceright.sc" k="20" />
- <hkern g1="tbar.sc" g2="exclam.sc" k="40" />
- <hkern g1="tbar.sc" g2="braceright.sc" k="20" />
- <hkern g1="tcaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="tcaron.sc" g2="braceright.sc" k="20" />
- <hkern g1="tcedilla.sc" g2="exclam.sc" k="40" />
- <hkern g1="tcedilla.sc" g2="braceright.sc" k="20" />
- <hkern g1="tcommaaccent.sc" g2="exclam.sc" k="40" />
- <hkern g1="tcommaaccent.sc" g2="braceright.sc" k="20" />
- <hkern g1="tdotbelow.sc" g2="exclam.sc" k="40" />
- <hkern g1="tdotbelow.sc" g2="braceright.sc" k="20" />
- <hkern g1="u.sc" g2="question.sc" k="20" />
- <hkern g1="u.sc" g2="exclam.sc" k="40" />
- <hkern g1="u.sc" g2="bracketright.sc" k="20" />
- <hkern g1="u.sc" g2="braceright.sc" k="20" />
- <hkern g1="u.sc" g2="parenright.sc" k="10" />
- <hkern g1="uacute.sc" g2="question.sc" k="20" />
- <hkern g1="uacute.sc" g2="exclam.sc" k="40" />
- <hkern g1="uacute.sc" g2="bracketright.sc" k="20" />
- <hkern g1="uacute.sc" g2="braceright.sc" k="20" />
- <hkern g1="uacute.sc" g2="parenright.sc" k="10" />
- <hkern g1="ubreve.sc" g2="question.sc" k="20" />
- <hkern g1="ubreve.sc" g2="exclam.sc" k="40" />
- <hkern g1="ubreve.sc" g2="bracketright.sc" k="20" />
- <hkern g1="ubreve.sc" g2="braceright.sc" k="20" />
- <hkern g1="ubreve.sc" g2="parenright.sc" k="10" />
- <hkern g1="ucaron.sc" g2="question.sc" k="20" />
- <hkern g1="ucaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="ucaron.sc" g2="bracketright.sc" k="20" />
- <hkern g1="ucaron.sc" g2="braceright.sc" k="20" />
- <hkern g1="ucaron.sc" g2="parenright.sc" k="10" />
- <hkern g1="ucircumflex.sc" g2="question.sc" k="20" />
- <hkern g1="ucircumflex.sc" g2="exclam.sc" k="40" />
- <hkern g1="ucircumflex.sc" g2="bracketright.sc" k="20" />
- <hkern g1="ucircumflex.sc" g2="braceright.sc" k="20" />
- <hkern g1="ucircumflex.sc" g2="parenright.sc" k="10" />
- <hkern g1="udieresis.sc" g2="question.sc" k="20" />
- <hkern g1="udieresis.sc" g2="exclam.sc" k="40" />
- <hkern g1="udieresis.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udieresis.sc" g2="braceright.sc" k="20" />
- <hkern g1="udieresis.sc" g2="parenright.sc" k="10" />
- <hkern g1="udieresisacute.sc" g2="question.sc" k="20" />
- <hkern g1="udieresisacute.sc" g2="exclam.sc" k="40" />
- <hkern g1="udieresisacute.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udieresisacute.sc" g2="braceright.sc" k="20" />
- <hkern g1="udieresisacute.sc" g2="parenright.sc" k="10" />
- <hkern g1="udieresiscaron.sc" g2="question.sc" k="20" />
- <hkern g1="udieresiscaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="udieresiscaron.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udieresiscaron.sc" g2="braceright.sc" k="20" />
- <hkern g1="udieresiscaron.sc" g2="parenright.sc" k="10" />
- <hkern g1="udieresisgrave.sc" g2="question.sc" k="20" />
- <hkern g1="udieresisgrave.sc" g2="exclam.sc" k="40" />
- <hkern g1="udieresisgrave.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udieresisgrave.sc" g2="braceright.sc" k="20" />
- <hkern g1="udieresisgrave.sc" g2="parenright.sc" k="10" />
- <hkern g1="udieresismacron.sc" g2="question.sc" k="20" />
- <hkern g1="udieresismacron.sc" g2="exclam.sc" k="40" />
- <hkern g1="udieresismacron.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udieresismacron.sc" g2="braceright.sc" k="20" />
- <hkern g1="udieresismacron.sc" g2="parenright.sc" k="10" />
- <hkern g1="udotbelow.sc" g2="question.sc" k="20" />
- <hkern g1="udotbelow.sc" g2="exclam.sc" k="40" />
- <hkern g1="udotbelow.sc" g2="bracketright.sc" k="20" />
- <hkern g1="udotbelow.sc" g2="braceright.sc" k="20" />
- <hkern g1="udotbelow.sc" g2="parenright.sc" k="10" />
- <hkern g1="ugrave.sc" g2="question.sc" k="20" />
- <hkern g1="ugrave.sc" g2="exclam.sc" k="40" />
- <hkern g1="ugrave.sc" g2="bracketright.sc" k="20" />
- <hkern g1="ugrave.sc" g2="braceright.sc" k="20" />
- <hkern g1="ugrave.sc" g2="parenright.sc" k="10" />
- <hkern g1="uhungarumlaut.sc" g2="question.sc" k="20" />
- <hkern g1="uhungarumlaut.sc" g2="exclam.sc" k="40" />
- <hkern g1="uhungarumlaut.sc" g2="bracketright.sc" k="20" />
- <hkern g1="uhungarumlaut.sc" g2="braceright.sc" k="20" />
- <hkern g1="uhungarumlaut.sc" g2="parenright.sc" k="10" />
- <hkern g1="umacron.sc" g2="question.sc" k="20" />
- <hkern g1="umacron.sc" g2="exclam.sc" k="40" />
- <hkern g1="umacron.sc" g2="bracketright.sc" k="20" />
- <hkern g1="umacron.sc" g2="braceright.sc" k="20" />
- <hkern g1="umacron.sc" g2="parenright.sc" k="10" />
- <hkern g1="uogonek.sc" g2="question.sc" k="20" />
- <hkern g1="uogonek.sc" g2="exclam.sc" k="40" />
- <hkern g1="uogonek.sc" g2="bracketright.sc" k="20" />
- <hkern g1="uogonek.sc" g2="braceright.sc" k="20" />
- <hkern g1="uogonek.sc" g2="parenright.sc" k="10" />
- <hkern g1="uring.sc" g2="question.sc" k="20" />
- <hkern g1="uring.sc" g2="exclam.sc" k="40" />
- <hkern g1="uring.sc" g2="bracketright.sc" k="20" />
- <hkern g1="uring.sc" g2="braceright.sc" k="20" />
- <hkern g1="uring.sc" g2="parenright.sc" k="10" />
- <hkern g1="utilde.sc" g2="question.sc" k="20" />
- <hkern g1="utilde.sc" g2="exclam.sc" k="40" />
- <hkern g1="utilde.sc" g2="bracketright.sc" k="20" />
- <hkern g1="utilde.sc" g2="braceright.sc" k="20" />
- <hkern g1="utilde.sc" g2="parenright.sc" k="10" />
- <hkern g1="v.sc" g2="exclam.sc" k="50" />
- <hkern g1="v.sc" g2="bracketright.sc" k="30" />
- <hkern g1="v.sc" g2="braceright.sc" k="30" />
- <hkern g1="w.sc" g2="exclam.sc" k="50" />
- <hkern g1="w.sc" g2="bracketright.sc" k="30" />
- <hkern g1="w.sc" g2="braceright.sc" k="30" />
- <hkern g1="wacute.sc" g2="exclam.sc" k="50" />
- <hkern g1="wacute.sc" g2="bracketright.sc" k="30" />
- <hkern g1="wacute.sc" g2="braceright.sc" k="30" />
- <hkern g1="wcircumflex.sc" g2="exclam.sc" k="50" />
- <hkern g1="wcircumflex.sc" g2="bracketright.sc" k="30" />
- <hkern g1="wcircumflex.sc" g2="braceright.sc" k="30" />
- <hkern g1="wdieresis.sc" g2="exclam.sc" k="50" />
- <hkern g1="wdieresis.sc" g2="bracketright.sc" k="30" />
- <hkern g1="wdieresis.sc" g2="braceright.sc" k="30" />
- <hkern g1="wgrave.sc" g2="exclam.sc" k="50" />
- <hkern g1="wgrave.sc" g2="bracketright.sc" k="30" />
- <hkern g1="wgrave.sc" g2="braceright.sc" k="30" />
- <hkern g1="x.sc" g2="exclam.sc" k="40" />
- <hkern g1="y.sc" g2="exclam.sc" k="50" />
- <hkern g1="y.sc" g2="braceright.sc" k="20" />
- <hkern g1="yacute.sc" g2="exclam.sc" k="50" />
- <hkern g1="yacute.sc" g2="braceright.sc" k="20" />
- <hkern g1="ycircumflex.sc" g2="exclam.sc" k="50" />
- <hkern g1="ycircumflex.sc" g2="braceright.sc" k="20" />
- <hkern g1="ydieresis.sc" g2="exclam.sc" k="50" />
- <hkern g1="ydieresis.sc" g2="braceright.sc" k="20" />
- <hkern g1="ygrave.sc" g2="exclam.sc" k="50" />
- <hkern g1="ygrave.sc" g2="braceright.sc" k="20" />
- <hkern g1="ymacron.sc" g2="exclam.sc" k="50" />
- <hkern g1="ymacron.sc" g2="braceright.sc" k="20" />
- <hkern g1="ytilde.sc" g2="exclam.sc" k="50" />
- <hkern g1="ytilde.sc" g2="braceright.sc" k="20" />
- <hkern g1="z.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="z.sc" g2="question.sc" k="20" />
- <hkern g1="z.sc" g2="exclam.sc" k="40" />
- <hkern g1="z.sc" g2="bracketright.sc" k="30" />
- <hkern g1="z.sc" g2="braceright.sc" k="30" />
- <hkern g1="z.sc" g2="parenright.sc" k="30" />
- <hkern g1="zacute.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="zacute.sc" g2="question.sc" k="20" />
- <hkern g1="zacute.sc" g2="exclam.sc" k="40" />
- <hkern g1="zacute.sc" g2="bracketright.sc" k="30" />
- <hkern g1="zacute.sc" g2="braceright.sc" k="30" />
- <hkern g1="zacute.sc" g2="parenright.sc" k="30" />
- <hkern g1="zcaron.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="zcaron.sc" g2="question.sc" k="20" />
- <hkern g1="zcaron.sc" g2="exclam.sc" k="40" />
- <hkern g1="zcaron.sc" g2="bracketright.sc" k="30" />
- <hkern g1="zcaron.sc" g2="braceright.sc" k="30" />
- <hkern g1="zcaron.sc" g2="parenright.sc" k="30" />
- <hkern g1="zdotaccent.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="zdotaccent.sc" g2="question.sc" k="20" />
- <hkern g1="zdotaccent.sc" g2="exclam.sc" k="40" />
- <hkern g1="zdotaccent.sc" g2="bracketright.sc" k="30" />
- <hkern g1="zdotaccent.sc" g2="braceright.sc" k="30" />
- <hkern g1="zdotaccent.sc" g2="parenright.sc" k="30" />
- <hkern g1="zdotbelow.sc" g2="quotedbl.sc" k="20" />
- <hkern g1="zdotbelow.sc" g2="question.sc" k="20" />
- <hkern g1="zdotbelow.sc" g2="exclam.sc" k="40" />
- <hkern g1="zdotbelow.sc" g2="bracketright.sc" k="30" />
- <hkern g1="zdotbelow.sc" g2="braceright.sc" k="30" />
- <hkern g1="zdotbelow.sc" g2="parenright.sc" k="30" />
- <hkern g1="zero.numerator" u2="⁄" k="250" />
- <hkern g1="four.numerator" u2="⁄" k="190" />
- <hkern g1="seven.numerator" u2="⁄" k="240" />
- <hkern g1="nine.numerator" u2="⁄" k="250" />
- <hkern g1="exclamdown.caps" g2="IJacute" k="40" />
- <hkern g1="exclamdown.caps" g2="Jacute" k="10" />
- <hkern g1="exclamdown.caps" u2="Ỹ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ỳ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ụ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ọ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ị" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẽ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẹ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ạ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẓ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẅ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẃ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ẁ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ṭ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ṣ" k="50" />
- <hkern g1="exclamdown.caps" u2="Ṛ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ṅ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ḥ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ḍ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ȳ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ț" k="40" />
- <hkern g1="exclamdown.caps" u2="Ș" k="50" />
- <hkern g1="exclamdown.caps" u2="Ǿ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ǽ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǻ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǵ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ǫ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ǧ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ǜ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǚ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǘ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǖ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǔ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǒ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ǐ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ǎ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ɲ" k="10" />
- <hkern g1="exclamdown.caps" u2="Ž" k="40" />
- <hkern g1="exclamdown.caps" u2="Ż" k="40" />
- <hkern g1="exclamdown.caps" u2="Ź" k="40" />
- <hkern g1="exclamdown.caps" u2="Ÿ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ŷ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ŵ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ų" k="40" />
- <hkern g1="exclamdown.caps" u2="Ű" k="40" />
- <hkern g1="exclamdown.caps" u2="Ů" k="40" />
- <hkern g1="exclamdown.caps" u2="Ŭ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ū" k="40" />
- <hkern g1="exclamdown.caps" u2="Ũ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ŧ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ť" k="40" />
- <hkern g1="exclamdown.caps" u2="Ţ" k="40" />
- <hkern g1="exclamdown.caps" u2="Š" k="50" />
- <hkern g1="exclamdown.caps" u2="Ş" k="50" />
- <hkern g1="exclamdown.caps" u2="Ŝ" k="50" />
- <hkern g1="exclamdown.caps" u2="Ś" k="50" />
- <hkern g1="exclamdown.caps" u2="Ř" k="40" />
- <hkern g1="exclamdown.caps" u2="Ŗ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ŕ" k="40" />
- <hkern g1="exclamdown.caps" u2="Œ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ő" k="30" />
- <hkern g1="exclamdown.caps" u2="Ŏ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ō" k="30" />
- <hkern g1="exclamdown.caps" u2="Ŋ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ň" k="40" />
- <hkern g1="exclamdown.caps" u2="Ņ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ń" k="40" />
- <hkern g1="exclamdown.caps" u2="Ł" k="40" />
- <hkern g1="exclamdown.caps" u2="Ŀ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ľ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ļ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĺ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ķ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĵ" k="10" />
- <hkern g1="exclamdown.caps" u2="IJ" k="40" />
- <hkern g1="exclamdown.caps" u2="İ" k="40" />
- <hkern g1="exclamdown.caps" u2="Į" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĭ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ī" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĩ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ħ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĥ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ģ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ġ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ğ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ĝ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ě" k="40" />
- <hkern g1="exclamdown.caps" u2="Ę" k="40" />
- <hkern g1="exclamdown.caps" u2="Ė" k="40" />
- <hkern g1="exclamdown.caps" u2="Ĕ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ē" k="40" />
- <hkern g1="exclamdown.caps" u2="Đ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ď" k="40" />
- <hkern g1="exclamdown.caps" u2="Č" k="30" />
- <hkern g1="exclamdown.caps" u2="Ċ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ĉ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ć" k="30" />
- <hkern g1="exclamdown.caps" u2="Ą" k="40" />
- <hkern g1="exclamdown.caps" u2="Ă" k="40" />
- <hkern g1="exclamdown.caps" u2="Ā" k="40" />
- <hkern g1="exclamdown.caps" u2="Þ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ý" k="30" />
- <hkern g1="exclamdown.caps" u2="Ü" k="40" />
- <hkern g1="exclamdown.caps" u2="Û" k="40" />
- <hkern g1="exclamdown.caps" u2="Ú" k="40" />
- <hkern g1="exclamdown.caps" u2="Ù" k="40" />
- <hkern g1="exclamdown.caps" u2="Ø" k="30" />
- <hkern g1="exclamdown.caps" u2="Ö" k="30" />
- <hkern g1="exclamdown.caps" u2="Õ" k="30" />
- <hkern g1="exclamdown.caps" u2="Ô" k="30" />
- <hkern g1="exclamdown.caps" u2="Ó" k="30" />
- <hkern g1="exclamdown.caps" u2="Ò" k="30" />
- <hkern g1="exclamdown.caps" u2="Ñ" k="40" />
- <hkern g1="exclamdown.caps" u2="Ð" k="40" />
- <hkern g1="exclamdown.caps" u2="Ï" k="40" />
- <hkern g1="exclamdown.caps" u2="Î" k="40" />
- <hkern g1="exclamdown.caps" u2="Í" k="40" />
- <hkern g1="exclamdown.caps" u2="Ì" k="40" />
- <hkern g1="exclamdown.caps" u2="Ë" k="40" />
- <hkern g1="exclamdown.caps" u2="Ê" k="40" />
- <hkern g1="exclamdown.caps" u2="É" k="40" />
- <hkern g1="exclamdown.caps" u2="È" k="40" />
- <hkern g1="exclamdown.caps" u2="Ç" k="30" />
- <hkern g1="exclamdown.caps" u2="Æ" k="40" />
- <hkern g1="exclamdown.caps" u2="Å" k="40" />
- <hkern g1="exclamdown.caps" u2="Ä" k="40" />
- <hkern g1="exclamdown.caps" u2="Ã" k="40" />
- <hkern g1="exclamdown.caps" u2="Â" k="40" />
- <hkern g1="exclamdown.caps" u2="Á" k="40" />
- <hkern g1="exclamdown.caps" u2="À" k="40" />
- <hkern g1="exclamdown.caps" u2="Z" k="40" />
- <hkern g1="exclamdown.caps" u2="Y" k="30" />
- <hkern g1="exclamdown.caps" u2="X" k="20" />
- <hkern g1="exclamdown.caps" u2="W" k="40" />
- <hkern g1="exclamdown.caps" u2="V" k="40" />
- <hkern g1="exclamdown.caps" u2="U" k="40" />
- <hkern g1="exclamdown.caps" u2="T" k="40" />
- <hkern g1="exclamdown.caps" u2="S" k="50" />
- <hkern g1="exclamdown.caps" u2="R" k="40" />
- <hkern g1="exclamdown.caps" u2="Q" k="30" />
- <hkern g1="exclamdown.caps" u2="P" k="40" />
- <hkern g1="exclamdown.caps" u2="O" k="30" />
- <hkern g1="exclamdown.caps" u2="N" k="40" />
- <hkern g1="exclamdown.caps" u2="M" k="30" />
- <hkern g1="exclamdown.caps" u2="L" k="40" />
- <hkern g1="exclamdown.caps" u2="K" k="40" />
- <hkern g1="exclamdown.caps" u2="J" k="10" />
- <hkern g1="exclamdown.caps" u2="I" k="40" />
- <hkern g1="exclamdown.caps" u2="H" k="40" />
- <hkern g1="exclamdown.caps" u2="G" k="30" />
- <hkern g1="exclamdown.caps" u2="F" k="40" />
- <hkern g1="exclamdown.caps" u2="E" k="40" />
- <hkern g1="exclamdown.caps" u2="D" k="40" />
- <hkern g1="exclamdown.caps" u2="C" k="30" />
- <hkern g1="exclamdown.caps" u2="B" k="40" />
- <hkern g1="exclamdown.caps" u2="A" k="40" />
- <hkern g1="questiondown.caps" g2="IJacute" k="30" />
- <hkern g1="questiondown.caps" g2="Jacute" k="30" />
- <hkern g1="questiondown.caps" u2="Ụ" k="50" />
- <hkern g1="questiondown.caps" u2="Ọ" k="70" />
- <hkern g1="questiondown.caps" u2="Ị" k="30" />
- <hkern g1="questiondown.caps" u2="Ẽ" k="30" />
- <hkern g1="questiondown.caps" u2="Ẹ" k="30" />
- <hkern g1="questiondown.caps" u2="Ạ" k="20" />
- <hkern g1="questiondown.caps" u2="Ẓ" k="20" />
- <hkern g1="questiondown.caps" u2="Ṭ" k="80" />
- <hkern g1="questiondown.caps" u2="Ṣ" k="50" />
- <hkern g1="questiondown.caps" u2="Ṛ" k="30" />
- <hkern g1="questiondown.caps" u2="Ṅ" k="30" />
- <hkern g1="questiondown.caps" u2="Ḥ" k="30" />
- <hkern g1="questiondown.caps" u2="Ḍ" k="30" />
- <hkern g1="questiondown.caps" u2="Ț" k="80" />
- <hkern g1="questiondown.caps" u2="Ș" k="50" />
- <hkern g1="questiondown.caps" u2="Ǿ" k="70" />
- <hkern g1="questiondown.caps" u2="Ǽ" k="20" />
- <hkern g1="questiondown.caps" u2="Ǻ" k="20" />
- <hkern g1="questiondown.caps" u2="Ǵ" k="70" />
- <hkern g1="questiondown.caps" u2="Ǫ" k="70" />
- <hkern g1="questiondown.caps" u2="Ǧ" k="70" />
- <hkern g1="questiondown.caps" u2="Ǜ" k="50" />
- <hkern g1="questiondown.caps" u2="Ǚ" k="50" />
- <hkern g1="questiondown.caps" u2="Ǘ" k="50" />
- <hkern g1="questiondown.caps" u2="Ǖ" k="50" />
- <hkern g1="questiondown.caps" u2="Ǔ" k="50" />
- <hkern g1="questiondown.caps" u2="Ǒ" k="70" />
- <hkern g1="questiondown.caps" u2="Ǐ" k="30" />
- <hkern g1="questiondown.caps" u2="Ǎ" k="20" />
- <hkern g1="questiondown.caps" u2="Ɲ" k="30" />
- <hkern g1="questiondown.caps" u2="Ž" k="20" />
- <hkern g1="questiondown.caps" u2="Ż" k="20" />
- <hkern g1="questiondown.caps" u2="Ź" k="20" />
- <hkern g1="questiondown.caps" u2="Ų" k="50" />
- <hkern g1="questiondown.caps" u2="Ű" k="50" />
- <hkern g1="questiondown.caps" u2="Ů" k="50" />
- <hkern g1="questiondown.caps" u2="Ŭ" k="50" />
- <hkern g1="questiondown.caps" u2="Ū" k="50" />
- <hkern g1="questiondown.caps" u2="Ũ" k="50" />
- <hkern g1="questiondown.caps" u2="Ŧ" k="80" />
- <hkern g1="questiondown.caps" u2="Ť" k="80" />
- <hkern g1="questiondown.caps" u2="Ţ" k="80" />
- <hkern g1="questiondown.caps" u2="Š" k="50" />
- <hkern g1="questiondown.caps" u2="Ş" k="50" />
- <hkern g1="questiondown.caps" u2="Ŝ" k="50" />
- <hkern g1="questiondown.caps" u2="Ś" k="50" />
- <hkern g1="questiondown.caps" u2="Ř" k="30" />
- <hkern g1="questiondown.caps" u2="Ŗ" k="30" />
- <hkern g1="questiondown.caps" u2="Ŕ" k="30" />
- <hkern g1="questiondown.caps" u2="Œ" k="70" />
- <hkern g1="questiondown.caps" u2="Ő" k="70" />
- <hkern g1="questiondown.caps" u2="Ŏ" k="70" />
- <hkern g1="questiondown.caps" u2="Ō" k="70" />
- <hkern g1="questiondown.caps" u2="Ŋ" k="30" />
- <hkern g1="questiondown.caps" u2="Ň" k="30" />
- <hkern g1="questiondown.caps" u2="Ņ" k="30" />
- <hkern g1="questiondown.caps" u2="Ń" k="30" />
- <hkern g1="questiondown.caps" u2="Ł" k="30" />
- <hkern g1="questiondown.caps" u2="Ŀ" k="30" />
- <hkern g1="questiondown.caps" u2="Ľ" k="30" />
- <hkern g1="questiondown.caps" u2="Ļ" k="30" />
- <hkern g1="questiondown.caps" u2="Ĺ" k="30" />
- <hkern g1="questiondown.caps" u2="Ķ" k="30" />
- <hkern g1="questiondown.caps" u2="Ĵ" k="30" />
- <hkern g1="questiondown.caps" u2="IJ" k="30" />
- <hkern g1="questiondown.caps" u2="İ" k="30" />
- <hkern g1="questiondown.caps" u2="Į" k="30" />
- <hkern g1="questiondown.caps" u2="Ĭ" k="30" />
- <hkern g1="questiondown.caps" u2="Ī" k="30" />
- <hkern g1="questiondown.caps" u2="Ĩ" k="30" />
- <hkern g1="questiondown.caps" u2="Ħ" k="30" />
- <hkern g1="questiondown.caps" u2="Ĥ" k="30" />
- <hkern g1="questiondown.caps" u2="Ģ" k="70" />
- <hkern g1="questiondown.caps" u2="Ġ" k="70" />
- <hkern g1="questiondown.caps" u2="Ğ" k="70" />
- <hkern g1="questiondown.caps" u2="Ĝ" k="70" />
- <hkern g1="questiondown.caps" u2="Ě" k="30" />
- <hkern g1="questiondown.caps" u2="Ę" k="30" />
- <hkern g1="questiondown.caps" u2="Ė" k="30" />
- <hkern g1="questiondown.caps" u2="Ĕ" k="30" />
- <hkern g1="questiondown.caps" u2="Ē" k="30" />
- <hkern g1="questiondown.caps" u2="Đ" k="30" />
- <hkern g1="questiondown.caps" u2="Ď" k="30" />
- <hkern g1="questiondown.caps" u2="Č" k="70" />
- <hkern g1="questiondown.caps" u2="Ċ" k="70" />
- <hkern g1="questiondown.caps" u2="Ĉ" k="70" />
- <hkern g1="questiondown.caps" u2="Ć" k="70" />
- <hkern g1="questiondown.caps" u2="Ą" k="20" />
- <hkern g1="questiondown.caps" u2="Ă" k="20" />
- <hkern g1="questiondown.caps" u2="Ā" k="20" />
- <hkern g1="questiondown.caps" u2="Þ" k="30" />
- <hkern g1="questiondown.caps" u2="Ü" k="50" />
- <hkern g1="questiondown.caps" u2="Û" k="50" />
- <hkern g1="questiondown.caps" u2="Ú" k="50" />
- <hkern g1="questiondown.caps" u2="Ù" k="50" />
- <hkern g1="questiondown.caps" u2="Ø" k="70" />
- <hkern g1="questiondown.caps" u2="Ö" k="70" />
- <hkern g1="questiondown.caps" u2="Õ" k="70" />
- <hkern g1="questiondown.caps" u2="Ô" k="70" />
- <hkern g1="questiondown.caps" u2="Ó" k="70" />
- <hkern g1="questiondown.caps" u2="Ò" k="70" />
- <hkern g1="questiondown.caps" u2="Ñ" k="30" />
- <hkern g1="questiondown.caps" u2="Ð" k="30" />
- <hkern g1="questiondown.caps" u2="Ï" k="30" />
- <hkern g1="questiondown.caps" u2="Î" k="30" />
- <hkern g1="questiondown.caps" u2="Í" k="30" />
- <hkern g1="questiondown.caps" u2="Ì" k="30" />
- <hkern g1="questiondown.caps" u2="Ë" k="30" />
- <hkern g1="questiondown.caps" u2="Ê" k="30" />
- <hkern g1="questiondown.caps" u2="É" k="30" />
- <hkern g1="questiondown.caps" u2="È" k="30" />
- <hkern g1="questiondown.caps" u2="Ç" k="70" />
- <hkern g1="questiondown.caps" u2="Æ" k="20" />
- <hkern g1="questiondown.caps" u2="Å" k="20" />
- <hkern g1="questiondown.caps" u2="Ä" k="20" />
- <hkern g1="questiondown.caps" u2="Ã" k="20" />
- <hkern g1="questiondown.caps" u2="Â" k="20" />
- <hkern g1="questiondown.caps" u2="Á" k="20" />
- <hkern g1="questiondown.caps" u2="À" k="20" />
- <hkern g1="questiondown.caps" u2="Z" k="20" />
- <hkern g1="questiondown.caps" u2="X" k="20" />
- <hkern g1="questiondown.caps" u2="U" k="50" />
- <hkern g1="questiondown.caps" u2="T" k="80" />
- <hkern g1="questiondown.caps" u2="S" k="50" />
- <hkern g1="questiondown.caps" u2="R" k="30" />
- <hkern g1="questiondown.caps" u2="Q" k="70" />
- <hkern g1="questiondown.caps" u2="P" k="30" />
- <hkern g1="questiondown.caps" u2="O" k="70" />
- <hkern g1="questiondown.caps" u2="N" k="30" />
- <hkern g1="questiondown.caps" u2="L" k="30" />
- <hkern g1="questiondown.caps" u2="K" k="30" />
- <hkern g1="questiondown.caps" u2="J" k="30" />
- <hkern g1="questiondown.caps" u2="I" k="30" />
- <hkern g1="questiondown.caps" u2="H" k="30" />
- <hkern g1="questiondown.caps" u2="G" k="70" />
- <hkern g1="questiondown.caps" u2="F" k="30" />
- <hkern g1="questiondown.caps" u2="E" k="30" />
- <hkern g1="questiondown.caps" u2="D" k="30" />
- <hkern g1="questiondown.caps" u2="C" k="70" />
- <hkern g1="questiondown.caps" u2="B" k="30" />
- <hkern g1="questiondown.caps" u2="A" k="20" />
- <hkern g1="periodcentered.caps" u2="Ỹ" k="50" />
- <hkern g1="periodcentered.caps" u2="Ỳ" k="50" />
- <hkern g1="periodcentered.caps" u2="Ȳ" k="50" />
- <hkern g1="periodcentered.caps" u2="Ÿ" k="50" />
- <hkern g1="periodcentered.caps" u2="Ŷ" k="50" />
- <hkern g1="periodcentered.caps" u2="Ý" k="50" />
- <hkern g1="periodcentered.caps" u2="Y" k="50" />
- <hkern g1="asterisk.caps" u2="Ọ" k="10" />
- <hkern g1="asterisk.caps" u2="Ạ" k="60" />
- <hkern g1="asterisk.caps" u2="Ǿ" k="10" />
- <hkern g1="asterisk.caps" u2="Ǽ" k="60" />
- <hkern g1="asterisk.caps" u2="Ǻ" k="60" />
- <hkern g1="asterisk.caps" u2="Ǵ" k="10" />
- <hkern g1="asterisk.caps" u2="Ǫ" k="10" />
- <hkern g1="asterisk.caps" u2="Ǧ" k="10" />
- <hkern g1="asterisk.caps" u2="Ǒ" k="10" />
- <hkern g1="asterisk.caps" u2="Ǎ" k="60" />
- <hkern g1="asterisk.caps" u2="Œ" k="10" />
- <hkern g1="asterisk.caps" u2="Ő" k="10" />
- <hkern g1="asterisk.caps" u2="Ŏ" k="10" />
- <hkern g1="asterisk.caps" u2="Ō" k="10" />
- <hkern g1="asterisk.caps" u2="Ģ" k="10" />
- <hkern g1="asterisk.caps" u2="Ġ" k="10" />
- <hkern g1="asterisk.caps" u2="Ğ" k="10" />
- <hkern g1="asterisk.caps" u2="Ĝ" k="10" />
- <hkern g1="asterisk.caps" u2="Č" k="10" />
- <hkern g1="asterisk.caps" u2="Ċ" k="10" />
- <hkern g1="asterisk.caps" u2="Ĉ" k="10" />
- <hkern g1="asterisk.caps" u2="Ć" k="10" />
- <hkern g1="asterisk.caps" u2="Ą" k="60" />
- <hkern g1="asterisk.caps" u2="Ă" k="60" />
- <hkern g1="asterisk.caps" u2="Ā" k="60" />
- <hkern g1="asterisk.caps" u2="Ø" k="10" />
- <hkern g1="asterisk.caps" u2="Ö" k="10" />
- <hkern g1="asterisk.caps" u2="Õ" k="10" />
- <hkern g1="asterisk.caps" u2="Ô" k="10" />
- <hkern g1="asterisk.caps" u2="Ó" k="10" />
- <hkern g1="asterisk.caps" u2="Ò" k="10" />
- <hkern g1="asterisk.caps" u2="Ç" k="10" />
- <hkern g1="asterisk.caps" u2="Æ" k="60" />
- <hkern g1="asterisk.caps" u2="Å" k="60" />
- <hkern g1="asterisk.caps" u2="Ä" k="60" />
- <hkern g1="asterisk.caps" u2="Ã" k="60" />
- <hkern g1="asterisk.caps" u2="Â" k="60" />
- <hkern g1="asterisk.caps" u2="Á" k="60" />
- <hkern g1="asterisk.caps" u2="À" k="60" />
- <hkern g1="asterisk.caps" u2="Q" k="10" />
- <hkern g1="asterisk.caps" u2="O" k="10" />
- <hkern g1="asterisk.caps" u2="G" k="10" />
- <hkern g1="asterisk.caps" u2="C" k="10" />
- <hkern g1="asterisk.caps" u2="A" k="60" />
- <hkern g1="parenleft.caps" u2="Ọ" k="30" />
- <hkern g1="parenleft.caps" u2="Ǿ" k="30" />
- <hkern g1="parenleft.caps" u2="Ǵ" k="30" />
- <hkern g1="parenleft.caps" u2="Ǫ" k="30" />
- <hkern g1="parenleft.caps" u2="Ǧ" k="30" />
- <hkern g1="parenleft.caps" u2="Ǒ" k="30" />
- <hkern g1="parenleft.caps" u2="Œ" k="30" />
- <hkern g1="parenleft.caps" u2="Ő" k="30" />
- <hkern g1="parenleft.caps" u2="Ŏ" k="30" />
- <hkern g1="parenleft.caps" u2="Ō" k="30" />
- <hkern g1="parenleft.caps" u2="Ģ" k="30" />
- <hkern g1="parenleft.caps" u2="Ġ" k="30" />
- <hkern g1="parenleft.caps" u2="Ğ" k="30" />
- <hkern g1="parenleft.caps" u2="Ĝ" k="30" />
- <hkern g1="parenleft.caps" u2="Č" k="30" />
- <hkern g1="parenleft.caps" u2="Ċ" k="30" />
- <hkern g1="parenleft.caps" u2="Ĉ" k="30" />
- <hkern g1="parenleft.caps" u2="Ć" k="30" />
- <hkern g1="parenleft.caps" u2="Ø" k="30" />
- <hkern g1="parenleft.caps" u2="Ö" k="30" />
- <hkern g1="parenleft.caps" u2="Õ" k="30" />
- <hkern g1="parenleft.caps" u2="Ô" k="30" />
- <hkern g1="parenleft.caps" u2="Ó" k="30" />
- <hkern g1="parenleft.caps" u2="Ò" k="30" />
- <hkern g1="parenleft.caps" u2="Ç" k="30" />
- <hkern g1="parenleft.caps" u2="Q" k="30" />
- <hkern g1="parenleft.caps" u2="O" k="30" />
- <hkern g1="parenleft.caps" u2="G" k="30" />
- <hkern g1="parenleft.caps" u2="C" k="30" />
- <hkern g1="quotedbl.caps" u2="Ạ" k="80" />
- <hkern g1="quotedbl.caps" u2="Ǽ" k="80" />
- <hkern g1="quotedbl.caps" u2="Ǻ" k="80" />
- <hkern g1="quotedbl.caps" u2="Ǎ" k="80" />
- <hkern g1="quotedbl.caps" u2="Ą" k="80" />
- <hkern g1="quotedbl.caps" u2="Ă" k="80" />
- <hkern g1="quotedbl.caps" u2="Ā" k="80" />
- <hkern g1="quotedbl.caps" u2="Æ" k="80" />
- <hkern g1="quotedbl.caps" u2="Å" k="80" />
- <hkern g1="quotedbl.caps" u2="Ä" k="80" />
- <hkern g1="quotedbl.caps" u2="Ã" k="80" />
- <hkern g1="quotedbl.caps" u2="Â" k="80" />
- <hkern g1="quotedbl.caps" u2="Á" k="80" />
- <hkern g1="quotedbl.caps" u2="À" k="80" />
- <hkern g1="quotedbl.caps" u2="A" k="80" />
- <hkern g1="quotesingle.caps" u2="Ọ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ạ" k="80" />
- <hkern g1="quotesingle.caps" u2="Ǿ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ǽ" k="80" />
- <hkern g1="quotesingle.caps" u2="Ǻ" k="80" />
- <hkern g1="quotesingle.caps" u2="Ǵ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ǫ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ǧ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ǒ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ǎ" k="80" />
- <hkern g1="quotesingle.caps" u2="Œ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ő" k="20" />
- <hkern g1="quotesingle.caps" u2="Ŏ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ō" k="20" />
- <hkern g1="quotesingle.caps" u2="Ģ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ġ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ğ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ĝ" k="20" />
- <hkern g1="quotesingle.caps" u2="Č" k="20" />
- <hkern g1="quotesingle.caps" u2="Ċ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ĉ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ć" k="20" />
- <hkern g1="quotesingle.caps" u2="Ą" k="80" />
- <hkern g1="quotesingle.caps" u2="Ă" k="80" />
- <hkern g1="quotesingle.caps" u2="Ā" k="80" />
- <hkern g1="quotesingle.caps" u2="Ø" k="20" />
- <hkern g1="quotesingle.caps" u2="Ö" k="20" />
- <hkern g1="quotesingle.caps" u2="Õ" k="20" />
- <hkern g1="quotesingle.caps" u2="Ô" k="20" />
- <hkern g1="quotesingle.caps" u2="Ó" k="20" />
- <hkern g1="quotesingle.caps" u2="Ò" k="20" />
- <hkern g1="quotesingle.caps" u2="Ç" k="20" />
- <hkern g1="quotesingle.caps" u2="Æ" k="80" />
- <hkern g1="quotesingle.caps" u2="Å" k="80" />
- <hkern g1="quotesingle.caps" u2="Ä" k="80" />
- <hkern g1="quotesingle.caps" u2="Ã" k="80" />
- <hkern g1="quotesingle.caps" u2="Â" k="80" />
- <hkern g1="quotesingle.caps" u2="Á" k="80" />
- <hkern g1="quotesingle.caps" u2="À" k="80" />
- <hkern g1="quotesingle.caps" u2="Q" k="20" />
- <hkern g1="quotesingle.caps" u2="O" k="20" />
- <hkern g1="quotesingle.caps" u2="G" k="20" />
- <hkern g1="quotesingle.caps" u2="C" k="20" />
- <hkern g1="quotesingle.caps" u2="A" k="80" />
- <hkern g1="parenleft.sc" g2="sdotbelow.sc" k="20" />
- <hkern g1="parenleft.sc" g2="scommaaccent.sc" k="20" />
- <hkern g1="parenleft.sc" g2="scircumflex.sc" k="20" />
- <hkern g1="parenleft.sc" g2="scedilla.sc" k="20" />
- <hkern g1="parenleft.sc" g2="scaron.sc" k="20" />
- <hkern g1="parenleft.sc" g2="sacute.sc" k="20" />
- <hkern g1="parenleft.sc" g2="s.sc" k="20" />
- <hkern g1="parenleft.sc" g2="q.sc" k="30" />
- <hkern g1="parenleft.sc" g2="oe.sc" k="30" />
- <hkern g1="parenleft.sc" g2="otilde.sc" k="30" />
- <hkern g1="parenleft.sc" g2="oslashacute.sc" k="30" />
- <hkern g1="parenleft.sc" g2="oslash.sc" k="30" />
- <hkern g1="parenleft.sc" g2="oogonek.sc" k="30" />
- <hkern g1="parenleft.sc" g2="omacron.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ohungarumlaut.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ograve.sc" k="30" />
- <hkern g1="parenleft.sc" g2="odotbelow.sc" k="30" />
- <hkern g1="parenleft.sc" g2="odieresis.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ocircumflex.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ocaron.sc" k="30" />
- <hkern g1="parenleft.sc" g2="obreve.sc" k="30" />
- <hkern g1="parenleft.sc" g2="oacute.sc" k="30" />
- <hkern g1="parenleft.sc" g2="o.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gdotaccent.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gcommaaccent.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gcircumflex.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gcaron.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gbreve.sc" k="30" />
- <hkern g1="parenleft.sc" g2="gacute.sc" k="30" />
- <hkern g1="parenleft.sc" g2="g.sc" k="30" />
- <hkern g1="parenleft.sc" g2="schwa.sc" k="30" />
- <hkern g1="parenleft.sc" g2="cdotaccent.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ccircumflex.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ccedilla.sc" k="30" />
- <hkern g1="parenleft.sc" g2="ccaron.sc" k="30" />
- <hkern g1="parenleft.sc" g2="cacute.sc" k="30" />
- <hkern g1="parenleft.sc" g2="c.sc" k="30" />
- <hkern g1="parenright.sc" g2="aeacute.sc" k="10" />
- <hkern g1="parenright.sc" g2="ae.sc" k="10" />
- <hkern g1="parenright.sc" g2="atilde.sc" k="10" />
- <hkern g1="parenright.sc" g2="aringacute.sc" k="10" />
- <hkern g1="parenright.sc" g2="aring.sc" k="10" />
- <hkern g1="parenright.sc" g2="aogonek.sc" k="10" />
- <hkern g1="parenright.sc" g2="amacron.sc" k="10" />
- <hkern g1="parenright.sc" g2="agrave.sc" k="10" />
- <hkern g1="parenright.sc" g2="adotbelow.sc" k="10" />
- <hkern g1="parenright.sc" g2="adieresis.sc" k="10" />
- <hkern g1="parenright.sc" g2="acircumflex.sc" k="10" />
- <hkern g1="parenright.sc" g2="acaron.sc" k="10" />
- <hkern g1="parenright.sc" g2="abreve.sc" k="10" />
- <hkern g1="parenright.sc" g2="aacute.sc" k="10" />
- <hkern g1="parenright.sc" g2="a.sc" k="10" />
- <hkern g1="braceleft.sc" g2="zdotbelow.sc" k="30" />
- <hkern g1="braceleft.sc" g2="zdotaccent.sc" k="30" />
- <hkern g1="braceleft.sc" g2="zcaron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="zacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="z.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ytilde.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ymacron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ygrave.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ydieresis.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ycircumflex.sc" k="20" />
- <hkern g1="braceleft.sc" g2="yacute.sc" k="20" />
- <hkern g1="braceleft.sc" g2="y.sc" k="20" />
- <hkern g1="braceleft.sc" g2="wgrave.sc" k="30" />
- <hkern g1="braceleft.sc" g2="wdieresis.sc" k="30" />
- <hkern g1="braceleft.sc" g2="wcircumflex.sc" k="30" />
- <hkern g1="braceleft.sc" g2="wacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="w.sc" k="30" />
- <hkern g1="braceleft.sc" g2="v.sc" k="30" />
- <hkern g1="braceleft.sc" g2="utilde.sc" k="20" />
- <hkern g1="braceleft.sc" g2="uring.sc" k="20" />
- <hkern g1="braceleft.sc" g2="uogonek.sc" k="20" />
- <hkern g1="braceleft.sc" g2="umacron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="uhungarumlaut.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ugrave.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udotbelow.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udieresismacron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udieresisgrave.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udieresiscaron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udieresisacute.sc" k="20" />
- <hkern g1="braceleft.sc" g2="udieresis.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ucircumflex.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ucaron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="ubreve.sc" k="20" />
- <hkern g1="braceleft.sc" g2="uacute.sc" k="20" />
- <hkern g1="braceleft.sc" g2="u.sc" k="20" />
- <hkern g1="braceleft.sc" g2="tdotbelow.sc" k="20" />
- <hkern g1="braceleft.sc" g2="tcommaaccent.sc" k="20" />
- <hkern g1="braceleft.sc" g2="tcedilla.sc" k="20" />
- <hkern g1="braceleft.sc" g2="tcaron.sc" k="20" />
- <hkern g1="braceleft.sc" g2="tbar.sc" k="20" />
- <hkern g1="braceleft.sc" g2="t.sc" k="20" />
- <hkern g1="braceleft.sc" g2="sdotbelow.sc" k="30" />
- <hkern g1="braceleft.sc" g2="scommaaccent.sc" k="30" />
- <hkern g1="braceleft.sc" g2="scircumflex.sc" k="30" />
- <hkern g1="braceleft.sc" g2="scedilla.sc" k="30" />
- <hkern g1="braceleft.sc" g2="scaron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="sacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="s.sc" k="30" />
- <hkern g1="braceleft.sc" g2="q.sc" k="30" />
- <hkern g1="braceleft.sc" g2="oe.sc" k="30" />
- <hkern g1="braceleft.sc" g2="otilde.sc" k="30" />
- <hkern g1="braceleft.sc" g2="oslashacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="oslash.sc" k="30" />
- <hkern g1="braceleft.sc" g2="oogonek.sc" k="30" />
- <hkern g1="braceleft.sc" g2="omacron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ohungarumlaut.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ograve.sc" k="30" />
- <hkern g1="braceleft.sc" g2="odotbelow.sc" k="30" />
- <hkern g1="braceleft.sc" g2="odieresis.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ocircumflex.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ocaron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="obreve.sc" k="30" />
- <hkern g1="braceleft.sc" g2="oacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="o.sc" k="30" />
- <hkern g1="braceleft.sc" g2="m.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gdotaccent.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gcommaaccent.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gcircumflex.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gcaron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gbreve.sc" k="30" />
- <hkern g1="braceleft.sc" g2="gacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="g.sc" k="30" />
- <hkern g1="braceleft.sc" g2="schwa.sc" k="30" />
- <hkern g1="braceleft.sc" g2="cdotaccent.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ccircumflex.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ccedilla.sc" k="30" />
- <hkern g1="braceleft.sc" g2="ccaron.sc" k="30" />
- <hkern g1="braceleft.sc" g2="cacute.sc" k="30" />
- <hkern g1="braceleft.sc" g2="c.sc" k="30" />
- <hkern g1="braceright.sc" g2="aeacute.sc" k="10" />
- <hkern g1="braceright.sc" g2="ae.sc" k="10" />
- <hkern g1="braceright.sc" g2="atilde.sc" k="10" />
- <hkern g1="braceright.sc" g2="aringacute.sc" k="10" />
- <hkern g1="braceright.sc" g2="aring.sc" k="10" />
- <hkern g1="braceright.sc" g2="aogonek.sc" k="10" />
- <hkern g1="braceright.sc" g2="amacron.sc" k="10" />
- <hkern g1="braceright.sc" g2="agrave.sc" k="10" />
- <hkern g1="braceright.sc" g2="adotbelow.sc" k="10" />
- <hkern g1="braceright.sc" g2="adieresis.sc" k="10" />
- <hkern g1="braceright.sc" g2="acircumflex.sc" k="10" />
- <hkern g1="braceright.sc" g2="acaron.sc" k="10" />
- <hkern g1="braceright.sc" g2="abreve.sc" k="10" />
- <hkern g1="braceright.sc" g2="aacute.sc" k="10" />
- <hkern g1="braceright.sc" g2="a.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ytilde.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ymacron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ygrave.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ydieresis.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ycircumflex.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="yacute.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="y.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="wgrave.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="wdieresis.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="wcircumflex.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="wacute.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="w.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="v.sc" k="30" />
- <hkern g1="bracketleft.sc" g2="utilde.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="uring.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="uogonek.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="umacron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="uhungarumlaut.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ugrave.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udotbelow.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udieresismacron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udieresisgrave.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udieresiscaron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udieresisacute.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="udieresis.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ucircumflex.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ucaron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="ubreve.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="uacute.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="u.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="sdotbelow.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="scommaaccent.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="scircumflex.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="scedilla.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="scaron.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="sacute.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="s.sc" k="20" />
- <hkern g1="bracketleft.sc" g2="q.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="oe.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="otilde.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="oslashacute.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="oslash.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="oogonek.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="omacron.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ohungarumlaut.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ograve.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="odotbelow.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="odieresis.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ocircumflex.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ocaron.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="obreve.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="oacute.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="o.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="m.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gdotaccent.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gcommaaccent.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gcircumflex.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gcaron.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gbreve.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="gacute.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="g.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="schwa.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="cdotaccent.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ccircumflex.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ccedilla.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="ccaron.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="cacute.sc" k="10" />
- <hkern g1="bracketleft.sc" g2="c.sc" k="10" />
- <hkern g1="exclamdown.sc" g2="zdotbelow.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="zdotaccent.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="zcaron.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="zacute.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="z.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="ytilde.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="ymacron.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="ygrave.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="ydieresis.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="ycircumflex.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="yacute.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="y.sc" k="70" />
- <hkern g1="exclamdown.sc" g2="x.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="wgrave.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="wdieresis.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="wcircumflex.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="wacute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="w.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="v.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="utilde.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="uring.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="uogonek.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="umacron.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="uhungarumlaut.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="ugrave.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udotbelow.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udieresismacron.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udieresisgrave.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udieresiscaron.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udieresisacute.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="udieresis.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="ucircumflex.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="ucaron.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="ubreve.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="uacute.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="u.sc" k="60" />
- <hkern g1="exclamdown.sc" g2="tdotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="tcommaaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="tcedilla.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="tcaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="tbar.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="t.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="germandbls.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="sdotbelow.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="scommaaccent.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="scircumflex.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="scedilla.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="scaron.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="sacute.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="s.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="rdotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="rcommaaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="rcaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="racute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="r.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="q.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="thorn.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="p.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="oe.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="otilde.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="oslashacute.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="oslash.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="oogonek.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="omacron.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ohungarumlaut.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ograve.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="odotbelow.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="odieresis.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ocircumflex.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ocaron.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="obreve.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="oacute.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="o.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ntilde.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="eng.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ndotaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ncommaaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ncaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="nacute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="n.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="m.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="lslash.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ldot.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="lcommaaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="lcaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="lacute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="l.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="kgreenlandic.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="kcommaaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="k.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="itilde.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="iogonek.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="imacron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ij.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="igrave.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="idotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="idotaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="idieresis.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="icircumflex.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="icaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ibreve.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="iacute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="dotlessi.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="i.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="hdotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="hcircumflex.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="hbar.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="h.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="gdotaccent.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="gcommaaccent.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="gcircumflex.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="gcaron.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="gbreve.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="gacute.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="g.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="f.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="schwa.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="etilde.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="eogonek.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="emacron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="egrave.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="edotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="edotaccent.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="edieresis.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ecircumflex.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ecaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ebreve.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="eacute.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="e.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="ddotbelow.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="dcroat.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="dcaron.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="eth.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="d.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="cdotaccent.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ccircumflex.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ccedilla.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="ccaron.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="cacute.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="c.sc" k="30" />
- <hkern g1="exclamdown.sc" g2="b.sc" k="50" />
- <hkern g1="exclamdown.sc" g2="aeacute.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="ae.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="atilde.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="aringacute.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="aring.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="aogonek.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="amacron.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="agrave.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="adotbelow.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="adieresis.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="acircumflex.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="acaron.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="abreve.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="aacute.sc" k="40" />
- <hkern g1="exclamdown.sc" g2="a.sc" k="40" />
- <hkern g1="questiondown.sc" g2="zdotbelow.sc" k="20" />
- <hkern g1="questiondown.sc" g2="zdotaccent.sc" k="20" />
- <hkern g1="questiondown.sc" g2="zcaron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="zacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="z.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ytilde.sc" k="70" />
- <hkern g1="questiondown.sc" g2="ymacron.sc" k="70" />
- <hkern g1="questiondown.sc" g2="ygrave.sc" k="70" />
- <hkern g1="questiondown.sc" g2="ydieresis.sc" k="70" />
- <hkern g1="questiondown.sc" g2="ycircumflex.sc" k="70" />
- <hkern g1="questiondown.sc" g2="yacute.sc" k="70" />
- <hkern g1="questiondown.sc" g2="y.sc" k="70" />
- <hkern g1="questiondown.sc" g2="wgrave.sc" k="50" />
- <hkern g1="questiondown.sc" g2="wdieresis.sc" k="50" />
- <hkern g1="questiondown.sc" g2="wcircumflex.sc" k="50" />
- <hkern g1="questiondown.sc" g2="wacute.sc" k="50" />
- <hkern g1="questiondown.sc" g2="w.sc" k="50" />
- <hkern g1="questiondown.sc" g2="v.sc" k="50" />
- <hkern g1="questiondown.sc" g2="utilde.sc" k="30" />
- <hkern g1="questiondown.sc" g2="uring.sc" k="30" />
- <hkern g1="questiondown.sc" g2="uogonek.sc" k="30" />
- <hkern g1="questiondown.sc" g2="umacron.sc" k="30" />
- <hkern g1="questiondown.sc" g2="uhungarumlaut.sc" k="30" />
- <hkern g1="questiondown.sc" g2="ugrave.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udotbelow.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udieresismacron.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udieresisgrave.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udieresiscaron.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udieresisacute.sc" k="30" />
- <hkern g1="questiondown.sc" g2="udieresis.sc" k="30" />
- <hkern g1="questiondown.sc" g2="ucircumflex.sc" k="30" />
- <hkern g1="questiondown.sc" g2="ucaron.sc" k="30" />
- <hkern g1="questiondown.sc" g2="ubreve.sc" k="30" />
- <hkern g1="questiondown.sc" g2="uacute.sc" k="30" />
- <hkern g1="questiondown.sc" g2="u.sc" k="30" />
- <hkern g1="questiondown.sc" g2="tdotbelow.sc" k="70" />
- <hkern g1="questiondown.sc" g2="tcommaaccent.sc" k="70" />
- <hkern g1="questiondown.sc" g2="tcedilla.sc" k="70" />
- <hkern g1="questiondown.sc" g2="tcaron.sc" k="70" />
- <hkern g1="questiondown.sc" g2="tbar.sc" k="70" />
- <hkern g1="questiondown.sc" g2="t.sc" k="70" />
- <hkern g1="questiondown.sc" g2="sdotbelow.sc" k="20" />
- <hkern g1="questiondown.sc" g2="scommaaccent.sc" k="20" />
- <hkern g1="questiondown.sc" g2="scircumflex.sc" k="20" />
- <hkern g1="questiondown.sc" g2="scedilla.sc" k="20" />
- <hkern g1="questiondown.sc" g2="scaron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="sacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="s.sc" k="20" />
- <hkern g1="questiondown.sc" g2="q.sc" k="20" />
- <hkern g1="questiondown.sc" g2="oe.sc" k="20" />
- <hkern g1="questiondown.sc" g2="otilde.sc" k="20" />
- <hkern g1="questiondown.sc" g2="oslashacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="oslash.sc" k="20" />
- <hkern g1="questiondown.sc" g2="oogonek.sc" k="20" />
- <hkern g1="questiondown.sc" g2="omacron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ohungarumlaut.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ograve.sc" k="20" />
- <hkern g1="questiondown.sc" g2="odotbelow.sc" k="20" />
- <hkern g1="questiondown.sc" g2="odieresis.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ocircumflex.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ocaron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="obreve.sc" k="20" />
- <hkern g1="questiondown.sc" g2="oacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="o.sc" k="20" />
- <hkern g1="questiondown.sc" g2="m.sc" k="10" />
- <hkern g1="questiondown.sc" g2="gdotaccent.sc" k="20" />
- <hkern g1="questiondown.sc" g2="gcommaaccent.sc" k="20" />
- <hkern g1="questiondown.sc" g2="gcircumflex.sc" k="20" />
- <hkern g1="questiondown.sc" g2="gcaron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="gbreve.sc" k="20" />
- <hkern g1="questiondown.sc" g2="gacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="g.sc" k="20" />
- <hkern g1="questiondown.sc" g2="schwa.sc" k="20" />
- <hkern g1="questiondown.sc" g2="cdotaccent.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ccircumflex.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ccedilla.sc" k="20" />
- <hkern g1="questiondown.sc" g2="ccaron.sc" k="20" />
- <hkern g1="questiondown.sc" g2="cacute.sc" k="20" />
- <hkern g1="questiondown.sc" g2="c.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="zdotbelow.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="zdotaccent.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="zcaron.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="zacute.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="z.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="wgrave.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="wdieresis.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="wcircumflex.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="wacute.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="w.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="v.sc" k="10" />
- <hkern g1="periodcentered.sc" g2="tdotbelow.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="tcommaaccent.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="tcedilla.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="tcaron.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="tbar.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="t.sc" k="30" />
- <hkern g1="periodcentered.sc" g2="aeacute.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="ae.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="atilde.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="aringacute.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="aring.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="aogonek.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="amacron.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="agrave.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="adotbelow.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="adieresis.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="acircumflex.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="acaron.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="abreve.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="aacute.sc" k="20" />
- <hkern g1="periodcentered.sc" g2="a.sc" k="20" />
- <hkern g1="asterisk.sc" g2="germandbls.sc" k="20" />
- <hkern g1="asterisk.sc" g2="sdotbelow.sc" k="30" />
- <hkern g1="asterisk.sc" g2="scommaaccent.sc" k="30" />
- <hkern g1="asterisk.sc" g2="scircumflex.sc" k="30" />
- <hkern g1="asterisk.sc" g2="scedilla.sc" k="30" />
- <hkern g1="asterisk.sc" g2="scaron.sc" k="30" />
- <hkern g1="asterisk.sc" g2="sacute.sc" k="30" />
- <hkern g1="asterisk.sc" g2="s.sc" k="30" />
- <hkern g1="asterisk.sc" g2="rdotbelow.sc" k="20" />
- <hkern g1="asterisk.sc" g2="rcommaaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="rcaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="racute.sc" k="20" />
- <hkern g1="asterisk.sc" g2="r.sc" k="20" />
- <hkern g1="asterisk.sc" g2="q.sc" k="30" />
- <hkern g1="asterisk.sc" g2="thorn.sc" k="20" />
- <hkern g1="asterisk.sc" g2="p.sc" k="20" />
- <hkern g1="asterisk.sc" g2="oe.sc" k="30" />
- <hkern g1="asterisk.sc" g2="otilde.sc" k="30" />
- <hkern g1="asterisk.sc" g2="oslashacute.sc" k="30" />
- <hkern g1="asterisk.sc" g2="oslash.sc" k="30" />
- <hkern g1="asterisk.sc" g2="oogonek.sc" k="30" />
- <hkern g1="asterisk.sc" g2="omacron.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ohungarumlaut.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ograve.sc" k="30" />
- <hkern g1="asterisk.sc" g2="odotbelow.sc" k="30" />
- <hkern g1="asterisk.sc" g2="odieresis.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ocircumflex.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ocaron.sc" k="30" />
- <hkern g1="asterisk.sc" g2="obreve.sc" k="30" />
- <hkern g1="asterisk.sc" g2="oacute.sc" k="30" />
- <hkern g1="asterisk.sc" g2="o.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ntilde.sc" k="20" />
- <hkern g1="asterisk.sc" g2="eng.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ndotaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ncommaaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ncaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="nacute.sc" k="20" />
- <hkern g1="asterisk.sc" g2="n.sc" k="20" />
- <hkern g1="asterisk.sc" g2="m.sc" k="10" />
- <hkern g1="asterisk.sc" g2="lslash.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ldot.sc" k="20" />
- <hkern g1="asterisk.sc" g2="lcommaaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="lcaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="lacute.sc" k="20" />
- <hkern g1="asterisk.sc" g2="l.sc" k="20" />
- <hkern g1="asterisk.sc" g2="kgreenlandic.sc" k="20" />
- <hkern g1="asterisk.sc" g2="kcommaaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="k.sc" k="20" />
- <hkern g1="asterisk.sc" g2="itilde.sc" k="20" />
- <hkern g1="asterisk.sc" g2="iogonek.sc" k="20" />
- <hkern g1="asterisk.sc" g2="imacron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ij.sc" k="20" />
- <hkern g1="asterisk.sc" g2="igrave.sc" k="20" />
- <hkern g1="asterisk.sc" g2="idotbelow.sc" k="20" />
- <hkern g1="asterisk.sc" g2="idotaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="idieresis.sc" k="20" />
- <hkern g1="asterisk.sc" g2="icircumflex.sc" k="20" />
- <hkern g1="asterisk.sc" g2="icaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ibreve.sc" k="20" />
- <hkern g1="asterisk.sc" g2="iacute.sc" k="20" />
- <hkern g1="asterisk.sc" g2="dotlessi.sc" k="20" />
- <hkern g1="asterisk.sc" g2="i.sc" k="20" />
- <hkern g1="asterisk.sc" g2="hdotbelow.sc" k="20" />
- <hkern g1="asterisk.sc" g2="hcircumflex.sc" k="20" />
- <hkern g1="asterisk.sc" g2="hbar.sc" k="20" />
- <hkern g1="asterisk.sc" g2="h.sc" k="20" />
- <hkern g1="asterisk.sc" g2="gdotaccent.sc" k="30" />
- <hkern g1="asterisk.sc" g2="gcommaaccent.sc" k="30" />
- <hkern g1="asterisk.sc" g2="gcircumflex.sc" k="30" />
- <hkern g1="asterisk.sc" g2="gcaron.sc" k="30" />
- <hkern g1="asterisk.sc" g2="gbreve.sc" k="30" />
- <hkern g1="asterisk.sc" g2="gacute.sc" k="30" />
- <hkern g1="asterisk.sc" g2="g.sc" k="30" />
- <hkern g1="asterisk.sc" g2="f.sc" k="20" />
- <hkern g1="asterisk.sc" g2="schwa.sc" k="30" />
- <hkern g1="asterisk.sc" g2="etilde.sc" k="20" />
- <hkern g1="asterisk.sc" g2="eogonek.sc" k="20" />
- <hkern g1="asterisk.sc" g2="emacron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="egrave.sc" k="20" />
- <hkern g1="asterisk.sc" g2="edotbelow.sc" k="20" />
- <hkern g1="asterisk.sc" g2="edotaccent.sc" k="20" />
- <hkern g1="asterisk.sc" g2="edieresis.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ecircumflex.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ecaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ebreve.sc" k="20" />
- <hkern g1="asterisk.sc" g2="eacute.sc" k="20" />
- <hkern g1="asterisk.sc" g2="e.sc" k="20" />
- <hkern g1="asterisk.sc" g2="ddotbelow.sc" k="20" />
- <hkern g1="asterisk.sc" g2="dcroat.sc" k="20" />
- <hkern g1="asterisk.sc" g2="dcaron.sc" k="20" />
- <hkern g1="asterisk.sc" g2="eth.sc" k="20" />
- <hkern g1="asterisk.sc" g2="d.sc" k="20" />
- <hkern g1="asterisk.sc" g2="cdotaccent.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ccircumflex.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ccedilla.sc" k="30" />
- <hkern g1="asterisk.sc" g2="ccaron.sc" k="30" />
- <hkern g1="asterisk.sc" g2="cacute.sc" k="30" />
- <hkern g1="asterisk.sc" g2="c.sc" k="30" />
- <hkern g1="asterisk.sc" g2="b.sc" k="20" />
- <hkern g1="asterisk.sc" g2="aeacute.sc" k="80" />
- <hkern g1="asterisk.sc" g2="ae.sc" k="80" />
- <hkern g1="asterisk.sc" g2="atilde.sc" k="80" />
- <hkern g1="asterisk.sc" g2="aringacute.sc" k="80" />
- <hkern g1="asterisk.sc" g2="aring.sc" k="80" />
- <hkern g1="asterisk.sc" g2="aogonek.sc" k="80" />
- <hkern g1="asterisk.sc" g2="amacron.sc" k="80" />
- <hkern g1="asterisk.sc" g2="agrave.sc" k="80" />
- <hkern g1="asterisk.sc" g2="adotbelow.sc" k="80" />
- <hkern g1="asterisk.sc" g2="adieresis.sc" k="80" />
- <hkern g1="asterisk.sc" g2="acircumflex.sc" k="80" />
- <hkern g1="asterisk.sc" g2="acaron.sc" k="80" />
- <hkern g1="asterisk.sc" g2="abreve.sc" k="80" />
- <hkern g1="asterisk.sc" g2="aacute.sc" k="80" />
- <hkern g1="asterisk.sc" g2="a.sc" k="80" />
- <hkern g1="quotedbl.sc" g2="zdotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="zdotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="zcaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="zacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="z.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="germandbls.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="rdotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="rcommaaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="rcaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="racute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="r.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="q.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="thorn.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="p.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="oe.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="otilde.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="oslashacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="oslash.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="oogonek.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="omacron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ohungarumlaut.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ograve.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="odotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="odieresis.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ocircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ocaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="obreve.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="oacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="o.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ntilde.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="eng.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ndotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ncommaaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ncaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="nacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="n.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="m.sc" k="30" />
- <hkern g1="quotedbl.sc" g2="lslash.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ldot.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="lcommaaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="lcaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="lacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="l.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="kgreenlandic.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="kcommaaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="k.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="itilde.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="iogonek.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="imacron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ij.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="igrave.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="idotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="idotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="idieresis.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="icircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="icaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ibreve.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="iacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="dotlessi.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="i.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="hdotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="hcircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="hbar.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="h.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gdotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gcommaaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gcircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gcaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gbreve.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="gacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="g.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="f.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="schwa.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="etilde.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="eogonek.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="emacron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="egrave.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="edotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="edotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="edieresis.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ecircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ecaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ebreve.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="eacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="e.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ddotbelow.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="dcroat.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="dcaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="eth.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="d.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="cdotaccent.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ccircumflex.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ccedilla.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="ccaron.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="cacute.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="c.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="b.sc" k="20" />
- <hkern g1="quotedbl.sc" g2="aeacute.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="ae.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="atilde.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="aringacute.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="aring.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="aogonek.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="amacron.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="agrave.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="adotbelow.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="adieresis.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="acircumflex.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="acaron.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="abreve.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="aacute.sc" k="40" />
- <hkern g1="quotedbl.sc" g2="a.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="germandbls.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="rdotbelow.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="rcommaaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="rcaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="racute.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="r.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="q.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="thorn.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="p.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="oe.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="otilde.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="oslashacute.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="oslash.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="oogonek.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="omacron.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ohungarumlaut.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ograve.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="odotbelow.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="odieresis.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ocircumflex.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ocaron.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="obreve.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="oacute.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="o.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ntilde.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="eng.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ndotaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ncommaaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ncaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="nacute.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="n.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="m.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="lslash.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ldot.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="lcommaaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="lcaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="lacute.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="l.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="kgreenlandic.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="kcommaaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="k.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="itilde.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="iogonek.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="imacron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ij.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="igrave.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="idotbelow.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="idotaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="idieresis.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="icircumflex.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="icaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ibreve.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="iacute.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="dotlessi.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="i.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="hdotbelow.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="hcircumflex.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="hbar.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="h.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="gdotaccent.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="gcommaaccent.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="gcircumflex.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="gcaron.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="gbreve.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="gacute.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="g.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="f.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="schwa.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="etilde.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="eogonek.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="emacron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="egrave.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="edotbelow.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="edotaccent.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="edieresis.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ecircumflex.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ecaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ebreve.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="eacute.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="e.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="ddotbelow.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="dcroat.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="dcaron.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="eth.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="d.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="cdotaccent.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ccircumflex.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ccedilla.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="ccaron.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="cacute.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="c.sc" k="30" />
- <hkern g1="quotesingle.sc" g2="b.sc" k="20" />
- <hkern g1="quotesingle.sc" g2="aeacute.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="ae.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="atilde.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="aringacute.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="aring.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="aogonek.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="amacron.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="agrave.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="adotbelow.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="adieresis.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="acircumflex.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="acaron.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="abreve.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="aacute.sc" k="40" />
- <hkern g1="quotesingle.sc" g2="a.sc" k="40" />
- <hkern g1="ampersand.caps" g2="IJacute" k="10" />
- <hkern g1="ampersand.caps" u2="Ỹ" k="70" />
- <hkern g1="ampersand.caps" u2="Ỳ" k="70" />
- <hkern g1="ampersand.caps" u2="Ụ" k="20" />
- <hkern g1="ampersand.caps" u2="Ọ" k="20" />
- <hkern g1="ampersand.caps" u2="Ị" k="10" />
- <hkern g1="ampersand.caps" u2="Ẽ" k="10" />
- <hkern g1="ampersand.caps" u2="Ẹ" k="10" />
- <hkern g1="ampersand.caps" u2="Ạ" k="10" />
- <hkern g1="ampersand.caps" u2="Ẅ" k="70" />
- <hkern g1="ampersand.caps" u2="Ẃ" k="70" />
- <hkern g1="ampersand.caps" u2="Ẁ" k="70" />
- <hkern g1="ampersand.caps" u2="Ṭ" k="70" />
- <hkern g1="ampersand.caps" u2="Ṛ" k="10" />
- <hkern g1="ampersand.caps" u2="Ṅ" k="10" />
- <hkern g1="ampersand.caps" u2="Ḥ" k="10" />
- <hkern g1="ampersand.caps" u2="Ḍ" k="10" />
- <hkern g1="ampersand.caps" u2="Ȳ" k="70" />
- <hkern g1="ampersand.caps" u2="Ț" k="70" />
- <hkern g1="ampersand.caps" u2="Ǿ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǽ" k="10" />
- <hkern g1="ampersand.caps" u2="Ǻ" k="10" />
- <hkern g1="ampersand.caps" u2="Ǵ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǫ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǧ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǜ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǚ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǘ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǖ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǔ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǒ" k="20" />
- <hkern g1="ampersand.caps" u2="Ǐ" k="10" />
- <hkern g1="ampersand.caps" u2="Ǎ" k="10" />
- <hkern g1="ampersand.caps" u2="Ÿ" k="70" />
- <hkern g1="ampersand.caps" u2="Ŷ" k="70" />
- <hkern g1="ampersand.caps" u2="Ŵ" k="70" />
- <hkern g1="ampersand.caps" u2="Ų" k="20" />
- <hkern g1="ampersand.caps" u2="Ű" k="20" />
- <hkern g1="ampersand.caps" u2="Ů" k="20" />
- <hkern g1="ampersand.caps" u2="Ŭ" k="20" />
- <hkern g1="ampersand.caps" u2="Ū" k="20" />
- <hkern g1="ampersand.caps" u2="Ũ" k="20" />
- <hkern g1="ampersand.caps" u2="Ŧ" k="70" />
- <hkern g1="ampersand.caps" u2="Ť" k="70" />
- <hkern g1="ampersand.caps" u2="Ţ" k="70" />
- <hkern g1="ampersand.caps" u2="Ř" k="10" />
- <hkern g1="ampersand.caps" u2="Ŗ" k="10" />
- <hkern g1="ampersand.caps" u2="Ŕ" k="10" />
- <hkern g1="ampersand.caps" u2="Œ" k="20" />
- <hkern g1="ampersand.caps" u2="Ő" k="20" />
- <hkern g1="ampersand.caps" u2="Ŏ" k="20" />
- <hkern g1="ampersand.caps" u2="Ō" k="20" />
- <hkern g1="ampersand.caps" u2="Ŋ" k="10" />
- <hkern g1="ampersand.caps" u2="Ň" k="10" />
- <hkern g1="ampersand.caps" u2="Ņ" k="10" />
- <hkern g1="ampersand.caps" u2="Ń" k="10" />
- <hkern g1="ampersand.caps" u2="Ł" k="10" />
- <hkern g1="ampersand.caps" u2="Ŀ" k="10" />
- <hkern g1="ampersand.caps" u2="Ľ" k="10" />
- <hkern g1="ampersand.caps" u2="Ļ" k="10" />
- <hkern g1="ampersand.caps" u2="Ĺ" k="10" />
- <hkern g1="ampersand.caps" u2="Ķ" k="10" />
- <hkern g1="ampersand.caps" u2="IJ" k="10" />
- <hkern g1="ampersand.caps" u2="İ" k="10" />
- <hkern g1="ampersand.caps" u2="Į" k="10" />
- <hkern g1="ampersand.caps" u2="Ĭ" k="10" />
- <hkern g1="ampersand.caps" u2="Ī" k="10" />
- <hkern g1="ampersand.caps" u2="Ĩ" k="10" />
- <hkern g1="ampersand.caps" u2="Ħ" k="10" />
- <hkern g1="ampersand.caps" u2="Ĥ" k="10" />
- <hkern g1="ampersand.caps" u2="Ģ" k="20" />
- <hkern g1="ampersand.caps" u2="Ġ" k="20" />
- <hkern g1="ampersand.caps" u2="Ğ" k="20" />
- <hkern g1="ampersand.caps" u2="Ĝ" k="20" />
- <hkern g1="ampersand.caps" u2="Ě" k="10" />
- <hkern g1="ampersand.caps" u2="Ę" k="10" />
- <hkern g1="ampersand.caps" u2="Ė" k="10" />
- <hkern g1="ampersand.caps" u2="Ĕ" k="10" />
- <hkern g1="ampersand.caps" u2="Ē" k="10" />
- <hkern g1="ampersand.caps" u2="Đ" k="10" />
- <hkern g1="ampersand.caps" u2="Ď" k="10" />
- <hkern g1="ampersand.caps" u2="Č" k="20" />
- <hkern g1="ampersand.caps" u2="Ċ" k="20" />
- <hkern g1="ampersand.caps" u2="Ĉ" k="20" />
- <hkern g1="ampersand.caps" u2="Ć" k="20" />
- <hkern g1="ampersand.caps" u2="Ą" k="10" />
- <hkern g1="ampersand.caps" u2="Ă" k="10" />
- <hkern g1="ampersand.caps" u2="Ā" k="10" />
- <hkern g1="ampersand.caps" u2="Þ" k="10" />
- <hkern g1="ampersand.caps" u2="Ý" k="70" />
- <hkern g1="ampersand.caps" u2="Ü" k="20" />
- <hkern g1="ampersand.caps" u2="Û" k="20" />
- <hkern g1="ampersand.caps" u2="Ú" k="20" />
- <hkern g1="ampersand.caps" u2="Ù" k="20" />
- <hkern g1="ampersand.caps" u2="Ø" k="20" />
- <hkern g1="ampersand.caps" u2="Ö" k="20" />
- <hkern g1="ampersand.caps" u2="Õ" k="20" />
- <hkern g1="ampersand.caps" u2="Ô" k="20" />
- <hkern g1="ampersand.caps" u2="Ó" k="20" />
- <hkern g1="ampersand.caps" u2="Ò" k="20" />
- <hkern g1="ampersand.caps" u2="Ñ" k="10" />
- <hkern g1="ampersand.caps" u2="Ð" k="10" />
- <hkern g1="ampersand.caps" u2="Ï" k="10" />
- <hkern g1="ampersand.caps" u2="Î" k="10" />
- <hkern g1="ampersand.caps" u2="Í" k="10" />
- <hkern g1="ampersand.caps" u2="Ì" k="10" />
- <hkern g1="ampersand.caps" u2="Ë" k="10" />
- <hkern g1="ampersand.caps" u2="Ê" k="10" />
- <hkern g1="ampersand.caps" u2="É" k="10" />
- <hkern g1="ampersand.caps" u2="È" k="10" />
- <hkern g1="ampersand.caps" u2="Ç" k="20" />
- <hkern g1="ampersand.caps" u2="Æ" k="10" />
- <hkern g1="ampersand.caps" u2="Å" k="10" />
- <hkern g1="ampersand.caps" u2="Ä" k="10" />
- <hkern g1="ampersand.caps" u2="Ã" k="10" />
- <hkern g1="ampersand.caps" u2="Â" k="10" />
- <hkern g1="ampersand.caps" u2="Á" k="10" />
- <hkern g1="ampersand.caps" u2="À" k="10" />
- <hkern g1="ampersand.caps" u2="Y" k="70" />
- <hkern g1="ampersand.caps" u2="X" k="20" />
- <hkern g1="ampersand.caps" u2="W" k="70" />
- <hkern g1="ampersand.caps" u2="V" k="70" />
- <hkern g1="ampersand.caps" u2="U" k="20" />
- <hkern g1="ampersand.caps" u2="T" k="70" />
- <hkern g1="ampersand.caps" u2="R" k="10" />
- <hkern g1="ampersand.caps" u2="Q" k="20" />
- <hkern g1="ampersand.caps" u2="P" k="10" />
- <hkern g1="ampersand.caps" u2="O" k="20" />
- <hkern g1="ampersand.caps" u2="N" k="10" />
- <hkern g1="ampersand.caps" u2="L" k="10" />
- <hkern g1="ampersand.caps" u2="K" k="10" />
- <hkern g1="ampersand.caps" u2="I" k="10" />
- <hkern g1="ampersand.caps" u2="H" k="10" />
- <hkern g1="ampersand.caps" u2="G" k="20" />
- <hkern g1="ampersand.caps" u2="F" k="10" />
- <hkern g1="ampersand.caps" u2="E" k="10" />
- <hkern g1="ampersand.caps" u2="D" k="10" />
- <hkern g1="ampersand.caps" u2="C" k="20" />
- <hkern g1="ampersand.caps" u2="B" k="10" />
- <hkern g1="ampersand.caps" u2="A" k="10" />
- <hkern g1="florin.sc" g2="sterling.sc" k="100" />
- <hkern g1="IJacute" g2="question.caps" k="30" />
- <hkern g1="IJacute" g2="exclam.caps" k="20" />
- <hkern g1="B" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
- <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
- <hkern g1="B" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
- <hkern g1="B" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
- <hkern g1="B" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
- <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
- <hkern g1="B" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <hkern g1="B" g2="parenright,parenright.caps,parenright.sc" k="30" />
- <hkern g1="B" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
- <hkern g1="B" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
- <hkern g1="B" g2="slash,slash.caps,slash.sc" k="20" />
- <hkern g1="Delta" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="80" />
- <hkern g1="Delta" g2="backslash,backslash.caps,backslash.sc" k="40" />
- <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="25" />
- <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
- <hkern g1="F" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="F" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-10" />
- <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" />
- <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="30" />
- <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" />
- <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" />
- <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" />
- <hkern g1="F" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="30" />
- <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
- <hkern g1="F" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
- <hkern g1="F" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="60" />
- <hkern g1="F" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="50" />
- <hkern g1="M" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <hkern g1="M" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
- <hkern g1="M" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
- <hkern g1="M" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
- <hkern g1="M" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
- <hkern g1="M" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="M" g2="parenright,parenright.caps,parenright.sc" k="20" />
- <hkern g1="M" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
- <hkern g1="M" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <hkern g1="M" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
- <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" />
- <hkern g1="M" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
- <hkern g1="M" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="M" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
- <hkern g1="M" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="M" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <hkern g1="M" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
- <hkern g1="M" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="M" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
- <hkern g1="M" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
- <hkern g1="M" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
- <hkern g1="M" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
- <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="55" />
- <hkern g1="P" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
- <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
- <hkern g1="P" g2="parenright,parenright.caps,parenright.sc" k="10" />
- <hkern g1="P" g2="slash,slash.caps,slash.sc" k="60" />
- <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" />
- <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="15" />
- <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" />
- <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" />
- <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" />
- <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="140" />
- <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
- <hkern g1="P" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
- <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="15" />
- <hkern g1="P" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
- <hkern g1="P" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
- <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" />
- <hkern g1="P" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
- <hkern g1="P" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
- <hkern g1="P" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
- <hkern g1="P" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="-5" />
- <hkern g1="Thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
- <hkern g1="Thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
- <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" />
- <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" />
- <hkern g1="Thorn" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
- <hkern g1="Thorn" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
- <hkern g1="Thorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
- <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" />
- <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
- <hkern g1="X" g2="slash,slash.caps,slash.sc" k="10" />
- <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" />
- <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="10" />
- <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" />
- <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" />
- <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" />
- <hkern g1="X" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
- <hkern g1="X" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
- <hkern g1="X" g2="f,germandbls,Germandbls,fi,fl" k="30" />
- <hkern g1="X" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
- <hkern g1="X" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="20" />
- <hkern g1="X" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
- <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
- <hkern g1="X" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
- <hkern g1="X" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
- <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" />
- <hkern g1="X" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
- <hkern g1="at" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <hkern g1="at" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <hkern g1="at" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="b.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <hkern g1="b.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
- <hkern g1="b.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
- <hkern g1="b.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
- <hkern g1="b.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
- <hkern g1="b.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
- <hkern g1="b.sc" g2="quotedblleft.sc,quoteleft.sc" k="10" />
- <hkern g1="b.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
- <hkern g1="bar" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
- <hkern g1="bar" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="cent.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
- <hkern g1="cent.sc" g2="three,three.lf,three.osf,three.sc" k="-30" />
- <hkern g1="currency.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="emdash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
- <hkern g1="emdash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="35" />
- <hkern g1="emdash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
- <hkern g1="emdash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
- <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" />
- <hkern g1="emdash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
- <hkern g1="emdash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
- <hkern g1="emdash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
- <hkern g1="emdash" g2="two,two.lf,two.osf,two.sc" k="10" />
- <hkern g1="emdash" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="endash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
- <hkern g1="endash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
- <hkern g1="endash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
- <hkern g1="endash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
- <hkern g1="endash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
- <hkern g1="endash" g2="backslash,backslash.caps,backslash.sc" k="30" />
- <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" />
- <hkern g1="endash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
- <hkern g1="endash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
- <hkern g1="endash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
- <hkern g1="endash" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
- <hkern g1="endash" g2="two,two.lf,two.osf,two.sc" k="15" />
- <hkern g1="endash" g2="seven,seven.lf,seven.osf,seven.sc" k="25" />
- <hkern g1="endash" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
- <hkern g1="f.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="f.sc" g2="slash,slash.caps,slash.sc" k="20" />
- <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" />
- <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" />
- <hkern g1="f.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
- <hkern g1="f.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
- <hkern g1="f.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="5" />
- <hkern g1="f.sc" g2="quotedblright.sc,quoteright.sc" k="-30" />
- <hkern g1="f.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
- <hkern g1="fraction" g2="slash,slash.caps,slash.sc" k="80" />
- <hkern g1="fraction" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="200" />
- <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" />
- <hkern g1="hyphen" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
- <hkern g1="hyphen" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
- <hkern g1="hyphen" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
- <hkern g1="hyphen" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
- <hkern g1="hyphen" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
- <hkern g1="hyphen" g2="backslash,backslash.caps,backslash.sc" k="20" />
- <hkern g1="hyphen" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
- <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" />
- <hkern g1="hyphen" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="25" />
- <hkern g1="hyphen" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
- <hkern g1="hyphen" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
- <hkern g1="hyphen" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="hyphen" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
- <hkern g1="hyphen" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="25" />
- <hkern g1="hyphen" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
- <hkern g1="hyphen" g2="two,two.lf,two.osf,two.sc" k="20" />
- <hkern g1="hyphen" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="hyphen" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="5" />
- <hkern g1="hyphen" g2="florin,florin.lf,florin.osf,florin.sc" k="5" />
- <hkern g1="integral" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
- <hkern g1="m.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <hkern g1="m.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
- <hkern g1="m.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
- <hkern g1="m.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
- <hkern g1="m.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
- <hkern g1="m.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
- <hkern g1="m.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
- <hkern g1="m.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
- <hkern g1="m.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
- <hkern g1="p.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <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" />
- <hkern g1="p.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="100" />
- <hkern g1="p.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
- <hkern g1="p.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="p.sc" g2="quotedblright.sc,quoteright.sc" k="-10" />
- <hkern g1="p.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="p.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
- <hkern g1="partialdiff" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <hkern g1="partialdiff" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="product" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="sterling.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
- <hkern g1="sterling.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="sterling.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
- <hkern g1="sterling.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
- <hkern g1="sterling.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-10" />
- <hkern g1="sterling.sc" g2="one,one.lf,one.osf,one.sc" k="-10" />
- <hkern g1="sterling.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
- <hkern g1="thorn.sc" g2="slash,slash.caps,slash.sc" k="30" />
- <hkern g1="underscore" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
- <hkern g1="underscore" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
- <hkern g1="underscore" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
- <hkern g1="underscore" g2="backslash,backslash.caps,backslash.sc" k="40" />
- <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" />
- <hkern g1="underscore" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="20" />
- <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" />
- <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" />
- <hkern g1="underscore" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
- <hkern g1="underscore" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
- <hkern g1="underscore" g2="f,germandbls,Germandbls,fi,fl" k="20" />
- <hkern g1="underscore" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
- <hkern g1="underscore" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
- <hkern g1="underscore" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
- <hkern g1="underscore" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
- <hkern g1="underscore" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
- <hkern g1="underscore" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="underscore" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
- <hkern g1="underscore" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="underscore" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
- <hkern g1="underscore" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
- <hkern g1="underscore" g2="florin,florin.lf,florin.osf,florin.sc" k="-100" />
- <hkern g1="underscore" g2="one,one.lf,one.osf,one.sc" k="10" />
- <hkern g1="underscore" g2="four,four.lf,four.osf,four.sc" k="40" />
- <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" />
- <hkern g1="underscore" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
- <hkern g1="underscore" g2="J,Jcircumflex,Nhookleft,Jacute" k="-20" />
- <hkern g1="underscore" g2="cent,cent.lf,cent.osf,cent.sc" k="25" />
- <hkern g1="underscore" g2="currency,currency.lf,currency.osf,currency.sc" k="30" />
- <hkern g1="underscore" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
- <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" />
- <hkern g1="underscore" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="70" />
- <hkern g1="underscore" g2="percent.lf,perthousand.lf" k="70" />
- <hkern g1="underscore" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
- <hkern g1="x" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="x" g2="parenright,parenright.caps,parenright.sc" k="30" />
- <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" />
- <hkern g1="x" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
- <hkern g1="x" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="x" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
- <hkern g1="x" g2="question,question.caps,question.sc" k="30" />
- <hkern g1="x.sc" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="x.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <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" />
- <hkern g1="x.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="x.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
- <hkern g1="x.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
- <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" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="slash,slash.caps,slash.sc" k="80" />
- <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" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="70" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="two,two.lf,two.osf,two.sc" k="45" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="one,one.lf,one.osf,one.sc" k="5" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="four,four.lf,four.osf,four.sc" k="80" />
- <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" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="50" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="emdash" k="50" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="endash" k="30" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen.caps" k="30" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="underscore" k="40" />
- <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="60" />
- <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" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="45" />
- <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" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="parenright,parenright.caps,parenright.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <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" />
- <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" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="25" />
- <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" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="endash" k="5" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="m.sc" k="10" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="trademark" k="50" />
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="70" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="J,IJ,Jcircumflex,IJacute" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
- <hkern g1="J,IJ,Jcircumflex,IJacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
- <hkern g1="J,IJ,Jcircumflex,IJacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <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" />
- <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" />
- <hkern g1="J,IJ,Jcircumflex,IJacute" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
- <hkern g1="J,IJ,Jcircumflex,IJacute" g2="m.sc" k="10" />
- <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <hkern g1="K,Kcommaaccent" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
- <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
- <hkern g1="K,Kcommaaccent" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
- <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
- <hkern g1="K,Kcommaaccent" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
- <hkern g1="K,Kcommaaccent" g2="slash,slash.caps,slash.sc" k="20" />
- <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" />
- <hkern g1="K,Kcommaaccent" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="25" />
- <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" />
- <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" />
- <hkern g1="K,Kcommaaccent" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
- <hkern g1="K,Kcommaaccent" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
- <hkern g1="K,Kcommaaccent" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
- <hkern g1="K,Kcommaaccent" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
- <hkern g1="K,Kcommaaccent" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="K,Kcommaaccent" g2="f,germandbls,Germandbls,fi,fl" k="25" />
- <hkern g1="K,Kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="50" />
- <hkern g1="K,Kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
- <hkern g1="K,Kcommaaccent" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="60" />
- <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="50" />
- <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
- <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" />
- <hkern g1="K,Kcommaaccent" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
- <hkern g1="K,Kcommaaccent" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
- <hkern g1="K,Kcommaaccent" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
- <hkern g1="K,Kcommaaccent" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="60" />
- <hkern g1="K,Kcommaaccent" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
- <hkern g1="K,Kcommaaccent" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
- <hkern g1="K,Kcommaaccent" g2="endash" k="30" />
- <hkern g1="K,Kcommaaccent" g2="hyphen.caps" k="20" />
- <hkern g1="K,Kcommaaccent" g2="M" k="10" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="110" />
- <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" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="60" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="100" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="parenright,parenright.caps,parenright.sc" k="40" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="80" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="backslash,backslash.caps,backslash.sc" k="50" />
- <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" />
- <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" />
- <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" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="70" />
- <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" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="110" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="asterisk,asterisk.caps,asterisk.sc" k="100" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedblright.sc,quoteright.sc" k="80" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen.caps" k="40" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="trademark" k="60" />
- <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="80" />
- <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" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenright,parenright.caps,parenright.sc" k="40" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="30" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="slash,slash.caps,slash.sc" k="40" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="backslash,backslash.caps,backslash.sc" k="30" />
- <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" />
- <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" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="10" />
- <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" />
- <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" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="bracketright,bracketright.caps,bracketright.sc" k="5" />
- <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" />
- <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" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="endash" k="5" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="underscore" k="10" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="m.sc" k="10" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="x.sc" k="40" />
- <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="braceright,braceright.caps,braceright.sc" k="5" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenright,parenright.caps,parenright.sc" k="10" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="slash,slash.caps,slash.sc" k="50" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="50" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="70" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="40" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="120" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="100" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="70" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="90" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="110" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="20" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
- <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" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="endash" k="40" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="underscore" k="70" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m.sc" k="70" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="M" k="10" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x" k="80" />
- <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x.sc" k="30" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="M" k="10" />
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="X" k="5" />
- <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" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="slash,slash.caps,slash.sc" k="70" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="f,germandbls,Germandbls,fi,fl" k="30" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="70" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="50" />
- <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" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
- <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" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
- <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" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="endash" k="10" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="underscore" k="50" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m.sc" k="20" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="M" k="10" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x" k="30" />
- <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="hyphen" k="30" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="slash,slash.caps,slash.sc" k="60" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="20" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="50" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="80" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="80" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
- <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" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
- <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" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="endash" k="30" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="underscore" k="60" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m.sc" k="50" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="M" k="30" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x" k="20" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x.sc" k="20" />
- <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="hyphen" k="40" />
- <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" />
- <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" />
- <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" />
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
- <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" />
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="trademark" k="40" />
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,amacron,abreve,aogonek,acaron,aringacute,adotbelow" g2="braceright,braceright.caps,braceright.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="slash,slash.caps,slash.sc" k="90" />
- <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" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="130" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <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" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="160" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="four,four.lf,four.osf,four.sc" k="110" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="underscore" k="10" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="hyphen" k="30" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="70" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
- <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="110" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="underscore" k="30" />
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="x" k="25" />
- <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" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="90" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
- <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" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="f,germandbls,Germandbls,fi,fl" k="-20" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="quotedblright.sc,quoteright.sc" k="60" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
- <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" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="question,question.caps,question.sc" k="70" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="hyphen" k="30" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="40" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="50" />
- <hkern g1="backslash,backslash.caps,backslash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
- <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" />
- <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" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="30" />
- <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" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
- <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" />
- <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" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-40" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
- <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" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent.lf,perthousand.lf" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="M" k="10" />
- <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
- <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" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="slash,slash.caps,slash.sc" k="80" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
- <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" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="30" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="one,one.lf,one.osf,one.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="underscore" k="10" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Delta" k="10" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="summation" k="70" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="five,five.lf,five.osf,five.sc" k="40" />
- <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" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="80" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="60" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="40" />
- <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="15" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="backslash,backslash.caps,backslash.sc" k="-20" />
- <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" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="question,question.caps,question.sc" k="10" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="underscore" k="10" />
- <hkern g1="d,dcaron,dcroat,ddotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="-5" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
- <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" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="slash,slash.caps,slash.sc" k="60" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="f,germandbls,Germandbls,fi,fl" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="20" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="quotedblleft.sc,quoteleft.sc" k="40" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="two,two.lf,two.osf,two.sc" k="70" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="three,three.lf,three.osf,three.sc" k="10" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="60" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="one,one.lf,one.osf,one.sc" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
- <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" />
- <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" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="40" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="M" k="20" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="x" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
- <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="70" />
- <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" />
- <hkern g1="f" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-20" />
- <hkern g1="f" g2="parenright,parenright.caps,parenright.sc" k="-100" />
- <hkern g1="f" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-60" />
- <hkern g1="f" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-80" />
- <hkern g1="f" g2="backslash,backslash.caps,backslash.sc" k="-70" />
- <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" />
- <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
- <hkern g1="f" g2="bracketright,bracketright.caps,bracketright.sc" k="-90" />
- <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
- <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
- <hkern g1="f" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="5" />
- <hkern g1="f" g2="asterisk,asterisk.caps,asterisk.sc" k="-100" />
- <hkern g1="f" g2="question,question.caps,question.sc" k="-60" />
- <hkern g1="f" g2="underscore" k="10" />
- <hkern g1="f" g2="trademark" k="-110" />
- <hkern g1="f" g2="brokenbar" k="-50" />
- <hkern g1="f" g2="paragraph" k="-60" />
- <hkern g1="f" g2="section" k="-110" />
- <hkern g1="f" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-60" />
- <hkern g1="f" g2="braceright,braceright.caps,braceright.sc" k="-30" />
- <hkern g1="f" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="16" />
- <hkern g1="f" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="30" />
- <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="slash,slash.caps,slash.sc" k="80" />
- <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" />
- <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="underscore" k="100" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="x" k="5" />
- <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" />
- <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" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="slash,slash.caps,slash.sc" k="20" />
- <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" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="quotedblright.sc,quoteright.sc" k="30" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
- <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="hyphen" k="60" />
- <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" />
- <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" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblleft.sc,quoteleft.sc" k="100" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblright.sc,quoteright.sc" k="90" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
- <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" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="trademark" k="115" />
- <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="hyphen" k="20" />
- <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" />
- <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" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="slash,slash.caps,slash.sc" k="80" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <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" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
- <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" />
- <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="underscore" k="70" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="slash,slash.caps,slash.sc" k="20" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="backslash,backslash.caps,backslash.sc" k="15" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="15" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-50" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="m.sc" k="5" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="M" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="x.sc" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Schwa" k="20" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="mu" k="10" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="pi" k="20" />
- <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" />
- <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="70" />
- <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" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="f,germandbls,Germandbls,fi,fl" k="20" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
- <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" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblleft.sc,quoteleft.sc" k="30" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblright.sc,quoteright.sc" k="50" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent.lf,perthousand.lf" k="20" />
- <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" />
- <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" />
- <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="m.sc" k="20" />
- <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" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="70" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="90" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="70" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="100" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="slash,slash.caps,slash.sc" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="j.sc,dotlessj.sc,jcircumflex.sc,nhookleft.sc,jacute.sc" k="-10" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="f,germandbls,Germandbls,fi,fl" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="30" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedblleft.sc,quoteleft.sc" k="80" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="30" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-60" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-20" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="60" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
- <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" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent.lf,perthousand.lf" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="X" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="x" k="90" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Schwa" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="pi" k="10" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="at" k="10" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="40" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="80" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
- <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="slash,slash.caps,slash.sc" k="100" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="f,germandbls,Germandbls,fi,fl" k="20" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="60" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="60" />
- <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" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="two,two.lf,two.osf,two.sc" k="70" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="100" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="120" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="four,four.lf,four.osf,four.sc" k="70" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="-10" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Delta" k="80" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="at" k="50" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="60" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="50" />
- <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" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="70" />
- <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
- <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" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="30" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="slash,slash.caps,slash.sc" k="60" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="two,two.lf,two.osf,two.sc" k="10" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="-10" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="florin,florin.lf,florin.osf,florin.sc" k="40" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="four,four.lf,four.osf,four.sc" k="50" />
- <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" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-10" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="fraction" k="140" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="m.sc" k="10" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="M" k="30" />
- <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="at" k="20" />
- <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" />
- <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" />
- <hkern g1="quotedblleft.sc,quoteleft.sc" g2="three,three.lf,three.osf,three.sc" k="-40" />
- <hkern g1="quotedblleft.sc,quoteleft.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
- <hkern g1="quotedblleft.sc,quoteleft.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
- <hkern g1="quotedblleft.sc,quoteleft.sc" g2="m.sc" k="20" />
- <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" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="20" />
- <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" />
- <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" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="f,germandbls,Germandbls,fi,fl" k="20" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="90" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="80" />
- <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" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="40" />
- <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" />
- <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" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="M" k="10" />
- <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="x" k="30" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="slash,slash.caps,slash.sc" k="150" />
- <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" />
- <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" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="90" />
- <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" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="120" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="160" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="100" />
- <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" />
- <hkern g1="quotedblright.sc,quoteright.sc" g2="m.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
- <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
- <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
- <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
- <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="trademark" k="20" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="parenright,parenright.caps,parenright.sc" k="30" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
- <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" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
- <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" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="x" k="5" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="braceright,braceright.caps,braceright.sc" k="10" />
- <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="5" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="underscore" k="15" />
- <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m.sc" k="10" />
- <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="trademark" k="50" />
- <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x" k="20" />
- <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x.sc" k="25" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="slash,slash.caps,slash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="slash,slash.caps,slash.sc" g2="slash,slash.caps,slash.sc" k="90" />
- <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" />
- <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" />
- <hkern g1="slash,slash.caps,slash.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="80" />
- <hkern g1="slash,slash.caps,slash.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="40" />
- <hkern g1="slash,slash.caps,slash.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
- <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" />
- <hkern g1="slash,slash.caps,slash.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
- <hkern g1="slash,slash.caps,slash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="slash,slash.caps,slash.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
- <hkern g1="slash,slash.caps,slash.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="slash,slash.caps,slash.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="50" />
- <hkern g1="slash,slash.caps,slash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="55" />
- <hkern g1="slash,slash.caps,slash.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
- <hkern g1="slash,slash.caps,slash.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
- <hkern g1="slash,slash.caps,slash.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="40" />
- <hkern g1="slash,slash.caps,slash.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
- <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" />
- <hkern g1="slash,slash.caps,slash.sc" g2="underscore" k="40" />
- <hkern g1="slash,slash.caps,slash.sc" g2="at" k="50" />
- <hkern g1="slash,slash.caps,slash.sc" g2="integral" k="30" />
- <hkern g1="slash,slash.caps,slash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="40" />
- <hkern g1="slash,slash.caps,slash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
- <hkern g1="slash,slash.caps,slash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="30" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="slash,slash.caps,slash.sc" k="60" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="80" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="underscore" k="50" />
- <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="m.sc" k="10" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="parenright,parenright.caps,parenright.sc" k="30" />
- <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" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="question,question.caps,question.sc" k="60" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="underscore" k="30" />
- <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="braceright,braceright.caps,braceright.sc" k="25" />
- <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" />
- <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="slash,slash.caps,slash.sc" k="30" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="70" />
- <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
- <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" />
- <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="underscore" k="50" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="parenright,parenright.caps,parenright.sc" k="40" />
- <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" />
- <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" />
- <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" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="question,question.caps,question.sc" k="50" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="underscore" k="30" />
- <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="braceright,braceright.caps,braceright.sc" k="25" />
- <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" />
- <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="slash,slash.caps,slash.sc" k="60" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <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" />
- <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" />
- <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="underscore" k="50" />
- <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="m.sc" k="20" />
- <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="m.sc" k="10" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="40" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="slash,slash.caps,slash.sc" k="60" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
- <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" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="15" />
- <hkern g1="one,one.lf,one.osf,one.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="50" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="slash,slash.caps,slash.sc" k="70" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="two,two.lf,two.osf,two.sc" k="90" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="three,three.lf,three.osf,three.sc" k="40" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="one,one.lf,one.osf,one.sc" k="20" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="four,four.lf,four.osf,four.sc" k="75" />
- <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" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
- <hkern g1="two,two.lf,two.osf,two.sc" g2="five,five.lf,five.osf,five.sc" k="55" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="20" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="slash,slash.caps,slash.sc" k="20" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="25" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <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" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
- <hkern g1="four,four.lf,four.osf,four.sc" g2="five,five.lf,five.osf,five.sc" k="20" />
- <hkern g1="five,five.lf,five.osf,five.sc" g2="two,two.lf,two.osf,two.sc" k="65" />
- <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" />
- <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" />
- <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="slash,slash.caps,slash.sc" k="50" />
- <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
- <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" />
- <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" />
- <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-10" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="parenright,parenright.caps,parenright.sc" k="10" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-10" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
- <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" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="braceright,braceright.caps,braceright.sc" k="-30" />
- <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
- <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="parenright,parenright.caps,parenright.sc" k="20" />
- <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" />
- <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="-10" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
- <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" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="40" />
- <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" />
- <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" />
- <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" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <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" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
- <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
- <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" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <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" />
- <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" />
- <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" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="30" />
- <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
- <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" />
- <hkern g1="ordfeminine,ordmasculine" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="ordfeminine,ordmasculine" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="ordfeminine,ordmasculine" g2="question,question.caps,question.sc" k="40" />
- <hkern g1="ordfeminine,ordmasculine" g2="braceright,braceright.caps,braceright.sc" k="20" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="slash,slash.caps,slash.sc" k="40" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
- <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" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="50" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="quotedblright.sc,quoteright.sc" k="60" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="one,one.lf,one.osf,one.sc" k="30" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <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" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="20" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="60" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="question,question.caps,question.sc" k="60" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
- <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-5" />
- <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" />
- <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" />
- <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" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
- <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" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="25" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="25" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="-60" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
- <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ordfeminine,ordmasculine" k="10" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="80" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="slash,slash.caps,slash.sc" k="100" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="backslash,backslash.caps,backslash.sc" k="90" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="70" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="quotedblright.sc,quoteright.sc" k="40" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
- <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" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
- <hkern g1="braceright,braceright.caps,braceright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="50" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="70" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="slash,slash.caps,slash.sc" k="90" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="80" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
- <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" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
- <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="70" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="parenright,parenright.caps,parenright.sc" k="10" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="backslash,backslash.caps,backslash.sc" k="50" />
- <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" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="f,germandbls,Germandbls,fi,fl" k="5" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
- <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="question,question.caps,question.sc" k="60" />
- <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" />
- <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="parenright,parenright.caps,parenright.sc" k="-30" />
- <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" />
- <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" />
- <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-25" />
- <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-30" />
- <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-30" />
- <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" />
- <hkern g1="cent,cent.osf" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="cent,cent.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
- <hkern g1="currency,currency.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="two,two.lf,two.osf,two.sc" k="60" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="5" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
- <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" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="10" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
- <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="50" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="two,two.lf,two.osf,two.sc" k="50" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="one,one.lf,one.osf,one.sc" k="10" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="four,four.lf,four.osf,four.sc" k="45" />
- <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" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="40" />
- <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="five,five.lf,five.osf,five.sc" k="30" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
- <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" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="f,germandbls,Germandbls,fi,fl" k="-5" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-10" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-10" />
- <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="-10" />
- <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="quotedblright.sc,quoteright.sc" k="-20" />
- <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" />
- <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
- <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="5" />
- <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
- <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="two,two.lf,two.osf,two.sc" k="40" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="70" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
- <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" />
- <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" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="slash,slash.caps,slash.sc" k="70" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
- <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" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
- <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" />
- <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" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
- <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="question,question.caps,question.sc" k="30" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
- <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" />
- <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
- <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
- <hkern g1="j,q,ij,jcircumflex,dotlessj,ijacute" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
- <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" />
- <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jcircumflex.sc,jacute.sc" g2="slash,slash.caps,slash.sc" k="35" />
- <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" />
- <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" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,acaron,aringacute,aeacute,adotbelow" k="5" />
- <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" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="f,germandbls,Germandbls,fi,fl" k="10" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
- <hkern g1="k,kcommaaccent,kgreenlandic" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
- <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="l,lacute,lcommaaccent,lcaron,ldot,lslash,fl" g2="question,question.caps,question.sc" k="20" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="60" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="slash,slash.caps,slash.sc" k="90" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
- <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" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
- <hkern g1="parenright,parenright.caps,parenright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="70" />
- <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" />
- <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
- <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" />
- <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
- <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
- <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="three,three.lf,three.osf,three.sc" k="-20" />
- <hkern g1="question,question.caps,question.sc" g2="slash,slash.caps,slash.sc" k="40" />
- <hkern g1="question,question.caps,question.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
- <hkern g1="question,question.caps,question.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
- <hkern g1="question,question.caps,question.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="90" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="parenright,parenright.caps,parenright.sc" k="20" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="slash,slash.caps,slash.sc" k="10" />
- <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" />
- <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" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="10" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-5" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="question,question.caps,question.sc" k="20" />
- <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="braceright,braceright.caps,braceright.sc" k="20" />
- <hkern g1="sterling,sterling.osf" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="slash,slash.caps,slash.sc" k="10" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="backslash,backslash.caps,backslash.sc" k="20" />
- <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" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="f,germandbls,Germandbls,fi,fl" k="5" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="25" />
- <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" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="asterisk,asterisk.caps,asterisk.sc" k="-10" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="question,question.caps,question.sc" k="40" />
- <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="braceright,braceright.caps,braceright.sc" k="30" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="parenright,parenright.caps,parenright.sc" k="50" />
- <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" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
- <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="braceright,braceright.caps,braceright.sc" k="30" />
- </font>
- </defs></svg>
|