ela 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (300) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.gitlab-ci.yml +23 -0
  4. data/Gemfile +7 -0
  5. data/Gemfile.lock +139 -0
  6. data/Guardfile +25 -0
  7. data/LICENSE.txt +205 -0
  8. data/README.de.md +195 -0
  9. data/README.md +66 -0
  10. data/Rakefile +96 -0
  11. data/app/css/screen.styl +425 -0
  12. data/app/css/vendor/stackedit.styl +140 -0
  13. data/app/fonts/Roboto-Italic-webfont.eot +0 -0
  14. data/app/fonts/Roboto-Italic-webfont.svg +642 -0
  15. data/app/fonts/Roboto-Italic-webfont.ttf +0 -0
  16. data/app/fonts/Roboto-Italic-webfont.woff +0 -0
  17. data/app/fonts/Roboto-Light-webfont.eot +0 -0
  18. data/app/fonts/Roboto-Light-webfont.svg +641 -0
  19. data/app/fonts/Roboto-Light-webfont.ttf +0 -0
  20. data/app/fonts/Roboto-Light-webfont.woff +0 -0
  21. data/app/fonts/Roboto-LightItalic-webfont.eot +0 -0
  22. data/app/fonts/Roboto-LightItalic-webfont.svg +641 -0
  23. data/app/fonts/Roboto-LightItalic-webfont.ttf +0 -0
  24. data/app/fonts/Roboto-LightItalic-webfont.woff +0 -0
  25. data/app/fonts/Roboto-Medium-webfont.eot +0 -0
  26. data/app/fonts/Roboto-Medium-webfont.svg +593 -0
  27. data/app/fonts/Roboto-Medium-webfont.ttf +0 -0
  28. data/app/fonts/Roboto-Medium-webfont.woff +0 -0
  29. data/app/fonts/Roboto-MediumItalic-webfont.eot +0 -0
  30. data/app/fonts/Roboto-MediumItalic-webfont.svg +642 -0
  31. data/app/fonts/Roboto-MediumItalic-webfont.ttf +0 -0
  32. data/app/fonts/Roboto-MediumItalic-webfont.woff +0 -0
  33. data/app/fonts/Roboto-Regular-webfont.eot +0 -0
  34. data/app/fonts/Roboto-Regular-webfont.svg +621 -0
  35. data/app/fonts/Roboto-Regular-webfont.ttf +0 -0
  36. data/app/fonts/Roboto-Regular-webfont.woff +0 -0
  37. data/app/fonts/Roboto-Thin-webfont.eot +0 -0
  38. data/app/fonts/Roboto-Thin-webfont.svg +631 -0
  39. data/app/fonts/Roboto-Thin-webfont.ttf +0 -0
  40. data/app/fonts/Roboto-Thin-webfont.woff +0 -0
  41. data/app/fonts/Roboto-ThinItalic-webfont.eot +0 -0
  42. data/app/fonts/Roboto-ThinItalic-webfont.svg +631 -0
  43. data/app/fonts/Roboto-ThinItalic-webfont.ttf +0 -0
  44. data/app/fonts/Roboto-ThinItalic-webfont.woff +0 -0
  45. data/app/fonts/droid_sans_regular.typeface.svg +1 -0
  46. data/app/fonts/fontawesome-webfont.eot +0 -0
  47. data/app/fonts/fontawesome-webfont.svg +2671 -0
  48. data/app/fonts/fontawesome-webfont.ttf +0 -0
  49. data/app/fonts/fontawesome-webfont.woff +0 -0
  50. data/app/fonts/fontawesome-webfont.woff2 +0 -0
  51. data/app/js/lib/application.coffee +83 -0
  52. data/app/js/lib/bootstrap_data.coffee +70 -0
  53. data/app/js/lib/collections/00_limited_collection.coffee +85 -0
  54. data/app/js/lib/collections/curves.coffee +3 -0
  55. data/app/js/lib/collections/named_object_collection.coffee +7 -0
  56. data/app/js/lib/mathjaxConfig.coffee +241 -0
  57. data/app/js/lib/models/app.coffee +58 -0
  58. data/app/js/lib/models/base_app.coffee +62 -0
  59. data/app/js/lib/models/base_app_model.coffee +61 -0
  60. data/app/js/lib/models/base_calculator.coffee +212 -0
  61. data/app/js/lib/models/base_subapp_container.coffee +35 -0
  62. data/app/js/lib/models/curve.coffee +179 -0
  63. data/app/js/lib/router.coffee +26 -0
  64. data/app/js/lib/views/app.coffee +56 -0
  65. data/app/js/lib/views/base_app.coffee +274 -0
  66. data/app/js/lib/views/base_aside.coffee +9 -0
  67. data/app/js/lib/views/base_graph.coffee +477 -0
  68. data/app/js/lib/views/base_subapp_container.coffee +44 -0
  69. data/app/js/lib/views/canvas.coffee +73 -0
  70. data/app/js/lib/views/curve_graph.coffee +163 -0
  71. data/app/js/lib/views/curves_aside.coffee +21 -0
  72. data/app/js/lib/views/curves_list_item.coffee +8 -0
  73. data/app/js/lib/views/grouped_parameters_aside.coffee +14 -0
  74. data/app/js/lib/views/headup.coffee +15 -0
  75. data/app/js/lib/views/help.coffee +86 -0
  76. data/app/js/lib/views/interpolated_graph.coffee +281 -0
  77. data/app/js/lib/views/legend.coffee +138 -0
  78. data/app/js/lib/views/legend_handler.coffee +51 -0
  79. data/app/js/lib/views/overview.coffee +85 -0
  80. data/app/js/lib/views/overview_tile.coffee +18 -0
  81. data/app/js/lib/views/parameters_aside.coffee +12 -0
  82. data/app/js/lib/views/three_graph.coffee +92 -0
  83. data/app/js/vendor/Markdown.Converter.js +1519 -0
  84. data/app/js/vendor/Markdown.Extra.js +874 -0
  85. data/app/js/vendor/Markdown.Toc.coffee +79 -0
  86. data/app/js/vendor/backbone-1.3.3.min.js +2 -0
  87. data/app/js/vendor/backbone-validation-0.11.5.js +8 -0
  88. data/app/js/vendor/backbone.poised/form.coffee +156 -0
  89. data/app/js/vendor/backbone.poised/form/anchor.coffee +26 -0
  90. data/app/js/vendor/backbone.poised/form/base_control.coffee +42 -0
  91. data/app/js/vendor/backbone.poised/form/linked_control.coffee +79 -0
  92. data/app/js/vendor/backbone.poised/form/linked_number_control.coffee +27 -0
  93. data/app/js/vendor/backbone.poised/form/linked_range_control.coffee +53 -0
  94. data/app/js/vendor/backbone.poised/form/linked_select_control.coffee +18 -0
  95. data/app/js/vendor/backbone.poised/form/linked_string_control.coffee +27 -0
  96. data/app/js/vendor/backbone.poised/form/number_control.coffee +25 -0
  97. data/app/js/vendor/backbone.poised/form/range_control.coffee +48 -0
  98. data/app/js/vendor/backbone.poised/form/select_control.coffee +16 -0
  99. data/app/js/vendor/backbone.poised/form/selectbox.coffee +78 -0
  100. data/app/js/vendor/backbone.poised/form/slider.coffee +109 -0
  101. data/app/js/vendor/backbone.poised/form/string_control.coffee +23 -0
  102. data/app/js/vendor/backbone.poised/form/submit_control.coffee +39 -0
  103. data/app/js/vendor/backbone.poised/form/textarea.coffee +36 -0
  104. data/app/js/vendor/backbone.poised/form/textfield.coffee +86 -0
  105. data/app/js/vendor/backbone.poised/form/value.coffee +33 -0
  106. data/app/js/vendor/backbone.poised/form/value_control.coffee +15 -0
  107. data/app/js/vendor/backbone.poised/linked_form.coffee +43 -0
  108. data/app/js/vendor/backbone.poised/list.coffee +97 -0
  109. data/app/js/vendor/backbone.poised/list/add_button.coffee +16 -0
  110. data/app/js/vendor/backbone.poised/list/anchor.coffee +32 -0
  111. data/app/js/vendor/backbone.poised/list/item.coffee +68 -0
  112. data/app/js/vendor/backbone.poised/list/searchfield.coffee +26 -0
  113. data/app/js/vendor/backbone.poised/list/selectable_item.coffee +65 -0
  114. data/app/js/vendor/backbone.poised/patches.coffee +6 -0
  115. data/app/js/vendor/backbone.poised/string_mixin.coffee +23 -0
  116. data/app/js/vendor/backbone.poised/underscore_ext.coffee +2 -0
  117. data/app/js/vendor/backbone.poised/view.coffee +59 -0
  118. data/app/js/vendor/gaussianElimination.coffee +40 -0
  119. data/app/js/vendor/hammer-2.0.8.min.js +7 -0
  120. data/app/js/vendor/jquery-3.1.1.min.js +4 -0
  121. data/app/js/vendor/jquery.after-transition.coffee +20 -0
  122. data/app/js/vendor/jquery.backbone-hammer.coffee +28 -0
  123. data/app/js/vendor/jquery.keyboard-modifiers.coffee +22 -0
  124. data/app/js/vendor/jquery.mark-5.2.3.min.js +7 -0
  125. data/app/js/vendor/jquery.scrollTo-2.1.2.min.js +7 -0
  126. data/app/js/vendor/js-yaml-3.4.3.min.js +3 -0
  127. data/app/js/vendor/markup_text.coffee +95 -0
  128. data/app/js/vendor/mathjax/MathJax.js +19 -0
  129. data/app/js/vendor/mathjax/extensions/MathEvents.js +19 -0
  130. data/app/js/vendor/mathjax/extensions/tex2jax.js +19 -0
  131. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot +0 -0
  132. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot +0 -0
  133. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot +0 -0
  134. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot +0 -0
  135. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot +0 -0
  136. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot +0 -0
  137. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot +0 -0
  138. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot +0 -0
  139. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot +0 -0
  140. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot +0 -0
  141. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot +0 -0
  142. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot +0 -0
  143. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot +0 -0
  144. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot +0 -0
  145. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot +0 -0
  146. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot +0 -0
  147. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot +0 -0
  148. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot +0 -0
  149. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot +0 -0
  150. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot +0 -0
  151. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot +0 -0
  152. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf +0 -0
  153. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf +0 -0
  154. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf +0 -0
  155. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf +0 -0
  156. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf +0 -0
  157. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf +0 -0
  158. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf +0 -0
  159. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf +0 -0
  160. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf +0 -0
  161. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf +0 -0
  162. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf +0 -0
  163. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf +0 -0
  164. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf +0 -0
  165. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf +0 -0
  166. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf +0 -0
  167. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf +0 -0
  168. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf +0 -0
  169. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf +0 -0
  170. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf +0 -0
  171. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf +0 -0
  172. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf +0 -0
  173. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf +0 -0
  174. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg +765 -0
  175. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg +136 -0
  176. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg +134 -0
  177. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg +319 -0
  178. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg +309 -0
  179. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg +656 -0
  180. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg +374 -0
  181. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg +659 -0
  182. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg +331 -0
  183. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg +331 -0
  184. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg +330 -0
  185. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg +280 -0
  186. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg +245 -0
  187. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg +211 -0
  188. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg +160 -0
  189. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg +110 -0
  190. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg +109 -0
  191. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg +49 -0
  192. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg +102 -0
  193. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg +322 -0
  194. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg +39 -0
  195. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff +0 -0
  196. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff +0 -0
  197. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff +0 -0
  198. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff +0 -0
  199. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff +0 -0
  200. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff +0 -0
  201. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff +0 -0
  202. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff +0 -0
  203. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff +0 -0
  204. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff +0 -0
  205. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff +0 -0
  206. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff +0 -0
  207. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff +0 -0
  208. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff +0 -0
  209. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff +0 -0
  210. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff +0 -0
  211. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff +0 -0
  212. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff +0 -0
  213. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff +0 -0
  214. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff +0 -0
  215. data/app/js/vendor/mathjax/jax/element/mml/jax.js +19 -0
  216. data/app/js/vendor/mathjax/jax/element/mml/optable/Arrows.js +19 -0
  217. data/app/js/vendor/mathjax/jax/element/mml/optable/BasicLatin.js +19 -0
  218. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiacritMarks.js +19 -0
  219. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiactForSymbols.js +19 -0
  220. data/app/js/vendor/mathjax/jax/element/mml/optable/Dingbats.js +19 -0
  221. data/app/js/vendor/mathjax/jax/element/mml/optable/GeneralPunctuation.js +19 -0
  222. data/app/js/vendor/mathjax/jax/element/mml/optable/GeometricShapes.js +19 -0
  223. data/app/js/vendor/mathjax/jax/element/mml/optable/GreekAndCoptic.js +19 -0
  224. data/app/js/vendor/mathjax/jax/element/mml/optable/Latin1Supplement.js +19 -0
  225. data/app/js/vendor/mathjax/jax/element/mml/optable/LetterlikeSymbols.js +19 -0
  226. data/app/js/vendor/mathjax/jax/element/mml/optable/MathOperators.js +19 -0
  227. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js +19 -0
  228. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js +19 -0
  229. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js +19 -0
  230. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscTechnical.js +19 -0
  231. data/app/js/vendor/mathjax/jax/element/mml/optable/SpacingModLetters.js +19 -0
  232. data/app/js/vendor/mathjax/jax/element/mml/optable/SuppMathOperators.js +19 -0
  233. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsA.js +19 -0
  234. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsB.js +19 -0
  235. data/app/js/vendor/mathjax/jax/input/TeX/config.js +19 -0
  236. data/app/js/vendor/mathjax/jax/input/TeX/jax.js +19 -0
  237. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js +19 -0
  238. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/maction.js +19 -0
  239. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/menclose.js +19 -0
  240. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mglyph.js +19 -0
  241. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js +19 -0
  242. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/ms.js +19 -0
  243. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mtable.js +19 -0
  244. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/multiline.js +19 -0
  245. data/app/js/vendor/mathjax/jax/output/CommonHTML/config.js +19 -0
  246. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js +19 -0
  247. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js +19 -0
  248. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js +19 -0
  249. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js +19 -0
  250. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js +19 -0
  251. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js +19 -0
  252. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js +19 -0
  253. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js +19 -0
  254. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js +19 -0
  255. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js +19 -0
  256. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js +19 -0
  257. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js +19 -0
  258. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js +19 -0
  259. data/app/js/vendor/mathjax/jax/output/CommonHTML/jax.js +19 -0
  260. data/app/js/vendor/modernizr-custom-3.3.1.min.js +3 -0
  261. data/app/js/vendor/persistjs-git.js +1136 -0
  262. data/app/js/vendor/poised/poised.general.coffee +21 -0
  263. data/app/js/vendor/poised/poised.tabs.coffee +31 -0
  264. data/app/js/vendor/poised/utils.coffee +11 -0
  265. data/app/js/vendor/request_animation_frame.coffee +19 -0
  266. data/app/js/vendor/three-82.min.js +15 -0
  267. data/app/js/vendor/three-CanvasRenderer-82.js +1118 -0
  268. data/app/js/vendor/three-Projector-82.js +929 -0
  269. data/app/js/vendor/underscore-1.8.3.min.js +6 -0
  270. data/app/js/vendor/webfontloader-1.6.26.min.js +33 -0
  271. data/app/views/aliasing/legend.jst.hamlc +6 -0
  272. data/app/views/composites/composites_list_item_label.jst.hamlc +3 -0
  273. data/app/views/composites/import_composites_aside.jst.hamlc +6 -0
  274. data/app/views/composites/mix_preset_list_item_label.jst.hamlc +8 -0
  275. data/app/views/composites/share_aside.jst.hamlc +7 -0
  276. data/app/views/doc/airplanes_list_item_label.jst.hamlc +3 -0
  277. data/app/views/doc/import_airplanes_aside.jst.hamlc +6 -0
  278. data/app/views/doc/share_aside.jst.hamlc +7 -0
  279. data/app/views/general/app.jst.hamlc +42 -0
  280. data/app/views/general/curves_list_item_label.jst.hamlc +5 -0
  281. data/app/views/general/help.jst.hamlc +7 -0
  282. data/app/views/general/tabs.jst.hamlc +6 -0
  283. data/app/views/index.haml +24 -0
  284. data/app/views/overview/app.jst.hamlc +7 -0
  285. data/app/views/overview/tile.jst.hamlc +4 -0
  286. data/bin/console +14 -0
  287. data/bin/setup +8 -0
  288. data/ela.gemspec +50 -0
  289. data/exe/ela +59 -0
  290. data/lib/ela.rb +8 -0
  291. data/lib/ela/jasmine.rb +87 -0
  292. data/lib/ela/server.rb +136 -0
  293. data/lib/ela/utils.rb +131 -0
  294. data/lib/ela/version.rb +3 -0
  295. data/package-lock.json +899 -0
  296. data/package.json +11 -0
  297. data/support/project/Guardfile +64 -0
  298. data/support/project/jasmine.yml +3 -0
  299. data/support/server.ru +5 -0
  300. metadata +4365 -0
