AvenirNextLTPro-Demi.svg 206 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
  3. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  4. <metadata>
  5. Created by FontForge 20190801 at Thu Jan 29 15:14:10 2004
  6. By Jimmy Wärting
  7. Copyright (c) 2004 Linotype Library GmbH, www.linotype.com. All rights reserved. This software may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype Library GmbH. Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype Library GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Adrian Frutiger. The design may be protected in certain jurisdictions.
  8. </metadata>
  9. <defs>
  10. <font id="AvenirNextLTPro-Demi" horiz-adv-x="260" >
  11. <font-face
  12. font-family="Avenir Next LT Pro"
  13. font-weight="600"
  14. font-stretch="normal"
  15. units-per-em="1000"
  16. panose-1="2 11 7 4 2 2 2 2 2 4"
  17. ascent="756"
  18. descent="-244"
  19. x-height="480"
  20. cap-height="708"
  21. bbox="-214 -250 1192 957"
  22. underline-thickness="50"
  23. underline-position="-100"
  24. stemh="78"
  25. stemv="120"
  26. unicode-range="U+000D-FB02"
  27. />
  28. <missing-glyph horiz-adv-x="512"
  29. d="M222 117h56v67h-56v-67zM225 234h46c0 35 2 59 6 72s18 30 43 52c51 47 63 77 63 120c0 79 -53 131 -124 131c-72 0 -126 -42 -135 -137l50 -8c8 68 41 95 82 95s76 -37 76 -85c0 -25 -7 -42 -50 -83c-22 -22 -37 -42 -46 -59s-13 -44 -13 -81zM462 50h-412v617h412v-617
  30. zM512 718h-512v-718h512v718z" />
  31. <glyph glyph-name="fi" unicode="fi" horiz-adv-x="593"
  32. d="M410 0v480h120v-480h-120zM393 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72zM91 0v384h-91v96h91v71c0 115 45 217 194 217c26 0 43 -2 61 -7l-8 -102c-13 4 -29 7 -46 7c-69 0 -81 -60 -81 -108v-78h111v-96h-111v-384h-120z" />
  33. <glyph glyph-name="fl" unicode="fl" horiz-adv-x="593"
  34. d="M410 0v756h120v-756h-120zM91 0v384h-91v96h91v71c0 115 45 217 194 217c26 0 43 -2 61 -7l-8 -102c-13 4 -29 7 -46 7c-69 0 -81 -60 -81 -108v-78h111v-96h-111v-384h-120z" />
  35. <glyph glyph-name="napostrophe" unicode="&#x22;n" horiz-adv-x="622"
  36. d="M112 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120zM-23 513l65 195h106l-80 -195h-91z" />
  37. <glyph glyph-name="ij" unicode="ij" horiz-adv-x="536"
  38. d="M74 0v480h120v-480h-120zM57 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72zM342 480h120v-509c0 -115 -31 -211 -174 -211c-20 0 -42 3 -54 6l10 102c11 -3 24 -4 33 -4c57 0 65 47 65 102v514zM325 643c0 38 32 72 76 72s78 -31 78 -72
  39. s-34 -72 -78 -72s-76 34 -76 72z" />
  40. <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="770"
  41. d="M78 0v708h126v-708h-126zM698 708v-479c0 -103 -36 -247 -213 -247c-114 0 -183 63 -208 156l116 33c12 -47 46 -76 90 -76c72 0 89 57 89 138v475h126z" />
  42. <glyph glyph-name=".notdef" horiz-adv-x="512"
  43. d="M222 117h56v67h-56v-67zM225 234h46c0 35 2 59 6 72s18 30 43 52c51 47 63 77 63 120c0 79 -53 131 -124 131c-72 0 -126 -42 -135 -137l50 -8c8 68 41 95 82 95s76 -37 76 -85c0 -25 -7 -42 -50 -83c-22 -22 -37 -42 -46 -59s-13 -44 -13 -81zM462 50h-412v617h412v-617
  44. zM512 718h-512v-718h512v718z" />
  45. <glyph glyph-name="exclam" unicode="!" horiz-adv-x="340"
  46. d="M230 708v-486h-120v486h120zM90 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  47. <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="459"
  48. d="M90 444v264h102v-264h-102zM267 444v264h102v-264h-102z" />
  49. <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="592"
  50. d="M107 0l30 209h-90v84h101l18 122h-90v84h101l30 209h88l-30 -209h103l30 209h87l-30 -209h90v-84h-102l-17 -122h90v-84h-100l-31 -209h-87l30 209h-104l-30 -209h-87zM356 415h-103l-17 -122h103z" />
  51. <glyph glyph-name="dollar" unicode="$" horiz-adv-x="610"
  52. d="M330 786v-66c73 -1 154 -24 208 -71l-81 -84c-31 34 -81 53 -127 53v-202c102 -32 213 -79 213 -214c0 -139 -102 -210 -213 -213v-72h-54v72c-88 3 -172 32 -235 93l88 84c36 -42 96 -73 147 -74v222c-117 32 -209 78 -209 206c0 119 102 191 209 198v68h54zM276 430
  53. v188c-47 -5 -89 -34 -89 -92c0 -55 38 -81 89 -96zM330 298v-206c56 3 93 44 93 103s-40 85 -93 103z" />
  54. <glyph glyph-name="percent" unicode="%" horiz-adv-x="930"
  55. d="M518 174c0 103 83 186 186 186s186 -83 186 -186s-83 -186 -186 -186s-186 83 -186 186zM794 174c0 50 -40 90 -90 90s-90 -40 -90 -90s40 -90 90 -90s90 40 90 90zM40 534c0 103 83 186 186 186s186 -83 186 -186s-83 -186 -186 -186s-186 83 -186 186zM316 534
  56. c0 50 -40 90 -90 90s-90 -40 -90 -90s40 -90 90 -90s90 40 90 90zM215 6l416 734l83 -38l-416 -734z" />
  57. <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="741"
  58. d="M712 374l-142 -205l165 -169h-160l-78 81c-47 -55 -109 -95 -212 -95c-125 0 -237 71 -237 206c0 105 75 167 154 201c-47 48 -76 98 -76 159c0 121 102 174 200 174c102 0 196 -56 196 -172c0 -91 -65 -151 -145 -188l116 -121l82 129h137zM328 629
  59. c-46 0 -83 -33 -83 -79c0 -40 23 -77 63 -113c55 23 102 60 102 113c0 43 -34 79 -82 79zM421 159l-151 157c-52 -19 -98 -51 -98 -119c0 -70 63 -111 117 -111c58 0 98 26 132 73z" />
  60. <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="270"
  61. d="M42 444l70 264h116l-85 -264h-101z" />
  62. <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="330"
  63. d="M36 288c0 -163 55 -318 146 -444l84 55c-80 111 -127 251 -127 389s47 278 127 389l-84 55c-91 -126 -146 -281 -146 -444z" />
  64. <glyph glyph-name="parenright" unicode=")" horiz-adv-x="330"
  65. d="M294 288c0 -163 -55 -318 -146 -444l-84 55c80 111 127 251 127 389s-47 278 -127 389l84 55c91 -126 146 -281 146 -444z" />
  66. <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="463"
  67. d="M274 708v-142l135 44l26 -80l-136 -44l86 -117l-69 -50l-86 118l-84 -115l-67 51l86 113l-137 47l26 80l136 -47v142h84z" />
  68. <glyph glyph-name="plus" unicode="+" horiz-adv-x="666"
  69. d="M62 354h220v220h102v-220h220v-102h-220v-220h-102v220h-220v102z" />
  70. <glyph glyph-name="comma" unicode=","
  71. d="M24 -126l70 264h116l-85 -264h-101z" />
  72. <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="320"
  73. d="M280 297v-102h-240v102h240z" />
  74. <glyph glyph-name="period" unicode="."
  75. d="M50 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  76. <glyph glyph-name="slash" unicode="/" horiz-adv-x="389"
  77. d="M386 726l-312 -774l-83 30l312 776z" />
  78. <glyph glyph-name="zero" unicode="0" horiz-adv-x="610"
  79. d="M555 354c0 -229 -89 -372 -249 -372c-161 0 -251 143 -251 372s90 372 251 372c160 0 249 -143 249 -372zM432 354c0 99 -19 272 -126 272c-108 0 -128 -173 -128 -272s20 -270 128 -270c107 0 126 171 126 270z" />
  80. <glyph glyph-name="one" unicode="1" horiz-adv-x="610"
  81. d="M279 0v562l-140 -115l-70 83l221 178h109v-708h-120z" />
  82. <glyph glyph-name="two" unicode="2" horiz-adv-x="610"
  83. d="M69 0v110l273 268c44 43 72 84 72 139c0 66 -49 109 -113 109c-68 0 -111 -52 -120 -121l-117 18c14 117 109 203 239 203c123 0 236 -71 236 -207c0 -91 -51 -154 -114 -214l-204 -195h319v-110h-471z" />
  84. <glyph glyph-name="three" unicode="3" horiz-adv-x="610"
  85. d="M212 321v96h32c71 0 151 20 151 107c0 64 -52 102 -112 102c-58 0 -99 -37 -113 -91l-113 29c25 95 118 162 231 162c124 0 228 -67 228 -194c0 -76 -50 -141 -127 -160v-2c86 -17 146 -83 146 -170c0 -147 -127 -218 -247 -218c-119 0 -219 49 -257 167l112 35
  86. c17 -56 66 -100 141 -100c62 0 130 32 130 117c0 92 -97 120 -172 120h-30z" />
  87. <glyph glyph-name="four" unicode="4" horiz-adv-x="610"
  88. d="M348 0v147h-327v106l301 455h144v-458h99v-103h-99v-147h-118zM348 250v317h-2l-201 -317h203z" />
  89. <glyph glyph-name="five" unicode="5" horiz-adv-x="610"
  90. d="M505 708v-108h-289l-7 -153c22 6 58 9 83 9c139 0 244 -81 244 -224c0 -157 -117 -250 -258 -250c-118 0 -202 60 -239 155l109 40c20 -56 70 -93 133 -93c71 0 132 49 132 135c0 109 -81 141 -158 141c-54 0 -122 -17 -165 -39l12 387h403z" />
  91. <glyph glyph-name="six" unicode="6" horiz-adv-x="610"
  92. d="M295 708h146l-181 -262l1 -1c19 8 51 12 75 12c125 0 226 -98 226 -227c0 -150 -113 -248 -258 -248c-148 0 -259 106 -259 243c0 81 27 136 73 209zM167 222c0 -74 53 -138 136 -138c81 0 136 56 136 140c0 80 -54 138 -134 138c-81 0 -138 -57 -138 -140z" />
  93. <glyph glyph-name="seven" unicode="7" horiz-adv-x="610"
  94. d="M51 600v108h481v-110l-283 -598h-141l298 600h-355z" />
  95. <glyph glyph-name="eight" unicode="8" horiz-adv-x="610"
  96. d="M305 726c124 0 224 -72 224 -192c0 -82 -46 -139 -110 -160v-2c74 -18 133 -85 133 -172c0 -141 -111 -218 -247 -218s-247 77 -247 218c0 92 64 154 133 172v2c-63 23 -110 73 -110 155c0 120 100 197 224 197zM305 627c-59 0 -102 -39 -102 -100
  97. c0 -57 40 -103 102 -103c57 0 103 46 103 103c0 61 -49 100 -103 100zM305 322c-69 0 -123 -49 -123 -121c0 -74 53 -118 123 -118c69 0 122 44 122 118c0 70 -54 121 -122 121z" />
  98. <glyph glyph-name="nine" unicode="9" horiz-adv-x="610"
  99. d="M314 0h-146l182 263l-1 1c-20 -9 -52 -13 -76 -13c-125 0 -226 98 -226 227c0 150 113 248 258 248c148 0 259 -106 259 -243c0 -81 -27 -136 -73 -209zM442 486c0 74 -53 140 -136 140c-81 0 -136 -58 -136 -142c0 -80 54 -138 134 -138c81 0 138 57 138 140z" />
  100. <glyph glyph-name="colon" unicode=":" horiz-adv-x="300"
  101. d="M70 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76zM70 408c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  102. <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="300"
  103. d="M40 -126l70 264h122l-85 -264h-107zM70 409c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  104. <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="666"
  105. d="M586 42l-506 225v72l506 225v-110l-338 -151l338 -151v-110z" />
  106. <glyph glyph-name="equal" unicode="=" horiz-adv-x="666"
  107. d="M80 444h506v-102h-506v102zM80 264h506v-102h-506v102z" />
  108. <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="666"
  109. d="M80 564l506 -225v-72l-506 -225v110l338 151l-338 151v110z" />
  110. <glyph glyph-name="question" unicode="?" horiz-adv-x="519"
  111. d="M328 209h-118v38c0 64 16 98 66 146l45 43c25 23 46 49 46 89c0 52 -35 92 -94 92c-62 0 -100 -50 -102 -104l-123 11c15 127 110 202 233 202c115 0 213 -67 213 -193c0 -85 -38 -123 -100 -177c-52 -46 -66 -63 -66 -121v-26zM190 70c0 43 36 78 80 78
  112. c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  113. <glyph glyph-name="at" unicode="@" horiz-adv-x="800"
  114. d="M412 467c-63 0 -98 -83 -98 -147c0 -32 12 -77 64 -77c73 0 100 82 100 136c0 42 -14 88 -66 88zM670 163l55 -60c-78 -83 -192 -121 -311 -121c-229 0 -382 154 -382 371c0 213 171 373 382 373c182 0 354 -106 354 -321c0 -161 -95 -245 -198 -245c-53 0 -88 29 -88 67
  115. h-5c-20 -32 -62 -67 -122 -67c-90 0 -142 66 -142 162c0 113 79 227 196 227c51 0 88 -24 98 -55h1l8 40h89l-39 -189c-3 -18 -9 -43 -9 -63c0 -23 7 -40 32 -40c52 0 90 61 90 155c0 161 -112 248 -267 248c-169 0 -283 -127 -283 -293c0 -176 122 -287 294 -287
  116. c108 0 182 37 247 98z" />
  117. <glyph glyph-name="A" unicode="A" horiz-adv-x="706"
  118. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288z" />
  119. <glyph glyph-name="B" unicode="B" horiz-adv-x="647"
  120. d="M78 0v708h276c107 0 217 -49 217 -178c0 -80 -50 -133 -123 -155v-2c89 -12 153 -72 153 -167c0 -154 -134 -206 -268 -206h-255zM204 604v-184h112c84 0 129 35 129 96c0 63 -45 88 -140 88h-101zM204 312v-206h113c65 0 158 13 158 106c0 74 -51 100 -153 100h-118z
  121. " />
  122. <glyph glyph-name="C" unicode="C" horiz-adv-x="696"
  123. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-62 -78 -154 -124 -274 -124c-221 0 -378 153 -378 374c0 227 166 370 384 370c92 0 201 -34 257 -108z" />
  124. <glyph glyph-name="D" unicode="D" horiz-adv-x="764"
  125. d="M78 0v708h251c185 0 391 -88 391 -354c0 -248 -206 -354 -391 -354h-251zM204 110h105c130 0 276 53 276 244c0 203 -146 246 -276 246h-105v-490z" />
  126. <glyph glyph-name="E" unicode="E" horiz-adv-x="610"
  127. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487z" />
  128. <glyph glyph-name="F" unicode="F" horiz-adv-x="573"
  129. d="M78 0v708h457v-110h-331v-194h312v-106h-312v-298h-126z" />
  130. <glyph glyph-name="G" unicode="G" horiz-adv-x="773"
  131. d="M698 404v-367c-71 -34 -156 -55 -267 -55c-228 0 -387 153 -387 374c0 227 166 370 384 370c112 0 212 -36 269 -89l-87 -94c-36 40 -105 72 -181 72c-149 0 -246 -113 -246 -259c0 -151 96 -261 252 -261c53 0 100 8 141 25v180h-149v104h271z" />
  132. <glyph glyph-name="H" unicode="H" horiz-adv-x="739"
  133. d="M78 0v708h126v-286h331v286h126v-708h-126v314h-331v-314h-126z" />
  134. <glyph glyph-name="I" unicode="I" horiz-adv-x="282"
  135. d="M78 0v708h126v-708h-126z" />
  136. <glyph glyph-name="J" unicode="J" horiz-adv-x="498"
  137. d="M426 708v-479c0 -103 -36 -247 -213 -247c-114 0 -183 63 -208 156l116 33c12 -47 46 -76 90 -76c72 0 89 57 89 138v475h126z" />
  138. <glyph glyph-name="K" unicode="K" horiz-adv-x="689"
  139. d="M78 0v708h126v-306h3l296 306h170l-331 -327l353 -381h-177l-311 355h-3v-355h-126z" />
  140. <glyph glyph-name="L" unicode="L" horiz-adv-x="511"
  141. d="M78 0v708h126v-596h301v-112h-427z" />
  142. <glyph glyph-name="M" unicode="M" horiz-adv-x="920"
  143. d="M78 0v708h197l184 -503h3l182 503h198v-708h-125v569h-2l-215 -569h-88l-212 569h-2v-569h-120z" />
  144. <glyph glyph-name="N" unicode="N" horiz-adv-x="780"
  145. d="M78 0v708h167l329 -530h2v530h126v-708h-160l-336 547h-2v-547h-126z" />
  146. <glyph glyph-name="O" unicode="O" horiz-adv-x="849"
  147. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259z" />
  148. <glyph glyph-name="P" unicode="P" horiz-adv-x="610"
  149. d="M78 0v708h231c162 0 267 -57 267 -205c0 -156 -125 -210 -275 -210h-97v-293h-126zM204 399h88c82 0 157 20 157 104s-75 99 -153 99h-92v-203z" />
  150. <glyph glyph-name="Q" unicode="Q" horiz-adv-x="852"
  151. d="M841 102v-102h-427c-226 0 -377 133 -377 363c0 215 162 363 379 363s376 -148 376 -363c0 -127 -63 -214 -126 -259v-2h175zM416 613c-137 0 -241 -106 -241 -250c0 -151 97 -253 239 -253c140 0 241 102 241 253c0 144 -96 250 -239 250z" />
  152. <glyph glyph-name="R" unicode="R" horiz-adv-x="629"
  153. d="M78 0v708h246c133 0 261 -53 261 -203c0 -102 -63 -169 -162 -191l189 -314h-152l-164 300h-92v-300h-126zM204 403h103c71 0 152 17 152 103c0 77 -76 96 -141 96h-114v-199z" />
  154. <glyph glyph-name="S" unicode="S" horiz-adv-x="574"
  155. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -152 -119 -226 -258 -226c-92 0 -187 35 -243 101l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201
  156. c0 144 131 208 259 208c71 0 152 -25 206 -76z" />
  157. <glyph glyph-name="T" unicode="T" horiz-adv-x="568"
  158. d="M221 0v598h-217v110h560v-110h-217v-598h-126z" />
  159. <glyph glyph-name="U" unicode="U" horiz-adv-x="714"
  160. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126z" />
  161. <glyph glyph-name="V" unicode="V" horiz-adv-x="653"
  162. d="M270 0l-280 708h141l195 -545h4l197 545h136l-284 -708h-109z" />
  163. <glyph glyph-name="W" unicode="W" horiz-adv-x="1004"
  164. d="M213 0l-207 708h138l137 -520h2l156 520h130l153 -520h2l140 520h134l-207 -708h-122l-166 531h-2l-166 -531h-122z" />
  165. <glyph glyph-name="X" unicode="X" horiz-adv-x="658"
  166. d="M4 0l245 378l-220 330h152l146 -242l144 242h145l-216 -333l254 -375h-159l-173 278l-166 -278h-152z" />
  167. <glyph glyph-name="Y" unicode="Y" horiz-adv-x="622"
  168. d="M249 0v307l-266 401h154l178 -298l180 298h146l-266 -401v-307h-126z" />
  169. <glyph glyph-name="Z" unicode="Z" horiz-adv-x="611"
  170. d="M35 0v114l385 484h-379v110h529v-114l-387 -482h393v-112h-541z" />
  171. <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="330"
  172. d="M252 732v-78h-90v-732h90v-78h-192v888h192z" />
  173. <glyph glyph-name="backslash" unicode="\" horiz-adv-x="389"
  174. d="M3 726l83 32l312 -776l-83 -30z" />
  175. <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="330"
  176. d="M78 -156v78h90v732h-90v78h192v-888h-192z" />
  177. <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="666"
  178. d="M187 343h-118l223 365h82l223 -365h-118l-147 239z" />
  179. <glyph glyph-name="underscore" unicode="_" horiz-adv-x="500"
  180. d="M500 -75v-75h-500v75h500z" />
  181. <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="270"
  182. d="M228 708l-70 -264h-116l85 264h101z" />
  183. <glyph glyph-name="a" unicode="a" horiz-adv-x="550"
  184. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  185. c82 0 126 47 126 123z" />
  186. <glyph glyph-name="b" unicode="b" horiz-adv-x="635"
  187. d="M74 756h120v-337h3c25 31 73 75 161 75c137 0 233 -110 233 -252c0 -140 -90 -256 -236 -256c-67 0 -132 31 -165 86h-2v-72h-114v756zM469 242c0 75 -45 154 -138 154c-88 0 -141 -81 -141 -156s53 -154 141 -154c93 0 138 81 138 156z" />
  188. <glyph glyph-name="c" unicode="c" horiz-adv-x="488"
  189. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-40 -43 -106 -67 -177 -67c-142 0 -260 94 -260 254c0 156 116 254 257 254c70 0 143 -28 181 -75z" />
  190. <glyph glyph-name="d" unicode="d" horiz-adv-x="634"
  191. d="M560 756v-756h-114v72h-2c-33 -55 -98 -86 -165 -86c-146 0 -236 116 -236 256c0 142 96 252 233 252c88 0 136 -44 161 -75h3v337h120zM165 242c0 -75 45 -156 138 -156c88 0 141 79 141 154s-53 156 -141 156c-93 0 -138 -79 -138 -154z" />
  192. <glyph glyph-name="e" unicode="e" horiz-adv-x="574"
  193. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260z" />
  194. <glyph glyph-name="f" unicode="f" horiz-adv-x="324"
  195. d="M91 0v384h-91v96h91v71c0 115 45 217 194 217c26 0 43 -2 61 -7l-8 -102c-13 4 -29 7 -46 7c-69 0 -81 -60 -81 -108v-78h111v-96h-111v-384h-120z" />
  196. <glyph glyph-name="g" unicode="g" horiz-adv-x="632"
  197. d="M446 480h114v-437c0 -173 -84 -283 -271 -283c-78 0 -176 28 -238 79l69 93c46 -44 108 -68 168 -68c116 0 152 70 152 165v35h-2c-35 -47 -91 -72 -157 -72c-144 0 -237 114 -237 250c0 139 90 252 235 252c67 0 130 -28 165 -86h2v72zM304 396
  198. c-87 0 -138 -68 -138 -153c0 -76 51 -152 137 -152c89 0 143 72 143 152c0 83 -55 153 -142 153z" />
  199. <glyph glyph-name="h" unicode="h" horiz-adv-x="584"
  200. d="M339 494c125 0 177 -96 177 -194v-300h-120v264c0 57 -12 127 -89 127c-76 0 -113 -65 -113 -129v-262h-120v756h120v-343h2c19 40 72 81 143 81z" />
  201. <glyph glyph-name="i" unicode="i" horiz-adv-x="268"
  202. d="M74 0v480h120v-480h-120zM57 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  203. <glyph glyph-name="j" unicode="j" horiz-adv-x="268"
  204. d="M74 480h120v-509c0 -115 -31 -211 -174 -211c-20 0 -42 3 -54 6l10 102c11 -3 24 -4 33 -4c57 0 65 47 65 102v514zM57 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  205. <glyph glyph-name="k" unicode="k" horiz-adv-x="543"
  206. d="M74 0v756h120v-478h3l182 202h154l-208 -217l221 -263h-159l-190 246h-3v-246h-120z" />
  207. <glyph glyph-name="l" unicode="l" horiz-adv-x="268"
  208. d="M74 0v756h120v-756h-120z" />
  209. <glyph glyph-name="m" unicode="m" horiz-adv-x="890"
  210. d="M645 494c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-75 0 -106 -70 -106 -132v-262h-120v290c0 59 -28 104 -89 104c-72 0 -105 -66 -105 -130v-264h-120v480h114v-77h2c21 47 72 91 149 91c74 0 123 -37 150 -91c32 58 86 91 158 91z" />
  211. <glyph glyph-name="n" unicode="n" horiz-adv-x="582"
  212. d="M72 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120z" />
  213. <glyph glyph-name="o" unicode="o" horiz-adv-x="610"
  214. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154z" />
  215. <glyph glyph-name="p" unicode="p" horiz-adv-x="633"
  216. d="M72 480h115v-67h3c24 38 78 81 166 81c137 0 233 -110 233 -252c0 -140 -90 -256 -236 -256c-67 0 -128 30 -159 78h-2v-304h-120v720zM467 242c0 75 -45 154 -138 154c-88 0 -141 -81 -141 -156s53 -154 141 -154c93 0 138 81 138 156z" />
  217. <glyph glyph-name="q" unicode="q" horiz-adv-x="632"
  218. d="M560 480v-720h-120v304h-2c-31 -48 -92 -78 -159 -78c-146 0 -236 116 -236 256c0 142 96 252 233 252c88 0 142 -43 166 -81h3v67h115zM165 242c0 -75 45 -156 138 -156c88 0 141 79 141 154s-53 156 -141 156c-93 0 -138 -79 -138 -154z" />
  219. <glyph glyph-name="r" unicode="r" horiz-adv-x="364"
  220. d="M72 0v480h115v-80h2c26 55 77 94 140 94c9 0 21 -1 29 -3v-110c-16 4 -26 5 -37 5c-108 0 -129 -94 -129 -129v-257h-120z" />
  221. <glyph glyph-name="s" unicode="s" horiz-adv-x="444"
  222. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -117 -95 -160 -200 -160c-74 0 -151 28 -197 79l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136
  223. c0 107 96 153 191 153c69 0 141 -24 180 -73z" />
  224. <glyph glyph-name="t" unicode="t" horiz-adv-x="340"
  225. d="M87 384h-84v96h84v139h118v-139h120v-96h-120v-223c0 -43 10 -74 63 -74c16 0 37 3 51 10l4 -94c-21 -8 -53 -13 -80 -13c-127 0 -156 78 -156 170v224z" />
  226. <glyph glyph-name="u" unicode="u" horiz-adv-x="582"
  227. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120z" />
  228. <glyph glyph-name="v" unicode="v" horiz-adv-x="513"
  229. d="M194 0l-194 480h131l126 -350h2l127 350h127l-191 -480h-128z" />
  230. <glyph glyph-name="w" unicode="w" horiz-adv-x="804"
  231. d="M171 0l-167 480h130l100 -344h2l103 344h128l104 -344h2l102 344h125l-166 -480h-122l-109 336h-2l-108 -336h-122z" />
  232. <glyph glyph-name="x" unicode="x" horiz-adv-x="537"
  233. d="M-1 0l195 255l-173 225h144l104 -149l107 149h138l-172 -225l196 -255h-146l-125 175l-126 -175h-142z" />
  234. <glyph glyph-name="y" unicode="y" horiz-adv-x="513"
  235. d="M206 0l-206 480h133l134 -349h2l119 349h125l-227 -583c-34 -87 -76 -137 -182 -137c-20 0 -41 2 -62 7l10 104c16 -5 32 -7 45 -7c51 0 65 25 85 75z" />
  236. <glyph glyph-name="z" unicode="z" horiz-adv-x="482"
  237. d="M34 0v106l259 278h-247v96h390v-106l-260 -276h272v-98h-414z" />
  238. <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="330"
  239. d="M10 244v88c28 0 69 13 69 70v198c0 90 61 132 128 132h73v-84h-55c-39 0 -44 -31 -44 -60v-188c0 -78 -66 -107 -98 -111v-2c32 -3 98 -24 98 -117v-182c0 -29 5 -60 44 -60h55v-84h-73c-67 0 -128 42 -128 132v191c0 63 -41 77 -69 77z" />
  240. <glyph glyph-name="bar" unicode="|" horiz-adv-x="222"
  241. d="M60 750h102v-1000h-102v1000z" />
  242. <glyph glyph-name="braceright" unicode="}" horiz-adv-x="330"
  243. d="M320 244v88c-28 0 -69 13 -69 70v198c0 90 -61 132 -128 132h-73v-84h55c39 0 44 -31 44 -60v-188c0 -78 66 -107 98 -111v-2c-32 -3 -98 -24 -98 -117v-182c0 -29 -5 -60 -44 -60h-55v-84h73c67 0 128 42 128 132v191c0 63 41 77 69 77z" />
  244. <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="666"
  245. d="M345 354c56 -36 66 -37 94 -37c32 0 57 23 78 63l77 -65c-47 -77 -100 -102 -153 -102c-43 0 -77 12 -121 40c-53 33 -72 36 -93 36c-28 0 -53 -16 -78 -63l-77 65c49 81 101 103 153 103c49 0 79 -13 120 -40z" />
  246. <glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="340"
  247. d="M230 -214h-120v486h120v-486zM90 424c0 43 38 76 80 76c44 0 80 -35 80 -78s-37 -76 -80 -76c-44 0 -80 35 -80 78z" />
  248. <glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="610"
  249. d="M354 559v-67c63 -2 129 -20 170 -69l-77 -78c-25 26 -57 43 -93 45v-300c37 0 73 19 97 46l73 -79c-43 -47 -108 -67 -170 -69v-72h-54v72c-137 12 -222 118 -222 253c0 139 85 233 222 251v67h54zM300 90v299c-74 -15 -108 -76 -108 -149c0 -70 37 -132 108 -150z" />
  250. <glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="610"
  251. d="M66 0v107h98v208h-98v84h98v83c0 99 60 244 244 244c71 0 132 -22 176 -60l-71 -83c-25 27 -63 43 -105 43c-96 0 -122 -86 -122 -149v-78h164v-84h-164v-208h265v-107h-485z" />
  252. <glyph glyph-name="fraction" unicode="&#x2044;" horiz-adv-x="100"
  253. d="M-214 6l416 734l78 -38l-416 -734z" />
  254. <glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="610"
  255. d="M245 0v155h-176v78h176v77h-176v78h145l-198 320h140l155 -288l149 288h134l-193 -320h140v-78h-176v-77h176v-78h-176v-155h-120z" />
  256. <glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="610"
  257. d="M480 426v-90h-138l-57 -288c-25 -127 -83 -187 -187 -187c-35 0 -71 8 -102 24l45 92c13 -9 31 -14 47 -14c52 0 68 44 80 104l53 269h-113v90h131l22 111c20 100 63 183 180 183c43 0 80 -11 117 -31l-46 -93c-17 10 -36 16 -55 16c-59 0 -71 -55 -81 -102l-18 -84h122z
  258. " />
  259. <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="610"
  260. d="M529 640l-82 -73c-27 39 -73 63 -115 63c-40 0 -90 -20 -90 -66c0 -50 55 -75 130 -106c81 -34 170 -79 170 -178c0 -55 -36 -105 -81 -128c39 -29 52 -68 52 -116c0 -121 -113 -180 -218 -180c-83 0 -178 36 -227 113l99 59c24 -47 78 -70 127 -70c41 0 95 22 95 71
  261. c0 59 -52 76 -150 114c-74 29 -153 66 -153 159c0 73 46 119 96 145c-41 26 -61 64 -61 114c0 111 109 165 208 165c78 0 155 -29 200 -86zM281 239l104 -43c27 13 43 41 43 68c0 50 -43 72 -81 90l-89 40c-31 -13 -58 -31 -58 -70c0 -49 43 -68 81 -85z" />
  262. <glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="920"
  263. d="M687 462c28 -41 45 -92 45 -153c0 -62 -17 -116 -48 -158l93 -93c-23 -23 -46 -47 -70 -70c-32 31 -64 63 -96 95c-42 -28 -93 -43 -150 -43c-54 0 -103 14 -151 45c-32 -33 -65 -65 -98 -97c-23 23 -46 47 -70 70c32 32 63 64 95 96c-29 40 -45 93 -45 155
  264. c0 58 15 109 43 150l-93 93c24 23 48 47 71 70c31 -31 63 -62 94 -93c43 29 95 46 154 46c58 0 111 -16 153 -45c31 31 61 62 92 92c24 -23 48 -47 71 -70zM461 459c-87 0 -145 -69 -145 -150c0 -84 58 -152 145 -152c88 0 145 68 145 152c0 81 -58 150 -145 150z" />
  265. <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="282"
  266. d="M90 444v264h102v-264h-102z" />
  267. <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="465"
  268. d="M228 708l-70 -264h-116l85 264h101zM423 708l-70 -264h-116l85 264h101z" />
  269. <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="519"
  270. d="M257 421l-115 -173l116 -175l-76 -51l-152 226l152 224zM480 421l-115 -173l116 -175l-76 -51l-152 226l152 224z" />
  271. <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="296"
  272. d="M257 421l-115 -173l116 -175l-76 -51l-152 226l152 224z" />
  273. <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="296"
  274. d="M39 73l115 173l-116 175l76 51l152 -226l-152 -224z" />
  275. <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="400"
  276. d="M370 292v-92h-340v92h340z" />
  277. <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="593"
  278. d="M353 708v-203h199v-96h-199v-535h-114v535h-198v96h198v203h114z" />
  279. <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="593"
  280. d="M353 708v-185h193v-96h-193v-271h193v-96h-193v-186h-114v186h-192v96h192v271h-192v96h192v185h114z" />
  281. <glyph glyph-name="periodcentered" unicode="&#xb7;"
  282. d="M50 291c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  283. <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="600"
  284. d="M246 -126v464c-130 0 -215 77 -215 182c0 134 94 188 233 188h269v-834h-90v762h-107v-762h-90z" />
  285. <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="500"
  286. d="M73 354c0 98 79 177 177 177s177 -79 177 -177s-79 -177 -177 -177s-177 79 -177 177z" />
  287. <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="270"
  288. d="M42 -126l70 264h116l-85 -264h-101z" />
  289. <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="465"
  290. d="M237 -126l70 264h116l-85 -264h-101zM42 -126l70 264h116l-85 -264h-101z" />
  291. <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="465"
  292. d="M237 444l70 264h116l-85 -264h-101zM42 444l70 264h116l-85 -264h-101z" />
  293. <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="519"
  294. d="M262 73l115 173l-116 175l76 51l152 -226l-152 -224zM39 73l115 173l-116 175l76 51l152 -226l-152 -224z" />
  295. <glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="1000"
  296. d="M87 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76zM420 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76zM753 70c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  297. <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1230"
  298. d="M443 165c0 97 79 176 176 176s177 -79 177 -176s-80 -177 -177 -177s-176 80 -176 177zM533 165c0 -50 36 -87 86 -87s87 37 87 87s-37 86 -87 86s-86 -36 -86 -86zM839 165c0 97 79 176 176 176s177 -79 177 -176s-80 -177 -177 -177s-176 80 -176 177zM929 165
  299. c0 -50 36 -87 86 -87s87 37 87 87s-37 86 -87 86s-86 -36 -86 -86zM39 544c0 97 79 176 176 176s177 -79 177 -176s-80 -177 -177 -177s-176 80 -176 177zM129 544c0 -50 36 -87 86 -87s87 37 87 87s-37 86 -87 86s-86 -36 -86 -86zM166 6l416 734l83 -38l-416 -734z" />
  300. <glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="519"
  301. d="M195 285h118v-38c0 -64 -16 -98 -66 -146l-45 -43c-25 -23 -46 -49 -46 -89c0 -52 35 -92 94 -92c62 0 100 50 102 104l123 -11c-15 -127 -110 -202 -233 -202c-115 0 -213 67 -213 193c0 85 38 123 100 177c52 46 66 63 66 121v26zM333 424c0 -43 -36 -78 -80 -78
  302. c-43 0 -80 33 -80 76s36 78 80 78c42 0 80 -33 80 -76z" />
  303. <glyph glyph-name="grave" unicode="`"
  304. d="M78 708l99 -144h-94l-141 144h136z" />
  305. <glyph glyph-name="acute" unicode="&#xb4;"
  306. d="M83 564l99 144h136l-141 -144h-94z" />
  307. <glyph glyph-name="circumflex" unicode="&#x2c6;"
  308. d="M312 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  309. <glyph glyph-name="tilde" unicode="&#x2dc;"
  310. d="M12 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  311. <glyph glyph-name="macron" unicode="&#xaf;"
  312. d="M290 673v-78h-320v78h320z" />
  313. <glyph glyph-name="breve" unicode="&#x2d8;"
  314. d="M-40 708h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  315. <glyph glyph-name="dotaccent" unicode="&#x2d9;"
  316. d="M54 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  317. <glyph glyph-name="dieresis" unicode="&#xa8;"
  318. d="M-40 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM156 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  319. <glyph glyph-name="ring" unicode="&#x2da;"
  320. d="M235 655c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM189 655c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  321. <glyph glyph-name="cedilla" unicode="&#xb8;"
  322. d="M178 0l-45 -64c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l62 90h58z" />
  323. <glyph glyph-name="hungarumlaut" unicode="&#x2dd;"
  324. d="M-20 564l99 144h136l-141 -144h-94zM185 564l99 144h136l-141 -144h-94z" />
  325. <glyph glyph-name="ogonek" unicode="&#x2db;"
  326. d="M177 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h61c-31 -27 -83 -84 -83 -128c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  327. <glyph glyph-name="caron" unicode="&#x2c7;"
  328. d="M-51 708h114l69 -90l69 90h110l-115 -144h-133z" />
  329. <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="600"
  330. d="M570 292v-92h-540v92h540z" />
  331. <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1046"
  332. d="M529 0v186h-268l-114 -186h-153l453 708h536v-110h-328v-180h310v-106h-310v-200h346v-112h-472zM327 294h202v304h-15z" />
  333. <glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="380"
  334. d="M244 431v30h-1c-13 -22 -48 -37 -89 -37c-53 0 -105 29 -105 86c0 93 106 100 189 100v6c0 30 -26 42 -60 42c-27 0 -53 -13 -69 -31l-44 52c30 30 76 44 120 44c103 0 132 -56 132 -118v-174h-73zM238 544v13h-14c-34 0 -92 -5 -92 -39c0 -23 22 -32 43 -32
  335. c41 0 63 24 63 58z" />
  336. <glyph glyph-name="Lslash" unicode="&#x141;" horiz-adv-x="511"
  337. d="M78 0v201l-70 -62v110l70 62v397h126v-300l206 181v-109l-206 -182v-186h301v-112h-427z" />
  338. <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="849"
  339. d="M44 356c0 227 161 370 379 370c86 0 164 -22 225 -62l85 93l49 -43l-83 -91c67 -65 106 -156 106 -267c0 -221 -161 -370 -382 -374c-94 0 -176 27 -240 77l-85 -92l-50 43l87 94c-58 61 -91 151 -91 252zM674 356c0 68 -18 128 -57 174l-352 -383c39 -36 94 -55 159 -55
  340. c147 0 250 110 250 264zM175 356c0 -65 14 -116 45 -159l349 378c-35 27 -86 43 -145 43c-151 0 -249 -113 -249 -262z" />
  341. <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="1027"
  342. d="M455 112h55v486h-55c-130 0 -276 -41 -276 -244c0 -191 146 -242 276 -242zM435 708h529v-110h-328v-180h310v-106h-310v-200h346v-112h-547c-185 0 -391 106 -391 354c0 266 206 354 391 354z" />
  343. <glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="380"
  344. d="M342 574c0 -86 -64 -148 -152 -148s-152 62 -152 148c0 87 64 148 152 148s152 -61 152 -148zM260 574c0 40 -24 75 -70 75s-69 -35 -69 -75c0 -39 23 -75 69 -75s70 36 70 75z" />
  345. <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="887"
  346. d="M611 494c134 0 232 -87 232 -260c0 -11 0 -21 -1 -32h-365c8 -70 67 -118 137 -118c60 0 100 25 127 63l79 -65c-47 -64 -115 -96 -206 -96c-86 0 -152 35 -190 96c-28 -52 -87 -94 -201 -94c-81 0 -185 42 -185 149c0 134 153 151 330 151v10c0 72 -43 102 -109 102
  347. c-48 0 -101 -24 -132 -55l-61 73c53 50 129 76 202 76c83 0 137 -40 163 -82c35 48 97 82 180 82zM368 186v16h-27c-113 0 -183 -9 -183 -63c0 -46 43 -60 84 -60c82 0 126 40 126 107zM477 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116z" />
  348. <glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="268"
  349. d="M74 0v480h120v-480h-120z" />
  350. <glyph glyph-name="lslash" unicode="&#x142;" horiz-adv-x="268"
  351. d="M74 0v298l-69 -69v109l69 69v349h120v-255l69 69v-107l-69 -68v-395h-120z" />
  352. <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="610"
  353. d="M184 156l207 213c-21 18 -53 31 -86 31c-98 0 -143 -86 -143 -161c0 -29 7 -63 22 -83zM427 326l-209 -212c22 -21 54 -31 87 -31c102 0 143 84 143 159c0 30 -7 62 -21 84zM533 516l42 -40l-69 -71c38 -44 60 -100 60 -165c0 -151 -116 -254 -261 -254
  354. c-61 0 -117 18 -159 51l-70 -71l-40 41l67 68c-37 42 -59 99 -59 165c0 151 116 254 261 254c61 0 117 -18 158 -50z" />
  355. <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="959"
  356. d="M683 494c134 0 232 -87 232 -260c0 -11 0 -21 -1 -32h-365c8 -70 67 -118 137 -118c60 0 100 25 127 63l79 -65c-47 -64 -115 -96 -206 -96c-85 0 -155 36 -195 91c-40 -54 -109 -91 -190 -91c-145 0 -257 105 -257 256s112 252 257 252c81 0 153 -38 193 -93
  357. c41 53 107 93 189 93zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM549 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116z" />
  358. <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="627"
  359. d="M72 0v507c0 138 69 261 244 261c126 0 214 -85 214 -195c0 -69 -46 -133 -107 -149v-2c101 -17 164 -96 164 -200c0 -137 -95 -234 -247 -234c-28 0 -56 3 -87 11v101c18 -6 50 -10 70 -10c84 0 141 53 141 138c0 94 -70 136 -154 136h-13v102h15c59 0 99 38 99 96
  360. c0 50 -31 101 -100 101c-96 0 -119 -90 -119 -162v-501h-120z" />
  361. <glyph glyph-name="ydieresis.sc" horiz-adv-x="510"
  362. d="M194 0v221l-202 321h143l123 -219l122 219h138l-202 -321v-221h-122zM88 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM284 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  363. <glyph glyph-name="n.sc" horiz-adv-x="634"
  364. d="M76 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117z" />
  365. <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="666"
  366. d="M150 557l183 -183l182 182l70 -70l-181 -181l185 -186l-74 -74l-183 181l-181 -181l-74 73l185 182l-184 186z" />
  367. <glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="666"
  368. d="M80 144v112l359 112l-359 118v113l506 -177v-108zM80 4v107h506v-107h-506z" />
  369. <glyph glyph-name="uhungarumlaut" unicode="&#x171;" horiz-adv-x="582"
  370. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM134 564l99 144h136l-141 -144h-94zM339 564l99 144h136l-141 -144h-94z" />
  371. <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="610"
  372. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM280 708l99 -144h-94l-141 144h136z" />
  373. <glyph glyph-name="umacron.sc" horiz-adv-x="595"
  374. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM456 703v-78h-320v78h320z" />
  375. <glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="537"
  376. d="M549 786l-211 -1000h-106l-152 317l-51 -25l-41 90l148 68l129 -273l168 823h116z" />
  377. <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="666"
  378. d="M586 162h-264l-74 -144l-88 45l50 99h-130v102h181l38 78h-219v102h270l72 143l90 -44l-51 -99h125v-102h-176l-38 -78h214v-102z" />
  379. <glyph glyph-name="omacron" unicode="&#x14d;" horiz-adv-x="610"
  380. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM465 673v-78h-320v78h320z" />
  381. <glyph glyph-name="ohungarumlaut.sc" horiz-adv-x="684"
  382. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM197 594l99 144h136l-141 -144h-94zM402 594
  383. l99 144h136l-141 -144h-94z" />
  384. <glyph glyph-name="iogonek.sc" horiz-adv-x="274"
  385. d="M76 0v542h122v-542h-122zM215 -153l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h61c-31 -27 -83 -84 -83 -128c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  386. <glyph glyph-name="ohungarumlaut" unicode="&#x151;" horiz-adv-x="610"
  387. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM159 564l99 144h136l-141 -144h-94zM364 564l99 144h136l-141 -144h-94z" />
  388. <glyph glyph-name="uniF8FF" unicode="&#xf8ff;" horiz-adv-x="512"
  389. d="M222 117h56v67h-56v-67zM225 234h46c0 35 2 59 6 72s18 30 43 52c51 47 63 77 63 120c0 79 -53 131 -124 131c-72 0 -126 -42 -135 -137l50 -8c8 68 41 95 82 95s76 -37 76 -85c0 -25 -7 -42 -50 -83c-22 -22 -37 -42 -46 -59s-13 -44 -13 -81zM462 50h-412v617h412v-617
  390. zM512 718h-512v-718h512v718z" />
  391. <glyph glyph-name="p.sc" horiz-adv-x="500"
  392. d="M76 0v542h184c132 0 210 -56 210 -163c0 -113 -79 -175 -213 -175h-62v-204h-119zM195 300h52c63 0 101 24 101 75c0 45 -28 68 -93 68h-60v-143z" />
  393. <glyph glyph-name="macron.sc"
  394. d="M290 703v-78h-320v78h320z" />
  395. <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="610"
  396. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM189 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19
  397. c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  398. <glyph glyph-name="ugrave.sc" horiz-adv-x="595"
  399. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM254 738l99 -144h-94l-141 144h136z" />
  400. <glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="582"
  401. d="M72 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120zM175 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127
  402. c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  403. <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="610"
  404. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM137 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM333 644
  405. c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  406. <glyph glyph-name="jcircumflex" unicode="&#x135;" horiz-adv-x="268"
  407. d="M74 480h120v-509c0 -115 -31 -211 -174 -211c-20 0 -42 3 -54 6l10 102c11 -3 24 -4 33 -4c57 0 65 47 65 102v514zM316 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  408. <glyph glyph-name="oe.sc" horiz-adv-x="819"
  409. d="M761 542v-101h-252v-114h239v-96h-239v-127h265v-104h-432c-167 0 -296 104 -296 272c0 171 129 270 296 270h419zM178 272c0 -106 66 -162 164 -162h45v324h-45c-99 0 -164 -61 -164 -162z" />
  410. <glyph glyph-name="ncaron" unicode="&#x148;" horiz-adv-x="582"
  411. d="M72 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120zM107 708h114l69 -90l69 90h110l-115 -144h-133z" />
  412. <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="268"
  413. d="M74 0v480h120v-480h-120zM-35 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM161 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  414. <glyph glyph-name="udieresis.sc" horiz-adv-x="595"
  415. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM129 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM325 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70
  416. s-71 33 -71 70z" />
  417. <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="610"
  418. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM489 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  419. <glyph glyph-name="onehalf" unicode="&#xbd;" horiz-adv-x="900"
  420. d="M186 6l416 734l78 -38l-416 -734zM771 179l-100 -97h169v-82h-291v76l162 161c21 21 36 43 36 70c0 30 -23 49 -53 49c-34 0 -58 -28 -61 -67l-88 12c9 78 68 135 149 135c76 0 146 -43 146 -128c0 -55 -32 -93 -69 -129zM95 535l-53 62l137 111h83v-429h-94v317z" />
  421. <glyph glyph-name="grave.sc"
  422. d="M78 738l99 -144h-94l-141 144h136z" />
  423. <glyph glyph-name="hungarumlaut.cap"
  424. d="M-20 764l99 144h136l-141 -144h-94zM185 764l99 144h136l-141 -144h-94z" />
  425. <glyph glyph-name="utilde" unicode="&#x169;" horiz-adv-x="582"
  426. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM173 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66
  427. c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  428. <glyph glyph-name="otilde.sc" horiz-adv-x="684"
  429. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM222 598h-66c6 32 15 64 32 88
  430. c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  431. <glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="741"
  432. d="M679 -214h-114v897h-389v-897h-114v1000h617v-1000z" />
  433. <glyph glyph-name="twosuperior" unicode="&#xb2;" horiz-adv-x="400"
  434. d="M278 462l-100 -97h169v-82h-291v76l162 161c21 21 36 43 36 70c0 30 -23 49 -53 49c-34 0 -58 -28 -61 -67l-88 12c9 78 68 135 149 135c76 0 146 -43 146 -128c0 -55 -32 -93 -69 -129z" />
  435. <glyph glyph-name="imacron.sc" horiz-adv-x="274"
  436. d="M76 0v542h122v-542h-122zM299 703v-78h-320v78h320z" />
  437. <glyph glyph-name="lacute" unicode="&#x13a;" horiz-adv-x="268"
  438. d="M74 0v756h120v-756h-120zM74 792l99 144h136l-141 -144h-94z" />
  439. <glyph glyph-name="ocircumflex.sc" horiz-adv-x="684"
  440. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM522 594h-114l-69 90l-69 -90h-112l115 144
  441. h135z" />
  442. <glyph glyph-name="perthousand.sc" horiz-adv-x="1051"
  443. d="M402 129c0 79 64 142 143 142c78 0 142 -63 142 -142c0 -78 -64 -142 -142 -142c-79 0 -143 64 -143 142zM603 129c0 33 -25 57 -58 57s-58 -24 -58 -57c0 -34 25 -58 58 -58s58 24 58 58zM38 409c0 78 64 142 142 142s142 -64 142 -142c0 -79 -64 -141 -142 -141
  444. s-142 62 -142 141zM238 409c0 33 -25 57 -58 57s-58 -24 -58 -57c0 -34 25 -58 58 -58s58 24 58 58zM732 129c0 79 64 142 143 142c78 0 142 -63 142 -142c0 -78 -64 -142 -142 -142c-79 0 -143 64 -143 142zM933 129c0 33 -25 57 -58 57s-58 -24 -58 -57
  445. c0 -34 25 -58 58 -58s58 24 58 58zM165 11l311 546l78 -39l-311 -546z" />
  446. <glyph glyph-name="napostrophe.sc" horiz-adv-x="730"
  447. d="M172 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117zM-28 347l65 195h106l-80 -195h-91z" />
  448. <glyph glyph-name="ij.sc" horiz-adv-x="686"
  449. d="M76 0v542h122v-542h-122zM620 542v-370c0 -79 -30 -186 -171 -186c-91 0 -143 52 -168 134l113 32c13 -42 34 -56 54 -56c36 0 50 25 50 81v365h122z" />
  450. <glyph glyph-name="uni03BC" unicode="&#x3bc;" horiz-adv-x="574"
  451. d="M68 480h120v-243c0 -53 4 -141 88 -141c79 0 110 58 110 122v262h120v-480h-114v77h-2c-22 -48 -60 -89 -137 -89c-24 0 -52 8 -65 24v-240h-120v708z" />
  452. <glyph glyph-name="percent.sc" horiz-adv-x="725"
  453. d="M402 129c0 79 64 142 143 142c78 0 142 -63 142 -142c0 -78 -64 -142 -142 -142c-79 0 -143 64 -143 142zM603 129c0 33 -25 57 -58 57s-58 -24 -58 -57c0 -34 25 -58 58 -58s58 24 58 58zM38 409c0 78 64 142 142 142s142 -64 142 -142c0 -79 -64 -141 -142 -141
  454. s-142 62 -142 141zM238 409c0 33 -25 57 -58 57s-58 -24 -58 -57c0 -34 25 -58 58 -58s58 24 58 58zM165 11l311 546l78 -39l-311 -546z" />
  455. <glyph glyph-name="obreve.sc" horiz-adv-x="684"
  456. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM172 738h67c9 -50 52 -66 103 -66
  457. c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  458. <glyph glyph-name="summation" unicode="&#x2211;" horiz-adv-x="648"
  459. d="M624 -214h-599v89l303 417l-290 405v89h573v-103h-422l275 -390l-293 -404h453v-103z" />
  460. <glyph glyph-name="racute" unicode="&#x155;" horiz-adv-x="364"
  461. d="M72 0v480h115v-80h2c26 55 77 94 140 94c9 0 21 -1 29 -3v-110c-16 4 -26 5 -37 5c-108 0 -129 -94 -129 -129v-257h-120zM103 564l99 144h136l-141 -144h-94z" />
  462. <glyph glyph-name="two.onum" horiz-adv-x="561"
  463. d="M502 0h-437v100l56 35c169 108 253 160 253 238c0 51 -35 88 -104 88c-53 0 -98 -31 -124 -79l-93 51c43 78 123 128 222 128c129 0 220 -60 220 -180c0 -116 -107 -185 -217 -255l-38 -23v-3h262v-100z" />
  464. <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1000"
  465. d="M162 296v322h-122v90h346v-90h-122v-322h-102zM465 296v412h142l98 -268l98 268h142v-412h-102v268h-2l-101 -268h-70l-101 268h-2v-268h-102z" />
  466. <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="714"
  467. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM291 764l99 144h136l-141 -144h-94z" />
  468. <glyph glyph-name="lcommaaccent" unicode="&#x13c;" horiz-adv-x="268"
  469. d="M74 0v756h120v-756h-120zM29 -240l65 195h106l-80 -195h-91z" />
  470. <glyph glyph-name="imacron" unicode="&#x12b;" horiz-adv-x="268"
  471. d="M74 0v480h120v-480h-120zM296 673v-78h-320v78h320z" />
  472. <glyph glyph-name="nine.sc" horiz-adv-x="516"
  473. d="M281 0h-144l141 200l-2 2c-16 -6 -34 -9 -50 -9c-95 0 -173 63 -173 171c0 116 92 192 206 192c116 0 205 -79 205 -191c0 -63 -25 -121 -65 -182zM344 369c0 54 -40 85 -87 85s-85 -33 -85 -87c0 -53 39 -86 86 -86s86 33 86 88z" />
  474. <glyph glyph-name="uni021B" unicode="&#x21b;" horiz-adv-x="340"
  475. d="M87 384h-84v96h84v139h118v-139h120v-96h-120v-223c0 -43 10 -74 63 -74c16 0 37 3 51 10l4 -94c-21 -8 -53 -13 -80 -13c-127 0 -156 78 -156 170v224zM98 -240l65 195h106l-80 -195h-91z" />
  476. <glyph glyph-name="oacute.sc" horiz-adv-x="684"
  477. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM274 594l99 144h136l-141 -144h-94z" />
  478. <glyph glyph-name="idotaccent.sc" horiz-adv-x="274"
  479. d="M76 0v542h122v-542h-122zM54 673c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  480. <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="706"
  481. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM458 855c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM412 855c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56
  482. s59 24 59 57z" />
  483. <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="610"
  484. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM233 564l99 144h136l-141 -144h-94z" />
  485. <glyph glyph-name="ncommaaccent" unicode="&#x146;" horiz-adv-x="582"
  486. d="M72 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120zM189 -240l65 195h106l-80 -195h-91z" />
  487. <glyph glyph-name="nacute" unicode="&#x144;" horiz-adv-x="582"
  488. d="M72 0v480h114v-77h2c21 48 78 91 149 91c125 0 177 -96 177 -194v-300h-120v266c0 57 -13 128 -90 128c-76 0 -112 -66 -112 -130v-264h-120zM217 564l99 144h136l-141 -144h-94z" />
  489. <glyph glyph-name="ucircumflex.sc" horiz-adv-x="595"
  490. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM481 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  491. <glyph glyph-name="macron.cap"
  492. d="M290 873v-78h-320v78h320z" />
  493. <glyph glyph-name="oslash.sc" horiz-adv-x="684"
  494. d="M597 571l43 -40l-69 -70c44 -50 69 -113 69 -188c0 -170 -128 -287 -299 -287c-68 0 -127 18 -179 54l-69 -73l-41 41l67 69c-45 47 -75 116 -75 196c0 173 129 283 297 283c73 0 138 -21 188 -56zM170 273c0 -44 13 -83 31 -111l248 255c-28 22 -65 36 -108 36
  495. c-103 0 -171 -75 -171 -180zM513 273c0 36 -9 70 -26 99l-244 -252c26 -19 61 -28 98 -28c102 0 172 71 172 181z" />
  496. <glyph glyph-name="iogonek" unicode="&#x12f;" horiz-adv-x="268"
  497. d="M74 0v480h120v-480h-19c-31 -29 -76 -81 -76 -122c0 -25 21 -46 46 -46c19 0 40 9 54 21l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 54 50 111 92 145h-39zM57 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  498. <glyph glyph-name="yacute.sc" horiz-adv-x="510"
  499. d="M194 0v221l-202 321h143l123 -219l122 219h138l-202 -321v-221h-122zM191 594l99 144h136l-141 -144h-94z" />
  500. <glyph glyph-name="hbar" unicode="&#x127;" horiz-adv-x="584"
  501. d="M364 645v-75h-170v-157h2c19 40 72 81 143 81c125 0 177 -96 177 -194v-300h-120v264c0 57 -12 127 -89 127c-76 0 -113 -65 -113 -129v-262h-120v570h-54v75h54v111h120v-111h170z" />
  502. <glyph glyph-name="uhungarumlaut.sc" horiz-adv-x="595"
  503. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM152 594l99 144h136l-141 -144h-94zM357 594l99 144h136l-141 -144h-94z" />
  504. <glyph glyph-name="omacron.sc" horiz-adv-x="684"
  505. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM502 703v-78h-320v78h320z" />
  506. <glyph glyph-name="z.sc" horiz-adv-x="523"
  507. d="M50 0v98l276 345h-273v99h417v-101l-273 -341h276v-100h-423z" />
  508. <glyph glyph-name="questiondown.sc" horiz-adv-x="439"
  509. d="M298 474c0 -43 -34 -76 -78 -76c-43 0 -78 31 -78 74s34 76 78 76c42 0 78 -31 78 -74zM163 343h116v-17c0 -38 -19 -67 -47 -93l-33 -31c-22 -20 -31 -36 -31 -62c0 -22 17 -48 51 -48c35 0 55 24 58 61l120 -11c-12 -108 -88 -156 -188 -156c-113 0 -164 75 -164 147
  510. c0 50 14 89 68 133c42 34 50 43 50 73v4z" />
  511. <glyph glyph-name="idieresis.sc" horiz-adv-x="274"
  512. d="M76 0v542h122v-542h-122zM-32 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM164 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  513. <glyph glyph-name="one.sc" horiz-adv-x="516"
  514. d="M235 0v392l-98 -82l-70 80l186 152h101v-542h-119z" />
  515. <glyph glyph-name="question.sc" horiz-adv-x="439"
  516. d="M142 68c0 43 34 76 78 76c43 0 78 -31 78 -74s-34 -76 -78 -76c-42 0 -78 31 -78 74zM277 199h-116v17c0 38 19 67 47 93l33 31c22 20 31 36 31 62c0 22 -17 48 -51 48c-35 0 -55 -24 -58 -61l-120 11c12 108 88 156 188 156c113 0 164 -75 164 -147
  517. c0 -50 -14 -89 -68 -133c-42 -34 -50 -43 -50 -73v-4z" />
  518. <glyph glyph-name="wcircumflex" unicode="&#x175;" horiz-adv-x="804"
  519. d="M171 0l-167 480h130l100 -344h2l103 344h128l104 -344h2l102 344h125l-166 -480h-122l-109 336h-2l-108 -336h-122zM586 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  520. <glyph glyph-name="iacute.sc" horiz-adv-x="274"
  521. d="M76 0v542h122v-542h-122zM81 594l99 144h136l-141 -144h-94z" />
  522. <glyph glyph-name="three.sc" horiz-adv-x="516"
  523. d="M189 236v92h36c48 0 96 13 96 69c0 35 -26 61 -64 61c-33 0 -63 -22 -74 -65l-112 27c22 84 98 136 189 136c99 0 181 -51 181 -151c0 -53 -26 -98 -82 -120v-3c72 -20 96 -65 96 -125c0 -115 -101 -171 -196 -171s-173 37 -209 137l113 35c14 -47 44 -72 93 -72
  524. c39 0 80 19 80 72c0 55 -55 78 -112 78h-35z" />
  525. <glyph glyph-name="Ubreve" unicode="&#x16c;" horiz-adv-x="714"
  526. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM186 908h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  527. <glyph glyph-name="ordfeminine.sc" horiz-adv-x="380"
  528. d="M360 428h-88l-23 57h-119l-22 -57h-86l126 294h85zM228 542l-38 101l-38 -101h76z" />
  529. <glyph glyph-name="Ccircumflex" unicode="&#x108;" horiz-adv-x="696"
  530. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-62 -78 -154 -124 -274 -124c-221 0 -378 153 -378 374c0 227 166 370 384 370c92 0 201 -34 257 -108zM611 764h-114l-69 90l-69 -90h-112
  531. l115 144h135z" />
  532. <glyph glyph-name="l.sc" horiz-adv-x="433"
  533. d="M76 0v542h122v-435h221v-107h-343z" />
  534. <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="268"
  535. d="M74 0v480h120v-480h-120zM94 708l99 -144h-94l-141 144h136z" />
  536. <glyph glyph-name="Cdotaccent" unicode="&#x10a;" horiz-adv-x="696"
  537. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-62 -78 -154 -124 -274 -124c-221 0 -378 153 -378 374c0 227 166 370 384 370c92 0 201 -34 257 -108zM349 843c0 38 32 72 76 72
  538. s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  539. <glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="593"
  540. d="M580 13c-28 -13 -64 -20 -95 -20c-89 0 -104 56 -104 131v254h-183v-378h-117v378h-70v102h566v-102h-79v-237c0 -28 1 -58 38 -58c15 0 30 4 44 10v-80z" />
  541. <glyph glyph-name="umacron" unicode="&#x16b;" horiz-adv-x="582"
  542. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM450 673v-78h-320v78h320z" />
  543. <glyph glyph-name="Utilde" unicode="&#x168;" horiz-adv-x="714"
  544. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM243 768h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127
  545. c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  546. <glyph glyph-name="scommaaccent.sc" horiz-adv-x="492"
  547. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  548. c0 120 103 172 204 172c74 0 151 -27 193 -82zM128 -240l65 195h106l-80 -195h-91z" />
  549. <glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="666"
  550. d="M586 144l-506 170v108l506 177v-113l-359 -118l359 -112v-112zM586 4h-506v107h506v-107z" />
  551. <glyph glyph-name="uni00A0" unicode="&#xa0;" horiz-adv-x="250"
  552. />
  553. <glyph glyph-name="uring.sc" horiz-adv-x="595"
  554. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM403 685c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM357 685c0 33 -26 57 -59 57
  555. c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  556. <glyph glyph-name="Wcircumflex" unicode="&#x174;" horiz-adv-x="1004"
  557. d="M213 0l-207 708h138l137 -520h2l156 520h130l153 -520h2l140 520h134l-207 -708h-122l-166 531h-2l-166 -531h-122zM685 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  558. <glyph glyph-name="i.sc" horiz-adv-x="274"
  559. d="M76 0v542h122v-542h-122z" />
  560. <glyph glyph-name="onesuperior" unicode="&#xb9;" horiz-adv-x="400"
  561. d="M95 535l-53 62l137 111h83v-429h-94v317z" />
  562. <glyph glyph-name="threequarters" unicode="&#xbe;" horiz-adv-x="900"
  563. d="M682 0v85h-190v74l179 270h97v-265h58v-79h-58v-85h-86zM682 164v149h-1l-96 -149h97zM186 6l416 734l78 -38l-416 -734zM148 469v71h28c37 0 75 14 75 57c0 28 -24 45 -53 45c-28 0 -49 -22 -56 -53l-86 21c18 64 76 110 145 110c80 0 142 -38 142 -118
  564. c0 -39 -21 -74 -55 -93c42 -16 66 -52 66 -100c0 -91 -79 -132 -153 -132c-73 0 -135 32 -161 112l85 25c11 -33 34 -58 72 -58c32 0 66 16 66 57c0 46 -49 56 -88 56h-27z" />
  565. <glyph glyph-name="uni03A9" unicode="&#x3a9;" horiz-adv-x="759"
  566. d="M701 0h-276v189c102 20 157 108 157 208c0 119 -84 219 -207 219c-125 0 -209 -99 -209 -220c0 -104 52 -181 154 -207v-189h-274v106h172v32c-121 37 -172 143 -172 266c0 185 146 317 327 317c182 0 328 -127 328 -314c0 -125 -49 -232 -173 -269v-32h173v-106z" />
  567. <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="714"
  568. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM541 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  569. <glyph glyph-name="hcircumflex.sc" horiz-adv-x="619"
  570. d="M76 0v542h122v-213h223v213h122v-542h-122v228h-223v-228h-122zM492 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  571. <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="482"
  572. d="M34 0v106l259 278h-247v96h390v-106l-260 -276h272v-98h-414zM65 708h114l69 -90l69 90h110l-115 -144h-133z" />
  573. <glyph glyph-name="ograve.sc" horiz-adv-x="684"
  574. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM299 738l99 -144h-94l-141 144h136z" />
  575. <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="622"
  576. d="M249 0v307l-266 401h154l178 -298l180 298h146l-266 -401v-307h-126zM266 764l99 144h136l-141 -144h-94z" />
  577. <glyph glyph-name="ycircumflex.sc" horiz-adv-x="510"
  578. d="M194 0v221l-202 321h143l123 -219l122 219h138l-202 -321v-221h-122zM441 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  579. <glyph glyph-name="o.sc" horiz-adv-x="684"
  580. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174z" />
  581. <glyph glyph-name="tbar" unicode="&#x167;" horiz-adv-x="340"
  582. d="M305 294v-75h-100v-58c0 -43 10 -74 63 -74c16 0 37 3 51 10l4 -94c-21 -8 -53 -13 -80 -13c-127 0 -156 78 -156 170v59h-75v75h75v90h-84v96h84v139h118v-139h120v-96h-120v-90h100z" />
  583. <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="268"
  584. d="M74 0v480h120v-480h-120zM317 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  585. <glyph glyph-name="itilde" unicode="&#x129;" horiz-adv-x="268"
  586. d="M74 0v480h120v-480h-120zM18 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  587. <glyph glyph-name="scircumflex.sc" horiz-adv-x="492"
  588. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  589. c0 120 103 172 204 172c74 0 151 -27 193 -82zM436 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  590. <glyph glyph-name="j.sc" horiz-adv-x="405"
  591. d="M339 542v-370c0 -79 -30 -186 -171 -186c-91 0 -143 52 -168 134l113 32c13 -42 34 -56 54 -56c36 0 50 25 50 81v365h122z" />
  592. <glyph glyph-name="scommaaccent" unicode="&#x219;" horiz-adv-x="444"
  593. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -117 -95 -160 -200 -160c-74 0 -151 28 -197 79l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136
  594. c0 107 96 153 191 153c69 0 141 -24 180 -73zM117 -240l65 195h106l-80 -195h-91z" />
  595. <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="706"
  596. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM236 768h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18
  597. c-27 0 -39 -21 -46 -43z" />
  598. <glyph glyph-name="igrave.sc" horiz-adv-x="274"
  599. d="M76 0v542h122v-542h-122zM98 738l99 -144h-94l-141 144h136z" />
  600. <glyph glyph-name="aring.sc" horiz-adv-x="582"
  601. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM396 685c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM350 685c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56
  602. s59 24 59 57z" />
  603. <glyph glyph-name="gdotaccent" unicode="&#x121;" horiz-adv-x="632"
  604. d="M446 480h114v-437c0 -173 -84 -283 -271 -283c-78 0 -176 28 -238 79l69 93c46 -44 108 -68 168 -68c116 0 152 70 152 165v35h-2c-35 -47 -91 -72 -157 -72c-144 0 -237 114 -237 250c0 139 90 252 235 252c67 0 130 -28 165 -86h2v72zM304 396
  605. c-87 0 -138 -68 -138 -153c0 -76 51 -152 137 -152c89 0 143 72 143 152c0 83 -55 153 -142 153zM239 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  606. <glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="582"
  607. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM475 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  608. <glyph glyph-name="ring.sc"
  609. d="M235 685c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM189 685c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  610. <glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="582"
  611. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM264 708l99 -144h-94l-141 144h136z" />
  612. <glyph glyph-name="Tcommaaccent" unicode="&#x162;" horiz-adv-x="568"
  613. d="M221 0v598h-217v110h560v-110h-217v-598h-126zM179 -240l65 195h106l-80 -195h-91z" />
  614. <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="611"
  615. d="M35 0v114l385 484h-379v110h529v-114l-387 -482h393v-112h-541zM126 908h114l69 -90l69 90h110l-115 -144h-133z" />
  616. <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="550"
  617. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  618. c82 0 126 47 126 123zM195 564l99 144h136l-141 -144h-94z" />
  619. <glyph glyph-name="hungarumlaut.sc"
  620. d="M-20 594l99 144h136l-141 -144h-94zM185 594l99 144h136l-141 -144h-94z" />
  621. <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="849"
  622. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM611 764h-114l-69 90l-69 -90h-112
  623. l115 144h135z" />
  624. <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="849"
  625. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM361 764l99 144h136l-141 -144h-94z" />
  626. <glyph glyph-name="sterling.sc" horiz-adv-x="516"
  627. d="M60 0v100h61v131h-61v82h61v58c0 87 64 180 190 180c63 0 104 -18 143 -51l-68 -79c-25 26 -45 34 -73 34c-35 0 -72 -28 -72 -89v-53h110v-82h-110v-131h187v-100h-368z" />
  628. <glyph glyph-name="nacute.sc" horiz-adv-x="634"
  629. d="M76 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117zM245 594l99 144h136l-141 -144h-94z" />
  630. <glyph glyph-name="uring" unicode="&#x16f;" horiz-adv-x="582"
  631. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM393 655c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM347 655
  632. c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  633. <glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="582"
  634. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM225 564l99 144h136l-141 -144h-94z" />
  635. <glyph glyph-name="ubreve.sc" horiz-adv-x="595"
  636. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM126 738h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  637. <glyph glyph-name="seven.sc" horiz-adv-x="516"
  638. d="M69 438v104h381v-96l-211 -446h-137l224 438h-257z" />
  639. <glyph glyph-name="odieresis.sc" horiz-adv-x="684"
  640. d="M44 273c0 173 129 283 297 283c170 0 299 -110 299 -283c0 -169 -129 -287 -299 -287c-168 0 -297 118 -297 287zM176 273c0 -107 67 -175 165 -175c99 0 166 68 166 175c0 102 -66 174 -166 174c-99 0 -165 -72 -165 -174zM170 674c0 37 30 70 71 70s73 -30 73 -70
  641. s-32 -70 -73 -70s-71 33 -71 70zM366 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  642. <glyph glyph-name="zcaron.sc" horiz-adv-x="523"
  643. d="M50 0v98l276 345h-273v99h417v-101l-273 -341h276v-100h-423zM84 738h114l69 -90l69 90h110l-115 -144h-133z" />
  644. <glyph glyph-name="obreve" unicode="&#x14f;" horiz-adv-x="610"
  645. d="M44 242c0 151 116 252 261 252s261 -101 261 -252s-116 -256 -261 -256s-261 105 -261 256zM166 242c0 -75 44 -156 139 -156s139 81 139 156s-44 154 -139 154s-139 -79 -139 -154zM135 708h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144
  646. s-163 44 -169 144z" />
  647. <glyph glyph-name="nine.onum" horiz-adv-x="625"
  648. d="M568 309c0 -166 -162 -371 -315 -493l-103 59c91 69 184 163 233 244l-3 2c-22 -17 -58 -26 -99 -26c-124 0 -224 91 -224 224c0 148 111 242 255 242c145 0 256 -91 256 -252zM446 323c0 75 -54 136 -134 136s-134 -57 -134 -137c0 -77 53 -135 133 -135
  649. c81 0 135 57 135 136z" />
  650. <glyph glyph-name="uni02C9" unicode="&#x2c9;"
  651. d="M290 873v-78h-320v78h320z" />
  652. <glyph glyph-name="germandbls.sc" horiz-adv-x="984"
  653. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  654. c0 120 103 172 204 172c74 0 151 -27 193 -82zM940 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61
  655. c0 45 -39 58 -117 77c-76 19 -152 52 -152 153c0 120 103 172 204 172c74 0 151 -27 193 -82z" />
  656. <glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="574"
  657. d="M68 480h120v-243c0 -53 4 -141 88 -141c79 0 110 58 110 122v262h120v-480h-114v77h-2c-22 -48 -60 -89 -137 -89c-24 0 -52 8 -65 24v-240h-120v708z" />
  658. <glyph glyph-name="Racute" unicode="&#x154;" horiz-adv-x="629"
  659. d="M78 0v708h246c133 0 261 -53 261 -203c0 -102 -63 -169 -162 -191l189 -314h-152l-164 300h-92v-300h-126zM204 403h103c71 0 152 17 152 103c0 77 -76 96 -141 96h-114v-199zM224 764l99 144h136l-141 -144h-94z" />
  660. <glyph glyph-name="aacute.sc" horiz-adv-x="582"
  661. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM234 594l99 144h136l-141 -144h-94z" />
  662. <glyph glyph-name="Dcaron" unicode="&#x10e;" horiz-adv-x="764"
  663. d="M78 0v708h251c185 0 391 -88 391 -354c0 -248 -206 -354 -391 -354h-251zM204 110h105c130 0 276 53 276 244c0 203 -146 246 -276 246h-105v-490zM163 908h114l69 -90l69 90h110l-115 -144h-133z" />
  664. <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="666"
  665. d="M286 431v143h96v-143h204v-102h-204v-143h-96v143h-206v102h206zM80 32v102h506v-102h-506z" />
  666. <glyph glyph-name="abreve" unicode="&#x103;" horiz-adv-x="550"
  667. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  668. c82 0 126 47 126 123zM109 708h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  669. <glyph glyph-name="q.sc" horiz-adv-x="679"
  670. d="M662 100v-100h-327c-174 0 -291 98 -291 277c0 164 125 279 292 279s291 -104 291 -270c0 -86 -34 -145 -79 -183v-3h114zM336 447c-90 0 -160 -70 -160 -170c0 -110 68 -177 160 -177c96 0 160 67 160 177c0 100 -68 170 -160 170z" />
  671. <glyph glyph-name="Aogonek" unicode="&#x104;" horiz-adv-x="706"
  672. d="M653 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 55 52 113 94 146l-65 161h-307l-64 -162h-141l308 708h109l305 -708h-85c-31 -29 -76 -81 -76 -122c0 -25 21 -46 46 -46c19 0 40 9 54 21zM240 270h220l-109 288z" />
  673. <glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="593"
  674. d="M524 356l-178 -391h-100l-177 391l177 391h100zM415 356l-119 285l-118 -285l118 -286z" />
  675. <glyph glyph-name="exclamdown.sc" horiz-adv-x="308"
  676. d="M214 0h-120v343h120v-343zM76 473c0 43 36 75 78 75c44 0 78 -34 78 -77s-35 -75 -78 -75c-44 0 -78 34 -78 77z" />
  677. <glyph glyph-name="zdotaccent" unicode="&#x17c;" horiz-adv-x="482"
  678. d="M34 0v106l259 278h-247v96h390v-106l-260 -276h272v-98h-414zM166 643c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  679. <glyph glyph-name="jcircumflex.sc" horiz-adv-x="405"
  680. d="M339 542v-370c0 -79 -30 -186 -171 -186c-91 0 -143 52 -168 134l113 32c13 -42 34 -56 54 -56c36 0 50 25 50 81v365h122zM461 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  681. <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="610"
  682. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM253 764l99 144h136l-141 -144h-94z" />
  683. <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="622"
  684. d="M249 0v307l-266 401h154l178 -298l180 298h146l-266 -401v-307h-126zM145 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM341 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  685. <glyph glyph-name="zacute" unicode="&#x17a;" horiz-adv-x="482"
  686. d="M34 0v106l259 278h-247v96h390v-106l-260 -276h272v-98h-414zM174 564l99 144h136l-141 -144h-94z" />
  687. <glyph glyph-name="Zacute" unicode="&#x179;" horiz-adv-x="611"
  688. d="M35 0v114l385 484h-379v110h529v-114l-387 -482h393v-112h-541zM234 764l99 144h136l-141 -144h-94z" />
  689. <glyph glyph-name="minus" unicode="&#x2212;" horiz-adv-x="666"
  690. d="M62 354h542v-102h-542v102z" />
  691. <glyph glyph-name="uogonek" unicode="&#x173;" horiz-adv-x="582"
  692. d="M477 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 56 54 116 97 149v73h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120v-480h-57c-31 -29 -76 -81 -76 -122
  693. c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  694. <glyph glyph-name="Dcroat" unicode="&#x110;" horiz-adv-x="764"
  695. d="M79 0v324h-66v84h66v300h279c186 0 360 -114 360 -354c0 -242 -205 -354 -375 -354h-264zM205 114h94c158 0 287 68 287 240s-112 240 -266 240h-115v-186h216v-84h-216v-210z" />
  696. <glyph glyph-name="lacute.sc" horiz-adv-x="433"
  697. d="M76 0v542h122v-435h221v-107h-343zM90 594l99 144h136l-141 -144h-94z" />
  698. <glyph glyph-name="uni2215" unicode="&#x2215;" horiz-adv-x="100"
  699. d="M-214 6l416 734l78 -38l-416 -734z" />
  700. <glyph glyph-name="Uogonek" unicode="&#x172;" horiz-adv-x="714"
  701. d="M447 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 45 35 93 72 128c-154 7 -269 111 -269 277v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126v-448c0 -153 -98 -254 -234 -274c-29 -30 -61 -73 -61 -108c0 -25 21 -46 46 -46
  702. c19 0 40 9 54 21z" />
  703. <glyph glyph-name="ecaron" unicode="&#x11b;" horiz-adv-x="574"
  704. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM120 708h114
  705. l69 -90l69 90h110l-115 -144h-133z" />
  706. <glyph glyph-name="Amacron" unicode="&#x100;" horiz-adv-x="706"
  707. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM515 873v-78h-320v78h320z" />
  708. <glyph glyph-name="zacute.sc" horiz-adv-x="523"
  709. d="M50 0v98l276 345h-273v99h417v-101l-273 -341h276v-100h-423zM174 594l99 144h136l-141 -144h-94z" />
  710. <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="849"
  711. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM257 844c0 37 30 70 71 70s73 -30 73 -70
  712. s-32 -70 -73 -70s-71 33 -71 70zM453 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  713. <glyph glyph-name="six.onum" horiz-adv-x="625"
  714. d="M568 223c0 -148 -112 -242 -255 -242c-145 0 -256 89 -256 252c0 167 162 368 314 489l102 -59c-88 -66 -182 -158 -231 -240l3 -2c22 17 58 26 99 26c124 0 224 -91 224 -224zM446 220c0 77 -52 135 -132 135c-81 0 -135 -57 -135 -136c0 -75 54 -136 134 -136
  715. s133 57 133 137z" />
  716. <glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="666"
  717. d="M602 451c-9 -87 -48 -172 -149 -172c-40 0 -90 17 -136 35c-47 17 -90 34 -117 34c-37 0 -58 -37 -64 -69h-71c4 42 16 85 40 118c23 33 58 55 106 55c42 0 86 -16 130 -33c44 -16 88 -33 128 -33c37 0 56 32 62 65h71zM600 243c-9 -87 -47 -172 -148 -172
  718. c-39 0 -89 17 -136 35c-46 17 -90 34 -118 34c-37 0 -58 -36 -64 -68h-71c8 84 49 172 146 172c42 0 86 -16 130 -33c44 -16 88 -33 128 -33c37 0 56 32 62 65h71z" />
  719. <glyph glyph-name="Uring" unicode="&#x16e;" horiz-adv-x="714"
  720. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM466 855c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM420 855c0 33 -26 57 -59 57
  721. c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  722. <glyph glyph-name="k.sc" horiz-adv-x="569"
  723. d="M76 0v542h122v-224h2l198 224h161l-243 -252l256 -290h-164l-208 254h-2v-254h-122z" />
  724. <glyph glyph-name="tcommaaccent.sc" horiz-adv-x="446"
  725. d="M162 0v439h-158v103h438v-103h-158v-439h-122zM120 -240l65 195h106l-80 -195h-91z" />
  726. <glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="582"
  727. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM122 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM318 644c0 37 30 70 71 70s73 -30 73 -70
  728. s-32 -70 -73 -70s-71 33 -71 70z" />
  729. <glyph glyph-name="scircumflex" unicode="&#x15d;" horiz-adv-x="444"
  730. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -117 -95 -160 -200 -160c-74 0 -151 28 -197 79l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136
  731. c0 107 96 153 191 153c69 0 141 -24 180 -73zM418 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  732. <glyph glyph-name="r.sc" horiz-adv-x="529"
  733. d="M76 0v542h197c111 0 206 -44 206 -163c0 -78 -46 -131 -105 -150l129 -229h-144l-108 211h-53v-211h-122zM198 304h62c46 0 96 12 96 74c0 51 -44 65 -88 65h-70v-139z" />
  734. <glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="611"
  735. d="M486 709c0 -30 -22 -52 -52 -52c-63 0 -47 73 -76 73c-14 0 -16 -15 -16 -26c0 -41 4 -81 4 -122v-589c0 -100 -19 -208 -144 -208c-47 0 -111 19 -111 76c0 30 23 53 53 53c63 0 47 -73 74 -73c21 0 17 33 17 46c0 34 -4 68 -4 102v506c0 113 -20 291 145 291
  736. c46 0 110 -22 110 -77z" />
  737. <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="513"
  738. d="M206 0l-206 480h133l134 -349h2l119 349h125l-227 -583c-34 -87 -76 -137 -182 -137c-20 0 -41 2 -62 7l10 104c16 -5 32 -7 45 -7c51 0 65 25 85 75zM205 564l99 144h136l-141 -144h-94z" />
  739. <glyph glyph-name="lslash.sc" horiz-adv-x="433"
  740. d="M306 393l-296 -252v108l296 251v-107zM76 0v542h122v-437h221v-105h-343z" />
  741. <glyph glyph-name="Umacron" unicode="&#x16a;" horiz-adv-x="714"
  742. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM521 873v-78h-320v78h320z" />
  743. <glyph glyph-name="scaron.sc" horiz-adv-x="492"
  744. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  745. c0 120 103 172 204 172c74 0 151 -27 193 -82zM74 738h114l69 -90l69 90h110l-115 -144h-133z" />
  746. <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="268"
  747. d="M74 0v480h120v-480h-120zM75 564l99 144h136l-141 -144h-94z" />
  748. <glyph glyph-name="icircumflex.sc" horiz-adv-x="274"
  749. d="M76 0v542h122v-542h-122zM320 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  750. <glyph glyph-name="itilde.sc" horiz-adv-x="274"
  751. d="M76 0v542h122v-542h-122zM21 598h-66c6 32 15 64 32 88c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  752. <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="610"
  753. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM148 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM344 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  754. <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="849"
  755. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM395 908l99 -144h-94l-141 144h136z" />
  756. <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="574"
  757. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -152 -119 -226 -258 -226c-92 0 -187 35 -243 101l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201
  758. c0 144 131 208 259 208c71 0 152 -25 206 -76zM128 908h114l69 -90l69 90h110l-115 -144h-133z" />
  759. <glyph glyph-name="s.sc" horiz-adv-x="492"
  760. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  761. c0 120 103 172 204 172c74 0 151 -27 193 -82z" />
  762. <glyph glyph-name="ldot" unicode="&#x140;" horiz-adv-x="391"
  763. d="M74 0v756h120v-756h-120zM237 453c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  764. <glyph glyph-name="hbar.sc" horiz-adv-x="619"
  765. d="M76 0v542h122v-218h223v218h122v-542h-122v228h-223v-228h-122zM477 460l-19 -60h-312l17 60h314z" />
  766. <glyph glyph-name="y.sc" horiz-adv-x="510"
  767. d="M194 0v221l-202 321h143l123 -219l122 219h138l-202 -321v-221h-122z" />
  768. <glyph glyph-name="kcommaaccent.sc" horiz-adv-x="569"
  769. d="M76 0v542h122v-224h2l198 224h161l-243 -252l256 -290h-164l-208 254h-2v-254h-122zM184 -240l65 195h106l-80 -195h-91z" />
  770. <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="714"
  771. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM338 908l99 -144h-94l-141 144h136z" />
  772. <glyph glyph-name="afii61289" unicode="&#x2113;" horiz-adv-x="500"
  773. d="M443 49c-49 -43 -100 -63 -158 -63c-96 0 -153 56 -153 141v64l-56 -52h-2l-42 63l99 85v244c0 111 70 190 165 190c83 0 137 -56 137 -143c0 -101 -61 -200 -185 -310v-122c0 -57 34 -74 65 -74c26 0 56 12 88 38h2zM338 570c0 41 -18 73 -43 73s-47 -33 -47 -90v-185
  774. c61 67 90 138 90 202z" />
  775. <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="610"
  776. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM296 908l99 -144h-94l-141 144h136z" />
  777. <glyph glyph-name="lcaron" unicode="&#x13e;" horiz-adv-x="352"
  778. d="M74 0v756h120v-756h-120zM219 513l65 195h106l-80 -195h-91z" />
  779. <glyph glyph-name="zdotaccent.sc" horiz-adv-x="523"
  780. d="M50 0v98l276 345h-273v99h417v-101l-273 -341h276v-100h-423zM188 673c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  781. <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="706"
  782. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM537 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  783. <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="320"
  784. d="M280 297v-102h-240v102h240z" />
  785. <glyph glyph-name="tcaron" unicode="&#x165;" horiz-adv-x="360"
  786. d="M87 384h-84v96h84v139h118v-139h120v-96h-120v-223c0 -43 10 -74 63 -74c16 0 37 3 51 10l4 -94c-21 -8 -53 -13 -80 -13c-127 0 -156 78 -156 170v224zM232 536l65 195h106l-80 -195h-91z" />
  787. <glyph glyph-name="Tbar" unicode="&#x166;" horiz-adv-x="568"
  788. d="M506 507v-75h-159v-432h-126v432h-149v75h149v91h-217v110h560v-110h-217v-91h159z" />
  789. <glyph glyph-name="exclam.sc" horiz-adv-x="308"
  790. d="M214 542v-343h-120v343h120zM76 69c0 43 34 77 78 77c43 0 78 -32 78 -75s-34 -77 -78 -77c-42 0 -78 32 -78 75z" />
  791. <glyph glyph-name="a.sc" horiz-adv-x="582"
  792. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187z" />
  793. <glyph glyph-name="Omacron" unicode="&#x14c;" horiz-adv-x="849"
  794. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM585 873v-78h-320v78h320z" />
  795. <glyph glyph-name="Obreve" unicode="&#x14e;" horiz-adv-x="849"
  796. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM255 908h67c9 -50 52 -66 103 -66
  797. c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  798. <glyph glyph-name="h.sc" horiz-adv-x="619"
  799. d="M76 0v542h122v-213h223v213h122v-542h-122v228h-223v-228h-122z" />
  800. <glyph glyph-name="m.sc" horiz-adv-x="746"
  801. d="M76 0v542h174l126 -359h3l123 359h168v-542h-115v385h-2l-138 -385h-85l-138 385h-2v-385h-114z" />
  802. <glyph glyph-name="kcommaaccent" unicode="&#x137;" horiz-adv-x="543"
  803. d="M74 0v756h120v-478h3l182 202h154l-208 -217l221 -263h-159l-190 246h-3v-246h-120zM181 -240l65 195h106l-80 -195h-91z" />
  804. <glyph glyph-name="tilde.sc"
  805. d="M12 598h-66c6 32 15 64 32 88c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  806. <glyph glyph-name="hcircumflex" unicode="&#x125;" horiz-adv-x="584"
  807. d="M339 494c125 0 177 -96 177 -194v-300h-120v264c0 57 -12 127 -89 127c-76 0 -113 -65 -113 -129v-262h-120v756h120v-343h2c19 40 72 81 143 81zM476 796h-114l-69 90l-69 -90h-112l115 144h135z" />
  808. <glyph glyph-name="ubreve" unicode="&#x16d;" horiz-adv-x="582"
  809. d="M510 480v-480h-114v77h-2c-21 -48 -78 -91 -149 -91c-125 0 -177 96 -177 194v300h120v-266c0 -57 13 -128 90 -128c76 0 112 66 112 130v264h120zM119 708h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  810. <glyph glyph-name="Rcaron" unicode="&#x158;" horiz-adv-x="629"
  811. d="M78 0v708h246c133 0 261 -53 261 -203c0 -102 -63 -169 -162 -191l189 -314h-152l-164 300h-92v-300h-126zM204 403h103c71 0 152 17 152 103c0 77 -76 96 -141 96h-114v-199zM124 908h114l69 -90l69 90h110l-115 -144h-133z" />
  812. <glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="610"
  813. d="M78 0v708h126v-134h105c162 0 267 -57 267 -205c0 -156 -125 -210 -275 -210h-97v-159h-126zM204 265h88c82 0 157 20 157 104s-75 99 -153 99h-92v-203z" />
  814. <glyph glyph-name="grave.cap"
  815. d="M101 908l99 -144h-94l-141 144h136z" />
  816. <glyph glyph-name="Scedilla" unicode="&#x15e;" horiz-adv-x="574"
  817. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -140 -101 -213 -226 -224l-33 -48c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20
  818. c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l50 73c-84 6 -167 40 -217 100l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201c0 144 131 208 259 208c71 0 152 -25 206 -76z" />
  819. <glyph glyph-name="Gbreve" unicode="&#x11e;" horiz-adv-x="773"
  820. d="M698 404v-367c-71 -34 -156 -55 -267 -55c-228 0 -387 153 -387 374c0 227 166 370 384 370c112 0 212 -36 269 -89l-87 -94c-36 40 -105 72 -181 72c-149 0 -246 -113 -246 -259c0 -151 96 -261 252 -261c53 0 100 8 141 25v180h-149v104h271zM260 908h67
  821. c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  822. <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="550"
  823. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  824. c82 0 126 47 126 123zM456 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  825. <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="706"
  826. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM304 908l99 -144h-94l-141 144h136z" />
  827. <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="706"
  828. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM301 764l99 144h136l-141 -144h-94z" />
  829. <glyph glyph-name="seven.onum" horiz-adv-x="546"
  830. d="M499 444c-106 -211 -221 -464 -285 -626l-124 30c74 165 208 446 282 593h-329v105h456v-102z" />
  831. <glyph glyph-name="tbar.sc" horiz-adv-x="446"
  832. d="M162 0v439h-158v103h438v-103h-158v-439h-122zM392 345v-75h-338v75h338z" />
  833. <glyph glyph-name="acute.cap"
  834. d="M60 764l99 144h136l-141 -144h-94z" />
  835. <glyph glyph-name="Emacron" unicode="&#x112;" horiz-adv-x="610"
  836. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM477 873v-78h-320v78h320z" />
  837. <glyph glyph-name="wcircumflex.sc" horiz-adv-x="826"
  838. d="M171 0l-165 542h135l98 -380h2l105 380h135l106 -380h2l100 380h131l-164 -542h-132l-110 374h-2l-110 -374h-131zM595 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  839. <glyph glyph-name="ebreve.sc" horiz-adv-x="508"
  840. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM94 738h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  841. <glyph glyph-name="ncommaaccent.sc" horiz-adv-x="634"
  842. d="M76 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117zM215 -240l65 195h106l-80 -195h-91z" />
  843. <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="666"
  844. d="M502 147v195h-440v102h542v-297h-102z" />
  845. <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="696"
  846. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-59 -75 -146 -119 -258 -123l-32 -47c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48
  847. c25 -13 54 -20 82 -20c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l51 74c-200 17 -338 164 -338 372c0 227 166 370 384 370c92 0 201 -34 257 -108z" />
  848. <glyph glyph-name="three.onum" horiz-adv-x="559"
  849. d="M498 78c0 -164 -132 -248 -300 -248c-38 0 -83 3 -118 10l17 104c29 -7 66 -10 95 -10c113 0 183 49 183 140c0 71 -55 120 -158 120c-34 0 -71 -7 -105 -15l-23 86c72 50 186 135 238 177v4h-255v100h398v-106c-51 -44 -152 -121 -214 -163v-3c8 1 17 2 31 2
  850. c121 0 211 -82 211 -198z" />
  851. <glyph glyph-name="Rcommaaccent" unicode="&#x156;" horiz-adv-x="629"
  852. d="M78 0v708h246c133 0 261 -53 261 -203c0 -102 -63 -169 -162 -191l189 -314h-152l-164 300h-92v-300h-126zM204 403h103c71 0 152 17 152 103c0 77 -76 96 -141 96h-114v-199zM212 -240l65 195h106l-80 -195h-91z" />
  853. <glyph glyph-name="Gcircumflex" unicode="&#x11c;" horiz-adv-x="773"
  854. d="M698 404v-367c-71 -34 -156 -55 -267 -55c-228 0 -387 153 -387 374c0 227 166 370 384 370c112 0 212 -36 269 -89l-87 -94c-36 40 -105 72 -181 72c-149 0 -246 -113 -246 -259c0 -151 96 -261 252 -261c53 0 100 8 141 25v180h-149v104h271zM613 764h-114l-69 90
  855. l-69 -90h-112l115 144h135z" />
  856. <glyph glyph-name="Uhungarumlaut" unicode="&#x170;" horiz-adv-x="714"
  857. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM203 764l99 144h136l-141 -144h-94zM408 764l99 144h136l-141 -144h-94z" />
  858. <glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="556"
  859. d="M514 358c0 -170 -45 -371 -255 -371c-132 0 -219 98 -219 228c0 128 87 221 216 221c55 0 101 -20 143 -55v28c2 95 -33 225 -151 225c-47 0 -86 -20 -122 -49l-59 70c55 42 104 66 175 66c207 0 272 -188 272 -363zM398 264l-1 25c-35 39 -72 64 -126 64
  860. c-83 0 -122 -68 -122 -144c0 -72 34 -138 114 -138c95 0 137 113 135 193z" />
  861. <glyph glyph-name="Delta" unicode="&#x2206;" horiz-adv-x="685"
  862. d="M677 0h-669l270 712h115zM519 104l-185 477l-173 -477h358z" />
  863. <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="550"
  864. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  865. c82 0 126 47 126 123zM236 708l99 -144h-94l-141 144h136z" />
  866. <glyph glyph-name="one.onum" horiz-adv-x="426"
  867. d="M310 0h-120v408l-94 -76l-65 81l170 133h109v-546z" />
  868. <glyph glyph-name="ntilde.sc" horiz-adv-x="634"
  869. d="M76 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117zM196 598h-66c6 32 15 64 32 88c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18
  870. c-27 0 -39 -21 -46 -43z" />
  871. <glyph glyph-name="w.sc" horiz-adv-x="826"
  872. d="M171 0l-165 542h135l98 -380h2l105 380h135l106 -380h2l100 380h131l-164 -542h-132l-110 374h-2l-110 -374h-131z" />
  873. <glyph glyph-name="acute.sc"
  874. d="M83 594l99 144h136l-141 -144h-94z" />
  875. <glyph glyph-name="Tcaron" unicode="&#x164;" horiz-adv-x="568"
  876. d="M221 0v598h-217v110h560v-110h-217v-598h-126zM105 908h114l69 -90l69 90h110l-115 -144h-133z" />
  877. <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="444"
  878. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -117 -95 -160 -200 -160c-74 0 -151 28 -197 79l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136
  879. c0 107 96 153 191 153c69 0 141 -24 180 -73zM47 708h114l69 -90l69 90h110l-115 -144h-133z" />
  880. <glyph glyph-name="CR" unicode="&#xd;" horiz-adv-x="0"
  881. />
  882. <glyph glyph-name="Lcaron" unicode="&#x13d;" horiz-adv-x="511"
  883. d="M78 0v708h126v-596h301v-112h-427zM266 513l65 195h106l-80 -195h-91z" />
  884. <glyph glyph-name="scedilla" unicode="&#x15f;" horiz-adv-x="444"
  885. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -106 -78 -151 -171 -159l-36 -51c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20
  886. c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l53 78c-65 6 -128 32 -168 77l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136c0 107 96 153 191 153c69 0 141 -24 180 -73z" />
  887. <glyph glyph-name="onequarter" unicode="&#xbc;" horiz-adv-x="900"
  888. d="M682 0v85h-190v74l179 270h97v-265h58v-79h-58v-85h-86zM682 164v149h-1l-96 -149h97zM186 6l416 734l78 -38l-416 -734zM95 535l-53 62l137 111h83v-429h-94v317z" />
  889. <glyph glyph-name="Imacron" unicode="&#x12a;" horiz-adv-x="282"
  890. d="M78 0v708h126v-708h-126zM301 873v-78h-320v78h320z" />
  891. <glyph glyph-name="Sacute" unicode="&#x15a;" horiz-adv-x="574"
  892. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -152 -119 -226 -258 -226c-92 0 -187 35 -243 101l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201
  893. c0 144 131 208 259 208c71 0 152 -25 206 -76zM233 764l99 144h136l-141 -144h-94z" />
  894. <glyph glyph-name="Zdotaccent" unicode="&#x17b;" horiz-adv-x="611"
  895. d="M35 0v114l385 484h-379v110h529v-114l-387 -482h393v-112h-541zM232 843c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  896. <glyph glyph-name="four.sc" horiz-adv-x="516"
  897. d="M287 0v104h-252v94l222 344h142v-343h72v-95h-72v-104h-112zM287 199v209h-3l-129 -209h132z" />
  898. <glyph glyph-name="Abreve" unicode="&#x102;" horiz-adv-x="706"
  899. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM184 908h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  900. <glyph glyph-name="Euro.sc" horiz-adv-x="516"
  901. d="M438 111l35 -93c-33 -20 -86 -32 -133 -32c-115 0 -207 55 -241 174h-79l28 81h37c-1 5 -1 16 -1 27c0 12 1 26 2 31h-60l28 81h45c35 111 128 176 251 176c50 0 101 -14 131 -27l-39 -97c-24 16 -59 26 -97 26c-60 0 -111 -33 -130 -78h210l-24 -81h-202
  902. c-1 -6 -2 -21 -2 -32c0 -9 1 -21 2 -26h183l-26 -81h-141c20 -57 78 -74 129 -74c33 0 65 8 94 25z" />
  903. <glyph glyph-name="dotaccent.cap"
  904. d="M54 843c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  905. <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="815"
  906. d="M770 263c0 -101 -63 -182 -169 -182c-83 0 -141 54 -193 112c-55 -58 -106 -111 -192 -111c-105 0 -171 78 -171 180c0 100 63 179 167 179c87 0 144 -57 196 -119c51 61 108 120 194 120c104 0 168 -79 168 -179zM680 260c0 48 -29 86 -80 86c-52 0 -102 -51 -135 -87
  907. c35 -39 82 -82 138 -82c49 0 77 37 77 83zM350 259c-33 35 -87 86 -138 86c-47 0 -77 -40 -77 -85c0 -49 31 -82 80 -82c51 0 103 45 135 81z" />
  908. <glyph glyph-name="aogonek.sc" horiz-adv-x="582"
  909. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM526 -153l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h61c-31 -27 -83 -84 -83 -128c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  910. <glyph glyph-name="uni0394" unicode="&#x394;" horiz-adv-x="685"
  911. d="M677 0h-669l270 712h115zM519 104l-185 477l-173 -477h358z" />
  912. <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" horiz-adv-x="849"
  913. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM272 764l99 144h136l-141 -144h-94z
  914. M477 764l99 144h136l-141 -144h-94z" />
  915. <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="550"
  916. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  917. c82 0 126 47 126 123zM103 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM299 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  918. <glyph glyph-name="Omega" unicode="&#x2126;" horiz-adv-x="759"
  919. d="M701 0h-276v189c102 20 157 108 157 208c0 119 -84 219 -207 219c-125 0 -209 -99 -209 -220c0 -104 52 -181 154 -207v-189h-274v106h172v32c-121 37 -172 143 -172 266c0 185 146 317 327 317c182 0 328 -127 328 -314c0 -125 -49 -232 -173 -269v-32h173v-106z" />
  920. <glyph glyph-name="Ebreve" unicode="&#x114;" horiz-adv-x="610"
  921. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM146 908h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  922. <glyph glyph-name="five.onum" horiz-adv-x="554"
  923. d="M487 546v-105h-266l-21 -150c18 4 37 6 56 6c129 0 228 -78 228 -215c0 -172 -129 -252 -290 -252c-37 0 -84 3 -121 10l17 104c28 -7 61 -10 93 -10c115 0 179 47 179 145c0 87 -69 126 -156 126c-39 0 -87 -7 -125 -18l38 359h368z" />
  924. <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="610"
  925. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM499 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  926. <glyph glyph-name="Idotaccent" unicode="&#x130;" horiz-adv-x="282"
  927. d="M78 0v708h126v-708h-126zM63 843c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  928. <glyph glyph-name="florin.sc" horiz-adv-x="516"
  929. d="M407 344v-88h-95l-30 -168c-22 -125 -80 -174 -184 -174c-29 0 -68 8 -92 25l45 88c9 -10 30 -15 41 -15c47 0 66 35 76 95l26 149h-76v88h88l12 72c14 86 74 135 160 135c34 0 75 -11 106 -32l-46 -91c-18 13 -38 19 -57 19c-29 0 -45 -20 -51 -57l-8 -46h85z" />
  930. <glyph glyph-name="atilde.sc" horiz-adv-x="582"
  931. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM172 598h-66c6 32 15 64 32 88c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20
  932. c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  933. <glyph glyph-name="dollar.sc" horiz-adv-x="516"
  934. d="M281 610v-68c54 -3 109 -21 153 -57l-74 -79c-22 25 -50 38 -79 41v-125c121 -35 164 -91 164 -163c0 -88 -62 -155 -164 -159v-69h-51v69c-64 4 -126 26 -176 73l83 80c33 -41 65 -54 93 -55v136c-119 33 -163 77 -163 158c0 80 58 144 163 151v67h51zM281 220v-123
  935. c35 4 50 26 50 55c0 28 -13 53 -50 68zM230 335v112c-33 -4 -50 -29 -50 -53c0 -30 15 -47 50 -59z" />
  936. <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="666"
  937. d="M258 483c0 41 34 75 75 75s75 -34 75 -75s-34 -75 -75 -75s-75 34 -75 75zM258 123c0 41 34 75 75 75s75 -34 75 -75s-34 -75 -75 -75s-75 34 -75 75zM586 250h-506v107h506v-107z" />
  938. <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="282"
  939. d="M78 0v708h126v-708h-126zM-29 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM167 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  940. <glyph glyph-name="Gcommaaccent" unicode="&#x122;" horiz-adv-x="773"
  941. d="M698 404v-367c-71 -34 -156 -55 -267 -55c-228 0 -387 153 -387 374c0 227 166 370 384 370c112 0 212 -36 269 -89l-87 -94c-36 40 -105 72 -181 72c-149 0 -246 -113 -246 -259c0 -151 96 -261 252 -261c53 0 100 8 141 25v180h-149v104h271zM321 -240l65 195h106
  942. l-80 -195h-91z" />
  943. <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="714"
  944. d="M642 708v-448c0 -171 -123 -278 -285 -278s-285 107 -285 278v448h126v-443c0 -82 38 -170 159 -170s159 88 159 170v443h126zM189 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM385 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70
  945. s-71 33 -71 70z" />
  946. <glyph glyph-name="aogonek" unicode="&#x105;" horiz-adv-x="550"
  947. d="M447 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h1v55h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76
  948. c172 0 214 -106 214 -202v-292h-59c-31 -29 -76 -81 -76 -122c0 -25 21 -46 46 -46c19 0 40 9 54 21zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60c82 0 126 47 126 123z" />
  949. <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="550"
  950. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  951. c82 0 126 47 126 123zM374 655c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM328 655c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  952. <glyph glyph-name="ccedilla.sc" horiz-adv-x="565"
  953. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90zM355 0l-45 -64c8 1 14 1 19 1
  954. c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l62 90h58z" />
  955. <glyph glyph-name="Edotaccent" unicode="&#x116;" horiz-adv-x="610"
  956. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM244 843c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  957. <glyph glyph-name="gbreve.sc" horiz-adv-x="615"
  958. d="M560 316v-284c-59 -29 -130 -46 -215 -46c-178 0 -301 117 -301 287c0 173 128 283 297 283c93 0 166 -26 216 -72l-85 -93c-28 35 -79 56 -130 56c-103 0 -164 -72 -164 -174c0 -103 68 -177 172 -177c35 0 63 5 89 15v111h-110v94h231zM176 738h67
  959. c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  960. <glyph glyph-name="Scircumflex" unicode="&#x15c;" horiz-adv-x="574"
  961. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -152 -119 -226 -258 -226c-92 0 -187 35 -243 101l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201
  962. c0 144 131 208 259 208c71 0 152 -25 206 -76zM494 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  963. <glyph glyph-name="Ycircumflex" unicode="&#x176;" horiz-adv-x="622"
  964. d="M249 0v307l-266 401h154l178 -298l180 298h146l-266 -401v-307h-126zM497 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  965. <glyph glyph-name="uni021A" unicode="&#x21a;" horiz-adv-x="568"
  966. d="M221 0v598h-217v110h560v-110h-217v-598h-126zM179 -240l65 195h106l-80 -195h-91z" />
  967. <glyph glyph-name="Ncaron" unicode="&#x147;" horiz-adv-x="780"
  968. d="M78 0v708h167l329 -530h2v530h126v-708h-160l-336 547h-2v-547h-126zM208 908h114l69 -90l69 90h110l-115 -144h-133z" />
  969. <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="780"
  970. d="M78 0v708h167l329 -530h2v530h126v-708h-160l-336 547h-2v-547h-126zM271 768h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  971. <glyph glyph-name="Ccaron" unicode="&#x10c;" horiz-adv-x="696"
  972. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-62 -78 -154 -124 -274 -124c-221 0 -378 153 -378 374c0 227 166 370 384 370c92 0 201 -34 257 -108zM243 908h114l69 -90l69 90h110
  973. l-115 -144h-133z" />
  974. <glyph glyph-name="lcaron.sc" horiz-adv-x="433"
  975. d="M76 0v542h122v-435h221v-107h-343zM250 347l65 195h106l-80 -195h-91z" />
  976. <glyph glyph-name="racute.sc" horiz-adv-x="529"
  977. d="M76 0v542h197c111 0 206 -44 206 -163c0 -78 -46 -131 -105 -150l129 -229h-144l-108 211h-53v-211h-122zM198 304h62c46 0 96 12 96 74c0 51 -44 65 -88 65h-70v-139zM180 594l99 144h136l-141 -144h-94z" />
  978. <glyph glyph-name="dcroat.sc" horiz-adv-x="623"
  979. d="M76 0v245h-67v82h67v215h205c152 0 298 -68 298 -270c0 -188 -150 -272 -302 -272h-201zM198 101h64c94 0 185 37 185 171c0 141 -89 171 -185 171h-64v-116h124v-82h-124v-144z" />
  980. <glyph glyph-name="four.onum" horiz-adv-x="606"
  981. d="M578 5h-107v-175h-115v175h-318v105l264 451h125l-271 -455h200v226h114v-226h108v-101z" />
  982. <glyph glyph-name="tilde.cap"
  983. d="M12 768h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  984. <glyph glyph-name="utilde.sc" horiz-adv-x="595"
  985. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM180 598h-66c6 32 15 64 32 88c17 23 43 39 80 39c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66
  986. c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  987. <glyph glyph-name="acircumflex.sc" horiz-adv-x="582"
  988. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM471 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  989. <glyph glyph-name="Gdotaccent" unicode="&#x120;" horiz-adv-x="773"
  990. d="M698 404v-367c-71 -34 -156 -55 -267 -55c-228 0 -387 153 -387 374c0 227 166 370 384 370c112 0 212 -36 269 -89l-87 -94c-36 40 -105 72 -181 72c-149 0 -246 -113 -246 -259c0 -151 96 -261 252 -261c53 0 100 8 141 25v180h-149v104h271zM354 843c0 38 32 72 76 72
  991. s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  992. <glyph glyph-name="Ldot" unicode="&#x13f;" horiz-adv-x="511"
  993. d="M78 0v708h126v-596h301v-112h-427zM288 423c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  994. <glyph glyph-name="Hbar" unicode="&#x126;" horiz-adv-x="739"
  995. d="M78 0v708h126v-133h331v133h126v-708h-126v314h-331v-314h-126zM204 422h331v78h-331v-78z" />
  996. <glyph glyph-name="edotaccent" unicode="&#x117;" horiz-adv-x="574"
  997. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM222 643
  998. c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  999. <glyph glyph-name="fi.sc" horiz-adv-x="758"
  1000. d="M560 0v542h122v-542h-122zM76 0v542h365v-103h-243v-128h229v-98h-229v-213h-122z" />
  1001. <glyph glyph-name="ldot.sc" horiz-adv-x="433"
  1002. d="M76 0v542h122v-435h221v-107h-343zM267 313c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  1003. <glyph glyph-name="Cacute" unicode="&#x106;" horiz-adv-x="696"
  1004. d="M685 618l-96 -76c-37 51 -104 73 -161 73c-146 0 -245 -113 -245 -259c0 -154 94 -261 240 -261c76 0 136 33 172 82l101 -71c-62 -78 -154 -124 -274 -124c-221 0 -378 153 -378 374c0 227 166 370 384 370c92 0 201 -34 257 -108zM330 764l99 144h136l-141 -144h-94z
  1005. " />
  1006. <glyph glyph-name="zero.sc" horiz-adv-x="516"
  1007. d="M466 271c0 -184 -82 -285 -208 -285c-127 0 -208 101 -208 285s81 285 208 285c126 0 208 -101 208 -285zM346 271c0 105 -32 179 -88 179s-88 -74 -88 -179s32 -177 88 -177c57 0 88 72 88 177z" />
  1008. <glyph glyph-name="uni2219" unicode="&#x2219;"
  1009. d="M50 291c0 43 36 78 80 78c43 0 80 -33 80 -76s-36 -78 -80 -78c-42 0 -80 33 -80 76z" />
  1010. <glyph glyph-name="b.sc" horiz-adv-x="541"
  1011. d="M76 0v542h219c95 0 174 -42 174 -143c0 -52 -30 -92 -73 -112v-3c60 -16 95 -60 95 -124c0 -120 -107 -160 -212 -160h-203zM195 231v-134h80c58 0 93 25 93 71c0 39 -23 63 -80 63h-93zM195 443v-118h74c48 0 77 25 77 63c0 31 -19 55 -79 55h-72z" />
  1012. <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="282"
  1013. d="M78 0v708h126v-708h-126zM104 908l99 -144h-94l-141 144h136z" />
  1014. <glyph glyph-name="sacute" unicode="&#x15b;" horiz-adv-x="444"
  1015. d="M413 421l-78 -69c-21 28 -61 52 -105 52c-38 0 -77 -14 -77 -52c0 -37 37 -47 104 -63c71 -17 155 -49 155 -143c0 -117 -95 -160 -200 -160c-74 0 -151 28 -197 79l79 74c26 -34 71 -60 123 -60c35 0 77 14 77 57c0 40 -37 52 -110 69c-71 17 -142 46 -142 136
  1016. c0 107 96 153 191 153c69 0 141 -24 180 -73zM158 564l99 144h136l-141 -144h-94z" />
  1017. <glyph glyph-name="caron.cap"
  1018. d="M-51 908h114l69 -90l69 90h110l-115 -144h-133z" />
  1019. <glyph glyph-name="ebreve" unicode="&#x115;" horiz-adv-x="574"
  1020. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM131 708h67
  1021. c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  1022. <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="706"
  1023. d="M-8 0l308 708h109l305 -708h-144l-66 162h-307l-64 -162h-141zM240 270h220l-109 288zM186 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM382 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1024. <glyph glyph-name="Lacute" unicode="&#x139;" horiz-adv-x="511"
  1025. d="M78 0v708h126v-596h301v-112h-427zM93 764l99 144h136l-141 -144h-94z" />
  1026. <glyph glyph-name="two.sc" horiz-adv-x="516"
  1027. d="M73 0v98l184 179c44 42 60 75 60 110c0 32 -20 66 -66 66c-39 0 -67 -29 -75 -78l-111 16c13 94 86 165 188 165c101 0 184 -56 184 -160c0 -63 -27 -118 -92 -181l-120 -115h216v-100h-368z" />
  1028. <glyph glyph-name="Hcircumflex" unicode="&#x124;" horiz-adv-x="739"
  1029. d="M78 0v708h126v-286h331v286h126v-708h-126v314h-331v-314h-126zM553 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  1030. <glyph glyph-name="dotaccent.sc"
  1031. d="M54 673c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  1032. <glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="610"
  1033. d="M442 768l64 -56l-117 -54c96 -105 178 -236 178 -386c0 -163 -90 -286 -262 -286c-148 0 -261 103 -261 254s115 254 253 254c44 0 83 -12 112 -40l2 2c-34 55 -75 113 -127 156l-108 -50l-60 57l110 50c-19 20 -50 44 -78 65l94 55c36 -28 72 -60 87 -74zM305 86
  1034. c96 0 141 79 141 154s-45 154 -141 154c-95 0 -141 -79 -141 -154s46 -154 141 -154z" />
  1035. <glyph glyph-name="cdotaccent" unicode="&#x10b;" horiz-adv-x="488"
  1036. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-40 -43 -106 -67 -177 -67c-142 0 -260 94 -260 254c0 156 116 254 257 254c70 0 143 -28 181 -75zM222 643c0 38 32 72 76 72s78 -31 78 -72
  1037. s-34 -72 -78 -72s-76 34 -76 72z" />
  1038. <glyph glyph-name="yen.sc" horiz-adv-x="516"
  1039. d="M189 0v93h-123v76h123v55h-123v76h93l-151 242h137l109 -206l110 206h127l-149 -242h88v-76h-123v-55h123v-76h-123v-93h-118z" />
  1040. <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="849"
  1041. d="M44 356c0 227 161 370 379 370c221 0 382 -143 382 -370c0 -221 -161 -374 -382 -374c-218 0 -379 153 -379 374zM181 356c0 -151 99 -261 243 -261c145 0 244 110 244 261c0 146 -97 259 -244 259c-146 0 -243 -113 -243 -259zM310 768h-66c11 64 37 127 112 127
  1042. c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  1043. <glyph glyph-name="eogonek" unicode="&#x119;" horiz-adv-x="574"
  1044. d="M395 -147l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 47 38 97 76 131c-144 4 -249 98 -249 251c0 155 109 257 254 257c134 0 232 -87 232 -260c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-36 -49 -85 -79 -146 -90
  1045. c-30 -30 -67 -77 -67 -114c0 -25 21 -46 46 -46c19 0 40 9 54 21zM164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116z" />
  1046. <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="282"
  1047. d="M78 0v708h126v-708h-126zM322 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  1048. <glyph glyph-name="scedilla.sc" horiz-adv-x="492"
  1049. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  1050. c0 120 103 172 204 172c74 0 151 -27 193 -82zM272 0l-45 -64c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l62 90h58z" />
  1051. <glyph glyph-name="cent.sc" horiz-adv-x="516"
  1052. d="M328 559v-67c63 -2 129 -20 170 -69l-77 -78c-25 26 -57 43 -93 45v-300c37 0 73 19 97 46l73 -79c-43 -47 -108 -67 -170 -69v-72h-54v72c-137 12 -222 118 -222 253c0 139 85 233 222 251v67h54zM274 90v299c-74 -15 -108 -76 -108 -149c0 -70 37 -132 108 -150z" />
  1053. <glyph glyph-name="gcircumflex" unicode="&#x11d;" horiz-adv-x="632"
  1054. d="M446 480h114v-437c0 -173 -84 -283 -271 -283c-78 0 -176 28 -238 79l69 93c46 -44 108 -68 168 -68c116 0 152 70 152 165v35h-2c-35 -47 -91 -72 -157 -72c-144 0 -237 114 -237 250c0 139 90 252 235 252c67 0 130 -28 165 -86h2v72zM304 396
  1055. c-87 0 -138 -68 -138 -153c0 -76 51 -152 137 -152c89 0 143 72 143 152c0 83 -55 153 -142 153zM507 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  1056. <glyph glyph-name="uogonek.sc" horiz-adv-x="595"
  1057. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM380 -153l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h61c-31 -27 -83 -84 -83 -128
  1058. c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  1059. <glyph glyph-name="emacron.sc" horiz-adv-x="508"
  1060. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM422 703v-78h-320v78h320z" />
  1061. <glyph glyph-name="rcaron.sc" horiz-adv-x="529"
  1062. d="M76 0v542h197c111 0 206 -44 206 -163c0 -78 -46 -131 -105 -150l129 -229h-144l-108 211h-53v-211h-122zM198 304h62c46 0 96 12 96 74c0 51 -44 65 -88 65h-70v-139zM81 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1063. <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="600"
  1064. d="M528 493c0 -125 -102 -224 -227 -224c-126 0 -229 99 -229 224c0 126 103 227 229 227c125 0 227 -101 227 -227zM492 493c0 107 -85 193 -191 193c-107 0 -193 -86 -193 -193c0 -105 86 -191 193 -191c106 0 191 86 191 191zM432 368h-83l-50 96h-29v-96h-71v260h112
  1065. c50 0 107 -20 107 -82c0 -35 -22 -61 -52 -71zM343 545c0 17 -19 25 -35 25h-38v-54h38c18 0 35 12 35 29z" />
  1066. <glyph glyph-name="eth.sc" horiz-adv-x="623"
  1067. d="M76 0v245h-67v82h67v215h205c152 0 298 -68 298 -270c0 -188 -150 -272 -302 -272h-201zM198 101h64c94 0 185 37 185 171c0 141 -89 171 -185 171h-64v-116h124v-82h-124v-144z" />
  1068. <glyph glyph-name="Ecaron" unicode="&#x11a;" horiz-adv-x="610"
  1069. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-487zM135 908h114l69 -90l69 90h110l-115 -144h-133z" />
  1070. <glyph glyph-name="ampersand.sc" horiz-adv-x="579"
  1071. d="M554 282l-101 -151l127 -131h-156l-41 45c-41 -38 -86 -59 -160 -59c-96 0 -188 57 -188 160c0 78 47 123 108 154c-33 36 -51 69 -51 114c0 100 85 142 164 142c85 0 158 -45 158 -136c0 -70 -42 -115 -104 -146l67 -68l45 76h132zM256 462c-25 0 -48 -22 -48 -47
  1072. c0 -21 9 -44 36 -72c45 21 62 46 62 72s-20 47 -50 47zM310 119l-103 107c-31 -16 -52 -36 -52 -76c0 -38 30 -67 71 -67c38 0 67 15 84 36z" />
  1073. <glyph glyph-name="rcaron" unicode="&#x159;" horiz-adv-x="364"
  1074. d="M72 0v480h115v-80h2c26 55 77 94 140 94c9 0 21 -1 29 -3v-110c-16 4 -26 5 -37 5c-108 0 -129 -94 -129 -129v-257h-120zM29 708h114l69 -90l69 90h110l-115 -144h-133z" />
  1075. <glyph glyph-name="eight.onum" horiz-adv-x="613"
  1076. d="M554 195c0 -138 -116 -213 -247 -213c-132 0 -248 75 -248 213c0 91 59 155 132 177v2c-63 22 -109 79 -109 157c0 122 104 195 225 195c120 0 224 -71 224 -194c0 -76 -44 -137 -108 -158v-2c74 -20 131 -88 131 -177zM307 629c-61 0 -106 -44 -106 -104
  1077. c0 -59 45 -105 106 -105c59 0 106 46 106 105c0 60 -48 104 -106 104zM432 201c0 69 -52 121 -125 121c-74 0 -125 -51 -125 -121c0 -71 50 -121 125 -121c73 0 125 50 125 121z" />
  1078. <glyph glyph-name="Jcircumflex" unicode="&#x134;" horiz-adv-x="498"
  1079. d="M426 708v-479c0 -103 -36 -247 -213 -247c-114 0 -183 63 -208 156l116 33c12 -47 46 -76 90 -76c72 0 89 57 89 138v475h126zM544 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  1080. <glyph glyph-name="ncaron.sc" horiz-adv-x="634"
  1081. d="M76 0v542h148l215 -374h2v374h117v-542h-148l-215 375h-2v-375h-117zM138 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1082. <glyph glyph-name="x.sc" horiz-adv-x="524"
  1083. d="M0 0l186 287l-169 255h145l100 -167l99 167h138l-167 -258l192 -284h-151l-116 188l-112 -188h-145z" />
  1084. <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="282"
  1085. d="M78 0v708h126v-708h-126zM78 764l99 144h136l-141 -144h-94z" />
  1086. <glyph glyph-name="Euro" unicode="&#x20ac;" horiz-adv-x="610"
  1087. d="M543 121l41 -96c-39 -25 -105 -43 -176 -43c-182 0 -277 110 -309 240h-84l28 86h45c-1 15 -1 30 -1 44c0 16 1 34 3 48h-72l30 86h55c39 146 158 240 317 240c64 0 124 -14 160 -33l-38 -100c-31 19 -79 28 -128 28c-81 0 -163 -48 -190 -135h288l-28 -86h-279
  1088. c-2 -14 -3 -30 -3 -49c0 -12 0 -30 2 -43h256l-27 -86h-214c18 -75 93 -134 193 -134c51 0 93 10 131 33z" />
  1089. <glyph glyph-name="threesuperior" unicode="&#xb3;" horiz-adv-x="400"
  1090. d="M148 469v71h28c37 0 75 14 75 57c0 28 -24 45 -53 45c-28 0 -49 -22 -56 -53l-86 21c18 64 76 110 145 110c80 0 142 -38 142 -118c0 -39 -21 -74 -55 -93c42 -16 66 -52 66 -100c0 -91 -79 -132 -153 -132c-73 0 -135 32 -161 112l85 25c11 -33 34 -58 72 -58
  1091. c32 0 66 16 66 57c0 46 -49 56 -88 56h-27z" />
  1092. <glyph glyph-name="breve.sc"
  1093. d="M-40 738h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  1094. <glyph glyph-name="fl.sc" horiz-adv-x="917"
  1095. d="M560 0v542h122v-435h221v-107h-343zM76 0v542h365v-103h-243v-128h229v-98h-229v-213h-122z" />
  1096. <glyph glyph-name="dcaron.sc" horiz-adv-x="623"
  1097. d="M76 0v542h205c152 0 298 -68 298 -270c0 -188 -150 -272 -302 -272h-201zM198 101h64c94 0 185 37 185 171c0 141 -89 171 -185 171h-64v-342zM109 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1098. <glyph glyph-name="agrave.sc" horiz-adv-x="582"
  1099. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM250 738l99 -144h-94l-141 144h136z" />
  1100. <glyph glyph-name="rcommaaccent.sc" horiz-adv-x="529"
  1101. d="M76 0v542h197c111 0 206 -44 206 -163c0 -78 -46 -131 -105 -150l129 -229h-144l-108 211h-53v-211h-122zM198 304h62c46 0 96 12 96 74c0 51 -44 65 -88 65h-70v-139zM162 -240l65 195h106l-80 -195h-91z" />
  1102. <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="513"
  1103. d="M206 0l-206 480h133l134 -349h2l119 349h125l-227 -583c-34 -87 -76 -137 -182 -137c-20 0 -41 2 -62 7l10 104c16 -5 32 -7 45 -7c51 0 65 25 85 75zM98 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM294 644c0 37 30 70 71 70s73 -30 73 -70
  1104. s-32 -70 -73 -70s-71 33 -71 70z" />
  1105. <glyph glyph-name="Scommaaccent" unicode="&#x218;" horiz-adv-x="574"
  1106. d="M521 650l-82 -90c-27 35 -80 61 -130 61c-58 0 -125 -28 -125 -97c0 -65 55 -84 135 -109c91 -28 207 -68 207 -207c0 -152 -119 -226 -258 -226c-92 0 -187 35 -243 101l90 84c35 -48 99 -78 155 -78c59 0 128 29 128 105c0 74 -74 95 -163 123c-86 27 -179 69 -179 201
  1107. c0 144 131 208 259 208c71 0 152 -25 206 -76zM177 -240l65 195h106l-80 -195h-91z" />
  1108. <glyph glyph-name="ccaron" unicode="&#x10d;" horiz-adv-x="488"
  1109. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-40 -43 -106 -67 -177 -67c-142 0 -260 94 -260 254c0 156 116 254 257 254c70 0 143 -28 181 -75zM121 708h114l69 -90l69 90h110l-115 -144h-133z" />
  1110. <glyph glyph-name="Iogonek" unicode="&#x12e;" horiz-adv-x="282"
  1111. d="M78 0v708h126v-708h-13c-31 -29 -76 -81 -76 -122c0 -25 21 -46 46 -46c19 0 40 9 54 21l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 54 50 111 92 145h-51z" />
  1112. <glyph glyph-name="u.sc" horiz-adv-x="595"
  1113. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122z" />
  1114. <glyph glyph-name="amacron" unicode="&#x101;" horiz-adv-x="550"
  1115. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  1116. c82 0 126 47 126 123zM444 673v-78h-320v78h320z" />
  1117. <glyph glyph-name="uacute.sc" horiz-adv-x="595"
  1118. d="M525 542v-339c0 -138 -102 -217 -228 -217s-227 79 -227 217v339h122v-330c0 -66 34 -116 105 -116c72 0 106 50 106 116v330h122zM236 594l99 144h136l-141 -144h-94z" />
  1119. <glyph glyph-name="dcroat" unicode="&#x111;" horiz-adv-x="634"
  1120. d="M614 645v-75h-54v-570h-114v72h-2c-33 -55 -98 -86 -165 -86c-146 0 -236 116 -236 256c0 142 96 252 233 252c88 0 136 -44 161 -75h3v151h-170v75h170v111h120v-111h54zM165 242c0 -75 45 -156 138 -156c88 0 141 79 141 154s-53 156 -141 156
  1121. c-93 0 -138 -79 -138 -154z" />
  1122. <glyph glyph-name="zero.onum" horiz-adv-x="706"
  1123. d="M649 275c0 -172 -129 -289 -297 -289c-166 0 -295 117 -295 289c0 174 129 286 295 286c168 0 297 -112 297 -286zM525 275c0 102 -68 181 -173 181s-171 -79 -171 -181c0 -104 67 -183 171 -183c105 0 173 79 173 183z" />
  1124. <glyph glyph-name="eacute.sc" horiz-adv-x="508"
  1125. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM186 594l99 144h136l-141 -144h-94z" />
  1126. <glyph glyph-name="dotlessj" horiz-adv-x="268"
  1127. d="M74 480h120v-509c0 -115 -31 -211 -174 -211c-20 0 -42 3 -54 6l10 102c11 -3 24 -4 33 -4c57 0 65 47 65 102v514z" />
  1128. <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="550"
  1129. d="M370 0v61h-3c-24 -42 -81 -73 -149 -73c-77 0 -180 37 -180 149c0 143 180 163 330 163v12c0 59 -50 88 -110 88c-51 0 -100 -24 -131 -55l-62 73c54 50 130 76 203 76c172 0 214 -106 214 -202v-292h-112zM368 202v17h-27c-76 0 -183 -9 -183 -80c0 -46 43 -60 84 -60
  1130. c82 0 126 47 126 123zM153 568h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  1131. <glyph glyph-name="eight.sc" horiz-adv-x="516"
  1132. d="M258 556c101 0 182 -54 182 -151c0 -55 -28 -96 -71 -117v-2c52 -20 91 -67 91 -130c0 -111 -93 -170 -202 -170s-202 59 -202 170c0 63 38 110 91 130v2c-43 20 -71 63 -71 113c0 96 81 155 182 155zM258 238c-45 0 -80 -30 -80 -78s35 -77 80 -77c44 0 80 29 80 77
  1133. c0 47 -37 78 -80 78zM258 460c-37 0 -65 -25 -65 -65c0 -39 27 -64 65 -64c35 0 65 25 65 64c0 40 -31 65 -65 65z" />
  1134. <glyph glyph-name="dieresis.sc"
  1135. d="M-40 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM156 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1136. <glyph glyph-name="edieresis.sc" horiz-adv-x="508"
  1137. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM95 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM291 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1138. <glyph glyph-name="caron.alt"
  1139. d="M67 513l65 195h106l-80 -195h-91z" />
  1140. <glyph glyph-name="Kcommaaccent" unicode="&#x136;" horiz-adv-x="689"
  1141. d="M78 0v708h126v-306h3l296 306h170l-331 -327l353 -381h-177l-311 355h-3v-355h-126zM249 -240l65 195h106l-80 -195h-91z" />
  1142. <glyph glyph-name="amacron.sc" horiz-adv-x="582"
  1143. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM448 703v-78h-320v78h320z" />
  1144. <glyph glyph-name="Ncommaaccent" unicode="&#x145;" horiz-adv-x="780"
  1145. d="M78 0v708h167l329 -530h2v530h126v-708h-160l-336 547h-2v-547h-126zM289 -240l65 195h106l-80 -195h-91z" />
  1146. <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="488"
  1147. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-38 -41 -99 -64 -165 -67l-35 -50c8 1 14 1 19 1c50 0 105 -14 105 -83c0 -73 -76 -94 -136 -94c-40 0 -82 11 -110 26l23 48c25 -13 54 -20 82 -20
  1148. c22 0 57 6 57 41c0 30 -32 36 -53 36c-11 0 -27 -2 -39 -6l-23 25l54 79c-122 17 -216 107 -216 251c0 156 116 254 257 254c70 0 143 -28 181 -75z" />
  1149. <glyph glyph-name="Itilde" unicode="&#x128;" horiz-adv-x="282"
  1150. d="M78 0v708h126v-708h-126zM23 768h-66c11 64 37 127 112 127c27 0 55 -8 79 -18c26 -11 49 -19 65 -19c27 0 39 20 46 42h66c-11 -64 -37 -127 -112 -127c-28 0 -57 9 -82 20c-24 11 -46 18 -62 18c-27 0 -39 -21 -46 -43z" />
  1151. <glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="635"
  1152. d="M74 756h120v-337h3c25 31 73 75 161 75c137 0 233 -110 233 -252c0 -140 -90 -256 -236 -256c-67 0 -132 31 -159 80h-2v-294h-120v984zM469 242c0 75 -45 154 -138 154c-88 0 -141 -81 -141 -156s53 -154 141 -154c93 0 138 81 138 156z" />
  1153. <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="222"
  1154. d="M60 675h102v-350h-102v350zM60 175h102v-350h-102v350z" />
  1155. <glyph glyph-name="ccircumflex.sc" horiz-adv-x="565"
  1156. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90zM522 594h-114l-69 90l-69 -90h-112l115 144
  1157. h135z" />
  1158. <glyph glyph-name="Eogonek" unicode="&#x118;" horiz-adv-x="610"
  1159. d="M78 0v708h469v-110h-343v-180h325v-106h-325v-200h361v-112h-26c-31 -29 -76 -81 -76 -122c0 -25 21 -46 46 -46c19 0 40 9 54 21l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 54 50 111 92 145h-399z" />
  1160. <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="574"
  1161. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM231 564
  1162. l99 144h136l-141 -144h-94z" />
  1163. <glyph glyph-name="g.sc" horiz-adv-x="615"
  1164. d="M560 316v-284c-59 -29 -130 -46 -215 -46c-178 0 -301 117 -301 287c0 173 128 283 297 283c93 0 166 -26 216 -72l-85 -93c-28 35 -79 56 -130 56c-103 0 -164 -72 -164 -174c0 -103 68 -177 172 -177c35 0 63 5 89 15v111h-110v94h231z" />
  1165. <glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="764"
  1166. d="M79 0v324h-66v84h66v300h279c186 0 360 -114 360 -354c0 -242 -205 -354 -375 -354h-264zM205 114h94c158 0 287 68 287 240s-112 240 -266 240h-115v-186h216v-84h-216v-210z" />
  1167. <glyph glyph-name="Lcommaaccent" unicode="&#x13b;" horiz-adv-x="511"
  1168. d="M78 0v708h126v-596h301v-112h-427zM187 -240l65 195h106l-80 -195h-91z" />
  1169. <glyph glyph-name="ecaron.sc" horiz-adv-x="508"
  1170. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM85 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1171. <glyph glyph-name="estimated" unicode="&#x212e;" horiz-adv-x="604"
  1172. d="M561 259h-404v-181c39 -39 87 -59 145 -59c83 0 143 36 193 120l35 -21c-61 -95 -123 -135 -228 -135c-157 0 -258 122 -258 276c0 155 101 276 258 276c154 0 258 -114 259 -276zM157 295h291v145c-42 40 -91 60 -147 60c-57 0 -105 -21 -144 -60v-145z" />
  1173. <glyph glyph-name="eogonek.sc" horiz-adv-x="508"
  1174. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM461 -153l25 -49c-28 -22 -63 -38 -100 -38c-53 0 -103 31 -103 89c0 57 57 118 100 151h61c-31 -27 -83 -84 -83 -128c0 -25 21 -46 46 -46c19 0 40 9 54 21z" />
  1175. <glyph glyph-name="lcommaaccent.sc" horiz-adv-x="433"
  1176. d="M76 0v542h122v-435h221v-107h-343zM141 -240l65 195h106l-80 -195h-91z" />
  1177. <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="574"
  1178. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM130 644
  1179. c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM326 644c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1180. <glyph glyph-name="ae.sc" horiz-adv-x="857"
  1181. d="M799 542v-101h-252v-114h239v-96h-239v-127h265v-104h-387v125h-206l-76 -125h-147l342 542h461zM276 219h149v224h-13z" />
  1182. <glyph glyph-name="ccaron.sc" horiz-adv-x="565"
  1183. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90zM157 738h114l69 -90l69 90h110l-115 -144
  1184. h-133z" />
  1185. <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="574"
  1186. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM484 564h-114
  1187. l-69 90l-69 -90h-112l115 144h135z" />
  1188. <glyph glyph-name="v.sc" horiz-adv-x="528"
  1189. d="M210 0l-214 542h132l136 -381h4l138 381h126l-217 -542h-105z" />
  1190. <glyph glyph-name="thorn.sc" horiz-adv-x="500"
  1191. d="M76 0v542h119v-85h73c142 0 202 -62 202 -162c0 -103 -80 -164 -210 -164h-65v-131h-119zM195 226h59c72 0 95 27 95 68s-23 64 -91 64h-63v-132z" />
  1192. <glyph glyph-name="ring.cap"
  1193. d="M235 855c0 -59 -46 -102 -105 -102s-105 43 -105 101c0 59 45 103 105 103c59 0 105 -43 105 -102zM189 855c0 33 -26 57 -59 57c-34 0 -59 -25 -59 -58c0 -32 26 -56 59 -56s59 24 59 57z" />
  1194. <glyph glyph-name="emacron" unicode="&#x113;" horiz-adv-x="574"
  1195. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM459 673v-78
  1196. h-320v78h320z" />
  1197. <glyph glyph-name="e.sc" horiz-adv-x="508"
  1198. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387z" />
  1199. <glyph glyph-name="abreve.sc" horiz-adv-x="582"
  1200. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM119 738h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  1201. <glyph glyph-name="adieresis.sc" horiz-adv-x="582"
  1202. d="M-2 0l235 542h117l234 -542h-136l-48 118h-223l-47 -118h-132zM215 214h148l-75 187zM121 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM317 674c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1203. <glyph glyph-name="ccircumflex" unicode="&#x109;" horiz-adv-x="488"
  1204. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-40 -43 -106 -67 -177 -67c-142 0 -260 94 -260 254c0 156 116 254 257 254c70 0 143 -28 181 -75zM483 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  1205. <glyph glyph-name="five.sc" horiz-adv-x="516"
  1206. d="M425 542v-99h-209l-6 -92c17 4 38 7 53 7c109 0 191 -65 191 -179c0 -116 -82 -193 -205 -193c-96 0 -167 52 -194 133l107 39c12 -46 47 -74 87 -74c49 0 86 33 86 88c0 69 -50 92 -102 92c-37 0 -97 -16 -140 -38l17 316h315z" />
  1207. <glyph glyph-name="ecircumflex.sc" horiz-adv-x="508"
  1208. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM445 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  1209. <glyph glyph-name="circumflex.cap"
  1210. d="M312 764h-114l-69 90l-69 -90h-112l115 144h135z" />
  1211. <glyph glyph-name="commaaccent"
  1212. d="M43 -240l65 195h106l-80 -195h-91z" />
  1213. <glyph glyph-name="ycircumflex" unicode="&#x177;" horiz-adv-x="513"
  1214. d="M206 0l-206 480h133l134 -349h2l119 349h125l-227 -583c-34 -87 -76 -137 -182 -137c-20 0 -41 2 -62 7l10 104c16 -5 32 -7 45 -7c51 0 65 25 85 75zM448 564h-114l-69 90l-69 -90h-112l115 144h135z" />
  1215. <glyph glyph-name="Nacute" unicode="&#x143;" horiz-adv-x="780"
  1216. d="M78 0v708h167l329 -530h2v530h126v-708h-160l-336 547h-2v-547h-126zM309 764l99 144h136l-141 -144h-94z" />
  1217. <glyph glyph-name="rcommaaccent" unicode="&#x157;" horiz-adv-x="364"
  1218. d="M72 0v480h115v-80h2c26 55 77 94 140 94c9 0 21 -1 29 -3v-110c-16 4 -26 5 -37 5c-108 0 -129 -94 -129 -129v-257h-120zM28 -240l65 195h106l-80 -195h-91z" />
  1219. <glyph glyph-name="cacute.sc" horiz-adv-x="565"
  1220. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90zM249 594l99 144h136l-141 -144h-94z" />
  1221. <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="574"
  1222. d="M164 288h246c0 62 -35 116 -113 116c-71 0 -128 -49 -133 -116zM530 234c0 -11 0 -21 -1 -32h-365c5 -68 67 -118 137 -118c60 0 100 24 127 62l80 -64c-47 -64 -115 -96 -206 -96c-148 0 -258 95 -258 251c0 155 109 257 254 257c134 0 232 -87 232 -260zM260 708
  1223. l99 -144h-94l-141 144h136z" />
  1224. <glyph glyph-name="breve.cap"
  1225. d="M-40 908h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  1226. <glyph glyph-name="tcommaaccent" unicode="&#x163;" horiz-adv-x="340"
  1227. d="M87 384h-84v96h84v139h118v-139h120v-96h-120v-223c0 -43 10 -74 63 -74c16 0 37 3 51 10l4 -94c-21 -8 -53 -13 -80 -13c-127 0 -156 78 -156 170v224zM98 -240l65 195h106l-80 -195h-91z" />
  1228. <glyph glyph-name="dcaron" unicode="&#x10f;" horiz-adv-x="720"
  1229. d="M560 756v-756h-114v72h-2c-33 -55 -98 -86 -165 -86c-146 0 -236 116 -236 256c0 142 96 252 233 252c88 0 136 -44 161 -75h3v337h120zM165 242c0 -75 45 -156 138 -156c88 0 141 79 141 154s-53 156 -141 156c-93 0 -138 -79 -138 -154zM587 513l65 195h106l-80 -195
  1230. h-91z" />
  1231. <glyph glyph-name="gbreve" unicode="&#x11f;" horiz-adv-x="632"
  1232. d="M446 480h114v-437c0 -173 -84 -283 -271 -283c-78 0 -176 28 -238 79l69 93c46 -44 108 -68 168 -68c116 0 152 70 152 165v35h-2c-35 -47 -91 -72 -157 -72c-144 0 -237 114 -237 250c0 139 90 252 235 252c67 0 130 -28 165 -86h2v72zM304 396
  1233. c-87 0 -138 -68 -138 -153c0 -76 51 -152 137 -152c89 0 143 72 143 152c0 83 -55 153 -142 153zM143 708h67c9 -50 52 -66 103 -66c57 0 90 10 104 66h66c-10 -98 -76 -144 -171 -144s-163 44 -169 144z" />
  1234. <glyph glyph-name="edotaccent.sc" horiz-adv-x="508"
  1235. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM192 673c0 38 32 72 76 72s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  1236. <glyph glyph-name="six.sc" horiz-adv-x="516"
  1237. d="M235 542h144l-140 -198l2 -2c16 6 34 9 50 9c95 0 173 -63 173 -171c0 -116 -93 -194 -207 -194c-116 0 -205 79 -205 191c0 63 25 121 65 182zM173 175c0 -54 39 -87 86 -87s86 35 86 89c0 53 -39 86 -86 86s-86 -33 -86 -88z" />
  1238. <glyph glyph-name="egrave.sc" horiz-adv-x="508"
  1239. d="M76 0v542h374v-101h-252v-114h239v-96h-239v-127h265v-104h-387zM266 738l99 -144h-94l-141 144h136z" />
  1240. <glyph glyph-name="c.sc" horiz-adv-x="565"
  1241. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90z" />
  1242. <glyph glyph-name="circumflex.sc"
  1243. d="M312 594h-114l-69 90l-69 -90h-112l115 144h135z" />
  1244. <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="400"
  1245. d="M40 560c0 88 72 160 160 160s160 -72 160 -160s-72 -160 -160 -160s-160 72 -160 160zM118 560c0 -45 37 -82 82 -82s82 37 82 82s-37 82 -82 82s-82 -37 -82 -82z" />
  1246. <glyph glyph-name="t.sc" horiz-adv-x="446"
  1247. d="M162 0v439h-158v103h438v-103h-158v-439h-122z" />
  1248. <glyph glyph-name="dieresis.cap"
  1249. d="M-40 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70zM156 844c0 37 30 70 71 70s73 -30 73 -70s-32 -70 -73 -70s-71 33 -71 70z" />
  1250. <glyph glyph-name="sacute.sc" horiz-adv-x="492"
  1251. d="M448 474l-83 -79c-23 32 -66 59 -113 59c-41 0 -82 -15 -82 -56s39 -53 111 -71c76 -19 166 -55 166 -160c0 -131 -102 -181 -214 -181c-79 0 -162 31 -211 88l85 86c27 -38 76 -67 131 -67c38 0 82 14 82 61c0 45 -39 58 -117 77c-76 19 -152 52 -152 153
  1252. c0 120 103 172 204 172c74 0 151 -27 193 -82zM169 594l99 144h136l-141 -144h-94z" />
  1253. <glyph glyph-name="caron.sc"
  1254. d="M-51 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1255. <glyph glyph-name="cacute" unicode="&#x107;" horiz-adv-x="488"
  1256. d="M482 419l-82 -72c-19 27 -60 47 -99 47c-88 0 -132 -79 -132 -154s45 -154 136 -154c37 0 78 15 101 43l75 -76c-40 -43 -106 -67 -177 -67c-142 0 -260 94 -260 254c0 156 116 254 257 254c70 0 143 -28 181 -75zM229 564l99 144h136l-141 -144h-94z" />
  1257. <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="800"
  1258. d="M577 506l-63 -63c-19 24 -57 42 -96 42c-81 0 -124 -65 -124 -132c0 -69 45 -135 131 -135c35 0 72 14 93 38l58 -68c-35 -39 -94 -60 -158 -60c-127 0 -230 79 -230 223c0 140 104 224 230 224c63 0 125 -25 159 -69zM20 353c0 210 171 377 381 377
  1259. c209 0 379 -167 379 -377c0 -209 -170 -375 -379 -375c-210 0 -381 166 -381 375zM80 353c0 -176 144 -319 321 -319c176 0 319 143 319 319c0 177 -143 321 -319 321c-177 0 -321 -144 -321 -321z" />
  1260. <glyph glyph-name="d.sc" horiz-adv-x="623"
  1261. d="M76 0v542h205c152 0 298 -68 298 -270c0 -188 -150 -272 -302 -272h-201zM198 101h64c94 0 185 37 185 171c0 141 -89 171 -185 171h-64v-342z" />
  1262. <glyph glyph-name="cdotaccent.sc" horiz-adv-x="565"
  1263. d="M546 466l-93 -77c-26 37 -67 58 -115 58c-96 0 -160 -70 -160 -174c0 -100 64 -175 159 -175c52 0 92 21 123 64l96 -73c-44 -60 -110 -103 -223 -103c-175 0 -289 113 -289 287c0 173 129 283 297 283c81 0 157 -29 205 -90zM260 673c0 38 32 72 76 72s78 -31 78 -72
  1264. s-34 -72 -78 -72s-76 34 -76 72z" />
  1265. <glyph glyph-name="f.sc" horiz-adv-x="484"
  1266. d="M76 0v542h365v-103h-243v-128h229v-98h-229v-213h-122z" />
  1267. <glyph glyph-name="gcommaaccent" unicode="&#x123;" horiz-adv-x="632"
  1268. d="M446 480h114v-437c0 -173 -84 -283 -271 -283c-78 0 -176 28 -238 79l69 93c46 -44 108 -68 168 -68c116 0 152 70 152 165v35h-2c-35 -47 -91 -72 -157 -72c-144 0 -237 114 -237 250c0 139 90 252 235 252c67 0 130 -28 165 -86h2v72zM304 396
  1269. c-87 0 -138 -68 -138 -153c0 -76 51 -152 137 -152c89 0 143 72 143 152c0 83 -55 153 -142 153zM400 759l-65 -195h-106l80 195h91z" />
  1270. <glyph glyph-name="commaaccent.alt"
  1271. d="M217 759l-65 -195h-106l80 195h91z" />
  1272. <glyph glyph-name="tcaron.sc" horiz-adv-x="446"
  1273. d="M162 0v439h-158v103h438v-103h-158v-439h-122zM43 738h114l69 -90l69 90h110l-115 -144h-133z" />
  1274. <glyph glyph-name="gdotaccent.sc" horiz-adv-x="615"
  1275. d="M560 316v-284c-59 -29 -130 -46 -215 -46c-178 0 -301 117 -301 287c0 173 128 283 297 283c93 0 166 -26 216 -72l-85 -93c-28 35 -79 56 -130 56c-103 0 -164 -72 -164 -174c0 -103 68 -177 172 -177c35 0 63 5 89 15v111h-110v94h231zM268 673c0 38 32 72 76 72
  1276. s78 -31 78 -72s-34 -72 -78 -72s-76 34 -76 72z" />
  1277. <glyph glyph-name="gcommaaccent.sc" horiz-adv-x="615"
  1278. d="M560 316v-284c-59 -29 -130 -46 -215 -46c-178 0 -301 117 -301 287c0 173 128 283 297 283c93 0 166 -26 216 -72l-85 -93c-28 35 -79 56 -130 56c-103 0 -164 -72 -164 -174c0 -103 68 -177 172 -177c35 0 63 5 89 15v111h-110v94h231zM234 -240l65 195h106l-80 -195
  1279. h-91z" />
  1280. <glyph glyph-name="gcircumflex.sc" horiz-adv-x="615"
  1281. d="M560 316v-284c-59 -29 -130 -46 -215 -46c-178 0 -301 117 -301 287c0 173 128 283 297 283c93 0 166 -26 216 -72l-85 -93c-28 35 -79 56 -130 56c-103 0 -164 -72 -164 -174c0 -103 68 -177 172 -177c35 0 63 5 89 15v111h-110v94h231zM529 594h-114l-69 90l-69 -90
  1282. h-112l115 144h135z" />
  1283. <glyph glyph-name="space" unicode=" " horiz-adv-x="250"
  1284. />
  1285. <glyph glyph-name=".null" horiz-adv-x="500"
  1286. />
  1287. <glyph glyph-name=".null" horiz-adv-x="500"
  1288. />
  1289. <hkern u1="&#x2019;" g2="ae.sc" k="60" />
  1290. <hkern u1="&#x2019;" u2="&#x152;" k="12" />
  1291. <hkern u1="&#x2019;" u2="&#x2c;" k="90" />
  1292. <hkern u1="&#x2c;" g2="one.onum" k="20" />
  1293. <hkern u1="&#x2c;" g2="seven.onum" k="20" />
  1294. <hkern u1="&#x2c;" u2="&#x201d;" k="84" />
  1295. <hkern u1="&#x2c;" u2="&#x2039;" k="48" />
  1296. <hkern u1="&#x2c;" u2="&#xab;" k="48" />
  1297. <hkern u1="&#x2c;" u2="&#x201c;" k="84" />
  1298. <hkern u1="&#x2c;" u2="&#x2018;" k="72" />
  1299. <hkern u1="&#x2c;" u2="&#x2019;" k="72" />
  1300. <hkern u1="D" u2="&#xc6;" k="42" />
  1301. <hkern u1="F" g2="ae.sc" k="72" />
  1302. <hkern u1="F" g2="oe.sc" k="48" />
  1303. <hkern u1="F" u2="&#xc6;" k="120" />
  1304. <hkern u1="F" u2="&#x2039;" k="18" />
  1305. <hkern u1="F" u2="&#xab;" k="18" />
  1306. <hkern u1="F" u2="&#x3b;" k="24" />
  1307. <hkern u1="F" u2="&#x3a;" k="24" />
  1308. <hkern u1="F" u2="&#x2c;" k="108" />
  1309. <hkern u1="O" u2="&#xc6;" k="48" />
  1310. <hkern u1="P" g2="ae.sc" k="126" />
  1311. <hkern u1="P" u2="&#xc6;" k="120" />
  1312. <hkern u1="P" u2="&#x3b;" k="36" />
  1313. <hkern u1="P" u2="&#x3a;" k="36" />
  1314. <hkern u1="P" u2="&#x2c;" k="144" />
  1315. <hkern u1="Q" u2="V" k="12" />
  1316. <hkern u1="T" u2="&#xc6;" k="120" />
  1317. <hkern u1="U" u2="&#xc6;" k="32" />
  1318. <hkern u1="V" g2="ae.sc" k="96" />
  1319. <hkern u1="V" u2="&#x152;" k="12" />
  1320. <hkern u1="V" u2="&#xc6;" k="60" />
  1321. <hkern u1="V" u2="&#xbb;" k="24" />
  1322. <hkern u1="V" u2="&#x201d;" k="-12" />
  1323. <hkern u1="V" u2="&#x203a;" k="18" />
  1324. <hkern u1="V" u2="&#x2039;" k="18" />
  1325. <hkern u1="V" u2="&#xab;" k="42" />
  1326. <hkern u1="V" u2="&#x201c;" k="-12" />
  1327. <hkern u1="V" u2="&#x2018;" k="-12" />
  1328. <hkern u1="V" u2="&#x3b;" k="48" />
  1329. <hkern u1="V" u2="&#x3a;" k="48" />
  1330. <hkern u1="V" u2="&#x2c;" k="84" />
  1331. <hkern u1="V" u2="&#x2019;" k="-12" />
  1332. <hkern u1="W" g2="ae.sc" k="42" />
  1333. <hkern u1="W" g2="oe.sc" k="36" />
  1334. <hkern u1="W" u2="&#xc6;" k="60" />
  1335. <hkern u1="X" g2="ae.sc" k="12" />
  1336. <hkern u1="X" g2="oe.sc" k="25" />
  1337. <hkern u1="X" u2="&#x152;" k="18" />
  1338. <hkern u1="Y" g2="ae.sc" k="93" />
  1339. <hkern u1="Y" g2="oe.sc" k="93" />
  1340. <hkern u1="Y" u2="&#xc6;" k="66" />
  1341. <hkern u1="&#x2018;" g2="q.sc" k="42" />
  1342. <hkern u1="&#x2018;" u2="&#xc6;" k="90" />
  1343. <hkern u1="&#x2018;" u2="q" k="42" />
  1344. <hkern u1="&#x2018;" u2="V" k="-18" />
  1345. <hkern u1="&#x2018;" u2="&#x2c;" k="90" />
  1346. <hkern u1="b" u2="&#x2c;" k="12" />
  1347. <hkern u1="f" u2="&#x2122;" k="-42" />
  1348. <hkern u1="f" u2="&#x201d;" k="-48" />
  1349. <hkern u1="f" u2="&#x201c;" k="-48" />
  1350. <hkern u1="f" u2="&#x7d;" k="-43" />
  1351. <hkern u1="f" u2="&#x2018;" k="-48" />
  1352. <hkern u1="f" u2="]" k="-43" />
  1353. <hkern u1="f" u2="&#x3f;" k="-48" />
  1354. <hkern u1="f" u2="&#x2a;" k="-36" />
  1355. <hkern u1="f" u2="&#x29;" k="-43" />
  1356. <hkern u1="f" u2="&#x2019;" k="-48" />
  1357. <hkern u1="f" u2="&#x21;" k="-33" />
  1358. <hkern u1="k" u2="&#x153;" k="18" />
  1359. <hkern u1="p" u2="&#x2c;" k="12" />
  1360. <hkern u1="r" u2="&#xe6;" k="12" />
  1361. <hkern u1="v" u2="&#x2c;" k="48" />
  1362. <hkern u1="&#x201c;" g2="q.sc" k="42" />
  1363. <hkern u1="&#x201c;" u2="&#xc6;" k="120" />
  1364. <hkern u1="&#x201c;" u2="q" k="42" />
  1365. <hkern u1="&#x201c;" u2="V" k="-18" />
  1366. <hkern u1="&#x201c;" u2="&#x2c;" k="90" />
  1367. <hkern u1="&#xab;" u2="V" k="24" />
  1368. <hkern u1="&#x2039;" u2="V" k="18" />
  1369. <hkern u1="&#x203a;" u2="V" k="24" />
  1370. <hkern u1="&#x203a;" u2="&#x2c;" k="36" />
  1371. <hkern u1="&#x201a;" g2="v.sc" k="12" />
  1372. <hkern u1="&#x201a;" u2="v" k="12" />
  1373. <hkern u1="&#x201a;" u2="V" k="48" />
  1374. <hkern u1="&#x201e;" g2="v.sc" k="12" />
  1375. <hkern u1="&#x201e;" u2="v" k="12" />
  1376. <hkern u1="&#x201e;" u2="V" k="48" />
  1377. <hkern u1="&#x201d;" u2="&#x2c;" k="120" />
  1378. <hkern u1="&#xbb;" u2="V" k="42" />
  1379. <hkern u1="&#xbb;" u2="&#x2c;" k="36" />
  1380. <hkern g1="p.sc" g2="ae.sc" k="75" />
  1381. <hkern g1="p.sc" u2="&#x2c;" k="84" />
  1382. <hkern g1="six.onum" g2="seven.onum" k="20" />
  1383. <hkern g1="y.sc" g2="ae.sc" k="65" />
  1384. <hkern g1="y.sc" g2="oe.sc" k="43" />
  1385. <hkern g1="seven.onum" g2="four.onum" k="20" />
  1386. <hkern g1="seven.onum" u2="&#x2c;" k="80" />
  1387. <hkern g1="four.onum" g2="one.onum" k="20" />
  1388. <hkern g1="b.sc" u2="&#x2c;" k="12" />
  1389. <hkern g1="eight.onum" g2="one.onum" k="10" />
  1390. <hkern g1="u.sc" g2="ae.sc" k="25" />
  1391. <hkern g1="v.sc" g2="ae.sc" k="35" />
  1392. <hkern g1="v.sc" u2="&#x201d;" k="-24" />
  1393. <hkern g1="v.sc" u2="&#x2c;" k="48" />
  1394. <hkern g1="v.sc" u2="&#x2019;" k="-24" />
  1395. <hkern g1="c.sc" g2="ae.sc" k="20" />
  1396. <hkern g1="t.sc" g2="ae.sc" k="65" />
  1397. <hkern g1="t.sc" g2="oe.sc" k="25" />
  1398. <hkern g1="d.sc" g2="ae.sc" k="15" />
  1399. <hkern g1="d.sc" g2="x.sc" k="30" />
  1400. <hkern g1="d.sc" u2="&#x2c;" k="24" />
  1401. <hkern g1="f.sc" g2="ae.sc" k="60" />
  1402. <hkern g1="f.sc" u2="&#x2c;" k="72" />
  1403. <hkern g1="F"
  1404. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1405. k="54" />
  1406. <hkern g1="F"
  1407. g2="J,Jcircumflex"
  1408. k="144" />
  1409. <hkern g1="F"
  1410. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1411. k="48" />
  1412. <hkern g1="F"
  1413. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1414. k="60" />
  1415. <hkern g1="F"
  1416. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1417. k="48" />
  1418. <hkern g1="F"
  1419. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  1420. k="30" />
  1421. <hkern g1="F"
  1422. g2="hyphen,uni00AD"
  1423. k="12" />
  1424. <hkern g1="F"
  1425. g2="i,dotlessi,idieresis,imacron,iogonek,ij,igrave,icircumflex,itilde,iacute"
  1426. k="18" />
  1427. <hkern g1="F"
  1428. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  1429. k="30" />
  1430. <hkern g1="F"
  1431. g2="j.sc,jcircumflex.sc"
  1432. k="144" />
  1433. <hkern g1="F"
  1434. g2="l.sc,lacute.sc,lcaron.sc,ldot.sc,lcommaaccent.sc"
  1435. k="30" />
  1436. <hkern g1="F"
  1437. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1438. k="48" />
  1439. <hkern g1="F"
  1440. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1441. k="42" />
  1442. <hkern g1="F"
  1443. g2="period,ellipsis"
  1444. k="96" />
  1445. <hkern g1="F"
  1446. g2="r,racute,rcaron,rcommaaccent"
  1447. k="42" />
  1448. <hkern g1="F"
  1449. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  1450. k="30" />
  1451. <hkern g1="F"
  1452. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  1453. k="42" />
  1454. <hkern g1="F"
  1455. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  1456. k="30" />
  1457. <hkern g1="F"
  1458. g2="y,yacute,ydieresis,ycircumflex"
  1459. k="18" />
  1460. <hkern g1="F"
  1461. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1462. k="36" />
  1463. <hkern g1="P"
  1464. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1465. k="60" />
  1466. <hkern g1="P"
  1467. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1468. k="56" />
  1469. <hkern g1="P"
  1470. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1471. k="96" />
  1472. <hkern g1="P"
  1473. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1474. k="65" />
  1475. <hkern g1="P"
  1476. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  1477. k="18" />
  1478. <hkern g1="P"
  1479. g2="hyphen,uni00AD"
  1480. k="36" />
  1481. <hkern g1="P"
  1482. g2="i,dotlessi,idieresis,imacron,iogonek,ij,igrave,icircumflex,itilde,iacute"
  1483. k="24" />
  1484. <hkern g1="P"
  1485. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  1486. k="18" />
  1487. <hkern g1="P"
  1488. g2="l.sc,lacute.sc,lcaron.sc,ldot.sc,lcommaaccent.sc"
  1489. k="18" />
  1490. <hkern g1="P"
  1491. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1492. k="65" />
  1493. <hkern g1="P"
  1494. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1495. k="42" />
  1496. <hkern g1="P"
  1497. g2="period,ellipsis"
  1498. k="144" />
  1499. <hkern g1="P"
  1500. g2="r,racute,rcaron,rcommaaccent"
  1501. k="46" />
  1502. <hkern g1="P"
  1503. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  1504. k="18" />
  1505. <hkern g1="P"
  1506. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  1507. k="44" />
  1508. <hkern g1="P"
  1509. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  1510. k="24" />
  1511. <hkern g1="P"
  1512. g2="y,yacute,ydieresis,ycircumflex"
  1513. k="42" />
  1514. <hkern g1="P"
  1515. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1516. k="24" />
  1517. <hkern g1="P"
  1518. g2="T,Tcommaaccent,Tcaron,uni021A"
  1519. k="6" />
  1520. <hkern g1="P"
  1521. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1522. k="18" />
  1523. <hkern g1="P"
  1524. g2="fi.sc,fl.sc,f.sc"
  1525. k="18" />
  1526. <hkern g1="P"
  1527. g2="hcircumflex.sc,h.sc"
  1528. k="18" />
  1529. <hkern g1="P"
  1530. g2="n,ntilde,ncaron,ncommaaccent,nacute"
  1531. k="46" />
  1532. <hkern g1="P"
  1533. g2="n.sc,nacute.sc,ncommaaccent.sc,ntilde.sc,ncaron.sc"
  1534. k="18" />
  1535. <hkern g1="P"
  1536. g2="s,scommaaccent,scircumflex,scaron,scedilla,sacute"
  1537. k="48" />
  1538. <hkern g1="P"
  1539. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  1540. k="30" />
  1541. <hkern g1="V"
  1542. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1543. k="30" />
  1544. <hkern g1="V"
  1545. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1546. k="42" />
  1547. <hkern g1="V"
  1548. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1549. k="48" />
  1550. <hkern g1="V"
  1551. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1552. k="42" />
  1553. <hkern g1="V"
  1554. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  1555. k="42" />
  1556. <hkern g1="V"
  1557. g2="hyphen,uni00AD"
  1558. k="24" />
  1559. <hkern g1="V"
  1560. g2="i,dotlessi,idieresis,imacron,iogonek,ij,igrave,icircumflex,itilde,iacute"
  1561. k="18" />
  1562. <hkern g1="V"
  1563. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  1564. k="42" />
  1565. <hkern g1="V"
  1566. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1567. k="42" />
  1568. <hkern g1="V"
  1569. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1570. k="42" />
  1571. <hkern g1="V"
  1572. g2="period,ellipsis"
  1573. k="84" />
  1574. <hkern g1="V"
  1575. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  1576. k="42" />
  1577. <hkern g1="V"
  1578. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  1579. k="42" />
  1580. <hkern g1="V"
  1581. g2="y,yacute,ydieresis,ycircumflex"
  1582. k="24" />
  1583. <hkern g1="V"
  1584. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1585. k="24" />
  1586. <hkern g1="V"
  1587. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  1588. k="12" />
  1589. <hkern g1="V"
  1590. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  1591. k="12" />
  1592. <hkern g1="V"
  1593. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  1594. k="12" />
  1595. <hkern g1="V"
  1596. g2="uni00A0,space"
  1597. k="18" />
  1598. <hkern g1="X"
  1599. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1600. k="12" />
  1601. <hkern g1="X"
  1602. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1603. k="30" />
  1604. <hkern g1="X"
  1605. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1606. k="25" />
  1607. <hkern g1="X"
  1608. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  1609. k="24" />
  1610. <hkern g1="X"
  1611. g2="hyphen,uni00AD"
  1612. k="24" />
  1613. <hkern g1="X"
  1614. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  1615. k="24" />
  1616. <hkern g1="X"
  1617. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1618. k="25" />
  1619. <hkern g1="X"
  1620. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1621. k="24" />
  1622. <hkern g1="X"
  1623. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  1624. k="24" />
  1625. <hkern g1="X"
  1626. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  1627. k="24" />
  1628. <hkern g1="X"
  1629. g2="y,yacute,ydieresis,ycircumflex"
  1630. k="25" />
  1631. <hkern g1="X"
  1632. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1633. k="42" />
  1634. <hkern g1="X"
  1635. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  1636. k="25" />
  1637. <hkern g1="X"
  1638. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  1639. k="25" />
  1640. <hkern g1="X"
  1641. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  1642. k="25" />
  1643. <hkern g1="X"
  1644. g2="uni00A0,space"
  1645. k="12" />
  1646. <hkern g1="b"
  1647. g2="period,ellipsis"
  1648. k="12" />
  1649. <hkern g1="b.sc"
  1650. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1651. k="6" />
  1652. <hkern g1="b.sc"
  1653. g2="period,ellipsis"
  1654. k="12" />
  1655. <hkern g1="b.sc"
  1656. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1657. k="6" />
  1658. <hkern g1="braceleft"
  1659. g2="J,Jcircumflex"
  1660. k="30" />
  1661. <hkern g1="braceleft"
  1662. g2="j.sc,jcircumflex.sc"
  1663. k="20" />
  1664. <hkern g1="braceleft"
  1665. g2="j,jcircumflex,dotlessj"
  1666. k="-60" />
  1667. <hkern g1="bracketleft"
  1668. g2="J,Jcircumflex"
  1669. k="30" />
  1670. <hkern g1="bracketleft"
  1671. g2="j.sc,jcircumflex.sc"
  1672. k="20" />
  1673. <hkern g1="bracketleft"
  1674. g2="j,jcircumflex,dotlessj"
  1675. k="-60" />
  1676. <hkern g1="comma"
  1677. g2="hyphen,uni00AD"
  1678. k="36" />
  1679. <hkern g1="comma"
  1680. g2="uni00A0,space"
  1681. k="30" />
  1682. <hkern g1="d.sc"
  1683. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1684. k="6" />
  1685. <hkern g1="d.sc"
  1686. g2="j.sc,jcircumflex.sc"
  1687. k="24" />
  1688. <hkern g1="d.sc"
  1689. g2="period,ellipsis"
  1690. k="24" />
  1691. <hkern g1="d.sc"
  1692. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1693. k="12" />
  1694. <hkern g1="d.sc"
  1695. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  1696. k="18" />
  1697. <hkern g1="d.sc"
  1698. g2="z.sc,zcaron.sc,zacute.sc,zdotaccent.sc"
  1699. k="12" />
  1700. <hkern g1="exclamdown"
  1701. g2="j,jcircumflex,dotlessj"
  1702. k="-48" />
  1703. <hkern g1="f"
  1704. g2="uni00A0,space"
  1705. k="-24" />
  1706. <hkern g1="f"
  1707. g2="f,fi,fl"
  1708. k="21" />
  1709. <hkern g1="f"
  1710. g2="t,uni021B,tcaron,tcommaaccent"
  1711. k="15" />
  1712. <hkern g1="f.sc"
  1713. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1714. k="42" />
  1715. <hkern g1="f.sc"
  1716. g2="j.sc,jcircumflex.sc"
  1717. k="66" />
  1718. <hkern g1="f.sc"
  1719. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1720. k="12" />
  1721. <hkern g1="f.sc"
  1722. g2="period,ellipsis"
  1723. k="72" />
  1724. <hkern g1="guillemotleft"
  1725. g2="T,Tcommaaccent,Tcaron,uni021A"
  1726. k="48" />
  1727. <hkern g1="guillemotleft"
  1728. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1729. k="24" />
  1730. <hkern g1="guillemotleft"
  1731. g2="uni00A0,space"
  1732. k="30" />
  1733. <hkern g1="guillemotleft"
  1734. g2="W,Wcircumflex"
  1735. k="18" />
  1736. <hkern g1="guillemotright"
  1737. g2="T,Tcommaaccent,Tcaron,uni021A"
  1738. k="60" />
  1739. <hkern g1="guillemotright"
  1740. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1741. k="60" />
  1742. <hkern g1="guillemotright"
  1743. g2="uni00A0,space"
  1744. k="30" />
  1745. <hkern g1="guillemotright"
  1746. g2="W,Wcircumflex"
  1747. k="24" />
  1748. <hkern g1="guilsinglleft"
  1749. g2="T,Tcommaaccent,Tcaron,uni021A"
  1750. k="36" />
  1751. <hkern g1="guilsinglleft"
  1752. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1753. k="24" />
  1754. <hkern g1="guilsinglleft"
  1755. g2="uni00A0,space"
  1756. k="30" />
  1757. <hkern g1="guilsinglleft"
  1758. g2="W,Wcircumflex"
  1759. k="18" />
  1760. <hkern g1="guilsinglright"
  1761. g2="period,ellipsis"
  1762. k="36" />
  1763. <hkern g1="guilsinglright"
  1764. g2="T,Tcommaaccent,Tcaron,uni021A"
  1765. k="60" />
  1766. <hkern g1="guilsinglright"
  1767. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1768. k="36" />
  1769. <hkern g1="guilsinglright"
  1770. g2="uni00A0,space"
  1771. k="30" />
  1772. <hkern g1="guilsinglright"
  1773. g2="W,Wcircumflex"
  1774. k="18" />
  1775. <hkern g1="p"
  1776. g2="period,ellipsis"
  1777. k="12" />
  1778. <hkern g1="p.sc"
  1779. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1780. k="36" />
  1781. <hkern g1="p.sc"
  1782. g2="period,ellipsis"
  1783. k="84" />
  1784. <hkern g1="parenleft"
  1785. g2="J,Jcircumflex"
  1786. k="30" />
  1787. <hkern g1="parenleft"
  1788. g2="j.sc,jcircumflex.sc"
  1789. k="20" />
  1790. <hkern g1="parenleft"
  1791. g2="j,jcircumflex,dotlessj"
  1792. k="-60" />
  1793. <hkern g1="questiondown"
  1794. g2="j,jcircumflex,dotlessj"
  1795. k="-48" />
  1796. <hkern g1="quotedblbase"
  1797. g2="J,Jcircumflex"
  1798. k="-12" />
  1799. <hkern g1="quotedblbase"
  1800. g2="j.sc,jcircumflex.sc"
  1801. k="-10" />
  1802. <hkern g1="quotedblbase"
  1803. g2="y,yacute,ydieresis,ycircumflex"
  1804. k="12" />
  1805. <hkern g1="quotedblbase"
  1806. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1807. k="36" />
  1808. <hkern g1="quotedblbase"
  1809. g2="T,Tcommaaccent,Tcaron,uni021A"
  1810. k="72" />
  1811. <hkern g1="quotedblbase"
  1812. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1813. k="60" />
  1814. <hkern g1="quotedblbase"
  1815. g2="j,jcircumflex,dotlessj"
  1816. k="-60" />
  1817. <hkern g1="quotedblbase"
  1818. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  1819. k="30" />
  1820. <hkern g1="quotedblbase"
  1821. g2="W,Wcircumflex"
  1822. k="36" />
  1823. <hkern g1="quotedblbase"
  1824. g2="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  1825. k="24" />
  1826. <hkern g1="quotedblbase"
  1827. g2="w,wcircumflex"
  1828. k="12" />
  1829. <hkern g1="quotedblbase"
  1830. g2="wcircumflex.sc,w.sc"
  1831. k="12" />
  1832. <hkern g1="quotedblleft"
  1833. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1834. k="72" />
  1835. <hkern g1="quotedblleft"
  1836. g2="J,Jcircumflex"
  1837. k="120" />
  1838. <hkern g1="quotedblleft"
  1839. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1840. k="30" />
  1841. <hkern g1="quotedblleft"
  1842. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1843. k="78" />
  1844. <hkern g1="quotedblleft"
  1845. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1846. k="42" />
  1847. <hkern g1="quotedblleft"
  1848. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1849. k="42" />
  1850. <hkern g1="quotedblleft"
  1851. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1852. k="42" />
  1853. <hkern g1="quotedblleft"
  1854. g2="period,ellipsis"
  1855. k="90" />
  1856. <hkern g1="quotedblleft"
  1857. g2="T,Tcommaaccent,Tcaron,uni021A"
  1858. k="-18" />
  1859. <hkern g1="quotedblleft"
  1860. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1861. k="-18" />
  1862. <hkern g1="quotedblleft"
  1863. g2="W,Wcircumflex"
  1864. k="-18" />
  1865. <hkern g1="quotedblleft"
  1866. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  1867. k="42" />
  1868. <hkern g1="quotedblleft"
  1869. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  1870. k="42" />
  1871. <hkern g1="quotedblleft"
  1872. g2="d,dcroat,dcaron"
  1873. k="42" />
  1874. <hkern g1="quotedblleft"
  1875. g2="g,gdotaccent,gcircumflex,gbreve,gcommaaccent"
  1876. k="42" />
  1877. <hkern g1="quotedblleft"
  1878. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  1879. k="42" />
  1880. <hkern g1="quotedblright"
  1881. g2="period,ellipsis"
  1882. k="120" />
  1883. <hkern g1="quoteleft"
  1884. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1885. k="72" />
  1886. <hkern g1="quoteleft"
  1887. g2="J,Jcircumflex"
  1888. k="108" />
  1889. <hkern g1="quoteleft"
  1890. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1891. k="30" />
  1892. <hkern g1="quoteleft"
  1893. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1894. k="66" />
  1895. <hkern g1="quoteleft"
  1896. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1897. k="42" />
  1898. <hkern g1="quoteleft"
  1899. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1900. k="42" />
  1901. <hkern g1="quoteleft"
  1902. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1903. k="42" />
  1904. <hkern g1="quoteleft"
  1905. g2="period,ellipsis"
  1906. k="90" />
  1907. <hkern g1="quoteleft"
  1908. g2="T,Tcommaaccent,Tcaron,uni021A"
  1909. k="-18" />
  1910. <hkern g1="quoteleft"
  1911. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1912. k="-18" />
  1913. <hkern g1="quoteleft"
  1914. g2="W,Wcircumflex"
  1915. k="-18" />
  1916. <hkern g1="quoteleft"
  1917. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  1918. k="42" />
  1919. <hkern g1="quoteleft"
  1920. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  1921. k="42" />
  1922. <hkern g1="quoteleft"
  1923. g2="d,dcroat,dcaron"
  1924. k="42" />
  1925. <hkern g1="quoteleft"
  1926. g2="g,gdotaccent,gcircumflex,gbreve,gcommaaccent"
  1927. k="42" />
  1928. <hkern g1="quoteleft"
  1929. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  1930. k="42" />
  1931. <hkern g1="quoteright"
  1932. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  1933. k="48" />
  1934. <hkern g1="quoteright"
  1935. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  1936. k="60" />
  1937. <hkern g1="quoteright"
  1938. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  1939. k="78" />
  1940. <hkern g1="quoteright"
  1941. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  1942. k="60" />
  1943. <hkern g1="quoteright"
  1944. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  1945. k="60" />
  1946. <hkern g1="quoteright"
  1947. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  1948. k="60" />
  1949. <hkern g1="quoteright"
  1950. g2="period,ellipsis"
  1951. k="90" />
  1952. <hkern g1="quoteright"
  1953. g2="s,scommaaccent,scircumflex,scaron,scedilla,sacute"
  1954. k="48" />
  1955. <hkern g1="quoteright"
  1956. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  1957. k="48" />
  1958. <hkern g1="quoteright"
  1959. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  1960. k="60" />
  1961. <hkern g1="quoteright"
  1962. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  1963. k="60" />
  1964. <hkern g1="quotesinglbase"
  1965. g2="J,Jcircumflex"
  1966. k="-24" />
  1967. <hkern g1="quotesinglbase"
  1968. g2="j.sc,jcircumflex.sc"
  1969. k="-10" />
  1970. <hkern g1="quotesinglbase"
  1971. g2="y,yacute,ydieresis,ycircumflex"
  1972. k="12" />
  1973. <hkern g1="quotesinglbase"
  1974. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  1975. k="36" />
  1976. <hkern g1="quotesinglbase"
  1977. g2="T,Tcommaaccent,Tcaron,uni021A"
  1978. k="72" />
  1979. <hkern g1="quotesinglbase"
  1980. g2="Y,Yacute,Ydieresis,Ycircumflex"
  1981. k="60" />
  1982. <hkern g1="quotesinglbase"
  1983. g2="j,jcircumflex,dotlessj"
  1984. k="-60" />
  1985. <hkern g1="quotesinglbase"
  1986. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  1987. k="30" />
  1988. <hkern g1="quotesinglbase"
  1989. g2="W,Wcircumflex"
  1990. k="24" />
  1991. <hkern g1="quotesinglbase"
  1992. g2="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  1993. k="24" />
  1994. <hkern g1="quotesinglbase"
  1995. g2="w,wcircumflex"
  1996. k="12" />
  1997. <hkern g1="quotesinglbase"
  1998. g2="wcircumflex.sc,w.sc"
  1999. k="12" />
  2000. <hkern g1="seven.onum"
  2001. g2="hyphen,uni00AD"
  2002. k="20" />
  2003. <hkern g1="seven.onum"
  2004. g2="period,ellipsis"
  2005. k="80" />
  2006. <hkern g1="v"
  2007. g2="period,ellipsis"
  2008. k="48" />
  2009. <hkern g1="v.sc"
  2010. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2011. k="18" />
  2012. <hkern g1="v.sc"
  2013. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2014. k="6" />
  2015. <hkern g1="v.sc"
  2016. g2="period,ellipsis"
  2017. k="48" />
  2018. <hkern g1="x"
  2019. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2020. k="10" />
  2021. <hkern g1="x"
  2022. g2="hyphen,uni00AD"
  2023. k="12" />
  2024. <hkern g1="x"
  2025. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2026. k="10" />
  2027. <hkern g1="x"
  2028. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  2029. k="10" />
  2030. <hkern g1="x.sc"
  2031. g2="hyphen,uni00AD"
  2032. k="12" />
  2033. <hkern g1="x.sc"
  2034. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2035. k="30" />
  2036. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2037. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2038. k="12" />
  2039. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2040. g2="y,yacute,ydieresis,ycircumflex"
  2041. k="6" />
  2042. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2043. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2044. k="36" />
  2045. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2046. g2="T,Tcommaaccent,Tcaron,uni021A"
  2047. k="60" />
  2048. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2049. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2050. k="60" />
  2051. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2052. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2053. k="18" />
  2054. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2055. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2056. k="18" />
  2057. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2058. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2059. k="18" />
  2060. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2061. g2="uni00A0,space"
  2062. k="18" />
  2063. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2064. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2065. k="30" />
  2066. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2067. g2="W,Wcircumflex"
  2068. k="12" />
  2069. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2070. g2="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  2071. k="14" />
  2072. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2073. g2="w,wcircumflex"
  2074. k="6" />
  2075. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2076. g2="wcircumflex.sc,w.sc"
  2077. k="6" />
  2078. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2079. g2="Q"
  2080. k="18" />
  2081. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2082. g2="V"
  2083. k="30" />
  2084. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2085. g2="quotedblleft"
  2086. k="48" />
  2087. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2088. g2="quotedblright"
  2089. k="60" />
  2090. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2091. g2="quoteleft"
  2092. k="48" />
  2093. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2094. g2="quoteright"
  2095. k="60" />
  2096. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2097. g2="registered"
  2098. k="78" />
  2099. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2100. g2="trademark"
  2101. k="50" />
  2102. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2103. g2="v"
  2104. k="6" />
  2105. <hkern g1="A,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2106. g2="v.sc"
  2107. k="6" />
  2108. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2109. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2110. k="12" />
  2111. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2112. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2113. k="18" />
  2114. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2115. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2116. k="18" />
  2117. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2118. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2119. k="12" />
  2120. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2121. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2122. k="12" />
  2123. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2124. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2125. k="12" />
  2126. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2127. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2128. k="12" />
  2129. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2130. g2="y,yacute,ydieresis,ycircumflex"
  2131. k="18" />
  2132. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2133. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2134. k="24" />
  2135. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2136. g2="T,Tcommaaccent,Tcaron,uni021A"
  2137. k="6" />
  2138. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2139. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2140. k="12" />
  2141. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2142. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2143. k="12" />
  2144. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2145. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2146. k="12" />
  2147. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2148. g2="w,wcircumflex"
  2149. k="18" />
  2150. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2151. g2="wcircumflex.sc,w.sc"
  2152. k="18" />
  2153. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2154. g2="Q"
  2155. k="12" />
  2156. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2157. g2="v"
  2158. k="18" />
  2159. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2160. g2="v.sc"
  2161. k="18" />
  2162. <hkern g1="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2163. g2="OE"
  2164. k="12" />
  2165. <hkern g1="D,Dcaron,Dcroat,Eth"
  2166. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2167. k="24" />
  2168. <hkern g1="D,Dcaron,Dcroat,Eth"
  2169. g2="J,Jcircumflex"
  2170. k="60" />
  2171. <hkern g1="D,Dcaron,Dcroat,Eth"
  2172. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2173. k="18" />
  2174. <hkern g1="D,Dcaron,Dcroat,Eth"
  2175. g2="period,ellipsis"
  2176. k="48" />
  2177. <hkern g1="D,Dcaron,Dcroat,Eth"
  2178. g2="T,Tcommaaccent,Tcaron,uni021A"
  2179. k="27" />
  2180. <hkern g1="D,Dcaron,Dcroat,Eth"
  2181. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2182. k="36" />
  2183. <hkern g1="D,Dcaron,Dcroat,Eth"
  2184. g2="V"
  2185. k="12" />
  2186. <hkern g1="D,Dcaron,Dcroat,Eth"
  2187. g2="X"
  2188. k="25" />
  2189. <hkern g1="D,Dcaron,Dcroat,Eth"
  2190. g2="comma"
  2191. k="48" />
  2192. <hkern g1="D,Dcaron,Dcroat,Eth"
  2193. g2="Z,Zcaron,Zacute,Zdotaccent"
  2194. k="12" />
  2195. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2196. g2="y,yacute,ydieresis,ycircumflex"
  2197. k="12" />
  2198. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2199. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2200. k="24" />
  2201. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2202. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2203. k="30" />
  2204. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2205. g2="w,wcircumflex"
  2206. k="12" />
  2207. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2208. g2="wcircumflex.sc,w.sc"
  2209. k="12" />
  2210. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2211. g2="v"
  2212. k="12" />
  2213. <hkern g1="E,AE,Eacute,Edieresis,Egrave,Emacron,Ebreve,Ecircumflex,Edotaccent,Ecaron,Eogonek"
  2214. g2="v.sc"
  2215. k="12" />
  2216. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2217. g2="y,yacute,ydieresis,ycircumflex"
  2218. k="24" />
  2219. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2220. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2221. k="36" />
  2222. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2223. g2="T,Tcommaaccent,Tcaron,uni021A"
  2224. k="48" />
  2225. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2226. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2227. k="48" />
  2228. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2229. g2="W,Wcircumflex"
  2230. k="12" />
  2231. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2232. g2="w,wcircumflex"
  2233. k="24" />
  2234. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2235. g2="wcircumflex.sc,w.sc"
  2236. k="24" />
  2237. <hkern g1="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2238. g2="V"
  2239. k="6" />
  2240. <hkern g1="K,Kcommaaccent"
  2241. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2242. k="12" />
  2243. <hkern g1="K,Kcommaaccent"
  2244. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2245. k="12" />
  2246. <hkern g1="K,Kcommaaccent"
  2247. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2248. k="12" />
  2249. <hkern g1="K,Kcommaaccent"
  2250. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2251. k="30" />
  2252. <hkern g1="K,Kcommaaccent"
  2253. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2254. k="12" />
  2255. <hkern g1="K,Kcommaaccent"
  2256. g2="hyphen,uni00AD"
  2257. k="24" />
  2258. <hkern g1="K,Kcommaaccent"
  2259. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  2260. k="12" />
  2261. <hkern g1="K,Kcommaaccent"
  2262. g2="l.sc,lacute.sc,lcaron.sc,ldot.sc,lcommaaccent.sc"
  2263. k="12" />
  2264. <hkern g1="K,Kcommaaccent"
  2265. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2266. k="30" />
  2267. <hkern g1="K,Kcommaaccent"
  2268. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2269. k="36" />
  2270. <hkern g1="K,Kcommaaccent"
  2271. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  2272. k="12" />
  2273. <hkern g1="K,Kcommaaccent"
  2274. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2275. k="30" />
  2276. <hkern g1="K,Kcommaaccent"
  2277. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2278. k="36" />
  2279. <hkern g1="K,Kcommaaccent"
  2280. g2="y,yacute,ydieresis,ycircumflex"
  2281. k="24" />
  2282. <hkern g1="K,Kcommaaccent"
  2283. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2284. k="54" />
  2285. <hkern g1="K,Kcommaaccent"
  2286. g2="T,Tcommaaccent,Tcaron,uni021A"
  2287. k="12" />
  2288. <hkern g1="K,Kcommaaccent"
  2289. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2290. k="6" />
  2291. <hkern g1="K,Kcommaaccent"
  2292. g2="hcircumflex.sc,h.sc"
  2293. k="12" />
  2294. <hkern g1="K,Kcommaaccent"
  2295. g2="n.sc,nacute.sc,ncommaaccent.sc,ntilde.sc,ncaron.sc"
  2296. k="12" />
  2297. <hkern g1="K,Kcommaaccent"
  2298. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2299. k="33" />
  2300. <hkern g1="K,Kcommaaccent"
  2301. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2302. k="33" />
  2303. <hkern g1="K,Kcommaaccent"
  2304. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2305. k="33" />
  2306. <hkern g1="K,Kcommaaccent"
  2307. g2="uni00A0,space"
  2308. k="12" />
  2309. <hkern g1="K,Kcommaaccent"
  2310. g2="w,wcircumflex"
  2311. k="30" />
  2312. <hkern g1="K,Kcommaaccent"
  2313. g2="wcircumflex.sc,w.sc"
  2314. k="36" />
  2315. <hkern g1="K,Kcommaaccent"
  2316. g2="Q"
  2317. k="33" />
  2318. <hkern g1="K,Kcommaaccent"
  2319. g2="v"
  2320. k="30" />
  2321. <hkern g1="K,Kcommaaccent"
  2322. g2="v.sc"
  2323. k="36" />
  2324. <hkern g1="K,Kcommaaccent"
  2325. g2="OE"
  2326. k="33" />
  2327. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2328. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2329. k="18" />
  2330. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2331. g2="hyphen,uni00AD"
  2332. k="36" />
  2333. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2334. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2335. k="18" />
  2336. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2337. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2338. k="18" />
  2339. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2340. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2341. k="12" />
  2342. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2343. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2344. k="12" />
  2345. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2346. g2="y,yacute,ydieresis,ycircumflex"
  2347. k="36" />
  2348. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2349. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2350. k="42" />
  2351. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2352. g2="T,Tcommaaccent,Tcaron,uni021A"
  2353. k="86" />
  2354. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2355. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2356. k="86" />
  2357. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2358. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2359. k="30" />
  2360. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2361. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2362. k="30" />
  2363. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2364. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2365. k="30" />
  2366. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2367. g2="uni00A0,space"
  2368. k="24" />
  2369. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2370. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2371. k="48" />
  2372. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2373. g2="W,Wcircumflex"
  2374. k="48" />
  2375. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2376. g2="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  2377. k="24" />
  2378. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2379. g2="Q"
  2380. k="30" />
  2381. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2382. g2="V"
  2383. k="54" />
  2384. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2385. g2="quotedblleft"
  2386. k="84" />
  2387. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2388. g2="quotedblright"
  2389. k="84" />
  2390. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2391. g2="quoteleft"
  2392. k="72" />
  2393. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2394. g2="quoteright"
  2395. k="72" />
  2396. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2397. g2="registered"
  2398. k="120" />
  2399. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2400. g2="trademark"
  2401. k="70" />
  2402. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2403. g2="v"
  2404. k="12" />
  2405. <hkern g1="L,Lcaron,Lacute,Lcommaaccent"
  2406. g2="v.sc"
  2407. k="12" />
  2408. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2409. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2410. k="18" />
  2411. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2412. g2="J,Jcircumflex"
  2413. k="36" />
  2414. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2415. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2416. k="30" />
  2417. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2418. g2="j.sc,jcircumflex.sc"
  2419. k="60" />
  2420. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2421. g2="period,ellipsis"
  2422. k="48" />
  2423. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2424. g2="T,Tcommaaccent,Tcaron,uni021A"
  2425. k="30" />
  2426. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2427. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2428. k="28" />
  2429. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2430. g2="V"
  2431. k="12" />
  2432. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2433. g2="X"
  2434. k="25" />
  2435. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2436. g2="comma"
  2437. k="48" />
  2438. <hkern g1="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2439. g2="Z,Zcaron,Zacute,Zdotaccent"
  2440. k="24" />
  2441. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2442. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2443. k="12" />
  2444. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2445. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2446. k="18" />
  2447. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2448. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2449. k="12" />
  2450. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2451. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2452. k="12" />
  2453. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2454. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2455. k="12" />
  2456. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2457. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2458. k="12" />
  2459. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2460. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2461. k="6" />
  2462. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2463. g2="y,yacute,ydieresis,ycircumflex"
  2464. k="6" />
  2465. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2466. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2467. k="6" />
  2468. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2469. g2="T,Tcommaaccent,Tcaron,uni021A"
  2470. k="12" />
  2471. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2472. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2473. k="7" />
  2474. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2475. g2="w,wcircumflex"
  2476. k="6" />
  2477. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2478. g2="wcircumflex.sc,w.sc"
  2479. k="6" />
  2480. <hkern g1="R,Racute,Rcaron,Rcommaaccent"
  2481. g2="V"
  2482. k="12" />
  2483. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2484. g2="y,yacute,ydieresis,ycircumflex"
  2485. k="12" />
  2486. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2487. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2488. k="48" />
  2489. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2490. g2="T,Tcommaaccent,Tcaron,uni021A"
  2491. k="16" />
  2492. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2493. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2494. k="21" />
  2495. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2496. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2497. k="42" />
  2498. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2499. g2="t,uni021B,tcaron,tcommaaccent"
  2500. k="6" />
  2501. <hkern g1="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  2502. g2="V"
  2503. k="10" />
  2504. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2505. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2506. k="60" />
  2507. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2508. g2="J,Jcircumflex"
  2509. k="108" />
  2510. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2511. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2512. k="96" />
  2513. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2514. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2515. k="96" />
  2516. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2517. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2518. k="96" />
  2519. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2520. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2521. k="72" />
  2522. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2523. g2="hyphen,uni00AD"
  2524. k="90" />
  2525. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2526. g2="i,dotlessi,idieresis,imacron,iogonek,ij,igrave,icircumflex,itilde,iacute"
  2527. k="12" />
  2528. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2529. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  2530. k="72" />
  2531. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2532. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2533. k="96" />
  2534. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2535. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2536. k="96" />
  2537. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2538. g2="period,ellipsis"
  2539. k="78" />
  2540. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2541. g2="r,racute,rcaron,rcommaaccent"
  2542. k="90" />
  2543. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2544. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  2545. k="72" />
  2546. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2547. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2548. k="90" />
  2549. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2550. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2551. k="90" />
  2552. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2553. g2="y,yacute,ydieresis,ycircumflex"
  2554. k="96" />
  2555. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2556. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2557. k="96" />
  2558. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2559. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2560. k="12" />
  2561. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2562. g2="hcircumflex.sc,h.sc"
  2563. k="72" />
  2564. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2565. g2="s,scommaaccent,scircumflex,scaron,scedilla,sacute"
  2566. k="96" />
  2567. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2568. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  2569. k="96" />
  2570. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2571. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2572. k="30" />
  2573. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2574. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2575. k="30" />
  2576. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2577. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2578. k="30" />
  2579. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2580. g2="uni00A0,space"
  2581. k="24" />
  2582. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2583. g2="z.sc,zcaron.sc,zacute.sc,zdotaccent.sc"
  2584. k="66" />
  2585. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2586. g2="w,wcircumflex"
  2587. k="96" />
  2588. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2589. g2="wcircumflex.sc,w.sc"
  2590. k="96" />
  2591. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2592. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  2593. k="96" />
  2594. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2595. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2596. k="96" />
  2597. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2598. g2="Q"
  2599. k="30" />
  2600. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2601. g2="v"
  2602. k="96" />
  2603. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2604. g2="v.sc"
  2605. k="96" />
  2606. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2607. g2="OE"
  2608. k="30" />
  2609. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2610. g2="comma"
  2611. k="78" />
  2612. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2613. g2="colon"
  2614. k="72" />
  2615. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2616. g2="guillemotleft"
  2617. k="60" />
  2618. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2619. g2="guillemotright"
  2620. k="48" />
  2621. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2622. g2="guilsinglleft"
  2623. k="60" />
  2624. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2625. g2="guilsinglright"
  2626. k="36" />
  2627. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2628. g2="semicolon"
  2629. k="72" />
  2630. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2631. g2="Z,Zcaron,Zacute,Zdotaccent"
  2632. k="12" />
  2633. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2634. g2="h,hcircumflex"
  2635. k="18" />
  2636. <hkern g1="T,Tcommaaccent,Tcaron,uni021A"
  2637. g2="z,zcaron,zdotaccent,zacute"
  2638. k="78" />
  2639. <hkern g1="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  2640. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2641. k="14" />
  2642. <hkern g1="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  2643. g2="period,ellipsis"
  2644. k="24" />
  2645. <hkern g1="U,Uacute,Ubreve,Utilde,Ucircumflex,Uogonek,Uring,Umacron,Ugrave,Uhungarumlaut,Udieresis"
  2646. g2="comma"
  2647. k="24" />
  2648. <hkern g1="W,Wcircumflex"
  2649. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2650. k="12" />
  2651. <hkern g1="W,Wcircumflex"
  2652. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2653. k="36" />
  2654. <hkern g1="W,Wcircumflex"
  2655. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2656. k="36" />
  2657. <hkern g1="W,Wcircumflex"
  2658. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2659. k="36" />
  2660. <hkern g1="W,Wcircumflex"
  2661. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2662. k="30" />
  2663. <hkern g1="W,Wcircumflex"
  2664. g2="hyphen,uni00AD"
  2665. k="12" />
  2666. <hkern g1="W,Wcircumflex"
  2667. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  2668. k="30" />
  2669. <hkern g1="W,Wcircumflex"
  2670. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2671. k="36" />
  2672. <hkern g1="W,Wcircumflex"
  2673. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2674. k="30" />
  2675. <hkern g1="W,Wcircumflex"
  2676. g2="period,ellipsis"
  2677. k="66" />
  2678. <hkern g1="W,Wcircumflex"
  2679. g2="r,racute,rcaron,rcommaaccent"
  2680. k="24" />
  2681. <hkern g1="W,Wcircumflex"
  2682. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  2683. k="30" />
  2684. <hkern g1="W,Wcircumflex"
  2685. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2686. k="24" />
  2687. <hkern g1="W,Wcircumflex"
  2688. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2689. k="24" />
  2690. <hkern g1="W,Wcircumflex"
  2691. g2="y,yacute,ydieresis,ycircumflex"
  2692. k="24" />
  2693. <hkern g1="W,Wcircumflex"
  2694. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2695. k="24" />
  2696. <hkern g1="W,Wcircumflex"
  2697. g2="hcircumflex.sc,h.sc"
  2698. k="30" />
  2699. <hkern g1="W,Wcircumflex"
  2700. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2701. k="12" />
  2702. <hkern g1="W,Wcircumflex"
  2703. g2="uni00A0,space"
  2704. k="12" />
  2705. <hkern g1="W,Wcircumflex"
  2706. g2="quotedblleft"
  2707. k="-18" />
  2708. <hkern g1="W,Wcircumflex"
  2709. g2="quotedblright"
  2710. k="-18" />
  2711. <hkern g1="W,Wcircumflex"
  2712. g2="quoteleft"
  2713. k="-18" />
  2714. <hkern g1="W,Wcircumflex"
  2715. g2="quoteright"
  2716. k="-18" />
  2717. <hkern g1="W,Wcircumflex"
  2718. g2="comma"
  2719. k="66" />
  2720. <hkern g1="W,Wcircumflex"
  2721. g2="colon"
  2722. k="24" />
  2723. <hkern g1="W,Wcircumflex"
  2724. g2="guillemotleft"
  2725. k="24" />
  2726. <hkern g1="W,Wcircumflex"
  2727. g2="guillemotright"
  2728. k="18" />
  2729. <hkern g1="W,Wcircumflex"
  2730. g2="guilsinglleft"
  2731. k="18" />
  2732. <hkern g1="W,Wcircumflex"
  2733. g2="guilsinglright"
  2734. k="18" />
  2735. <hkern g1="W,Wcircumflex"
  2736. g2="semicolon"
  2737. k="24" />
  2738. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2739. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  2740. k="60" />
  2741. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2742. g2="J,Jcircumflex"
  2743. k="120" />
  2744. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2745. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2746. k="93" />
  2747. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2748. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2749. k="102" />
  2750. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2751. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2752. k="93" />
  2753. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2754. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2755. k="90" />
  2756. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2757. g2="hyphen,uni00AD"
  2758. k="90" />
  2759. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2760. g2="i,dotlessi,idieresis,imacron,iogonek,ij,igrave,icircumflex,itilde,iacute"
  2761. k="24" />
  2762. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2763. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  2764. k="90" />
  2765. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2766. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2767. k="93" />
  2768. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2769. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2770. k="102" />
  2771. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2772. g2="period,ellipsis"
  2773. k="78" />
  2774. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2775. g2="r,racute,rcaron,rcommaaccent"
  2776. k="78" />
  2777. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2778. g2="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc"
  2779. k="90" />
  2780. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2781. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2782. k="80" />
  2783. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2784. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2785. k="90" />
  2786. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2787. g2="s,scommaaccent,scircumflex,scaron,scedilla,sacute"
  2788. k="90" />
  2789. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2790. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  2791. k="90" />
  2792. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2793. g2="C,Ccircumflex,Cdotaccent,Ccedilla,Ccaron,Cacute"
  2794. k="28" />
  2795. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2796. g2="G,Gbreve,Gcircumflex,Gcommaaccent,Gdotaccent"
  2797. k="28" />
  2798. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2799. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2800. k="28" />
  2801. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2802. g2="uni00A0,space"
  2803. k="24" />
  2804. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2805. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  2806. k="93" />
  2807. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2808. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2809. k="90" />
  2810. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2811. g2="d,dcroat,dcaron"
  2812. k="93" />
  2813. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2814. g2="Q"
  2815. k="28" />
  2816. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2817. g2="v"
  2818. k="72" />
  2819. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2820. g2="v.sc"
  2821. k="72" />
  2822. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2823. g2="OE"
  2824. k="24" />
  2825. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2826. g2="comma"
  2827. k="78" />
  2828. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2829. g2="colon"
  2830. k="60" />
  2831. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2832. g2="guillemotleft"
  2833. k="60" />
  2834. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2835. g2="guillemotright"
  2836. k="24" />
  2837. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2838. g2="guilsinglleft"
  2839. k="36" />
  2840. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2841. g2="guilsinglright"
  2842. k="24" />
  2843. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2844. g2="semicolon"
  2845. k="60" />
  2846. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2847. g2="q"
  2848. k="93" />
  2849. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2850. g2="q.sc"
  2851. k="102" />
  2852. <hkern g1="Y,Yacute,Ydieresis,Ycircumflex"
  2853. g2="dcroat.sc,dcaron.sc,d.sc"
  2854. k="90" />
  2855. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2856. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2857. k="12" />
  2858. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2859. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2860. k="12" />
  2861. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2862. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2863. k="12" />
  2864. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2865. g2="ebreve.sc,emacron.sc,eacute.sc,edieresis.sc,ecaron.sc,eogonek.sc,e.sc,ecircumflex.sc,edotaccent.sc,egrave.sc"
  2866. k="12" />
  2867. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2868. g2="hyphen,uni00AD"
  2869. k="36" />
  2870. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2871. g2="iogonek.sc,imacron.sc,ij.sc,idieresis.sc,iacute.sc,i.sc,igrave.sc,icircumflex.sc,itilde.sc"
  2872. k="12" />
  2873. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2874. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  2875. k="12" />
  2876. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2877. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2878. k="12" />
  2879. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2880. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  2881. k="6" />
  2882. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2883. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2884. k="18" />
  2885. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2886. g2="y,yacute,ydieresis,ycircumflex"
  2887. k="18" />
  2888. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2889. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2890. k="18" />
  2891. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2892. g2="hcircumflex.sc,h.sc"
  2893. k="12" />
  2894. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2895. g2="O,Oslash,Ocircumflex,Oacute,Odieresis,Ograve,Omacron,Obreve,Ohungarumlaut,Otilde"
  2896. k="24" />
  2897. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2898. g2="w,wcircumflex"
  2899. k="18" />
  2900. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2901. g2="wcircumflex.sc,w.sc"
  2902. k="18" />
  2903. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2904. g2="guillemotleft"
  2905. k="48" />
  2906. <hkern g1="Z,Zcaron,Zacute,Zdotaccent"
  2907. g2="guilsinglleft"
  2908. k="48" />
  2909. <hkern g1="a,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2910. g2="t,uni021B,tcaron,tcommaaccent"
  2911. k="10" />
  2912. <hkern g1="a,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2913. g2="quotedblright"
  2914. k="24" />
  2915. <hkern g1="a,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2916. g2="quoteright"
  2917. k="24" />
  2918. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2919. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2920. k="6" />
  2921. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2922. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  2923. k="12" />
  2924. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2925. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2926. k="30" />
  2927. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2928. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2929. k="24" />
  2930. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2931. g2="wcircumflex.sc,w.sc"
  2932. k="12" />
  2933. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2934. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2935. k="6" />
  2936. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2937. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  2938. k="6" />
  2939. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2940. g2="quotedblright"
  2941. k="48" />
  2942. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2943. g2="quoteright"
  2944. k="42" />
  2945. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2946. g2="registered"
  2947. k="30" />
  2948. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2949. g2="trademark"
  2950. k="60" />
  2951. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2952. g2="v.sc"
  2953. k="18" />
  2954. <hkern g1="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,abreve.sc,adieresis.sc"
  2955. g2="q.sc"
  2956. k="6" />
  2957. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2958. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  2959. k="6" />
  2960. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2961. g2="hyphen,uni00AD"
  2962. k="24" />
  2963. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2964. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  2965. k="12" />
  2966. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2967. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2968. k="6" />
  2969. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2970. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2971. k="12" />
  2972. <hkern g1="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  2973. g2="q.sc"
  2974. k="12" />
  2975. <hkern g1="e,ae,oe,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2976. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  2977. k="6" />
  2978. <hkern g1="e,ae,oe,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  2979. g2="x"
  2980. k="10" />
  2981. <hkern g1="hyphen,uni00AD"
  2982. g2="J,Jcircumflex"
  2983. k="12" />
  2984. <hkern g1="hyphen,uni00AD"
  2985. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  2986. k="36" />
  2987. <hkern g1="hyphen,uni00AD"
  2988. g2="T,Tcommaaccent,Tcaron,uni021A"
  2989. k="90" />
  2990. <hkern g1="hyphen,uni00AD"
  2991. g2="Y,Yacute,Ydieresis,Ycircumflex"
  2992. k="90" />
  2993. <hkern g1="hyphen,uni00AD"
  2994. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  2995. k="30" />
  2996. <hkern g1="hyphen,uni00AD"
  2997. g2="W,Wcircumflex"
  2998. k="12" />
  2999. <hkern g1="hyphen,uni00AD"
  3000. g2="V"
  3001. k="24" />
  3002. <hkern g1="hyphen,uni00AD"
  3003. g2="X"
  3004. k="24" />
  3005. <hkern g1="hyphen,uni00AD"
  3006. g2="x"
  3007. k="12" />
  3008. <hkern g1="hyphen,uni00AD"
  3009. g2="seven.onum"
  3010. k="60" />
  3011. <hkern g1="hyphen,uni00AD"
  3012. g2="x.sc"
  3013. k="12" />
  3014. <hkern g1="hyphen,uni00AD"
  3015. g2="S,Scaron,Scedilla,Sacute,Scircumflex,Scommaaccent"
  3016. k="12" />
  3017. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3018. g2="hyphen,uni00AD"
  3019. k="30" />
  3020. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3021. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3022. k="24" />
  3023. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3024. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  3025. k="12" />
  3026. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3027. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3028. k="48" />
  3029. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3030. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  3031. k="30" />
  3032. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3033. g2="wcircumflex.sc,w.sc"
  3034. k="42" />
  3035. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3036. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  3037. k="24" />
  3038. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3039. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  3040. k="24" />
  3041. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3042. g2="quotedblleft"
  3043. k="42" />
  3044. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3045. g2="quotedblright"
  3046. k="42" />
  3047. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3048. g2="quoteleft"
  3049. k="30" />
  3050. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3051. g2="quoteright"
  3052. k="30" />
  3053. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3054. g2="registered"
  3055. k="60" />
  3056. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3057. g2="trademark"
  3058. k="60" />
  3059. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3060. g2="v.sc"
  3061. k="42" />
  3062. <hkern g1="l.sc,lacute.sc,fl.sc,lcommaaccent.sc"
  3063. g2="q.sc"
  3064. k="24" />
  3065. <hkern g1="o,oslash,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  3066. g2="period,ellipsis"
  3067. k="12" />
  3068. <hkern g1="o,oslash,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  3069. g2="comma"
  3070. k="12" />
  3071. <hkern g1="o,oslash,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  3072. g2="x"
  3073. k="10" />
  3074. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3075. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3076. k="6" />
  3077. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3078. g2="j.sc,jcircumflex.sc"
  3079. k="24" />
  3080. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3081. g2="period,ellipsis"
  3082. k="24" />
  3083. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3084. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3085. k="18" />
  3086. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3087. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  3088. k="18" />
  3089. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3090. g2="z.sc,zcaron.sc,zacute.sc,zdotaccent.sc"
  3091. k="18" />
  3092. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3093. g2="v.sc"
  3094. k="6" />
  3095. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3096. g2="comma"
  3097. k="24" />
  3098. <hkern g1="ohungarumlaut.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3099. g2="x.sc"
  3100. k="30" />
  3101. <hkern g1="period,ellipsis"
  3102. g2="hyphen,uni00AD"
  3103. k="36" />
  3104. <hkern g1="period,ellipsis"
  3105. g2="T,Tcommaaccent,Tcaron,uni021A"
  3106. k="96" />
  3107. <hkern g1="period,ellipsis"
  3108. g2="Y,Yacute,Ydieresis,Ycircumflex"
  3109. k="72" />
  3110. <hkern g1="period,ellipsis"
  3111. g2="uni00A0,space"
  3112. k="30" />
  3113. <hkern g1="period,ellipsis"
  3114. g2="W,Wcircumflex"
  3115. k="54" />
  3116. <hkern g1="period,ellipsis"
  3117. g2="V"
  3118. k="66" />
  3119. <hkern g1="period,ellipsis"
  3120. g2="quotedblleft"
  3121. k="84" />
  3122. <hkern g1="period,ellipsis"
  3123. g2="quotedblright"
  3124. k="84" />
  3125. <hkern g1="period,ellipsis"
  3126. g2="quoteleft"
  3127. k="72" />
  3128. <hkern g1="period,ellipsis"
  3129. g2="quoteright"
  3130. k="72" />
  3131. <hkern g1="period,ellipsis"
  3132. g2="guillemotleft"
  3133. k="43" />
  3134. <hkern g1="period,ellipsis"
  3135. g2="guilsinglleft"
  3136. k="48" />
  3137. <hkern g1="period,ellipsis"
  3138. g2="seven.onum"
  3139. k="20" />
  3140. <hkern g1="period,ellipsis"
  3141. g2="one.onum"
  3142. k="20" />
  3143. <hkern g1="r,racute,rcaron,rcommaaccent"
  3144. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  3145. k="13" />
  3146. <hkern g1="r,racute,rcaron,rcommaaccent"
  3147. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  3148. k="18" />
  3149. <hkern g1="r,racute,rcaron,rcommaaccent"
  3150. g2="hyphen,uni00AD"
  3151. k="20" />
  3152. <hkern g1="r,racute,rcaron,rcommaaccent"
  3153. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  3154. k="18" />
  3155. <hkern g1="r,racute,rcaron,rcommaaccent"
  3156. g2="period,ellipsis"
  3157. k="48" />
  3158. <hkern g1="r,racute,rcaron,rcommaaccent"
  3159. g2="t,uni021B,tcaron,tcommaaccent"
  3160. k="12" />
  3161. <hkern g1="r,racute,rcaron,rcommaaccent"
  3162. g2="c,cdotaccent,ccaron,ccedilla,ccircumflex,cacute"
  3163. k="18" />
  3164. <hkern g1="r,racute,rcaron,rcommaaccent"
  3165. g2="d,dcroat,dcaron"
  3166. k="18" />
  3167. <hkern g1="r,racute,rcaron,rcommaaccent"
  3168. g2="g,gdotaccent,gcircumflex,gbreve,gcommaaccent"
  3169. k="18" />
  3170. <hkern g1="r,racute,rcaron,rcommaaccent"
  3171. g2="quotedblleft"
  3172. k="-24" />
  3173. <hkern g1="r,racute,rcaron,rcommaaccent"
  3174. g2="quotedblright"
  3175. k="-24" />
  3176. <hkern g1="r,racute,rcaron,rcommaaccent"
  3177. g2="quoteleft"
  3178. k="-24" />
  3179. <hkern g1="r,racute,rcaron,rcommaaccent"
  3180. g2="quoteright"
  3181. k="-24" />
  3182. <hkern g1="r,racute,rcaron,rcommaaccent"
  3183. g2="comma"
  3184. k="48" />
  3185. <hkern g1="r,racute,rcaron,rcommaaccent"
  3186. g2="q"
  3187. k="18" />
  3188. <hkern g1="uni00A0,space"
  3189. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  3190. k="18" />
  3191. <hkern g1="uni00A0,space"
  3192. g2="J,Jcircumflex"
  3193. k="12" />
  3194. <hkern g1="uni00A0,space"
  3195. g2="T,Tcommaaccent,Tcaron,uni021A"
  3196. k="24" />
  3197. <hkern g1="uni00A0,space"
  3198. g2="Y,Yacute,Ydieresis,Ycircumflex"
  3199. k="24" />
  3200. <hkern g1="uni00A0,space"
  3201. g2="W,Wcircumflex"
  3202. k="12" />
  3203. <hkern g1="uni00A0,space"
  3204. g2="V"
  3205. k="18" />
  3206. <hkern g1="uni00A0,space"
  3207. g2="X"
  3208. k="12" />
  3209. <hkern g1="uni00A0,space"
  3210. g2="guillemotleft"
  3211. k="30" />
  3212. <hkern g1="uni00A0,space"
  3213. g2="guillemotright"
  3214. k="30" />
  3215. <hkern g1="uni00A0,space"
  3216. g2="guilsinglleft"
  3217. k="30" />
  3218. <hkern g1="uni00A0,space"
  3219. g2="guilsinglright"
  3220. k="30" />
  3221. <hkern g1="t,uni021B,tcaron,tcommaaccent"
  3222. g2="t,uni021B,tcaron,tcommaaccent"
  3223. k="15" />
  3224. <hkern g1="t,uni021B,tcaron,tcommaaccent"
  3225. g2="quotedblleft"
  3226. k="-24" />
  3227. <hkern g1="t,uni021B,tcaron,tcommaaccent"
  3228. g2="quotedblright"
  3229. k="-24" />
  3230. <hkern g1="t,uni021B,tcaron,tcommaaccent"
  3231. g2="quoteleft"
  3232. k="-24" />
  3233. <hkern g1="t,uni021B,tcaron,tcommaaccent"
  3234. g2="quoteright"
  3235. k="-24" />
  3236. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3237. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3238. k="24" />
  3239. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3240. g2="hyphen,uni00AD"
  3241. k="30" />
  3242. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3243. g2="j.sc,jcircumflex.sc"
  3244. k="66" />
  3245. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3246. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3247. k="18" />
  3248. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3249. g2="period,ellipsis"
  3250. k="66" />
  3251. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3252. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  3253. k="18" />
  3254. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3255. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  3256. k="18" />
  3257. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3258. g2="quotedblright"
  3259. k="-24" />
  3260. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3261. g2="quoteright"
  3262. k="-24" />
  3263. <hkern g1="tcommaaccent.sc,t.sc,tcaron.sc"
  3264. g2="comma"
  3265. k="66" />
  3266. <hkern g1="w,wcircumflex"
  3267. g2="period,ellipsis"
  3268. k="36" />
  3269. <hkern g1="w,wcircumflex"
  3270. g2="comma"
  3271. k="36" />
  3272. <hkern g1="wcircumflex.sc,w.sc"
  3273. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3274. k="12" />
  3275. <hkern g1="wcircumflex.sc,w.sc"
  3276. g2="period,ellipsis"
  3277. k="36" />
  3278. <hkern g1="wcircumflex.sc,w.sc"
  3279. g2="quotedblright"
  3280. k="-24" />
  3281. <hkern g1="wcircumflex.sc,w.sc"
  3282. g2="quoteright"
  3283. k="-24" />
  3284. <hkern g1="wcircumflex.sc,w.sc"
  3285. g2="comma"
  3286. k="36" />
  3287. <hkern g1="y,yacute,ydieresis,ycircumflex"
  3288. g2="period,ellipsis"
  3289. k="36" />
  3290. <hkern g1="y,yacute,ydieresis,ycircumflex"
  3291. g2="comma"
  3292. k="36" />
  3293. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3294. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3295. k="30" />
  3296. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3297. g2="hyphen,uni00AD"
  3298. k="36" />
  3299. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3300. g2="j.sc,jcircumflex.sc"
  3301. k="90" />
  3302. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3303. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3304. k="18" />
  3305. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3306. g2="period,ellipsis"
  3307. k="78" />
  3308. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3309. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  3310. k="18" />
  3311. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3312. g2="quotedblright"
  3313. k="-24" />
  3314. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3315. g2="comma"
  3316. k="78" />
  3317. <hkern g1="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3318. g2="q.sc"
  3319. k="18" />
  3320. <hkern g1="J,Jcircumflex,IJ"
  3321. g2="A,AE,Aring,Atilde,Aogonek,Amacron,Acircumflex,Agrave,Aacute,Abreve,Adieresis"
  3322. k="12" />
  3323. <hkern g1="J,Jcircumflex,IJ"
  3324. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  3325. k="6" />
  3326. <hkern g1="J,Jcircumflex,IJ"
  3327. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3328. k="12" />
  3329. <hkern g1="g,gdotaccent,gcircumflex,gbreve,gcommaaccent"
  3330. g2="j,jcircumflex,dotlessj"
  3331. k="-12" />
  3332. <hkern g1="k,kcommaaccent"
  3333. g2="a,ae,aacute,abreve,acircumflex,agrave,adieresis,aogonek,aring,amacron,atilde"
  3334. k="6" />
  3335. <hkern g1="k,kcommaaccent"
  3336. g2="e,ecaron,edotaccent,ebreve,eogonek,eacute,edieresis,ecircumflex,emacron,egrave"
  3337. k="18" />
  3338. <hkern g1="k,kcommaaccent"
  3339. g2="hyphen,uni00AD"
  3340. k="24" />
  3341. <hkern g1="k,kcommaaccent"
  3342. g2="o,oslash,oe,ograve,omacron,ohungarumlaut,otilde,odieresis,ocircumflex,oacute,obreve"
  3343. k="20" />
  3344. <hkern g1="k,kcommaaccent"
  3345. g2="u,uhungarumlaut,utilde,umacron,ucircumflex,ugrave,uring,uacute,uogonek,udieresis,ubreve"
  3346. k="12" />
  3347. <hkern g1="k,kcommaaccent"
  3348. g2="y,yacute,ydieresis,ycircumflex"
  3349. k="12" />
  3350. <hkern g1="k,kcommaaccent"
  3351. g2="s,scommaaccent,scircumflex,scaron,scedilla,sacute"
  3352. k="6" />
  3353. <hkern g1="k.sc,kcommaaccent.sc"
  3354. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3355. k="6" />
  3356. <hkern g1="k.sc,kcommaaccent.sc"
  3357. g2="hyphen,uni00AD"
  3358. k="24" />
  3359. <hkern g1="k.sc,kcommaaccent.sc"
  3360. g2="ohungarumlaut.sc,oe.sc,otilde.sc,ocircumflex.sc,obreve.sc,oacute.sc,oslash.sc,omacron.sc,ograve.sc,o.sc,odieresis.sc"
  3361. k="24" />
  3362. <hkern g1="k.sc,kcommaaccent.sc"
  3363. g2="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  3364. k="12" />
  3365. <hkern g1="k.sc,kcommaaccent.sc"
  3366. g2="ydieresis.sc,yacute.sc,ycircumflex.sc,y.sc"
  3367. k="12" />
  3368. <hkern g1="k.sc,kcommaaccent.sc"
  3369. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  3370. k="6" />
  3371. <hkern g1="k.sc,kcommaaccent.sc"
  3372. g2="ccedilla.sc,ccircumflex.sc,ccaron.sc,cacute.sc,c.sc,cdotaccent.sc"
  3373. k="24" />
  3374. <hkern g1="k.sc,kcommaaccent.sc"
  3375. g2="gbreve.sc,g.sc,gdotaccent.sc,gcommaaccent.sc,gcircumflex.sc"
  3376. k="24" />
  3377. <hkern g1="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  3378. g2="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  3379. k="12" />
  3380. <hkern g1="scommaaccent.sc,scircumflex.sc,scaron.sc,s.sc,scedilla.sc,sacute.sc"
  3381. g2="tcommaaccent.sc,t.sc,tcaron.sc"
  3382. k="12" />
  3383. <hkern g1="umacron.sc,ugrave.sc,udieresis.sc,ucircumflex.sc,uhungarumlaut.sc,uring.sc,ubreve.sc,utilde.sc,uogonek.sc,u.sc,uacute.sc"
  3384. g2="aring.sc,aacute.sc,a.sc,aogonek.sc,atilde.sc,acircumflex.sc,agrave.sc,amacron.sc,ae.sc,abreve.sc,adieresis.sc"
  3385. k="12" />
  3386. </font>
  3387. </defs></svg>