Binary file
Binary file
@@ -0,0 +1,641 @@
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">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="robotolight_italic" horiz-adv-x="1072" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="474" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1035" d="M130 0l197 984h-167l19 98h167l28 138q37 184 142 272.5t267 88.5q58 0 121.5 -15.5t123.5 -43.5l-40 -103q-50 25 -101 39t-118 14q-106 0 -180.5 -66t-98.5 -186l-28 -138h233l-19 -98h-233l-197 -984h-116zM670 0l216 1082h116l-216 -1082h-116z" />
10
+ <glyph horiz-adv-x="2048" />
11
+ <glyph horiz-adv-x="2048" />
12
+ <glyph unicode="&#xd;" horiz-adv-x="474" />
13
+ <glyph unicode=" " horiz-adv-x="474" />
14
+ <glyph unicode="&#x09;" horiz-adv-x="474" />
15
+ <glyph unicode="&#xa0;" horiz-adv-x="474" />
16
+ <glyph unicode="!" horiz-adv-x="444" d="M68 0l33 167h135l-33 -167h-135zM173 478l195 978h116l-195 -978h-116z" />
17
+ <glyph unicode="&#x22;" horiz-adv-x="562" d="M225 1083l43 255l36 222h98l-35 -216l-74 -261h-68zM451 1083l45 258l35 219h98l-35 -216l-75 -261h-68z" />
18
+ <glyph unicode="#" horiz-adv-x="1191" d="M64 410l19 93h252l166 441h-259l19 96h276l156 416h96l-156 -416h288l157 416h96l-157 -416h211l-19 -96h-228l-166 -441h237l-19 -93h-253l-154 -410h-96l154 410h-288l-153 -410h-96l153 410h-236zM431 503h288l166 441h-288z" />
19
+ <glyph unicode="$" horiz-adv-x="1067" d="M109 418h116q-30 -185 49.5 -259t213.5 -74q131 0 225.5 78.5t113.5 195.5q18 114 -36 182t-213 133q-183 66 -261.5 159t-51.5 262q26 169 134 268t272 112l32 202h98l-32 -203q154 -17 227.5 -133.5t42.5 -312.5h-115q25 158 -32.5 250t-191.5 92q-130 0 -215.5 -78.5 t-103.5 -194.5q-20 -118 31.5 -185t220.5 -132q182 -69 259.5 -160.5t51.5 -258.5q-28 -172 -139 -269t-279 -111l-30 -189h-98l30 189q-161 13 -257 118.5t-62 318.5z" />
20
+ <glyph unicode="%" horiz-adv-x="1417" d="M242 1099l15 77q27 135 115.5 218t210.5 83q111 0 170 -88.5t35 -212.5l-15 -77q-28 -135 -115.5 -217t-207.5 -82q-113 0 -173 87.5t-35 211.5zM310 169l889 1138l62 -48l-890 -1138zM334 1099q-19 -93 14 -152.5t119 -59.5q76 0 136 63t78 149l15 77q19 93 -13.5 153.5 t-116.5 60.5q-77 0 -138.5 -64.5t-78.5 -149.5zM757 279l15 78q27 134 115.5 217t210.5 83q111 0 170.5 -88.5t35.5 -211.5l-15 -78q-28 -135 -116 -217.5t-208 -82.5q-113 0 -173 88t-35 212zM850 279q-20 -94 13 -153.5t119 -59.5q76 0 136 63.5t78 149.5l15 78 q19 96 -13.5 154.5t-116.5 58.5q-77 0 -138 -62.5t-78 -150.5z" />
21
+ <glyph unicode="&#x26;" horiz-adv-x="1183" d="M77 371q20 125 101 217.5t229 195.5l15 10q-60 102 -83.5 184t-8.5 169q26 164 121 247t242 83q130 0 199 -81.5t50 -203.5q-15 -95 -66.5 -156.5t-144.5 -128.5l-166 -121l303 -477q57 71 96 157.5t55 184.5h106q-22 -133 -72 -238t-129 -191l141 -222h-139l-89 139 q-91 -77 -191 -118.5t-208 -41.5q-188 0 -288.5 108.5t-72.5 283.5zM193 371q-21 -129 44.5 -210t216.5 -81q81 0 167.5 36.5t163.5 104.5l-305 480q-3 3 -5 6.5t-5 8.5l-48 -35q-121 -94 -170 -170t-59 -140zM446 1149q-12 -68 6 -137.5t65 -149.5l184 131q61 45 91 94 t40 105q13 81 -27.5 132t-127.5 51q-90 0 -153.5 -65.5t-77.5 -160.5z" />
22
+ <glyph unicode="'" horiz-adv-x="334" d="M216 1090l50 266l33 204h98l-32 -195l-81 -275h-68z" />
23
+ <glyph unicode="(" horiz-adv-x="608" d="M157 573l2 15q60 377 234 657t352 379l6 -1l12 -72q-150 -103 -292.5 -366t-194.5 -594l-4 -20q-55 -344 3 -599.5t177 -364.5l-35 -69h-6q-145 100 -229.5 382t-24.5 653z" />
24
+ <glyph unicode=")" horiz-adv-x="618" d="M-112 -393q149 103 292.5 368t196.5 596l4 20q54 341 -6 600t-175 364l36 69h6q141 -98 225.5 -386t27.5 -650l-2 -15q-62 -387 -234 -660.5t-351 -375.5l-6 1z" />
25
+ <glyph unicode="*" horiz-adv-x="819" d="M169 1108l51 101l281 -123l70 370h100l-81 -373l324 127l12 -101l-331 -115l147 -294l-95 -63l-136 305l-248 -303l-70 61l260 300z" />
26
+ <glyph unicode="+" horiz-adv-x="1085" d="M116 628l22 112h402l93 466h117l-93 -466h409l-22 -112h-410l-96 -482h-117l96 482h-401z" />
27
+ <glyph unicode="," horiz-adv-x="375" d="M-57 -258l120 279l34 167h116l-34 -170l-158 -276h-78z" />
28
+ <glyph unicode="-" horiz-adv-x="554" d="M79 570l20 101h446l-20 -101h-446z" />
29
+ <glyph unicode="." horiz-adv-x="468" d="M75 0l33 164h131l-33 -164h-131z" />
30
+ <glyph unicode="/" horiz-adv-x="768" d="M-78 -125l882 1581h103l-880 -1581h-105z" />
31
+ <glyph unicode="0" horiz-adv-x="1089" d="M150 565l65 325q59 299 197.5 443t340.5 144q186 0 273.5 -155.5t32.5 -431.5l-65 -325q-60 -300 -198 -443t-340 -143q-185 0 -273.5 155t-32.5 431zM262 547q-47 -236 7.5 -351.5t206.5 -115.5q139 0 246.5 124.5t151.5 342.5l73 363q47 238 -7.5 351.5t-206.5 113.5 q-139 0 -247 -123t-151 -342z" />
32
+ <glyph unicode="1" horiz-adv-x="1067" d="M352 1288l16 84l476 88l-293 -1467h-116l267 1338z" />
33
+ <glyph unicode="2" horiz-adv-x="1067" d="M61 0l15 92l530 541q147 149 213 249.5t81 192.5q22 141 -35 220.5t-186 79.5q-147 0 -244.5 -93t-121.5 -245h-107l-2 6q26 189 159 311.5t332 122.5q168 0 259.5 -109t63.5 -289q-21 -125 -107.5 -243t-240.5 -276l-446 -453l3 -6h693l-16 -101h-843z" />
34
+ <glyph unicode="3" horiz-adv-x="1067" d="M94 390l2 5h109q-24 -145 50.5 -230t216.5 -85q137 0 232.5 81.5t119.5 229.5q25 160 -45 230t-228 70h-131l3 21l9 58l4 23h131q141 0 231 80t110 204q23 141 -35 219.5t-198 78.5q-125 0 -222.5 -83t-118.5 -217h-107l-2 6q24 178 155 287t311 109q175 0 268.5 -108 t64.5 -296q-18 -108 -91.5 -197.5t-188.5 -131.5q118 -41 167 -133.5t29 -215.5q-32 -201 -165 -308.5t-319 -107.5q-173 0 -285 109.5t-77 301.5z" />
35
+ <glyph unicode="4" horiz-adv-x="1067" d="M57 368l13 68l827 1020h126l-198 -987h211l-20 -101h-211l-73 -368h-115l73 368h-633zM217 474l3 -5h490l165 824l-6 2l-65 -103z" />
36
+ <glyph unicode="5" horiz-adv-x="1067" d="M155 378l3 5h104q-24 -153 40 -228t193 -75q143 0 235.5 99t122.5 283q27 170 -31 265t-193 95q-124 0 -201.5 -45.5t-120.5 -133.5l-92 16l203 797h659l-18 -111h-560l-133 -519q58 49 124 76.5t168 30.5q175 3 260.5 -125t50.5 -344q-37 -229 -159 -357t-331 -128 q-162 0 -260.5 101.5t-63.5 297.5z" />
37
+ <glyph unicode="6" horiz-adv-x="1067" d="M161 540l59 367q42 262 199 416t355 154q68 0 135 -17.5t113 -48.5l-45 -98q-47 32 -96.5 47t-122.5 15q-145 0 -266.5 -127t-153.5 -330l-20 -121q68 76 161.5 120t197.5 44q175 0 262.5 -136.5t54.5 -350.5q-37 -223 -171 -359t-319 -136q-181 0 -283 151t-60 410z M276 531q-35 -217 34 -334t210 -117q129 0 229.5 115.5t127.5 278.5q29 181 -32 285t-207 104q-107 0 -202 -63t-143 -160z" />
38
+ <glyph unicode="7" horiz-adv-x="1067" d="M224 1354l16 102h890l-16 -102q-265 -277 -426 -565.5t-260 -666.5l-31 -122h-116l31 122q97 370 267 669.5t415 562.5h-770z" />
39
+ <glyph unicode="8" horiz-adv-x="1067" d="M90 386q27 138 119 231.5t226 131.5q-97 42 -144 129.5t-24 202.5q40 201 167.5 298.5t308.5 97.5q164 0 260.5 -106t59.5 -290q-26 -127 -106.5 -214t-196.5 -124q111 -43 168.5 -138.5t33.5 -218.5q-42 -210 -180.5 -308.5t-335.5 -98.5q-184 0 -289.5 106.5 t-66.5 300.5zM205 385q-31 -152 41.5 -228.5t219.5 -76.5q131 0 241 82.5t139 222.5q29 147 -44.5 229t-214.5 82q-131 0 -243.5 -87.5t-138.5 -223.5zM382 1082q-27 -138 36.5 -211t191.5 -73q114 0 213 79t124 205q27 134 -37 213.5t-187 79.5q-117 0 -216 -81.5 t-125 -211.5z" />
40
+ <glyph unicode="9" horiz-adv-x="1067" d="M132 40l37 100q58 -31 118 -45.5t136 -14.5q148 0 258.5 112.5t143.5 316.5l22 137q-63 -89 -152.5 -136t-191.5 -47q-178 0 -273 139t-60 356q36 229 177.5 374t318.5 145q190 0 289.5 -139t58.5 -398l-68 -429q-43 -263 -188 -397.5t-351 -134.5q-69 0 -141.5 15.5 t-133.5 45.5zM290 958q-28 -174 33 -284t196 -110q116 0 209 68t143 166l25 151q34 215 -31 320.5t-210 105.5q-124 0 -231 -123t-134 -294z" />
41
+ <glyph unicode=":" horiz-adv-x="419" d="M64 0l33 164h131l-33 -164h-131zM245 916l33 164h131l-33 -164h-131z" />
42
+ <glyph unicode=";" horiz-adv-x="423" d="M-34 -258l120 279l34 167h116l-34 -170l-158 -276h-78zM249 918l33 164h131l-33 -164h-131z" />
43
+ <glyph unicode="&#x3c;" horiz-adv-x="983" d="M91 501l14 71l6 26l844 378l-25 -126l-622 -272l-109 -28v-6l96 -28l515 -268l-26 -126z" />
44
+ <glyph unicode="=" horiz-adv-x="1077" d="M143 422l22 106h775l-22 -106h-775zM226 833l21 106h775l-21 -106h-775z" />
45
+ <glyph unicode="&#x3e;" horiz-adv-x="997" d="M59 113l24 124l641 274l108 27v6l-95 29l-532 271l24 123l712 -378l-15 -72l-5 -25z" />
46
+ <glyph unicode="?" horiz-adv-x="877" d="M218 1122q31 165 149.5 260t274.5 95q157 0 236.5 -102.5t46.5 -271.5q-29 -144 -106.5 -240t-222.5 -218q-67 -54 -89 -100t-41 -141h-116q27 130 57.5 182t134.5 137q123 114 182.5 188.5t83.5 190.5q27 135 -21 201.5t-166 66.5q-101 0 -185.5 -69.5t-107.5 -184.5 h-108zM266 0l31 154h133l-31 -154h-133z" />
47
+ <glyph unicode="@" horiz-adv-x="1747" d="M129 478q101 424 370.5 683t618.5 259q339 0 485 -246.5t47 -660.5q-53 -217 -184.5 -375.5t-323.5 -158.5q-68 0 -108 51.5t-38 142.5q-68 -97 -150.5 -145.5t-177.5 -48.5q-113 0 -156 122t13 315q72 254 212 407.5t296 153.5q81 0 134 -28t104 -80l-3 -2h3l-160 -574 q-36 -132 -9 -180t78 -48q122 0 228 127t155 321q94 390 -18.5 605t-447.5 215q-280 0 -531.5 -239t-342.5 -616q-94 -379 28 -612.5t434 -233.5q77 0 168.5 22t154.5 57l15 -75q-69 -41 -169.5 -65t-188.5 -24q-331 0 -484 254t-52 677zM605 169q20 -92 108 -92 q75 0 150 43.5t147 155.5q1 8 1.5 10.5t2.5 6.5l152 546q-26 21 -59.5 34t-75.5 13q-117 0 -225.5 -121t-174.5 -349q-46 -155 -26 -247z" />
48
+ <glyph unicode="A" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1z" />
49
+ <glyph unicode="B" horiz-adv-x="1193" d="M97 0l291 1456h398q198 0 303 -98q78 -72 78 -193q0 -43 -10 -92q-24 -119 -99 -199.5t-183 -110.5q119 -25 175 -125q39 -69 39 -153q0 -38 -8 -80q-42 -208 -176.5 -306.5t-337.5 -98.5h-470zM232 101h355q139 0 244 80.5t134 221.5q8 43 8 81q-1 83 -41 138 q-60 80 -207 80h-373zM372 803h325q130 3 224 73.5t120 200.5q9 44 9 80q0 86 -49 132q-69 65 -235 65h-283z" />
50
+ <glyph unicode="C" horiz-adv-x="1230" d="M165 613l47 238q60 299 215 462.5t382 163.5q205 0 328 -129q101 -106 101 -271q0 -36 -5 -75l-2 -5h-110q2 27 2 52q0 141 -72 226q-85 100 -258 100q-162 0 -290.5 -146t-174.5 -376l-48 -240q-18 -88 -18 -163q0 -134 57 -226q89 -144 271 -144q157 0 260 90t161 276 h108l2 -6q-62 -222 -198.5 -341.5t-347.5 -119.5q-215 0 -340 182q-87 126 -87 295q0 75 17 157z" />
51
+ <glyph unicode="D" horiz-adv-x="1260" d="M97 0l291 1456h358q236 0 386 -184q110 -136 110 -318q0 -66 -14 -137l-37 -188q-61 -301 -236 -465t-426 -164h-432zM232 101h317q183 0 331 148.5t195 379.5l38 191q14 71 14 134q0 149 -80 253q-114 147 -321 147h-244z" />
52
+ <glyph unicode="E" horiz-adv-x="1108" d="M97 0l291 1456h855l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-860z" />
53
+ <glyph unicode="F" horiz-adv-x="1109" d="M97 0l291 1456h866l-20 -102h-752l-113 -569h656l-21 -103h-656l-136 -682h-115z" />
54
+ <glyph unicode="G" horiz-adv-x="1313" d="M174 600l53 267q58 288 231.5 449t407.5 161q204 0 312 -119q92 -104 92 -255q0 -24 -2 -49l-3 -6h-108v19q0 133 -66 217q-71 91 -245 91q-168 0 -314 -144.5t-188 -361.5l-54 -269q-17 -87 -17 -160q0 -132 57 -222q88 -138 280 -138q123 0 230 41t150 88l76 380h-356 l20 102h472l-103 -518q-61 -72 -193.5 -133t-315.5 -61q-222 0 -346 175q-87 122 -87 289q0 74 17 157z" />
55
+ <glyph unicode="H" horiz-adv-x="1357" d="M97 0l291 1456h115l-137 -684h763l137 684h115l-291 -1456h-115l134 670h-763l-134 -670h-115z" />
56
+ <glyph unicode="I" horiz-adv-x="527" d="M120 0l291 1456h116l-291 -1456h-116z" />
57
+ <glyph unicode="J" horiz-adv-x="1058" d="M70 401h116q-12 -60 -12 -109q0 -87 38 -136q61 -76 208 -76q114 0 215 91.5t132 241.5l208 1043h116l-208 -1043q-43 -213 -173.5 -323.5t-309.5 -110.5t-275 109q-67 76 -67 199q0 53 12 114z" />
58
+ <glyph unicode="K" horiz-adv-x="1126" d="M75 0l291 1456h117l-132 -659h186l611 659h143l3 -6l-679 -716l418 -734h-135l-388 691h-180l-138 -691h-117z" />
59
+ <glyph unicode="L" horiz-adv-x="1015" d="M97 0l291 1456h116l-271 -1355h668l-20 -101h-784z" />
60
+ <glyph unicode="M" horiz-adv-x="1662" d="M97 0l291 1456h152l236 -1281l6 -1l752 1282h152l-291 -1456h-115l129 643l135 630l-6 2l-753 -1275h-80l-244 1269h-6l-114 -626l-129 -643h-115z" />
61
+ <glyph unicode="N" horiz-adv-x="1363" d="M97 0l291 1456h116l512 -1243h6l249 1243h116l-291 -1456h-116l-512 1245h-6l-249 -1245h-116z" />
62
+ <glyph unicode="O" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 1 361 -181q93 -128 94 -302q0 -72 -17 -152l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-227 1 -355 181q-89 126 -89 296q0 74 17 157zM274 613q-18 -88 -18 -163q0 -136 60 -226q92 -140 290 -141 q180 0 310 141.5t178 379.5l48 240q17 84 17 155q1 139 -63 233q-96 140 -299 140q-175 0 -302 -142t-173 -377z" />
63
+ <glyph unicode="P" horiz-adv-x="1191" d="M97 0l291 1456h469q199 0 299 -119q73 -87 73 -210q0 -46 -10 -96q-41 -206 -178 -316t-354 -110h-354l-121 -605h-115zM353 707h354q154 0 261.5 93.5t135.5 228.5q9 47 9 87q1 89 -43 150q-64 88 -233 88h-354z" />
64
+ <glyph unicode="Q" horiz-adv-x="1294" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181q93 -129 93 -302q0 -72 -16 -152l-47 -238q-37 -182 -109 -312.5t-176 -207.5l175 -221l-96 -75l-186 235q-52 -22 -110.5 -33t-121.5 -11q-226 0 -355 181q-89 125 -89 296q0 74 17 157zM274 613 q-18 -88 -18 -163q0 -136 60 -226q92 -141 290 -141q180 0 310 141.5t178 379.5l48 240q17 84 17 155q0 140 -63 233q-96 140 -299 140q-175 0 -302 -142t-173 -377z" />
65
+ <glyph unicode="R" horiz-adv-x="1264" d="M94 0l291 1455h461q204 -1 306 -105q74 -76 74 -199q0 -46 -10 -98q-26 -125 -106 -214t-205 -129q113 -35 155 -124q26 -56 27 -125q0 -42 -10 -90l-27 -137q-12 -55 -11 -99q1 -13 1 -25q4 -52 32 -86l-5 -24h-118q-27 36 -28 100v9q0 61 13 127l27 133q9 44 9 81 q0 84 -44 134q-63 74 -207 74h-377l-132 -658h-116zM362 760h331q169 0 275 81.5t132 212.5q9 48 9 88q0 88 -45 138q-66 73 -238 73h-345z" />
66
+ <glyph unicode="S" horiz-adv-x="1156" d="M142 412l3 6h107q-10 -51 -10 -94q0 -116 74 -170q102 -74 264 -74q128 0 236 69.5t128 167.5q8 39 8 73q0 82 -46 135q-66 74 -265 151q-212 77 -303 175q-64 69 -64 183q0 47 11 102q33 164 162.5 252.5t311.5 88.5q201 1 313 -117q81 -84 81 -212q0 -50 -13 -106 l-2 -5h-109q9 43 9 82q0 98 -58 164q-80 92 -241 92q-124 0 -221.5 -70.5t-116.5 -166.5q-9 -43 -9 -80q0 -79 42 -128q60 -72 264 -150q212 -78 306 -179q68 -73 67 -188q0 -44 -10 -94q-34 -169 -170 -254.5t-331 -85.5q-198 0 -332 106q-99 78 -99 217q0 51 13 110z" />
67
+ <glyph unicode="T" horiz-adv-x="1137" d="M232 1354l20 102h1044l-20 -102h-465l-270 -1354h-116l270 1354h-463z" />
68
+ <glyph unicode="U" horiz-adv-x="1288" d="M168 469l197 987h116l-197 -987q-13 -66 -13 -121q-1 -110 53 -173q80 -95 248 -95q157 0 286.5 102.5t166.5 286.5l197 987h115l-197 -987q-51 -254 -207.5 -372t-380.5 -118q-202 0 -317 128q-81 90 -81 233q0 60 14 129z" />
69
+ <glyph unicode="V" horiz-adv-x="1187" d="M198 1456h125l210 -1210l12 -94l6 -1l42 95l597 1210h126l-738 -1456h-109z" />
70
+ <glyph unicode="W" horiz-adv-x="1714" d="M221 1456h119l76 -1044l6 -218l6 -1l84 219l451 1044h109l117 -1044l13 -218l6 -1l78 219l409 1044h117l-579 -1456h-109l-123 1117l-11 148l-6 1l-57 -149l-483 -1117h-110z" />
71
+ <glyph unicode="X" horiz-adv-x="1180" d="M-10 0l582 738l-335 718h140l276 -622l478 622h141l-564 -718l345 -738h-138l-290 642l-494 -642h-141z" />
72
+ <glyph unicode="Y" horiz-adv-x="1168" d="M241 1456h135l252 -803l576 803h134l-678 -924l-106 -532h-115l108 540z" />
73
+ <glyph unicode="Z" horiz-adv-x="1054" d="M16 0l6 92l926 1262h-691l20 102h832l-17 -87l-930 -1268h763l-20 -101h-889z" />
74
+ <glyph unicode="[" horiz-adv-x="470" d="M35 -312l316 1976h311l-16 -102h-194l-284 -1772h194l-16 -102h-311z" />
75
+ <glyph unicode="\" horiz-adv-x="763" d="M255 1456h113l249 -1581h-113z" />
76
+ <glyph unicode="]" horiz-adv-x="470" d="M-114 -312l16 102h195l284 1772h-195l16 102h311l-316 -1976h-311z" />
77
+ <glyph unicode="^" horiz-adv-x="803" d="M137 729l423 727h86l132 -727h-112l-83 484l-6 102l-6 1l-48 -103l-274 -484h-112z" />
78
+ <glyph unicode="_" horiz-adv-x="835" d="M-99 -101l20 101h822l-20 -101h-822z" />
79
+ <glyph unicode="`" horiz-adv-x="557" d="M252 1476h154l145 -266h-112z" />
80
+ <glyph unicode="a" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q8 39 8 71q1 71 -37 115q-54 62 -180 62q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92q64 -67 64 -174q0 -40 -9 -86l-106 -532q-13 -60 -17 -112q-2 -28 -3 -56q0 -25 2 -50h-121q2 74 4 104.5 t10 69.5q-72 -84 -175 -139.5t-218 -55.5q-138 -1 -207 85q-49 61 -49 149q0 35 8 75zM189 284q-6 -28 -6 -53q0 -57 31 -93q44 -52 144 -53q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5z" />
81
+ <glyph unicode="b" d="M65 0l312 1560h116l-126 -625l5 -4q59 81 141 126t182 45q171 0 255 -166q53 -104 52 -241q0 -83 -19 -178l-4 -21q-52 -259 -169.5 -388t-299.5 -129q-100 0 -179 51t-120 138l-46 -168h-100zM235 273q22 -87 91.5 -138.5t181.5 -51.5q134 0 224.5 110.5t129.5 302.5 l4 21q19 96 19 175q-1 100 -31 174q-54 132 -202 132q-104 0 -183.5 -66.5t-135.5 -168.5z" />
82
+ <glyph unicode="c" horiz-adv-x="998" d="M108 520l7 42q39 245 174 392.5t342 147.5q161 0 257 -106q73 -80 72 -197q0 -38 -7 -79l-2 -5h-104q5 33 5 63q0 91 -50 147q-68 75 -187 75q-154 0 -254 -126.5t-130 -311.5l-7 -42q-12 -72 -11 -133q0 -109 36 -187q57 -120 220 -120q106 0 202.5 68.5t115.5 188.5 h102l2 -6q-21 -157 -151.5 -254.5t-286.5 -97.5q-199 0 -291 153q-66 108 -65 258q0 62 11 130z" />
83
+ <glyph unicode="d" d="M128 531l4 21q55 277 174 413.5t304 136.5q100 0 176 -46.5t116 -130.5l127 635h115l-312 -1560h-102l20 144q-63 -79 -146 -122t-182 -43q-169 -1 -255 157q-56 102 -56 237q0 74 17 158zM245 531q-18 -88 -18 -161q1 -98 33 -166q56 -120 205 -121q96 0 174 56t136 152 l102 509q-23 87 -87.5 142.5t-177.5 55.5q-135 0 -229 -121.5t-134 -324.5z" />
84
+ <glyph unicode="e" horiz-adv-x="993" d="M102 509l9 55q38 241 185.5 389.5t325.5 148.5q179 0 268 -127q65 -93 65 -228q0 -50 -9 -107l-16 -102h-708l-4 -29q-9 -57 -9 -108q1 -117 49 -201q70 -120 216 -120q99 0 179.5 31.5t141.5 88.5l36 -82q-67 -64 -160 -101.5t-213 -37.5q-183 0 -288 151 q-78 112 -78 265q0 55 10 114zM249 645l2 -6h580l5 30q6 41 6 77q0 95 -43 162q-60 92 -193 92q-117 0 -217.5 -102t-139.5 -253z" />
85
+ <glyph unicode="f" horiz-adv-x="638" d="M147 0l197 984h-166l19 98h166l32 158q35 174 126.5 257.5t231.5 83.5q29 0 61 -5t62 -14l-33 -99q-21 6 -44 9.5t-55 3.5q-84 0 -147.5 -63t-85.5 -173l-32 -158h238l-19 -98h-238l-197 -984h-116z" />
86
+ <glyph unicode="g" d="M56 -366l50 101q52 -31 115.5 -48t137.5 -17q137 0 234 93t129 251l24 122q-62 -76 -143 -116.5t-178 -40.5q-170 0 -257 157q-56 103 -56 238q0 74 17 157l4 21q55 276 174.5 413t305.5 137q102 0 179 -49t116 -136l46 165h98l-213 -1068q-45 -223 -173.5 -337 t-325.5 -114q-68 0 -148.5 19.5t-135.5 51.5zM245 531q-18 -87 -18 -158q0 -99 34 -169q58 -121 207 -121q97 0 175 57.5t135 154.5l100 501q-21 88 -85.5 145t-177.5 57q-136 0 -231 -122t-135 -324z" />
87
+ <glyph unicode="h" d="M66 0l312 1560h116l-129 -642l5 -4q64 90 156 139t203 49q149 0 218 -108q42 -66 42 -173q0 -68 -17 -154l-133 -667h-116l134 669q16 82 16 142q-1 77 -27 117q-48 70 -164 70q-106 0 -197.5 -67t-151.5 -176l-151 -755h-116z" />
88
+ <glyph unicode="i" horiz-adv-x="445" d="M80 0l216 1082h115l-216 -1082h-115zM358 1392l34 168h115l-34 -168h-115z" />
89
+ <glyph unicode="j" horiz-adv-x="463" d="M-268 -418l33 101q14 -5 39.5 -10t43.5 -5q77 0 137 62.5t84 180.5l234 1171h115l-234 -1171q-36 -178 -125 -263t-226 -85q-26 0 -51 5t-50 14zM360 1396l33 164h116l-33 -164h-116z" />
90
+ <glyph unicode="k" horiz-adv-x="948" d="M67 0l312 1560h116l-186 -930h117l458 452h134l2 -6l-497 -487l328 -589h-139l-297 527h-127l-105 -527h-116z" />
91
+ <glyph unicode="l" horiz-adv-x="445" d="M80 0l312 1560h115l-312 -1560h-115z" />
92
+ <glyph unicode="m" horiz-adv-x="1696" d="M61 0l216 1082h103l-23 -167q66 91 155.5 139t201.5 48q106 0 172.5 -59.5t79.5 -179.5q67 115 164 177t220 62q150 0 220 -118q41 -70 41 -182q0 -76 -19 -171l-126 -631h-117l127 633q20 100 20 170q0 79 -26 119q-48 76 -166 76t-208.5 -89t-137.5 -223l-6 -37 l-130 -649h-117l127 633q19 97 19 166q1 79 -25 121q-48 78 -168 78q-111 0 -194 -68t-136 -180l-150 -750h-117z" />
93
+ <glyph unicode="n" d="M66 0l216 1082h103l-26 -178q67 96 159 147t205 51q153 0 222 -110q42 -67 43 -176q0 -70 -18 -157l-132 -659h-116l132 658q18 90 18 153q0 77 -26 117q-48 70 -170 70q-108 0 -197.5 -70t-147.5 -183l-149 -745h-116z" />
94
+ <glyph unicode="o" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q193 0 295 -154q74 -112 74 -268q0 -58 -10 -123l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154q-74 111 -74 266q0 59 11 125zM220 524q-10 -63 -11 -119q0 -117 46 -201q67 -124 225 -124q147 0 258 129.5 t141 314.5l5 33q9 60 9 113q1 118 -45 204q-66 126 -223 126q-149 0 -260.5 -130.5t-139.5 -312.5z" />
95
+ <glyph unicode="p" d="M-18 -416l299 1498h98l-17 -154q64 83 147.5 128.5t184.5 45.5q171 0 254 -168q52 -105 52 -242q0 -84 -19 -180l-4 -21q-52 -259 -168.5 -385.5t-299.5 -126.5q-101 0 -179.5 42t-120.5 118l-111 -555h-116zM232 257q25 -82 93 -129.5t177 -47.5q135 0 228 110t131 301 l4 21q19 94 19 172q0 103 -32 180q-57 134 -205 134q-100 0 -177.5 -61.5t-132.5 -158.5z" />
96
+ <glyph unicode="q" d="M128 531l4 21q55 277 174 413.5t304 136.5q100 0 176 -44.5t116 -126.5l41 151h100l-299 -1498h-115l109 547q-63 -73 -143 -112.5t-173 -39.5q-169 0 -255 157q-56 102 -56 237q0 74 17 158zM245 531q-18 -89 -18 -162q0 -97 32 -167q56 -122 205 -122q93 0 169.5 55 t134.5 147l106 530q-24 84 -88.5 136t-173.5 52q-135 0 -229 -122.5t-134 -325.5z" />
97
+ <glyph unicode="r" horiz-adv-x="659" d="M66 0l216 1082h102l-22 -179q62 95 145 147t184 52q19 0 40 -3.5t33 -7.5l-37 -112l-84 6q-98 0 -179.5 -67t-134.5 -180l-147 -738h-116z" />
98
+ <glyph unicode="s" horiz-adv-x="982" d="M85 297l2 6h107q-2 -17 -2 -32q0 -93 63 -138q73 -53 183 -53q114 0 195 57.5t94 137.5q2 16 2 31q0 60 -38 104q-48 56 -193 91q-174 42 -250 111q-60 54 -60 143q0 25 5 52q20 129 130.5 212t272.5 83q164 0 252 -92q68 -71 69 -166q0 -28 -6 -59l-2 -6h-108q3 18 3 35 q0 70 -48 122q-58 64 -176 64q-115 0 -187.5 -57.5t-83.5 -131.5q-3 -18 -3 -34q0 -54 34 -91q44 -48 195 -85q173 -43 251 -117q62 -59 61 -153q0 -24 -4 -50q-23 -140 -137 -221t-284 -81q-176 0 -270 95q-73 74 -73 169q0 26 6 54z" />
99
+ <glyph unicode="t" horiz-adv-x="645" d="M152 984l19 98h173l56 277h117l-56 -277h220l-19 -98h-220l-141 -705q-11 -53 -11 -90q0 -43 14 -65q26 -40 88 -40q25 0 53.5 3t59.5 8l-1 -89q-29 -13 -71 -20t-83 -7q-100 0 -149 73q-30 44 -30 118q0 48 13 109l141 705h-173z" />
100
+ <glyph unicode="u" d="M153 455l125 627h116l-125 -629q-21 -104 -21 -176q0 -75 22 -115q44 -80 163 -79q117 0 206.5 63.5t143.5 170.5l153 765h116l-216 -1082h-102l24 166q-66 -92 -157 -139.5t-203 -47.5q-150 0 -222 118q-43 70 -43 184q0 77 20 174z" />
101
+ <glyph unicode="v" horiz-adv-x="944" d="M149 1082h120l145 -811l12 -121l6 -1l53 122l401 811h120l-555 -1082h-92z" />
102
+ <glyph unicode="w" horiz-adv-x="1452" d="M195 1082h120l40 -731v-187l6 -2l83 189l359 731h99l67 -731l8 -194l6 -1l80 195l327 731h120l-509 -1082h-98l-73 740l-7 184l-6 1l-81 -185l-366 -740h-99z" />
103
+ <glyph unicode="x" horiz-adv-x="944" d="M-15 5l439 546l-255 531h136l196 -442l340 442h130l3 -5l-422 -526l266 -551h-135l-208 461l-357 -461h-130z" />
104
+ <glyph unicode="y" horiz-adv-x="944" d="M-72 -423l34 100q12 -2 36 -4.5t35 -2.5q66 0 124.5 58t103.5 140l82 147l-175 1067h129l115 -789l9 -122l6 -1l483 912h130l-687 -1255q-61 -110 -139 -187t-198 -77q-18 0 -46 4.5t-42 9.5z" />
105
+ <glyph unicode="z" horiz-adv-x="944" d="M4 0l18 88l777 886l-2 5h-579l20 103h730l-17 -89l-781 -887l2 -5h644l-20 -101h-792z" />
106
+ <glyph unicode="{" horiz-adv-x="640" d="M85 549l13 81l4 23q105 0 169.5 68t84.5 189l36 228q28 177 118 292.5t268 166.5l6 -1l11 -72q-124 -41 -193.5 -141.5t-92.5 -244.5l-36 -228q-19 -115 -74.5 -195.5t-149.5 -115.5q79 -40 110 -121.5t14 -187.5l-36 -226q-24 -148 14.5 -243.5t151.5 -138.5l-41 -80 q-162 55 -215.5 173.5t-26.5 288.5l36 226q20 127 -20 193t-151 66z" />
107
+ <glyph unicode="|" horiz-adv-x="434" d="M57 -270l276 1726h98l-276 -1726h-98z" />
108
+ <glyph unicode="}" horiz-adv-x="640" d="M-108 -324q124 42 194.5 140.5t93.5 241.5l36 226q18 117 75.5 197t157.5 115q-85 36 -118 117t-15 191l36 228q24 149 -13.5 246.5t-148.5 139.5l38 79q161 -55 214 -174.5t26 -290.5l-36 -228q-21 -127 20.5 -192t152.5 -65l-9 -53l-8 -51q-105 0 -170.5 -69.5 t-85.5 -189.5l-36 -226q-29 -176 -118 -290.5t-266 -166.5l-6 2z" />
109
+ <glyph unicode="~" horiz-adv-x="1313" d="M143 474q21 136 109 224.5t204 88.5q77 0 142.5 -38t133.5 -112q49 -56 94.5 -82t98.5 -26q68 0 129.5 64.5t77.5 161.5l90 -15q-22 -134 -111 -225.5t-203 -91.5q-78 0 -142.5 36.5t-132.5 113.5q-51 54 -97 80.5t-97 26.5q-70 0 -130.5 -61.5t-75.5 -159.5z" />
110
+ <glyph unicode="&#xa1;" horiz-adv-x="434" d="M-11 -374l196 978h117l-196 -978h-117zM235 898l36 184h135l-36 -184h-135z" />
111
+ <glyph unicode="&#xa2;" horiz-adv-x="1047" d="M130 520l7 42q37 234 163 380t319 159l44 217h116l-45 -224q128 -27 198.5 -128t47.5 -251h-111q22 135 -45.5 210t-186.5 75q-154 0 -254 -126.5t-130 -311.5l-7 -42q-32 -199 25 -319.5t220 -120.5q106 0 202.5 68.5t115.5 188.5h102l3 -6q-21 -147 -138.5 -242.5 t-264.5 -107.5l-45 -226h-116l46 232q-159 30 -229 177t-37 356z" />
112
+ <glyph unicode="&#xa3;" horiz-adv-x="1100" d="M42 0l20 101h9q67 15 122 130t79 235l29 176h-191l21 102h186l49 296q43 217 162.5 327t288.5 110q163 0 237 -106.5t40 -280.5h-117q31 159 -17.5 222t-162.5 63q-107 0 -195 -89.5t-119 -245.5l-50 -296h417l-21 -102h-413l-29 -176q-23 -115 -64 -209t-97 -156h713 l-20 -101h-877z" />
113
+ <glyph unicode="&#xa4;" horiz-adv-x="1386" d="M33 60l186 166q-41 80 -53 177.5t10 204.5q23 118 74 220t124 183l-118 166l100 87l116 -164q86 65 183.5 99.5t199.5 34.5q92 0 174 -38.5t143 -107.5l196 177l65 -88l-199 -180q43 -82 56 -181.5t-8 -207.5q-23 -114 -71 -212t-115 -177l114 -159l-100 -87l-110 153 q-88 -71 -189.5 -108.5t-206.5 -37.5q-96 0 -181 40.5t-145 115.5l-180 -162zM285 608q-46 -228 53.5 -372.5t287.5 -144.5q170 0 337 153t210 364q44 227 -55.5 370.5t-285.5 143.5q-172 0 -339 -152.5t-208 -361.5z" />
114
+ <glyph unicode="&#xa5;" horiz-adv-x="1149" d="M106 326l19 102h385l37 175h-384l19 102h343l-273 751h134l247 -716l533 716h135l-573 -751h343l-19 -102h-390l-37 -175h389l-19 -102h-389l-65 -326h-115l65 326h-385z" />
115
+ <glyph unicode="&#xa6;" horiz-adv-x="426" d="M13 -270l154 771h116l-154 -771h-116zM207 698l151 758h116l-151 -758h-116z" />
116
+ <glyph unicode="&#xa7;" horiz-adv-x="1163" d="M6 -69l2 5l110 2q-38 -185 49 -258t238 -73q140 0 244.5 72t126.5 180q22 113 -35.5 169t-248.5 118q-213 61 -304.5 149t-57.5 256q20 104 87.5 173.5t172.5 101.5q-73 49 -100 119.5t-5 174.5q34 171 170.5 264t340.5 93q194 0 294 -113.5t57 -312.5l-3 -5h-109 q29 150 -37.5 239.5t-221.5 89.5q-149 0 -251 -72.5t-122 -179.5q-25 -121 30 -176t256 -119q216 -65 303.5 -148.5t55.5 -248.5q-22 -105 -91 -174t-177 -100q76 -49 105.5 -119t8.5 -177q-35 -177 -170 -266.5t-339 -89.5q-187 0 -306.5 104t-72.5 322zM247 553 q-25 -123 33.5 -177.5t275.5 -124.5q31 -10 57.5 -19t50.5 -18q103 15 177 74t91 140q22 114 -41.5 173t-269.5 128q-37 10 -67 20t-56 21q-101 -15 -168 -74.5t-83 -142.5z" />
117
+ <glyph unicode="&#xa8;" horiz-adv-x="906" d="M294 1299l25 157h165l-25 -157h-165zM731 1299l25 157h164l-25 -157h-164z" />
118
+ <glyph unicode="&#xa9;" horiz-adv-x="1530" d="M150 729q52 327 276.5 537t503.5 210q263 0 426 -218t114 -529q-53 -328 -277.5 -539t-501.5 -211q-265 0 -428.5 218.5t-112.5 531.5zM231 729q-47 -290 91 -477t382 -187q229 0 434.5 194t250.5 470q45 288 -93 474t-380 186q-232 0 -437 -193t-248 -467zM481 669 l19 119q28 178 129 282.5t243 104.5q132 0 200 -80.5t44 -232.5h-95q19 117 -22.5 170t-140.5 53q-98 0 -170.5 -84.5t-92.5 -211.5l-19 -120q-22 -137 21.5 -217t146.5 -80q95 0 154.5 54.5t78.5 169.5h87l2 -6q-22 -156 -110 -232t-227 -76q-136 0 -206 107.5t-42 279.5z " />
119
+ <glyph unicode="&#xaa;" horiz-adv-x="853" d="M229 919q22 113 105 167.5t226 54.5h167l12 61q18 91 -9.5 134.5t-101.5 43.5q-79 0 -135.5 -38t-69.5 -108l-94 9l-1 6q16 104 103.5 166t215.5 62q108 0 165.5 -72.5t31.5 -203.5l-63 -315q-10 -50 -12.5 -92t0.5 -89h-107q-3 25 -2.5 52.5t3.5 55.5 q-44 -53 -108 -87.5t-141 -34.5q-103 0 -154.5 62.5t-30.5 165.5zM334 923q-14 -70 14.5 -103.5t104.5 -33.5q59 0 128.5 38t98.5 84l30 149h-166q-82 0 -141 -39.5t-69 -94.5z" />
120
+ <glyph unicode="&#xab;" horiz-adv-x="880" d="M134 512l1 6l3 13l351 379h93l2 -5l-328 -384l177 -388h-100zM423 512l1 6l3 13l351 379h93l2 -5l-328 -384l177 -388h-100z" />
121
+ <glyph unicode="&#xac;" horiz-adv-x="1050" d="M169 670l21 106h757l-12 -61l-9 -45l-57 -284h-116l57 284h-641z" />
122
+ <glyph unicode="&#xad;" horiz-adv-x="554" d="M79 570l20 101h446l-20 -101h-446z" />
123
+ <glyph unicode="&#xae;" horiz-adv-x="1535" d="M146 729q52 327 276.5 537t502.5 210q264 0 427.5 -217.5t114.5 -529.5q-53 -328 -278 -539t-503 -211q-265 0 -428 218.5t-112 531.5zM227 729q-47 -290 91 -477t381 -187q230 0 435 194t250 470q45 288 -93 474t-380 186q-231 0 -436 -193t-248 -467zM496 316l136 850 h242q132 0 198 -63.5t47 -184.5q-11 -71 -53.5 -119.5t-112.5 -78.5q58 -26 79 -79.5t10 -125.5l-9 -56q-7 -40 -8 -72.5t4 -54.5l-2 -16h-98q-6 22 -1.5 63.5t11.5 80.5l8 54q14 87 -14.5 122.5t-111.5 35.5h-173l-57 -356h-95zM662 763h166q73 0 128.5 40.5t67.5 112.5 q13 88 -23 123.5t-142 35.5h-147z" />
124
+ <glyph unicode="&#xaf;" horiz-adv-x="827" d="M252 1359l16 97h626l-16 -97h-626z" />
125
+ <glyph unicode="&#xb0;" horiz-adv-x="729" d="M297 1227q22 109 102.5 179.5t176.5 70.5q86 0 140.5 -75t34.5 -175q-23 -111 -101 -179t-173 -68q-88 0 -144 72.5t-36 174.5zM383 1227q-14 -72 18 -114t94 -42q55 0 105.5 44.5t64.5 111.5q14 72 -16 115.5t-91 43.5q-57 0 -109.5 -46.5t-65.5 -112.5z" />
126
+ <glyph unicode="&#xb1;" horiz-adv-x="1021" d="M131 728l17 101h382l71 438h106l-71 -438h364l-17 -101h-363l-70 -439h-106l70 439h-383zM132 48l21 102h776l-21 -102h-776z" />
127
+ <glyph unicode="&#xb2;" horiz-adv-x="789" d="M163 667l18 90l348 282q85 71 119 115.5t44 91.5q13 68 -15 105t-101 37q-74 0 -129 -43t-67 -107h-96l-1 6q15 103 100.5 169t210.5 66q109 0 166.5 -61.5t36.5 -172.5q-16 -80 -68.5 -136t-174.5 -158l-233 -188l2 -6h388l-18 -90h-530z" />
128
+ <glyph unicode="&#xb3;" horiz-adv-x="804" d="M206 882l3 6h98q-13 -67 25.5 -105t117.5 -38q77 0 133.5 38.5t69.5 102.5q15 80 -19.5 112t-121.5 32h-114l4 23l14 66h114q75 0 123 36t61 98t-20.5 98t-115.5 36q-64 0 -119 -36t-66 -93h-95l-2 6q15 101 100 157.5t200 56.5q116 0 179.5 -59.5t42.5 -165.5 q-13 -63 -55 -109t-106 -69q61 -23 87.5 -71.5t13.5 -117.5q-24 -116 -111.5 -173.5t-214.5 -57.5q-107 0 -179.5 59t-46.5 168z" />
129
+ <glyph unicode="&#xb4;" horiz-adv-x="550" d="M243 1217l228 261h141l2 -6l-273 -260h-96z" />
130
+ <glyph unicode="&#xb5;" d="M-13 -416l299 1498h115l-127 -634l1 1q-45 -222 3.5 -295.5t164.5 -73.5q118 0 201 62t135 175l153 765h116l-216 -1082h-100l19 144q-60 -82 -139.5 -123.5t-181.5 -41.5q-76 0 -135 31t-89 98l-104 -524h-115z" />
131
+ <glyph unicode="&#xb6;" horiz-adv-x="917" d="M193 988q43 220 187 344t364 124h213l-291 -1456h-116l104 520h-97q-203 0 -304 132t-60 336z" />
132
+ <glyph unicode="&#xb7;" horiz-adv-x="480" d="M199 624l36 180h147l-36 -180h-147z" />
133
+ <glyph unicode="&#xb8;" horiz-adv-x="474" d="M-68 -435l9 78q78 0 142.5 30.5t76.5 89.5q12 61 -20.5 81.5t-129.5 28.5l52 127h90l-25 -64q71 -9 107.5 -48.5t20.5 -122.5q-20 -97 -102 -148.5t-221 -51.5z" />
134
+ <glyph unicode="&#xb9;" horiz-adv-x="488" d="M270 665l141 703l-139 -7l19 93l246 23l-162 -812h-105z" />
135
+ <glyph unicode="&#xba;" horiz-adv-x="868" d="M250 1025l23 117q32 158 130 246.5t238 88.5q129 0 197 -95t39 -240l-23 -117q-32 -158 -130 -246t-238 -88q-130 0 -198 94t-38 240zM354 1025q-23 -113 14 -176t137 -63q88 0 156 68t89 171l23 117q22 110 -16 174t-135 64q-89 0 -157 -68.5t-88 -169.5z" />
136
+ <glyph unicode="&#xbb;" horiz-adv-x="875" d="M67 167l328 383l-176 394h101l197 -384l-2 -6h1l-3 -13l-350 -379h-94zM362 167l328 383l-176 394h101l197 -384l-2 -6h1l-3 -13l-350 -379h-94z" />
137
+ <glyph unicode="&#xbc;" horiz-adv-x="1464" d="M259 177l889 1138l62 -48l-890 -1138zM340 664l141 703l-139 -7l19 93l246 23l-162 -812h-105zM676 170l9 67l512 564h108l-108 -541h141l-18 -90h-141l-34 -170h-104l34 170h-399zM818 265l2 -5h273l79 397l-5 2l-30 -39z" />
138
+ <glyph unicode="&#xbd;" horiz-adv-x="1476" d="M271 177l889 1138l62 -48l-890 -1138zM340 664l141 703l-139 -7l19 93l246 23l-162 -812h-105zM769 0l18 90l348 282q85 71 119 115.5t44 91.5q13 68 -15 105t-101 37q-74 0 -129 -43t-67 -107h-96l-1 6q15 103 100.5 169t210.5 66q109 0 166.5 -61.5t36.5 -172.5 q-16 -80 -68.5 -136t-174.5 -158l-233 -188l2 -6h388l-18 -90h-530z" />
139
+ <glyph unicode="&#xbe;" horiz-adv-x="1606" d="M229 883l3 6h98q-13 -67 25.5 -105t117.5 -38q77 0 133.5 38.5t69.5 102.5q15 80 -19.5 112t-121.5 32h-114l4 23l14 66h114q75 0 123 36t61 98t-20.5 98t-115.5 36q-64 0 -119 -36t-66 -93h-95l-2 6q15 101 100 157.5t200 56.5q116 0 179.5 -59.5t42.5 -165.5 q-13 -63 -55 -109t-106 -69q61 -23 87.5 -71.5t13.5 -117.5q-24 -116 -111.5 -173.5t-214.5 -57.5q-107 0 -179.5 59t-46.5 168zM451 177l889 1138l62 -48l-890 -1138zM869 170l9 67l512 564h108l-108 -541h141l-18 -90h-141l-34 -170h-104l34 170h-399zM1011 265l2 -5h273 l79 397l-5 2l-30 -39z" />
140
+ <glyph unicode="&#xbf;" horiz-adv-x="904" d="M17 -20q28 143 105.5 238.5t222.5 218.5q67 53 89 99t42 142h116q-28 -131 -58.5 -183t-133.5 -136q-125 -116 -184.5 -190t-82.5 -188q-28 -135 20.5 -201.5t167.5 -66.5q101 0 184 69.5t108 184.5h107l2 -6q-31 -165 -150 -260t-273 -95q-158 0 -237 103t-45 271z M512 928l31 155h133l-31 -155h-133z" />
141
+ <glyph unicode="&#xc0;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM616 1827h154l145 -266h-112z" />
142
+ <glyph unicode="&#xc1;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM783 1562l228 261h141l2 -6l-273 -260h-96z" />
143
+ <glyph unicode="&#xc2;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM595 1601l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
144
+ <glyph unicode="&#xc3;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM538 1622q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z " />
145
+ <glyph unicode="&#xc4;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM565 1641l25 157h165l-25 -157h-165zM1002 1641l25 157h164l-25 -157h-164z" />
146
+ <glyph unicode="&#xc5;" horiz-adv-x="1203" d="M-50 0l806 1456h108l220 -1456h-120l-58 406h-616l-221 -406h-119zM348 513h543l-112 781l-6 1zM720 1730q14 74 69 120t123 46q61 0 99 -49t25 -117q-16 -75 -70 -119t-120 -44q-63 0 -101.5 46.5t-24.5 116.5zM794 1730q-9 -41 11 -66t56 -25q33 0 62.5 26t38.5 65 q8 43 -10.5 68t-54.5 25q-33 0 -64.5 -27t-38.5 -66z" />
147
+ <glyph unicode="&#xc6;" horiz-adv-x="1748" d="M-66 0l1110 1456h810l-20 -102h-647l-87 -545h548l-21 -102h-544l-97 -606h653l-20 -101h-764l62 389h-551l-291 -389h-141zM450 502h485l134 829l-6 2l-17 -35z" />
148
+ <glyph unicode="&#xc7;" horiz-adv-x="1230" d="M165 613l47 238q60 299 215 462.5t382 163.5q205 0 328 -129t96 -346l-2 -5h-110q15 178 -70 278t-258 100q-162 0 -290.5 -146t-174.5 -376l-48 -240q-50 -245 39 -389t271 -144q157 0 260 90t161 276h108l2 -6q-62 -222 -198.5 -341.5t-347.5 -119.5q-215 0 -340 182 t-70 452zM378 -443l9 78q78 0 142.5 30.5t76.5 89.5q12 61 -20.5 81.5t-129.5 28.5l52 127h90l-25 -64q71 -9 107.5 -48.5t20.5 -122.5q-20 -97 -102 -148.5t-221 -51.5z" />
149
+ <glyph unicode="&#xc8;" horiz-adv-x="1108" d="M97 0l291 1456h855l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-860zM581 1827h154l145 -266h-112z" />
150
+ <glyph unicode="&#xc9;" horiz-adv-x="1108" d="M97 0l291 1456h855l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-860zM748 1562l228 261h141l2 -6l-273 -260h-96z" />
151
+ <glyph unicode="&#xca;" horiz-adv-x="1108" d="M97 0l291 1456h855l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-860zM560 1601l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
152
+ <glyph unicode="&#xcb;" horiz-adv-x="1108" d="M97 0l291 1456h855l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-860zM530 1641l25 157h165l-25 -157h-165zM967 1641l25 157h164l-25 -157h-164z" />
153
+ <glyph unicode="&#xcc;" horiz-adv-x="527" d="M120 0l291 1456h116l-291 -1456h-116zM259 1827h154l145 -266h-112z" />
154
+ <glyph unicode="&#xcd;" horiz-adv-x="527" d="M120 0l291 1456h116l-291 -1456h-116zM426 1562l228 261h141l2 -6l-273 -260h-96z" />
155
+ <glyph unicode="&#xce;" horiz-adv-x="527" d="M120 0l291 1456h116l-291 -1456h-116zM240 1601l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
156
+ <glyph unicode="&#xcf;" horiz-adv-x="527" d="M120 0l291 1456h116l-291 -1456h-116zM210 1641l25 157h165l-25 -157h-165zM647 1641l25 157h164l-25 -157h-164z" />
157
+ <glyph unicode="&#xd0;" horiz-adv-x="1290" d="M121 689l21 102h143l133 665h358q237 0 386.5 -184.5t95.5 -454.5l-37 -188q-61 -301 -236 -465t-426 -164h-432l137 689h-143zM262 101h317q183 0 331 148.5t195 379.5l38 191q48 240 -66 387t-321 147h-244l-112 -563h313l-21 -102h-313z" />
158
+ <glyph unicode="&#xd1;" horiz-adv-x="1363" d="M97 0l291 1456h116l512 -1243h6l249 1243h116l-291 -1456h-116l-512 1245h-6l-249 -1245h-116zM599 1622q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z " />
159
+ <glyph unicode="&#xd2;" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181.5t77 -453.5l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-226 0 -354.5 180.5t-72.5 453.5zM274 613q-51 -249 41.5 -389.5t290.5 -140.5q180 0 310 141.5t178 379.5l48 240q49 247 -46.5 387.5 t-298.5 140.5q-175 0 -302 -142t-173 -377zM645 1848h154l145 -266h-112z" />
160
+ <glyph unicode="&#xd3;" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181.5t77 -453.5l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-226 0 -354.5 180.5t-72.5 453.5zM274 613q-51 -249 41.5 -389.5t290.5 -140.5q180 0 310 141.5t178 379.5l48 240q49 247 -46.5 387.5 t-298.5 140.5q-175 0 -302 -142t-173 -377zM812 1583l228 261h141l2 -6l-273 -260h-96z" />
161
+ <glyph unicode="&#xd4;" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181.5t77 -453.5l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-226 0 -354.5 180.5t-72.5 453.5zM274 613q-51 -249 41.5 -389.5t290.5 -140.5q180 0 310 141.5t178 379.5l48 240q49 247 -46.5 387.5 t-298.5 140.5q-175 0 -302 -142t-173 -377zM624 1622l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
162
+ <glyph unicode="&#xd5;" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181.5t77 -453.5l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-226 0 -354.5 180.5t-72.5 453.5zM274 613q-51 -249 41.5 -389.5t290.5 -140.5q180 0 310 141.5t178 379.5l48 240q49 247 -46.5 387.5 t-298.5 140.5q-175 0 -302 -142t-173 -377zM567 1643q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z" />
163
+ <glyph unicode="&#xd6;" horiz-adv-x="1293" d="M158 613l47 238q61 303 217.5 464.5t395.5 161.5q229 0 361 -181.5t77 -453.5l-47 -238q-62 -304 -221 -464.5t-403 -160.5q-226 0 -354.5 180.5t-72.5 453.5zM274 613q-51 -249 41.5 -389.5t290.5 -140.5q180 0 310 141.5t178 379.5l48 240q49 247 -46.5 387.5 t-298.5 140.5q-175 0 -302 -142t-173 -377zM594 1662l25 157h165l-25 -157h-165zM1031 1662l25 157h164l-25 -157h-164z" />
164
+ <glyph unicode="&#xd7;" horiz-adv-x="1008" d="M70 318l405 365l-249 350l93 80l247 -349l388 349l60 -80l-390 -350l260 -365l-92 -79l-259 362l-403 -362z" />
165
+ <glyph unicode="&#xd8;" horiz-adv-x="1294" d="M59 -84l170 220q-63 85 -82.5 206.5t10.5 266.5l47 237q60 300 232 465.5t415 165.5q95 0 174 -34.5t136 -98.5l124 161h99l-176 -228q47 -84 60.5 -194.5t-11.5 -236.5l-47 -237q-61 -300 -235.5 -465t-421.5 -165q-81 0 -150 25t-121 73l-124 -161h-99zM253.5 390 q6.5 -96 42.5 -156l6 -2l793 1027q-42 55 -108.5 84t-156.5 29q-179 0 -321.5 -146.5t-187.5 -377.5l-48 -239q-26 -123 -19.5 -219zM346 161q40 -39 97 -58.5t131 -19.5q183 0 328.5 146t192.5 380l48 239q20 102 18 185t-25 142l-6 2z" />
166
+ <glyph unicode="&#xd9;" horiz-adv-x="1288" d="M168 469l197 987h116l-197 -987q-40 -199 40.5 -294t247.5 -95q157 0 286.5 102.5t166.5 286.5l197 987h115l-197 -987q-51 -254 -207.5 -372t-380.5 -118q-202 0 -317 128t-67 362zM649 1827h154l145 -266h-112z" />
167
+ <glyph unicode="&#xda;" horiz-adv-x="1288" d="M168 469l197 987h116l-197 -987q-40 -199 40.5 -294t247.5 -95q157 0 286.5 102.5t166.5 286.5l197 987h115l-197 -987q-51 -254 -207.5 -372t-380.5 -118q-202 0 -317 128t-67 362zM816 1562l228 261h141l2 -6l-273 -260h-96z" />
168
+ <glyph unicode="&#xdb;" horiz-adv-x="1288" d="M168 469l197 987h116l-197 -987q-40 -199 40.5 -294t247.5 -95q157 0 286.5 102.5t166.5 286.5l197 987h115l-197 -987q-51 -254 -207.5 -372t-380.5 -118q-202 0 -317 128t-67 362zM628 1601l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
169
+ <glyph unicode="&#xdc;" horiz-adv-x="1288" d="M168 469l197 987h116l-197 -987q-40 -199 40.5 -294t247.5 -95q157 0 286.5 102.5t166.5 286.5l197 987h115l-197 -987q-51 -254 -207.5 -372t-380.5 -118q-202 0 -317 128t-67 362zM598 1641l25 157h165l-25 -157h-165zM1035 1641l25 157h164l-25 -157h-164z" />
170
+ <glyph unicode="&#xdd;" horiz-adv-x="1168" d="M241 1456h135l252 -803l576 803h134l-678 -924l-106 -532h-115l108 540zM744 1555l228 261h141l2 -6l-273 -260h-96z" />
171
+ <glyph unicode="&#xde;" horiz-adv-x="1139" d="M89 0l291 1456h116l-61 -304h298q192 0 291.5 -117.5t64.5 -296.5q-40 -196 -175.5 -305t-345.5 -109h-298l-65 -324h-116zM290 425h298q148 0 253.5 94t130.5 217q27 137 -35 226t-224 89h-298z" />
172
+ <glyph unicode="&#xdf;" horiz-adv-x="1127" d="M60 0l216 1082q44 218 159 324t279 106q123 0 197 -80.5t46 -221.5q-24 -120 -101.5 -222t-92.5 -178q-19 -96 123.5 -234t114.5 -281q-33 -164 -148 -240t-266 -76q-74 0 -156.5 23.5t-111.5 56.5l52 101q32 -31 95 -55.5t128 -24.5q108 0 189.5 61t100.5 154 q22 110 -121.5 247t-116.5 270q20 103 100.5 207.5t97.5 184.5q19 98 -24.5 152.5t-116.5 54.5q-105 0 -192.5 -86.5t-118.5 -242.5l-216 -1082h-116z" />
173
+ <glyph unicode="&#xe0;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM443 1506h154l145 -266h-112z" />
174
+ <glyph unicode="&#xe1;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM610 1241l228 261h141l2 -6l-273 -260h-96z" />
175
+ <glyph unicode="&#xe2;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM422 1280l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
176
+ <glyph unicode="&#xe3;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM365 1301q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5 q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z" />
177
+ <glyph unicode="&#xe4;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM392 1320l25 157h165l-25 -157h-165zM829 1320l25 157h164l-25 -157h-164z" />
178
+ <glyph unicode="&#xe5;" horiz-adv-x="1035" d="M75 288q31 160 166 245t344 85h219l27 134q25 123 -29.5 185.5t-179.5 62.5q-108 0 -200 -64t-109 -153l-105 1l-2 6q20 130 145 221t296 91q157 0 245 -92.5t55 -259.5l-106 -532q-13 -60 -17.5 -112t-0.5 -106h-121q2 74 4 104.5t10 69.5q-72 -84 -175 -139.5 t-218 -55.5q-138 0 -207 85.5t-41 223.5zM189 284q-19 -94 25 -146.5t144 -52.5q110 0 217 61t166 153l45 227h-222q-139 0 -247 -70.5t-128 -171.5zM547 1409q14 74 69 120t123 46q61 0 99 -49t25 -117q-16 -75 -70 -119t-120 -44q-63 0 -101.5 46.5t-24.5 116.5zM621 1409 q-9 -41 11 -66t56 -25q33 0 62.5 26t38.5 65q8 43 -10.5 68t-54.5 25q-33 0 -64.5 -27t-38.5 -66z" />
179
+ <glyph unicode="&#xe6;" horiz-adv-x="1621" d="M49 293q33 168 153.5 253.5t322.5 85.5h242l18 88q28 142 -15 211t-158 69q-116 0 -206 -68t-109 -167l-103 12l-1 6q24 147 143 233t296 86q105 0 177.5 -52t94.5 -150q76 97 175 149.5t208 52.5q175 0 260 -126.5t43 -337.5l-20 -100h-699l-6 -29q-41 -202 18 -315.5 t229 -113.5q89 0 173.5 33.5t151.5 85.5l27 -87q-64 -55 -155 -94t-217 -39q-120 0 -205 57.5t-124 160.5q-62 -88 -179 -153t-267 -65q-148 0 -222.5 86t-45.5 228zM165 289q-21 -103 26.5 -156.5t162.5 -53.5q86 0 188.5 54t148.5 115l57 288h-240q-133 0 -228 -72.5 t-115 -174.5zM900 642l2 -6h572l6 31q31 155 -21 244t-192 89q-118 0 -220.5 -102.5t-146.5 -255.5z" />
180
+ <glyph unicode="&#xe7;" horiz-adv-x="998" d="M108 520l7 42q39 245 174 392.5t342 147.5q161 0 257 -106t65 -276l-2 -5h-104q22 135 -45.5 210t-186.5 75q-154 0 -254 -126.5t-130 -311.5l-7 -42q-32 -199 25 -319.5t220 -120.5q106 0 202.5 68.5t115.5 188.5h102l2 -6q-21 -157 -151.5 -254.5t-286.5 -97.5 q-198 0 -290.5 153t-54.5 388zM266 -443l9 78q78 0 142.5 30.5t76.5 89.5q12 61 -20.5 81.5t-129.5 28.5l52 127h90l-25 -64q71 -9 107.5 -48.5t20.5 -122.5q-20 -97 -102 -148.5t-221 -51.5z" />
181
+ <glyph unicode="&#xe8;" horiz-adv-x="993" d="M102 509l9 55q38 241 185.5 389.5t325.5 148.5q179 0 268 -127t56 -335l-16 -102h-708l-4 -29q-30 -190 39.5 -309.5t216.5 -119.5q99 0 179.5 31.5t141.5 88.5l36 -82q-67 -64 -160 -101.5t-213 -37.5q-183 0 -288 151t-68 379zM249 645l2 -6h580l5 30q23 147 -37 239 t-193 92q-117 0 -217.5 -102t-139.5 -253zM423 1506h154l145 -266h-112z" />
182
+ <glyph unicode="&#xe9;" horiz-adv-x="993" d="M102 509l9 55q38 241 185.5 389.5t325.5 148.5q179 0 268 -127t56 -335l-16 -102h-708l-4 -29q-30 -190 39.5 -309.5t216.5 -119.5q99 0 179.5 31.5t141.5 88.5l36 -82q-67 -64 -160 -101.5t-213 -37.5q-183 0 -288 151t-68 379zM249 645l2 -6h580l5 30q23 147 -37 239 t-193 92q-117 0 -217.5 -102t-139.5 -253zM590 1241l228 261h141l2 -6l-273 -260h-96z" />
183
+ <glyph unicode="&#xea;" horiz-adv-x="993" d="M102 509l9 55q38 241 185.5 389.5t325.5 148.5q179 0 268 -127t56 -335l-16 -102h-708l-4 -29q-30 -190 39.5 -309.5t216.5 -119.5q99 0 179.5 31.5t141.5 88.5l36 -82q-67 -64 -160 -101.5t-213 -37.5q-183 0 -288 151t-68 379zM249 645l2 -6h580l5 30q23 147 -37 239 t-193 92q-117 0 -217.5 -102t-139.5 -253zM402 1280l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
184
+ <glyph unicode="&#xeb;" horiz-adv-x="993" d="M102 509l9 55q38 241 185.5 389.5t325.5 148.5q179 0 268 -127t56 -335l-16 -102h-708l-4 -29q-30 -190 39.5 -309.5t216.5 -119.5q99 0 179.5 31.5t141.5 88.5l36 -82q-67 -64 -160 -101.5t-213 -37.5q-183 0 -288 151t-68 379zM249 645l2 -6h580l5 30q23 147 -37 239 t-193 92q-117 0 -217.5 -102t-139.5 -253zM372 1320l25 157h165l-25 -157h-165zM809 1320l25 157h164l-25 -157h-164z" />
185
+ <glyph unicode="&#xec;" horiz-adv-x="438" d="M75 0l216 1082h117l-216 -1082h-117zM148 1484h154l145 -266h-112z" />
186
+ <glyph unicode="&#xed;" horiz-adv-x="438" d="M75 0l216 1082h117l-216 -1082h-117zM313 1219l228 261h141l2 -6l-273 -260h-96z" />
187
+ <glyph unicode="&#xee;" horiz-adv-x="438" d="M75 0l216 1082h117l-216 -1082h-117zM127 1258l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
188
+ <glyph unicode="&#xef;" horiz-adv-x="438" d="M75 0l216 1082h117l-216 -1082h-117zM97 1299l25 157h165l-25 -157h-165zM534 1299l25 157h164l-25 -157h-164z" />
189
+ <glyph unicode="&#xf0;" horiz-adv-x="1118" d="M101 455q50 251 195.5 380.5t352.5 129.5q92 0 168.5 -43t114.5 -113l4 4q13 143 -11 248t-80 181l-326 -179l-34 74l305 167q-35 31 -76.5 57.5t-89.5 51.5l57 104q65 -30 119.5 -68t98.5 -85l268 147l34 -74l-251 -138q80 -121 100 -289.5t-23 -386.5l-18 -88 q-52 -261 -207.5 -408.5t-352.5 -147.5q-181 0 -284.5 139t-63.5 337zM218 455q-32 -158 34.5 -265.5t220.5 -107.5q136 0 258.5 129.5t161.5 323.5l18 90q4 20 6.5 33t4.5 26q-19 76 -92 126.5t-202 50.5q-147 0 -261.5 -117t-148.5 -289z" />
190
+ <glyph unicode="&#xf1;" d="M66 0l216 1082h103l-26 -178q67 96 159 147t205 51q153 0 222 -109.5t25 -333.5l-132 -659h-116l132 658q39 199 -8.5 269.5t-169.5 70.5q-108 0 -197.5 -70t-147.5 -183l-149 -745h-116zM397 1300q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91 l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z" />
191
+ <glyph unicode="&#xf2;" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q194 0 295.5 -154.5t63.5 -390.5l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154t-63 391zM220 524q-32 -195 35 -319.5t225 -124.5q147 0 258 129.5t141 314.5l5 33q30 192 -36.5 317.5t-222.5 125.5 q-149 0 -260.5 -130.5t-139.5 -312.5zM441 1505h154l145 -266h-112z" />
192
+ <glyph unicode="&#xf3;" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q194 0 295.5 -154.5t63.5 -390.5l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154t-63 391zM220 524q-32 -195 35 -319.5t225 -124.5q147 0 258 129.5t141 314.5l5 33q30 192 -36.5 317.5t-222.5 125.5 q-149 0 -260.5 -130.5t-139.5 -312.5zM608 1240l228 261h141l2 -6l-273 -260h-96z" />
193
+ <glyph unicode="&#xf4;" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q194 0 295.5 -154.5t63.5 -390.5l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154t-63 391zM220 524q-32 -195 35 -319.5t225 -124.5q147 0 258 129.5t141 314.5l5 33q30 192 -36.5 317.5t-222.5 125.5 q-149 0 -260.5 -130.5t-139.5 -312.5zM420 1279l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
194
+ <glyph unicode="&#xf5;" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q194 0 295.5 -154.5t63.5 -390.5l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154t-63 391zM220 524q-32 -195 35 -319.5t225 -124.5q147 0 258 129.5t141 314.5l5 33q30 192 -36.5 317.5t-222.5 125.5 q-149 0 -260.5 -130.5t-139.5 -312.5zM363 1300q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z" />
195
+ <glyph unicode="&#xf6;" d="M104 524l5 33q39 248 183.5 396.5t348.5 148.5q194 0 295.5 -154.5t63.5 -390.5l-5 -33q-40 -249 -184 -397t-347 -148q-195 0 -297 154t-63 391zM220 524q-32 -195 35 -319.5t225 -124.5q147 0 258 129.5t141 314.5l5 33q30 192 -36.5 317.5t-222.5 125.5 q-149 0 -260.5 -130.5t-139.5 -312.5zM390 1319l25 157h165l-25 -157h-165zM827 1319l25 157h164l-25 -157h-164z" />
196
+ <glyph unicode="&#xf7;" horiz-adv-x="1093" d="M116 644l23 116h928l-23 -116h-928zM431 212l32 160h135l-32 -160h-135zM591 1010l32 160h135l-32 -160h-135z" />
197
+ <glyph unicode="&#xf8;" horiz-adv-x="1073" d="M79 -140l139 212q-77 73 -107.5 190.5t-6.5 261.5l5 33q39 248 183.5 396.5t348.5 148.5q60 0 113 -16.5t97 -47.5l115 176h89l-149 -226q65 -75 90 -186.5t4 -244.5l-5 -33q-40 -249 -184 -397t-347 -148q-53 0 -100 12t-87 36l-110 -167h-88zM216 320q15 -91 63 -145 l6 -1l505 771q-33 26 -74 40.5t-91 14.5q-149 0 -260.5 -130.5t-139.5 -312.5l-5 -33q-19 -113 -4 -204zM336 118q29 -19 65 -28.5t79 -9.5q147 0 258 129.5t141 314.5l5 33q15 99 4.5 183t-47.5 138l-6 2z" />
198
+ <glyph unicode="&#xf9;" d="M153 455l125 627h116l-125 -629q-43 -211 1.5 -290.5t162.5 -79.5q117 0 206.5 63.5t143.5 170.5l153 765h116l-216 -1082h-102l24 166q-66 -92 -157 -139.5t-203 -47.5q-150 0 -222 118t-23 358zM472 1484h154l145 -266h-112z" />
199
+ <glyph unicode="&#xfa;" d="M153 455l125 627h116l-125 -629q-43 -211 1.5 -290.5t162.5 -79.5q117 0 206.5 63.5t143.5 170.5l153 765h116l-216 -1082h-102l24 166q-66 -92 -157 -139.5t-203 -47.5q-150 0 -222 118t-23 358zM639 1219l228 261h141l2 -6l-273 -260h-96z" />
200
+ <glyph unicode="&#xfb;" d="M153 455l125 627h116l-125 -629q-43 -211 1.5 -290.5t162.5 -79.5q117 0 206.5 63.5t143.5 170.5l153 765h116l-216 -1082h-102l24 166q-66 -92 -157 -139.5t-203 -47.5q-150 0 -222 118t-23 358zM451 1258l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168 h-106z" />
201
+ <glyph unicode="&#xfc;" d="M153 455l125 627h116l-125 -629q-43 -211 1.5 -290.5t162.5 -79.5q117 0 206.5 63.5t143.5 170.5l153 765h116l-216 -1082h-102l24 166q-66 -92 -157 -139.5t-203 -47.5q-150 0 -222 118t-23 358zM421 1299l25 157h165l-25 -157h-165zM858 1299l25 157h164l-25 -157h-164 z" />
202
+ <glyph unicode="&#xfd;" horiz-adv-x="944" d="M-72 -423l34 100q12 -2 36 -4.5t35 -2.5q66 0 124.5 58t103.5 140l82 147l-175 1067h129l115 -789l9 -122l6 -1l483 912h130l-687 -1255q-61 -110 -139 -187t-198 -77q-18 0 -46 4.5t-42 9.5zM578 1219l228 261h141l2 -6l-273 -260h-96z" />
203
+ <glyph unicode="&#xfe;" horiz-adv-x="1083" d="M-14 -416l299 1498h1l96 478h115l-124 -618l5 -4q59 77 140.5 120.5t179.5 43.5q171 0 254.5 -168.5t32.5 -421.5l-4 -21q-52 -259 -168.5 -385.5t-299.5 -126.5q-101 0 -179.5 42t-120.5 119l-28 -140l-83 -416h-116zM236 258q25 -83 92.5 -130.5t177.5 -47.5 q135 0 228 110t131 301l4 21q43 217 -13.5 351.5t-204.5 134.5q-100 0 -177.5 -61.5t-133.5 -158.5v-1z" />
204
+ <glyph unicode="&#xff;" horiz-adv-x="944" d="M-72 -423l34 100q12 -2 36 -4.5t35 -2.5q66 0 124.5 58t103.5 140l82 147l-175 1067h129l115 -789l9 -122l6 -1l483 912h130l-687 -1255q-61 -110 -139 -187t-198 -77q-18 0 -46 4.5t-42 9.5zM360 1299l25 157h165l-25 -157h-165zM797 1299l25 157h164l-25 -157h-164z " />
205
+ <glyph unicode="&#x152;" horiz-adv-x="1792" d="M135 576l61 304q56 282 223.5 439.5t395.5 157.5q64 0 138.5 -6t147.5 -15h803l-20 -102h-741l-109 -547h650l-20 -102h-650l-121 -604h745l-20 -101h-808q-92 -10 -158.5 -15.5t-133.5 -5.5q-209 0 -322 168.5t-61 428.5zM251 576q-49 -243 29 -369t258 -126 q57 0 119.5 3.5t119.5 11.5l253 1264q-53 7 -112.5 11t-122.5 4q-165 0 -301.5 -134.5t-181.5 -358.5z" />
206
+ <glyph unicode="&#x153;" horiz-adv-x="1767" d="M113 524l6 33q51 254 199.5 399.5t353.5 145.5q125 0 213 -72t121 -196q79 127 193 197.5t236 70.5q174 0 260.5 -128t45.5 -334l-20 -102h-707l-6 -29q-40 -194 25 -311.5t213 -117.5q96 0 180 32t145 88l34 -82q-69 -64 -164 -101.5t-215 -37.5q-118 0 -207 71 t-122 193q-78 -128 -193.5 -196t-253.5 -68q-189 0 -286.5 155t-50.5 390zM229 524q-41 -200 20.5 -322t220.5 -122q143 0 261 130t156 314l6 33q39 196 -22.5 319.5t-218.5 123.5q-144 0 -262.5 -131.5t-154.5 -311.5zM1044 645l2 -6h579l6 30q29 150 -27 240.5t-189 90.5 q-112 0 -219 -103t-152 -252z" />
207
+ <glyph unicode="&#x178;" horiz-adv-x="1168" d="M241 1456h135l252 -803l576 803h134l-678 -924l-106 -532h-115l108 540zM526 1634l25 157h165l-25 -157h-165zM963 1634l25 157h164l-25 -157h-164z" />
208
+ <glyph unicode="&#x2c6;" horiz-adv-x="834" d="M319 1252l5 21l257 221h92l170 -224l-4 -18h-107l-120 168l-187 -168h-106z" />
209
+ <glyph unicode="&#x2dc;" horiz-adv-x="845" d="M237 1281q14 90 73 146.5t137 56.5q57 0 126 -55t119 -55q41 0 78 36t46 91l73 -20q-15 -91 -75 -147.5t-138 -56.5q-64 0 -128.5 55t-115.5 55q-42 0 -78 -35.5t-44 -88.5z" />
210
+ <glyph unicode="&#x2000;" horiz-adv-x="948" />
211
+ <glyph unicode="&#x2001;" horiz-adv-x="1896" />
212
+ <glyph unicode="&#x2002;" horiz-adv-x="948" />
213
+ <glyph unicode="&#x2003;" horiz-adv-x="1896" />
214
+ <glyph unicode="&#x2004;" horiz-adv-x="632" />
215
+ <glyph unicode="&#x2005;" horiz-adv-x="474" />
216
+ <glyph unicode="&#x2006;" horiz-adv-x="316" />
217
+ <glyph unicode="&#x2007;" horiz-adv-x="316" />
218
+ <glyph unicode="&#x2008;" horiz-adv-x="237" />
219
+ <glyph unicode="&#x2009;" horiz-adv-x="379" />
220
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
221
+ <glyph unicode="&#x2010;" horiz-adv-x="554" d="M79 570l20 101h446l-20 -101h-446z" />
222
+ <glyph unicode="&#x2011;" horiz-adv-x="554" d="M79 570l20 101h446l-20 -101h-446z" />
223
+ <glyph unicode="&#x2012;" horiz-adv-x="554" d="M79 570l20 101h446l-20 -101h-446z" />
224
+ <glyph unicode="&#x2013;" horiz-adv-x="1325" d="M229 686l28 102h1008l-27 -102h-1009z" />
225
+ <glyph unicode="&#x2014;" horiz-adv-x="1560" d="M220 686l33 102h1242l-34 -102h-1241z" />
226
+ <glyph unicode="&#x2018;" horiz-adv-x="352" d="M219 1074l35 174l168 312h68l-121 -312l-35 -174h-115z" />
227
+ <glyph unicode="&#x2019;" horiz-adv-x="352" d="M219 1074l119 304l36 182h116l-36 -179l-167 -307h-68z" />
228
+ <glyph unicode="&#x201a;" horiz-adv-x="342" d="M-38 -211l102 266l41 204h115l-39 -194l-151 -276h-68z" />
229
+ <glyph unicode="&#x201c;" horiz-adv-x="587" d="M219 1074l35 174l168 312h68l-121 -312l-35 -174h-115zM453 1074l35 174l168 312h68l-121 -312l-35 -174h-115z" />
230
+ <glyph unicode="&#x201d;" horiz-adv-x="592" d="M219 1074l119 304l36 182h116l-36 -179l-167 -307h-68zM458 1074l119 304l36 182h116l-36 -179l-167 -307h-68z" />
231
+ <glyph unicode="&#x201e;" horiz-adv-x="569" d="M-36 -202l107 295l36 181h116l-35 -175l-156 -301h-68zM190 -202l108 299l36 177h116l-35 -175l-156 -301h-69z" />
232
+ <glyph unicode="&#x2022;" horiz-adv-x="628" d="M198 717l13 65q17 84 73 131.5t137 47.5q74 0 113.5 -51.5t24.5 -127.5l-13 -65q-17 -84 -72.5 -130.5t-136.5 -46.5q-74 0 -114 50t-25 127z" />
233
+ <glyph unicode="&#x2026;" horiz-adv-x="1235" d="M93 0l33 164h131l-33 -164h-131zM476 0l33 164h131l-33 -164h-131zM843 0l33 164h131l-33 -164h-131z" />
234
+ <glyph unicode="&#x202f;" horiz-adv-x="379" />
235
+ <glyph unicode="&#x2039;" horiz-adv-x="577" d="M129 546l1 6l3 13l351 379h93l2 -5l-328 -384l177 -388h-100z" />
236
+ <glyph unicode="&#x203a;" horiz-adv-x="577" d="M47 167l328 383l-176 394h101l197 -384l-2 -6h1l-3 -13l-350 -379h-94z" />
237
+ <glyph unicode="&#x205f;" horiz-adv-x="474" />
238
+ <glyph unicode="&#x20ac;" horiz-adv-x="1009" d="M101 533l19 102h156l35 168h-156l20 102h155l8 37q52 260 203.5 397.5t361.5 137.5q50 0 103 -8.5t108 -22.5l-30 -106q-48 16 -98 25.5t-103 9.5q-148 0 -269.5 -118t-159.5 -313l-8 -39h506l-20 -102h-506l-35 -168h506l-19 -102h-506l-4 -19q-43 -211 27 -322.5 t231 -111.5q50 0 105.5 8.5t107.5 25.5l-12 -104q-54 -15 -110 -23t-111 -8q-193 0 -297.5 147.5t-55.5 387.5l4 19h-156z" />
239
+ <glyph unicode="&#x2122;" horiz-adv-x="1187" d="M287 1387l14 69h357l-14 -69h-141l-93 -468h-70l93 468h-146zM623 919l107 537h89l73 -421l6 -1l246 422h83l-107 -537h-69l75 377l-5 3l-224 -380h-47l-74 394h-6l-78 -394h-69z" />
240
+ <glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
241
+ <glyph unicode="&#xfb02;" horiz-adv-x="1083" d="M147 0l197 984h-166l19 98h166l32 158q35 174 126.5 257.5t231.5 83.5q29 0 61 -5t62 -14l-33 -99q-21 6 -44 9.5t-55 3.5q-84 0 -147.5 -63t-85.5 -173l-32 -158h238l-19 -98h-238l-197 -984h-116zM718 0l312 1560h115l-312 -1560h-115z" />
242
+ <glyph unicode="&#xfb03;" horiz-adv-x="1673" d="M147 0l197 984h-166l19 98h166l32 158q35 174 126.5 257.5t231.5 83.5q29 0 61 -5t62 -14l-33 -99q-21 6 -44 9.5t-55 3.5q-84 0 -147.5 -63t-85.5 -173l-32 -158h238l-19 -98h-238l-197 -984h-116zM768 0l197 984h-167l19 98h167l28 138q37 184 142 272.5t267 88.5 q58 0 121.5 -15.5t123.5 -43.5l-40 -103q-50 25 -101 39t-118 14q-106 0 -180.5 -66t-98.5 -186l-28 -138h233l-19 -98h-233l-197 -984h-116zM1308 0l216 1082h116l-216 -1082h-116z" />
243
+ <glyph unicode="&#xfb04;" horiz-adv-x="1721" d="M147 0l197 984h-166l19 98h166l32 158q35 174 126.5 257.5t231.5 83.5q29 0 61 -5t62 -14l-33 -99q-21 6 -44 9.5t-55 3.5q-84 0 -147.5 -63t-85.5 -173l-32 -158h238l-19 -98h-238l-197 -984h-116zM785 0l197 984h-166l19 98h166l32 158q35 174 126.5 257.5t231.5 83.5 q29 0 61 -5t62 -14l-33 -99q-21 6 -44 9.5t-55 3.5q-84 0 -147.5 -63t-85.5 -173l-32 -158h238l-19 -98h-238l-197 -984h-116zM1356 0l312 1560h115l-312 -1560h-115z" />
244
+ <hkern u1="&#x22;" u2="w" k="-11" />
245
+ <hkern u1="&#x27;" u2="w" k="-11" />
246
+ <hkern u1="&#x28;" u2="&#x178;" k="-22" />
247
+ <hkern u1="&#x28;" u2="&#xdd;" k="-22" />
248
+ <hkern u1="&#x28;" u2="Y" k="-22" />
249
+ <hkern u1="&#x28;" u2="W" k="-18" />
250
+ <hkern u1="&#x28;" u2="V" k="-20" />
251
+ <hkern u1="&#x2f;" u2="&#x2f;" k="224" />
252
+ <hkern u1="A" u2="w" k="33" />
253
+ <hkern u1="A" u2="t" k="17" />
254
+ <hkern u1="A" u2="&#x3f;" k="61" />
255
+ <hkern u1="C" u2="&#x7d;" k="17" />
256
+ <hkern u1="C" u2="]" k="12" />
257
+ <hkern u1="C" u2="&#x29;" k="26" />
258
+ <hkern u1="D" u2="&#xc6;" k="33" />
259
+ <hkern u1="E" u2="w" k="22" />
260
+ <hkern u1="E" u2="f" k="18" />
261
+ <hkern u1="F" u2="&#x2026;" k="234" />
262
+ <hkern u1="F" u2="&#x201e;" k="234" />
263
+ <hkern u1="F" u2="&#x201a;" k="234" />
264
+ <hkern u1="F" u2="&#x153;" k="21" />
265
+ <hkern u1="F" u2="&#xff;" k="24" />
266
+ <hkern u1="F" u2="&#xfd;" k="24" />
267
+ <hkern u1="F" u2="&#xfc;" k="22" />
268
+ <hkern u1="F" u2="&#xfb;" k="22" />
269
+ <hkern u1="F" u2="&#xfa;" k="22" />
270
+ <hkern u1="F" u2="&#xf9;" k="22" />
271
+ <hkern u1="F" u2="&#xf6;" k="21" />
272
+ <hkern u1="F" u2="&#xf5;" k="21" />
273
+ <hkern u1="F" u2="&#xf4;" k="21" />
274
+ <hkern u1="F" u2="&#xf3;" k="21" />
275
+ <hkern u1="F" u2="&#xf2;" k="21" />
276
+ <hkern u1="F" u2="&#xeb;" k="21" />
277
+ <hkern u1="F" u2="&#xea;" k="21" />
278
+ <hkern u1="F" u2="&#xe9;" k="21" />
279
+ <hkern u1="F" u2="&#xe8;" k="21" />
280
+ <hkern u1="F" u2="&#xe7;" k="21" />
281
+ <hkern u1="F" u2="&#xe5;" k="34" />
282
+ <hkern u1="F" u2="&#xe4;" k="34" />
283
+ <hkern u1="F" u2="&#xe3;" k="34" />
284
+ <hkern u1="F" u2="&#xe2;" k="34" />
285
+ <hkern u1="F" u2="&#xe1;" k="34" />
286
+ <hkern u1="F" u2="&#xe0;" k="34" />
287
+ <hkern u1="F" u2="&#xc5;" k="59" />
288
+ <hkern u1="F" u2="&#xc4;" k="59" />
289
+ <hkern u1="F" u2="&#xc3;" k="59" />
290
+ <hkern u1="F" u2="&#xc2;" k="59" />
291
+ <hkern u1="F" u2="&#xc1;" k="59" />
292
+ <hkern u1="F" u2="&#xc0;" k="59" />
293
+ <hkern u1="F" u2="y" k="24" />
294
+ <hkern u1="F" u2="v" k="24" />
295
+ <hkern u1="F" u2="u" k="22" />
296
+ <hkern u1="F" u2="r" k="26" />
297
+ <hkern u1="F" u2="q" k="21" />
298
+ <hkern u1="F" u2="o" k="21" />
299
+ <hkern u1="F" u2="g" k="21" />
300
+ <hkern u1="F" u2="e" k="21" />
301
+ <hkern u1="F" u2="d" k="21" />
302
+ <hkern u1="F" u2="c" k="21" />
303
+ <hkern u1="F" u2="a" k="34" />
304
+ <hkern u1="F" u2="T" k="-20" />
305
+ <hkern u1="F" u2="J" k="264" />
306
+ <hkern u1="F" u2="A" k="59" />
307
+ <hkern u1="F" u2="&#x2e;" k="234" />
308
+ <hkern u1="F" u2="&#x2c;" k="234" />
309
+ <hkern u1="K" u2="w" k="63" />
310
+ <hkern u1="L" u2="w" k="92" />
311
+ <hkern u1="O" u2="&#xc6;" k="33" />
312
+ <hkern u1="P" u2="&#xc6;" k="97" />
313
+ <hkern u1="P" u2="t" k="-14" />
314
+ <hkern u1="Q" u2="&#x178;" k="35" />
315
+ <hkern u1="Q" u2="&#xdd;" k="35" />
316
+ <hkern u1="Q" u2="Y" k="35" />
317
+ <hkern u1="Q" u2="W" k="20" />
318
+ <hkern u1="Q" u2="V" k="28" />
319
+ <hkern u1="Q" u2="T" k="43" />
320
+ <hkern u1="R" u2="&#x178;" k="48" />
321
+ <hkern u1="R" u2="&#xdd;" k="48" />
322
+ <hkern u1="R" u2="Y" k="48" />
323
+ <hkern u1="R" u2="V" k="19" />
324
+ <hkern u1="R" u2="T" k="80" />
325
+ <hkern u1="T" u2="&#xf8;" k="95" />
326
+ <hkern u1="T" u2="&#xe6;" k="114" />
327
+ <hkern u1="T" u2="&#xc6;" k="179" />
328
+ <hkern u1="T" u2="&#xbb;" k="216" />
329
+ <hkern u1="T" u2="&#xab;" k="328" />
330
+ <hkern u1="T" u2="w" k="57" />
331
+ <hkern u1="T" u2="r" k="75" />
332
+ <hkern u1="V" u2="&#x7d;" k="-19" />
333
+ <hkern u1="V" u2="r" k="30" />
334
+ <hkern u1="V" u2="]" k="-17" />
335
+ <hkern u1="V" u2="&#x29;" k="-20" />
336
+ <hkern u1="W" u2="&#x7d;" k="-14" />
337
+ <hkern u1="W" u2="r" k="21" />
338
+ <hkern u1="W" u2="]" k="-12" />
339
+ <hkern u1="W" u2="&#x29;" k="-15" />
340
+ <hkern u1="Y" u2="&#x2022;" k="45" />
341
+ <hkern u1="Y" u2="&#xf8;" k="64" />
342
+ <hkern u1="Y" u2="&#xe6;" k="63" />
343
+ <hkern u1="Y" u2="&#xc6;" k="96" />
344
+ <hkern u1="Y" u2="&#xbb;" k="51" />
345
+ <hkern u1="Y" u2="&#xab;" k="82" />
346
+ <hkern u1="Y" u2="&#x7d;" k="-19" />
347
+ <hkern u1="Y" u2="t" k="22" />
348
+ <hkern u1="Y" u2="r" k="40" />
349
+ <hkern u1="Y" u2="f" k="22" />
350
+ <hkern u1="Y" u2="]" k="-18" />
351
+ <hkern u1="Y" u2="&#x2a;" k="49" />
352
+ <hkern u1="Y" u2="&#x29;" k="-20" />
353
+ <hkern u1="Y" u2="&#x26;" k="30" />
354
+ <hkern u1="Z" u2="w" k="27" />
355
+ <hkern u1="[" u2="&#xdc;" k="18" />
356
+ <hkern u1="[" u2="&#xdb;" k="18" />
357
+ <hkern u1="[" u2="&#xda;" k="18" />
358
+ <hkern u1="[" u2="&#xd9;" k="18" />
359
+ <hkern u1="[" u2="U" k="18" />
360
+ <hkern u1="[" u2="J" k="18" />
361
+ <hkern u1="f" u2="&#x201d;" k="-16" />
362
+ <hkern u1="f" u2="&#x201c;" k="-16" />
363
+ <hkern u1="f" u2="&#x2019;" k="-16" />
364
+ <hkern u1="f" u2="&#x2018;" k="-16" />
365
+ <hkern u1="f" u2="&#x153;" k="24" />
366
+ <hkern u1="f" u2="&#xeb;" k="24" />
367
+ <hkern u1="f" u2="&#xea;" k="24" />
368
+ <hkern u1="f" u2="&#xe9;" k="24" />
369
+ <hkern u1="f" u2="&#xe8;" k="24" />
370
+ <hkern u1="f" u2="&#xe7;" k="24" />
371
+ <hkern u1="f" u2="&#x7d;" k="-19" />
372
+ <hkern u1="f" u2="q" k="24" />
373
+ <hkern u1="f" u2="g" k="24" />
374
+ <hkern u1="f" u2="e" k="24" />
375
+ <hkern u1="f" u2="d" k="24" />
376
+ <hkern u1="f" u2="c" k="24" />
377
+ <hkern u1="f" u2="]" k="-18" />
378
+ <hkern u1="f" u2="&#x29;" k="-20" />
379
+ <hkern u1="f" u2="&#x27;" k="-16" />
380
+ <hkern u1="f" u2="&#x22;" k="-16" />
381
+ <hkern u1="k" u2="&#x153;" k="20" />
382
+ <hkern u1="k" u2="&#xeb;" k="20" />
383
+ <hkern u1="k" u2="&#xea;" k="20" />
384
+ <hkern u1="k" u2="&#xe9;" k="20" />
385
+ <hkern u1="k" u2="&#xe8;" k="20" />
386
+ <hkern u1="k" u2="&#xe7;" k="20" />
387
+ <hkern u1="k" u2="q" k="20" />
388
+ <hkern u1="k" u2="g" k="20" />
389
+ <hkern u1="k" u2="e" k="20" />
390
+ <hkern u1="k" u2="d" k="20" />
391
+ <hkern u1="k" u2="c" k="20" />
392
+ <hkern u1="r" u2="w" k="-17" />
393
+ <hkern u1="r" u2="t" k="-32" />
394
+ <hkern u1="r" u2="f" k="-15" />
395
+ <hkern u1="t" u2="&#xf6;" k="20" />
396
+ <hkern u1="t" u2="&#xf5;" k="20" />
397
+ <hkern u1="t" u2="&#xf4;" k="20" />
398
+ <hkern u1="t" u2="&#xf3;" k="20" />
399
+ <hkern u1="t" u2="&#xf2;" k="20" />
400
+ <hkern u1="t" u2="o" k="20" />
401
+ <hkern u1="v" u2="f" k="-13" />
402
+ <hkern u1="w" u2="&#x2026;" k="124" />
403
+ <hkern u1="w" u2="&#x201e;" k="124" />
404
+ <hkern u1="w" u2="&#x201a;" k="124" />
405
+ <hkern u1="w" u2="&#x2e;" k="124" />
406
+ <hkern u1="w" u2="&#x2c;" k="124" />
407
+ <hkern u1="y" u2="f" k="-13" />
408
+ <hkern u1="&#x7b;" u2="&#xdc;" k="20" />
409
+ <hkern u1="&#x7b;" u2="&#xdb;" k="20" />
410
+ <hkern u1="&#x7b;" u2="&#xda;" k="20" />
411
+ <hkern u1="&#x7b;" u2="&#xd9;" k="20" />
412
+ <hkern u1="&#x7b;" u2="U" k="20" />
413
+ <hkern u1="&#x7b;" u2="J" k="20" />
414
+ <hkern u1="&#xc0;" u2="w" k="33" />
415
+ <hkern u1="&#xc0;" u2="t" k="17" />
416
+ <hkern u1="&#xc0;" u2="&#x3f;" k="61" />
417
+ <hkern u1="&#xc1;" u2="w" k="33" />
418
+ <hkern u1="&#xc1;" u2="t" k="17" />
419
+ <hkern u1="&#xc1;" u2="&#x3f;" k="61" />
420
+ <hkern u1="&#xc2;" u2="w" k="33" />
421
+ <hkern u1="&#xc2;" u2="t" k="17" />
422
+ <hkern u1="&#xc2;" u2="&#x3f;" k="61" />
423
+ <hkern u1="&#xc3;" u2="w" k="33" />
424
+ <hkern u1="&#xc3;" u2="t" k="17" />
425
+ <hkern u1="&#xc3;" u2="&#x3f;" k="61" />
426
+ <hkern u1="&#xc4;" u2="w" k="33" />
427
+ <hkern u1="&#xc4;" u2="t" k="17" />
428
+ <hkern u1="&#xc4;" u2="&#x3f;" k="61" />
429
+ <hkern u1="&#xc5;" u2="w" k="33" />
430
+ <hkern u1="&#xc5;" u2="t" k="17" />
431
+ <hkern u1="&#xc5;" u2="&#x3f;" k="61" />
432
+ <hkern u1="&#xc7;" u2="&#x7d;" k="17" />
433
+ <hkern u1="&#xc7;" u2="]" k="12" />
434
+ <hkern u1="&#xc7;" u2="&#x29;" k="26" />
435
+ <hkern u1="&#xc8;" u2="w" k="22" />
436
+ <hkern u1="&#xc8;" u2="f" k="18" />
437
+ <hkern u1="&#xc9;" u2="w" k="22" />
438
+ <hkern u1="&#xc9;" u2="f" k="18" />
439
+ <hkern u1="&#xca;" u2="w" k="22" />
440
+ <hkern u1="&#xca;" u2="f" k="18" />
441
+ <hkern u1="&#xcb;" u2="w" k="22" />
442
+ <hkern u1="&#xcb;" u2="f" k="18" />
443
+ <hkern u1="&#xd0;" u2="&#xc6;" k="33" />
444
+ <hkern u1="&#xd2;" u2="&#xc6;" k="33" />
445
+ <hkern u1="&#xd3;" u2="&#xc6;" k="33" />
446
+ <hkern u1="&#xd4;" u2="&#xc6;" k="33" />
447
+ <hkern u1="&#xd5;" u2="&#xc6;" k="33" />
448
+ <hkern u1="&#xd6;" u2="&#xc6;" k="33" />
449
+ <hkern u1="&#xdd;" u2="&#x2022;" k="45" />
450
+ <hkern u1="&#xdd;" u2="&#xf8;" k="64" />
451
+ <hkern u1="&#xdd;" u2="&#xe6;" k="63" />
452
+ <hkern u1="&#xdd;" u2="&#xc6;" k="96" />
453
+ <hkern u1="&#xdd;" u2="&#xbb;" k="51" />
454
+ <hkern u1="&#xdd;" u2="&#xab;" k="82" />
455
+ <hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
456
+ <hkern u1="&#xdd;" u2="t" k="22" />
457
+ <hkern u1="&#xdd;" u2="r" k="40" />
458
+ <hkern u1="&#xdd;" u2="f" k="22" />
459
+ <hkern u1="&#xdd;" u2="]" k="-18" />
460
+ <hkern u1="&#xdd;" u2="&#x2a;" k="49" />
461
+ <hkern u1="&#xdd;" u2="&#x29;" k="-20" />
462
+ <hkern u1="&#xdd;" u2="&#x26;" k="30" />
463
+ <hkern u1="&#xfd;" u2="f" k="-13" />
464
+ <hkern u1="&#xff;" u2="f" k="-13" />
465
+ <hkern u1="&#x178;" u2="&#x2022;" k="45" />
466
+ <hkern u1="&#x178;" u2="&#xf8;" k="64" />
467
+ <hkern u1="&#x178;" u2="&#xe6;" k="63" />
468
+ <hkern u1="&#x178;" u2="&#xc6;" k="96" />
469
+ <hkern u1="&#x178;" u2="&#xbb;" k="51" />
470
+ <hkern u1="&#x178;" u2="&#xab;" k="82" />
471
+ <hkern u1="&#x178;" u2="&#x7d;" k="-19" />
472
+ <hkern u1="&#x178;" u2="t" k="22" />
473
+ <hkern u1="&#x178;" u2="r" k="40" />
474
+ <hkern u1="&#x178;" u2="f" k="22" />
475
+ <hkern u1="&#x178;" u2="]" k="-18" />
476
+ <hkern u1="&#x178;" u2="&#x2a;" k="49" />
477
+ <hkern u1="&#x178;" u2="&#x29;" k="-20" />
478
+ <hkern u1="&#x178;" u2="&#x26;" k="30" />
479
+ <hkern u1="&#x2018;" u2="w" k="-11" />
480
+ <hkern u1="&#x2019;" u2="w" k="-11" />
481
+ <hkern u1="&#x201c;" u2="w" k="-11" />
482
+ <hkern u1="&#x201d;" u2="w" k="-11" />
483
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
484
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
485
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
486
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
487
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
488
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
489
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
490
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
491
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
492
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
493
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
494
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
495
+ <hkern g1="B" g2="T" k="27" />
496
+ <hkern g1="B" g2="V" k="24" />
497
+ <hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
498
+ <hkern g1="C,Ccedilla" g2="T" k="29" />
499
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
500
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
501
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
502
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
503
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
504
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
505
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
506
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
507
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
508
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
509
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
510
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
511
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
512
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
513
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
514
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
515
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
516
+ <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
517
+ <hkern g1="K" g2="m,n,p,ntilde" k="23" />
518
+ <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
519
+ <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
520
+ <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
521
+ <hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
522
+ <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
523
+ <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
524
+ <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
525
+ <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
526
+ <hkern g1="L" g2="T" k="275" />
527
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
528
+ <hkern g1="L" g2="V" k="175" />
529
+ <hkern g1="L" g2="W" k="143" />
530
+ <hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
531
+ <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
532
+ <hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
533
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
534
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
535
+ <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
536
+ <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
537
+ <hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
538
+ <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
539
+ <hkern g1="P" g2="X" k="31" />
540
+ <hkern g1="P" g2="Z" k="26" />
541
+ <hkern g1="P" g2="J" k="200" />
542
+ <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
543
+ <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
544
+ <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
545
+ <hkern g1="T" g2="m,n,p,ntilde" k="109" />
546
+ <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
547
+ <hkern g1="T" g2="s" k="116" />
548
+ <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
549
+ <hkern g1="T" g2="T" k="-16" />
550
+ <hkern g1="T" g2="V" k="-16" />
551
+ <hkern g1="T" g2="W" k="-15" />
552
+ <hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
553
+ <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
554
+ <hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
555
+ <hkern g1="T" g2="z" k="60" />
556
+ <hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
557
+ <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
558
+ <hkern g1="T" g2="J" k="240" />
559
+ <hkern g1="T" g2="S" k="16" />
560
+ <hkern g1="T" g2="x" k="77" />
561
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
562
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
563
+ <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
564
+ <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
565
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
566
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
567
+ <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
568
+ <hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
569
+ <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
570
+ <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
571
+ <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
572
+ <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
573
+ <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
574
+ <hkern g1="W" g2="T" k="-14" />
575
+ <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
576
+ <hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
577
+ <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
578
+ <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
579
+ <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
580
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
581
+ <hkern g1="X" g2="V" k="-14" />
582
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
583
+ <hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
584
+ <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
585
+ <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
586
+ <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
587
+ <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
588
+ <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
589
+ <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
590
+ <hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
591
+ <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
592
+ <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
593
+ <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
594
+ <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
595
+ <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
596
+ <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
597
+ <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
598
+ <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
599
+ <hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
600
+ <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
601
+ <hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
602
+ <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
603
+ <hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
604
+ <hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
605
+ <hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
606
+ <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
607
+ <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
608
+ <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
609
+ <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
610
+ <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
611
+ <hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
612
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
613
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
614
+ <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
615
+ <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
616
+ <hkern g1="b,p,thorn" g2="z" k="15" />
617
+ <hkern g1="b,p,thorn" g2="x" k="15" />
618
+ <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
619
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
620
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
621
+ <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
622
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
623
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
624
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
625
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
626
+ <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
627
+ <hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
628
+ <hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
629
+ <hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
630
+ <hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
631
+ <hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
632
+ <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
633
+ <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
634
+ <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
635
+ <hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
636
+ <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
637
+ <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
638
+ <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
639
+ <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
640
+ </font>
641
+ </defs></svg>