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,631 @@
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="robotothin_italic" horiz-adv-x="1121" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="490" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1067" d="M140 1027l8 55h188l24 158q25 169 122.5 255t251.5 86q65 0 132.5 -13.5t127.5 -43.5l-16 -52q-62 29 -115.5 42t-135.5 13q-121 0 -207.5 -77t-105.5 -210l-24 -158h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM750 0l162 1082h54l-162 -1082h-54z" />
10
+ <glyph horiz-adv-x="2048" />
11
+ <glyph horiz-adv-x="2048" />
12
+ <glyph unicode="&#xd;" horiz-adv-x="490" />
13
+ <glyph horiz-adv-x="0" />
14
+ <glyph unicode="&#x9;" horiz-adv-x="0" />
15
+ <glyph unicode=" " horiz-adv-x="490" />
16
+ <glyph unicode="&#x09;" horiz-adv-x="490" />
17
+ <glyph unicode="&#xa0;" horiz-adv-x="490" />
18
+ <glyph unicode="!" horiz-adv-x="397" d="M67 0l20 134h95l-20 -134h-95zM159 478l146 978h54l-146 -978h-54z" />
19
+ <glyph unicode="&#x22;" horiz-adv-x="521" d="M202 1122l83 268l23 170h55l-23 -167l-88 -271h-50zM383 1122l84 268l23 170h54l-23 -167l-88 -271h-50z" />
20
+ <glyph unicode="#" horiz-adv-x="1265" d="M47 410l7 52h280l174 524h-299l8 54h309l138 416h56l-138 -416h365l138 416h56l-139 -416h255l-8 -54h-265l-174 -524h285l-7 -52h-295l-136 -410h-56l136 410h-363l-136 -410h-56l135 410h-270zM391 462h364l174 524h-365z" />
21
+ <glyph unicode="$" d="M108 404l2 5h47q-29 -207 78.5 -292t279.5 -85q157 0 272 93t133 219q19 135 -48 207.5t-273 150.5q-204 71 -289 156t-62 252q23 166 140.5 262.5t296.5 103.5l27 187h55l-27 -187q173 -10 262 -122.5t63 -306.5h-54q23 173 -56.5 275t-251.5 102q-166 0 -274.5 -92.5 t-125.5 -219.5q-19 -135 43 -209.5t278 -148.5q200 -73 286.5 -158t63.5 -250q-24 -167 -140 -261.5t-292 -104.5l-26 -188h-55l26 188q-183 6 -298 108.5t-81 315.5z" />
22
+ <glyph unicode="%" horiz-adv-x="1527" d="M199 1099l11 77q19 130 107.5 215.5t210.5 85.5q114 0 178.5 -88.5t46.5 -212.5l-11 -77q-20 -130 -107.5 -214.5t-206.5 -84.5q-117 0 -182.5 87.5t-46.5 211.5zM254 1099q-16 -103 30 -173.5t152 -70.5q98 0 167 73t84 171l11 77q16 103 -29.5 174.5t-149.5 71.5 q-98 0 -168.5 -74t-85.5 -172zM361 162l882 1138l40 -31l-881 -1138zM832 279l12 78q18 130 106.5 215t209.5 85q115 0 180 -88t47 -212l-12 -78q-20 -131 -107.5 -215.5t-207.5 -84.5q-116 0 -181.5 87.5t-46.5 212.5zM887 279q-16 -104 29.5 -174.5t151.5 -70.5 q98 0 167 73t85 172l12 78q16 110 -29.5 177.5t-151.5 67.5q-99 0 -168 -70.5t-84 -174.5z" />
23
+ <glyph unicode="&#x26;" horiz-adv-x="1247" d="M88 352q17 118 97 211.5t220 198.5l58 41q-67 102 -93.5 187.5t-12.5 176.5q23 155 115.5 232.5t236.5 77.5q127 0 190 -72.5t46 -189.5q-13 -87 -59 -143t-126 -114l-226 -161l392 -537q67 77 112 171t61 201h55q-21 -131 -69.5 -231t-126.5 -186l158 -215h-67l-130 177 l-14 -13q-104 -89 -210 -137t-229 -48q-194 0 -299 101.5t-79 271.5zM142 352q-21 -139 62.5 -229t269.5 -90q105 0 214 48.5t200 137.5l-371 506q-10 13 -16.5 21.5t-12.5 17.5l-58 -41q-154 -118 -215.5 -205.5t-72.5 -165.5zM412 1169q-13 -81 10 -163.5t85 -171.5 l234 166q68 50 103.5 103.5t44.5 111.5q14 98 -33.5 153t-155.5 55q-115 0 -193.5 -73.5t-94.5 -180.5z" />
24
+ <glyph unicode="'" horiz-adv-x="340" d="M202 1122l82 267l24 171h55l-23 -169l-88 -269h-50z" />
25
+ <glyph unicode="(" horiz-adv-x="607" d="M152 566l3 20q49 351 208.5 638t346.5 392h6l11 -36q-167 -101 -320.5 -387.5t-196.5 -602.5l-4 -26q-47 -329 26 -608.5t214 -382.5l-21 -36l-6 1q-157 104 -237 389.5t-30 638.5z" />
26
+ <glyph unicode=")" horiz-adv-x="623" d="M-107 -427q166 101 319.5 387.5t198.5 603.5l4 26q45 329 -28 608.5t-213 381.5l21 36l6 -1q154 -103 234 -397t33 -632l-3 -20q-52 -367 -209 -644.5t-346 -384.5h-6z" />
27
+ <glyph unicode="*" horiz-adv-x="856" d="M121 1141l26 54l342 -133l60 394h56l-66 -395l374 143l12 -53l-381 -137l202 -317l-52 -33l-194 322l-277 -325l-40 32l283 324z" />
28
+ <glyph unicode="+" horiz-adv-x="1151" d="M90 649l8 53h462l76 504h55l-76 -504h481l-8 -53h-481l-75 -503h-55l75 503h-462z" />
29
+ <glyph unicode="," horiz-adv-x="383" d="M-5 -258l104 246l26 171h54l-25 -167l-108 -250h-51z" />
30
+ <glyph unicode="-" horiz-adv-x="607" d="M71 599l8 54h470l-8 -54h-470z" />
31
+ <glyph unicode="." horiz-adv-x="439" d="M93 0l20 130h86l-20 -130h-86z" />
32
+ <glyph unicode="/" horiz-adv-x="782" d="M-57 -125l845 1581h59l-845 -1581h-59z" />
33
+ <glyph unicode="0" horiz-adv-x="1167" d="M146 574l46 308q44 294 181.5 444.5t351.5 150.5q203 0 299.5 -157t54.5 -438l-46 -308q-45 -296 -181 -445.5t-350 -149.5q-203 0 -301 157t-55 438zM200 576q-39 -261 40 -402t270 -141q181 0 306 147t163 396l46 306q39 264 -39 402.5t-270 138.5q-183 0 -308 -145 t-162 -396z" />
34
+ <glyph unicode="1" d="M327 1334l7 46l465 84l-222 -1477h-54l214 1425z" />
35
+ <glyph unicode="2" d="M78 0l8 54l554 550q158 157 236 271t92 211q23 165 -52 251t-246 86q-172 0 -288.5 -106t-139.5 -271h-45l-3 6q22 184 154.5 304.5t329.5 120.5q174 0 272.5 -103.5t72.5 -287.5q-18 -126 -110.5 -246.5t-265.5 -293.5l-484 -486l2 -6h792l-8 -54h-871z" />
36
+ <glyph unicode="3" d="M89 399l3 6h46q-26 -168 76.5 -270t283.5 -102q173 0 290.5 93.5t141.5 255.5q26 177 -74.5 255t-300.5 78h-111l7 44l1 5l1 7h111q175 0 297.5 92t142.5 223q22 151 -53.5 244t-253.5 93q-156 0 -280.5 -96t-147.5 -252h-45l-2 6q23 184 161.5 290t322.5 106 q181 0 279.5 -107.5t71.5 -287.5q-18 -120 -103 -210t-215 -129q134 -36 200 -128t46 -229q-30 -198 -165 -302.5t-330 -104.5q-179 0 -307 110t-94 310z" />
37
+ <glyph unicode="4" d="M62 397l4 30l849 1029h65l-151 -1005h253l-8 -54h-253l-59 -397h-54l59 397h-705zM158 456l3 -5h614l139 928l-5 2l-97 -128z" />
38
+ <glyph unicode="5" d="M164 378l2 5h48q-27 -179 55.5 -264.5t249.5 -85.5q187 0 297 108.5t142 320.5q29 191 -45 293.5t-239 102.5q-154 0 -257.5 -54t-157.5 -158l-39 16l197 794h690l-8 -53h-641l-153 -618q71 63 151 95t225 36q175 5 269.5 -119t63.5 -333q-35 -231 -158 -358t-345 -127 q-171 0 -276 101.5t-71 297.5z" />
39
+ <glyph unicode="6" d="M167 512l67 448q35 236 187 376.5t344 140.5q74 0 145 -16.5t129 -53.5l-29 -51q-60 38 -114.5 52.5t-139.5 14.5q-161 0 -299.5 -128t-168.5 -334l-37 -244l5 -4q58 106 171.5 175t250.5 69q190 0 284.5 -137.5t61.5 -359.5q-33 -215 -173 -348t-330 -133 q-183 0 -286.5 147t-67.5 386zM221 513q-34 -224 52 -352.5t256 -128.5q160 0 287 127.5t154 300.5q31 209 -46.5 326t-261.5 117q-147 0 -280 -103.5t-154 -243.5h-1z" />
40
+ <glyph unicode="7" d="M207 1402l8 54h930l-8 -54q-252 -250 -451 -571t-306 -740l-20 -91h-54l20 91q102 394 291 719t455 592h-865z" />
41
+ <glyph unicode="8" d="M75 379q20 139 119 235.5t246 132.5q-115 38 -176 128.5t-42 210.5q28 191 160.5 291t320.5 100q176 0 283.5 -105t80.5 -286q-20 -128 -107 -217.5t-215 -124.5q131 -39 203.5 -137t54.5 -228q-31 -199 -174.5 -299.5t-348.5 -100.5q-199 0 -316.5 104.5t-88.5 295.5z M128 374q-26 -167 75 -254t285 -87q170 0 302.5 91t156.5 250q23 160 -79.5 252t-278.5 92q-170 0 -304 -95.5t-157 -248.5zM277 1091q-23 -151 67.5 -235t254.5 -84q151 0 272 87.5t143 231.5q22 149 -70.5 240.5t-249.5 91.5q-155 0 -275 -91t-142 -241z" />
42
+ <glyph unicode="9" d="M125 42l25 57q70 -34 135.5 -50t151.5 -16q178 0 305.5 114.5t157.5 310.5l41 278q-71 -108 -182.5 -168t-239.5 -60q-180 0 -283 139t-74 331q31 215 175 357t336 142q189 0 295 -134t69 -380l-75 -503q-36 -233 -179.5 -357t-353.5 -124q-75 0 -153 16t-151 47z M224 978q-27 -176 54 -296.5t249 -120.5q143 0 258 87.5t174 207.5l16 106q35 230 -51.5 345.5t-255.5 115.5q-161 0 -289.5 -135t-154.5 -310z" />
43
+ <glyph unicode=":" horiz-adv-x="364" d="M66 0l20 130h86l-20 -130h-86zM207 949l20 130h86l-20 -130h-86z" />
44
+ <glyph unicode=";" horiz-adv-x="364" d="M-4 -258l104 246l26 171h54l-25 -167l-108 -250h-51zM215 952l20 130h86l-20 -130h-86z" />
45
+ <glyph unicode="&#x3c;" horiz-adv-x="1053" d="M79 515l1 8l5 29l2 13l893 378l-8 -58l-707 -308l-125 -37v-6l113 -36l615 -303l-9 -59z" />
46
+ <glyph unicode="=" horiz-adv-x="1142" d="M132 436l9 54h834l-9 -54h-834zM193 843l9 54h834l-9 -54h-834z" />
47
+ <glyph unicode="&#x3e;" horiz-adv-x="1053" d="M55 137l8 59l706 307l125 36v6l-113 37l-614 304l9 58l779 -378l-2 -9h1l-5 -29l-2 -12z" />
48
+ <glyph unicode="?" horiz-adv-x="893" d="M186 1122q24 170 136.5 262.5t267.5 92.5q158 0 240 -102t58 -265q-22 -147 -97.5 -244.5t-224.5 -215.5q-77 -53 -100 -101.5t-37 -148.5h-54q18 116 45 165t124 127q138 116 203 197.5t87 222.5q22 152 -42.5 232t-209.5 80q-136 0 -230.5 -85.5t-117.5 -222.5h-46z M311 0l16 106h82l-16 -106h-82z" />
49
+ <glyph unicode="@" horiz-adv-x="1902" d="M121 478q82 427 357.5 680t654.5 253q386 0 548.5 -237t83.5 -651q-42 -219 -170.5 -381.5t-320.5 -162.5q-80 0 -123.5 61.5t-37.5 169.5q-73 -115 -165.5 -173t-201.5 -58q-131 0 -182.5 120t-3.5 317q60 250 204 401t316 151q80 0 130 -28t104 -82l-134 -565 q-34 -152 5.5 -205.5t99.5 -53.5q152 0 265.5 136t157.5 353q80 396 -61.5 613.5t-526.5 217.5q-324 0 -594.5 -241.5t-349.5 -634.5q-78 -382 79.5 -629t514.5 -247q84 0 179.5 22.5t162.5 57.5l17 -46q-67 -40 -173 -64.5t-198 -24.5q-366 0 -542.5 252t-94.5 679z M604.5 141q34.5 -108 147.5 -108q104 0 202.5 66.5t182.5 243.5l116 488q-29 39 -74.5 60.5t-109.5 21.5q-136 0 -264.5 -127.5t-190.5 -369.5q-44 -167 -9.5 -275z" />
50
+ <glyph unicode="A" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82z" />
51
+ <glyph unicode="B" horiz-adv-x="1235" d="M120 0l218 1456h383q218 0 333 -94q92 -76 93 -210q0 -33 -6 -69q-21 -135 -100 -221.5t-205 -108.5q134 -18 212 -119q62 -80 61 -180q0 -26 -4 -53q-30 -198 -167 -299.5t-343 -101.5h-475zM182 54h421q177 0 300 92t148 253q4 26 4 50q-1 105 -71 179q-86 91 -271 91 h-432zM289 773h368q184 3 295.5 81.5t134.5 232.5q5 33 5 62q0 115 -75 177q-94 76 -304 76h-329z" />
52
+ <glyph unicode="C" horiz-adv-x="1327" d="M157 619l33 218q43 297 212 468.5t411 171.5q219 0 345 -120q98 -93 97 -246q0 -44 -8 -93l-3 -6h-46q7 45 7 85q-1 143 -83 223q-106 104 -318 103q-205 0 -363 -162t-197 -422l-33 -220q-12 -78 -12 -147q-1 -172 75 -284q106 -156 322 -155q203 0 344.5 104t172.5 309 h45l2 -6q-31 -233 -185.5 -347t-386.5 -114q-230 0 -352 178q-90 132 -90 321q0 67 11 141z" />
53
+ <glyph unicode="D" horiz-adv-x="1340" d="M120 0l218 1456h403q242 0 394 -182q120 -144 120 -346q0 -53 -8 -111l-27 -178q-44 -291 -243.5 -465t-453.5 -174h-403zM182 54h349q218 0 407.5 167.5t227.5 417.5l27 181q8 57 8 110q0 186 -104 311q-134 161 -364 161h-349z" />
54
+ <glyph unicode="E" horiz-adv-x="1166" d="M120 0l218 1456h886l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-886z" />
55
+ <glyph unicode="F" horiz-adv-x="1172" d="M120 0l218 1456h902l-8 -54h-848l-95 -630h747l-9 -56h-746l-107 -716h-54z" />
56
+ <glyph unicode="G" horiz-adv-x="1406" d="M181 620l36 238q42 285 217 452t420 167q222 0 344 -121q101 -99 101 -243q0 -31 -5 -64l-2 -6h-46q3 26 3 50q0 135 -86 225q-101 105 -318 105q-213 0 -375.5 -159t-198.5 -404l-36 -240q-11 -71 -11 -135q0 -177 84 -293q114 -159 346 -159q154 0 285.5 47.5 t179.5 100.5l64 424h-445l8 55h499l-76 -504q-54 -64 -193.5 -120.5t-329.5 -56.5q-240 0 -374 179q-101 136 -101 331q0 62 10 131z" />
57
+ <glyph unicode="H" horiz-adv-x="1438" d="M120 0l218 1456h54l-106 -707h930l106 707h54l-218 -1456h-54l104 695h-930l-104 -695h-54z" />
58
+ <glyph unicode="I" horiz-adv-x="534" d="M160 0l218 1456h54l-218 -1456h-54z" />
59
+ <glyph unicode="J" horiz-adv-x="1125" d="M75 396l2 5h47q-7 -47 -7 -88q0 -120 61 -189q83 -91 268 -91q148 0 267 106t146 283l155 1034h54l-155 -1034q-32 -211 -162 -327t-313 -116q-192 0 -295 107q-77 80 -77 213q0 46 9 97z" />
60
+ <glyph unicode="K" horiz-adv-x="1174" d="M101 0l218 1456h54l-102 -682h242l682 682h68l2 -6l-708 -710l531 -740h-68l-517 721h-240l-108 -721h-54z" />
61
+ <glyph unicode="L" horiz-adv-x="1057" d="M120 0l218 1456h55l-210 -1402h747l-8 -54h-802z" />
62
+ <glyph unicode="M" horiz-adv-x="1756" d="M120 0l218 1456h77l391 -1370h6l803 1370h79l-218 -1456h-54l105 703l99 657l-6 2l-802 -1362h-43l-392 1356l-6 -1l-98 -652l-105 -703h-54z" />
63
+ <glyph unicode="N" horiz-adv-x="1449" d="M120 0l218 1456h55l731 -1354l6 1l203 1353h54l-218 -1456h-54l-731 1356l-6 -1l-203 -1355h-55z" />
64
+ <glyph unicode="O" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 -1 372 -175q93 -130 93 -324q0 -67 -11 -141l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-246 1 -372 175q-93 129 -93 322q0 67 11 143zM201 619q-12 -82 -12 -152q0 -173 74 -281q105 -152 345 -153 q229 0 385 159.5t197 426.5l33 220q12 79 12 147q1 174 -75 284q-104 152 -346 153q-228 0 -384 -159.5t-196 -424.5z" />
65
+ <glyph unicode="P" horiz-adv-x="1230" d="M120 0l218 1456h455q218 0 327 -115q87 -91 87 -227q0 -35 -6 -73q-29 -197 -166 -306.5t-366 -109.5h-402l-93 -625h-54zM275 679h402q198 0 322.5 104t147.5 256q5 35 5 67q0 117 -69 196q-88 100 -298 100h-401z" />
66
+ <glyph unicode="Q" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -175q93 -129 93 -324q0 -67 -11 -141l-33 -218q-29 -189 -105.5 -327t-194.5 -216l214 -244l-44 -35l-223 249q-65 -34 -138 -50.5t-153 -16.5q-247 0 -372 175q-93 129 -93 322q0 67 11 143zM201 619 q-12 -82 -12 -152q0 -173 74 -281q105 -153 345 -153q229 0 385 159.5t197 426.5l33 220q12 79 12 147q0 175 -75 284q-105 153 -346 153q-228 0 -384 -159.5t-196 -424.5z" />
67
+ <glyph unicode="R" horiz-adv-x="1340" d="M115 -1l218 1456h464q223 -1 335 -101q91 -81 90 -219q0 -33 -5 -70q-20 -128 -113 -227t-236 -127q148 -28 206 -117q44 -67 44 -160q0 -30 -5 -63l-21 -137q-6 -38 -6 -72q0 -26 4 -50q9 -52 42 -88l-4 -25h-53q-29 41 -39 101q-4 27 -5 57q0 37 7 79l20 133q5 32 5 60 q-1 110 -71 174q-88 80 -278 80h-443l-102 -684h-54zM279 737h401q214 0 338 95.5t145 232.5q5 36 5 68q0 119 -72 185q-92 83 -307 83h-410z" />
68
+ <glyph unicode="S" horiz-adv-x="1224" d="M156 403l2 6h46q-6 -41 -6 -77q0 -146 100 -214q125 -86 311 -85q168 0 298.5 81t147.5 189q5 31 5 59q0 106 -67 171q-84 82 -327 171q-238 84 -342 176q-82 72 -82 199q0 34 6 72q22 151 154 238.5t316 87.5q209 0 329 -114q94 -89 94 -227q0 -39 -8 -83l-3 -6h-46 q5 33 5 64q0 127 -83 209q-103 104 -297 103q-159 0 -275 -81.5t-132 -188.5q-5 -31 -5 -60q1 -103 63 -169q80 -84 323 -170q231 -80 341 -180q90 -81 91 -209q0 -29 -5 -60q-24 -155 -165.5 -240.5t-343.5 -85.5q-202 -1 -342 103q-111 82 -111 235q0 41 8 86z" />
69
+ <glyph unicode="T" horiz-adv-x="1224" d="M185 1402l8 54h1114l-8 -54h-530l-210 -1402h-54l210 1402h-530z" />
70
+ <glyph unicode="U" horiz-adv-x="1365" d="M175 469l148 987h54l-148 -987q-7 -49 -7 -93q0 -146 81 -232q106 -112 305 -111q187 0 332 116.5t176 319.5l148 987h54l-148 -987q-37 -247 -191 -368.5t-379 -121.5q-215 -1 -338 127q-95 99 -95 262q0 48 8 101z" />
71
+ <glyph unicode="V" horiz-adv-x="1223" d="M173 1456h59l292 -1314l14 -78l6 -1l38 79l686 1314h59l-762 -1456h-66z" />
72
+ <glyph unicode="W" horiz-adv-x="1855" d="M199 1456h60l134 -1126l28 -229h6l98 229l512 1126h60l174 -1126l28 -229h6l99 229l468 1126h59l-610 -1456h-61l-179 1214l-26 144l-6 1l-68 -145l-546 -1214h-61z" />
73
+ <glyph unicode="X" horiz-adv-x="1223" d="M-22 5l630 738l-397 713h68l369 -671l571 671h60l2 -5l-605 -708l413 -743h-67l-387 701l-596 -701h-59z" />
74
+ <glyph unicode="Y" horiz-adv-x="1223" d="M174 1456h66l360 -809l19 -50l34 50l604 809h66l-682 -902l-83 -554h-55l83 553z" />
75
+ <glyph unicode="Z" horiz-adv-x="1101" d="M7 0l2 44l1004 1359h-818l8 53h894l-5 -38l-1008 -1364h897l-8 -54h-966z" />
76
+ <glyph unicode="[" horiz-adv-x="439" d="M62 -312l277 1976h283l-8 -54h-229l-261 -1868h229l-8 -54h-283z" />
77
+ <glyph unicode="\" horiz-adv-x="774" d="M195 1456h58l371 -1581h-58z" />
78
+ <glyph unicode="]" horiz-adv-x="439" d="M-127 -312l8 54h228l261 1868h-228l8 54h283l-277 -1976h-283z" />
79
+ <glyph unicode="^" horiz-adv-x="849" d="M120 729l408 727h52l190 -727h-61l-140 543l-23 113l-6 1l-60 -114l-301 -543h-59z" />
80
+ <glyph unicode="_" horiz-adv-x="845" d="M-89 -54l8 54h846l-8 -54h-846z" />
81
+ <glyph unicode="`" horiz-adv-x="537" d="M230 1476h96l187 -266h-82z" />
82
+ <glyph unicode="a" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q5 31 5 58q0 98 -58 155q-74 73 -234 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262 -89q75 -71 76 -190q0 -30 -5 -63l-81 -542q-9 -59 -11 -112q0 -11 -1 -21q0 -42 7 -85 h-60q-2 67 -2 99q1 8 1 14q0 29 6 70l2 16q-70 -98 -190 -159t-278 -61q-146 -1 -222 83q-60 66 -60 165q0 27 5 57zM108 280q-4 -24 -4 -46q0 -80 50 -134q63 -68 186 -68q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191z" />
83
+ <glyph unicode="b" d="M90 0l234 1560h54l-101 -671q69 99 170.5 156t228.5 57q182 0 272 -153q63 -107 63 -265q0 -67 -11 -142l-3 -21q-39 -259 -167 -400.5t-320 -141.5q-123 0 -211 52.5t-130 141.5l-34 -173h-45zM184 267q25 -107 109 -170.5t226 -63.5q164 0 276.5 133.5t145.5 354.5 l3 21q11 78 11 145q0 135 -45 225q-68 136 -241 136q-149 0 -250 -79.5t-159 -193.5z" />
84
+ <glyph unicode="c" horiz-adv-x="1039" d="M95 520l6 42q37 251 175 395.5t346 144.5q164 0 268 -100q81 -77 80 -200q0 -37 -7 -77l-2 -5h-47q5 35 5 67q1 115 -69 179q-88 82 -236 82q-183 0 -305 -138t-154 -348l-6 -42q-10 -68 -10 -128q-1 -136 53 -228q78 -132 272 -131q133 0 251 75t141 225h45l2 -6 q-21 -166 -153.5 -257t-293.5 -91q-198 1 -298 151q-73 110 -73 266q0 59 10 124z" />
85
+ <glyph unicode="d" d="M37 521l3 21q40 267 169 413.5t323 146.5q122 0 207.5 -58t127.5 -158l101 674h54l-234 -1560h-52l24 169q-68 -87 -170 -138.5t-228 -51.5q-182 -1 -272 147q-63 104 -64 259q0 64 11 136zM93 521q-12 -78 -12 -145q-1 -130 45 -215q68 -128 243 -128q137 0 243 65.5 t163 173.5l75 501q-21 116 -96 195.5t-231 79.5q-165 0 -279.5 -142t-147.5 -364z" />
86
+ <glyph unicode="e" horiz-adv-x="1032" d="M82 500l10 64q35 243 186.5 390.5t344.5 147.5q177 0 277 -121q78 -94 78 -235q0 -41 -7 -86l-12 -83h-811q0 -3 -1 -7.5t-1 -5.5l-10 -64q-8 -50 -7 -96q1 -140 71 -239q94 -132 266 -132q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5 q-178 1 -294 151q-90 117 -89 276q0 45 7 94zM165 637l2 -6h746l5 33q6 40 6 76q0 120 -64 202q-83 106 -245 106q-155 0 -282 -118.5t-168 -292.5z" />
87
+ <glyph unicode="f" horiz-adv-x="645" d="M140 1027l8 55h188l27 178q24 159 110 240t221 81q32 0 65 -4t61 -13l-16 -52q-31 8 -55 11.5t-62 3.5q-104 0 -178 -71.5t-92 -195.5l-27 -178h286l-8 -55h-286l-154 -1027h-54l154 1027h-188z" />
88
+ <glyph unicode="g" d="M91 -375l24 54q69 -32 134 -47.5t152 -15.5q168 0 277 99t136 279l26 172q-68 -86 -169.5 -136.5t-226.5 -50.5q-183 0 -272 147q-64 105 -64 259q0 64 11 136l3 21q40 267 169 413.5t323 146.5q122 0 207.5 -58.5t127.5 -159.5l37 198h46l-50 -335v-2l-66 -441 q-1 -1 -1 -1.5v-1.5l-46 -307q-33 -214 -156 -322.5t-318 -108.5q-76 0 -160.5 16.5t-143.5 45.5zM174 521q-12 -78 -12 -144q0 -131 46 -216q69 -128 243 -128q135 0 240.5 64.5t163.5 170.5l77 508q-22 115 -97 193.5t-230 78.5q-165 0 -280 -142t-148 -364z" />
89
+ <glyph unicode="h" d="M92 0l83 554l1 10l150 996h54l-104 -693l5 -4q63 115 167.5 177t246.5 62q163 0 237 -108q51 -74 51 -205q0 -59 -10 -131l-99 -658h-55l99 660q11 75 11 134q-1 116 -43 171q-64 83 -198 83q-169 0 -280.5 -107.5t-161.5 -270.5l-100 -670h-54z" />
90
+ <glyph unicode="i" horiz-adv-x="422" d="M105 0l162 1082h54l-162 -1082h-54zM318 1422l21 138h54l-21 -138h-54z" />
91
+ <glyph unicode="j" horiz-adv-x="445" d="M-300 -417l21 52q18 -6 45 -12t52 -6q107 0 180.5 78t94.5 216l175 1171h54l-175 -1171q-27 -173 -114 -260.5t-224 -87.5q-28 0 -54 5t-55 15zM314 1426l20 134h54l-20 -134h-54z" />
92
+ <glyph unicode="k" horiz-adv-x="969" d="M92 0l234 1560h54l-143 -953h127l563 475h62l2 -6l-569 -487l451 -589h-70l-426 553h-148l-83 -553h-54z" />
93
+ <glyph unicode="l" horiz-adv-x="422" d="M105 0l234 1560h54l-234 -1560h-54z" />
94
+ <glyph unicode="m" horiz-adv-x="1836" d="M81 0l83 554l79 528h47l-24 -215q65 113 165.5 174t233.5 61q134 0 212.5 -71.5t90.5 -218.5q64 140 172 215.5t257 75.5q173 -1 251 -119q53 -81 53 -222q0 -65 -11 -144l-93 -617h-55l93 619q12 84 12 151q-1 126 -45 186q-68 92 -211 92q-166 0 -272.5 -107.5 t-153.5 -271.5q-2 -18 -3.5 -30.5t-3.5 -24.5l-92 -615h-55l93 619q12 85 12 152q0 125 -44 185q-68 92 -213 92q-163 0 -267 -102t-153 -261l-103 -685h-55z" />
95
+ <glyph unicode="n" d="M92 0l83 554l79 528h46l-24 -215q65 114 167.5 174.5t241.5 60.5q170 0 245 -113q51 -77 51 -213q0 -63 -11 -139l-96 -637h-54l96 639q12 81 12 145q0 118 -42 176q-66 88 -208 88q-168 0 -275 -107t-156 -270l-101 -671h-54z" />
96
+ <glyph unicode="o" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315 -152q86 -116 87 -281q0 -51 -9 -107l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 1 -317 153q-86 116 -86 279q0 52 9 109zM139 520q-8 -54 -9 -104q0 -143 70 -245q92 -138 287 -138q182 0 321 143t170 344 l6 42q8 52 8 99q0 142 -70 247q-93 140 -285 140q-183 0 -323 -145t-169 -341z" />
97
+ <glyph unicode="p" d="M28 -416l224 1498h42l-18 -195q69 100 170.5 157.5t229.5 57.5q183 0 272 -153q63 -107 63 -265q0 -66 -11 -142l-3 -21q-39 -259 -167 -400.5t-320 -141.5q-123 0 -210.5 52t-129.5 140l-88 -587h-54zM184 269q24 -108 108 -172t227 -64q164 0 277 133.5t146 354.5l3 21 q11 77 11 144q0 134 -46 226q-68 136 -241 136q-150 0 -251 -80t-158 -194z" />
98
+ <glyph unicode="q" d="M120 521l3 21q40 267 169 413.5t323 146.5q122 0 207 -58t128 -158l34 196h49l-50 -336v-1l-66 -441q0 -1 -1 -2v0l-107 -718h-54l87 584q-68 -87 -169.5 -138t-227.5 -51q-183 0 -273 147q-63 105 -63 259q0 64 11 136zM176 521q-12 -78 -12 -145q0 -130 46 -215 q68 -128 242 -128q136 0 242 65.5t164 172.5l75 503q-22 116 -97 195t-230 79q-165 0 -279.5 -142t-147.5 -364z" />
99
+ <glyph unicode="r" horiz-adv-x="680" d="M92 0l162 1082h44l-18 -188l-4 -24l5 -3q58 112 155 173.5t228 61.5q22 0 42 -3.5t33 -7.5l-14 -48l-69 6q-140 0 -247 -96.5t-158 -250.5l-105 -702h-54z" />
100
+ <glyph unicode="s" horiz-adv-x="1019" d="M75 269l2 6h45q-1 -12 -1 -24q0 -110 85 -161q94 -57 233 -57q144 0 244.5 70.5t113.5 161.5q2 14 2 28q0 71 -53 129q-63 69 -242 110q-186 42 -264 106q-63 52 -63 145q0 22 3 46q16 121 124.5 197t275.5 76q172 0 266 -85q76 -68 76 -168q0 -24 -4 -50l-2 -6h-47 q2 18 2 35q0 88 -65 148q-78 72 -233 72q-146 0 -237 -66.5t-102 -150.5q-2 -15 -2 -30q0 -69 48 -117q58 -58 247 -103q176 -42 259 -115q68 -60 68 -158q0 -21 -3 -44q-19 -132 -132.5 -208.5t-287.5 -76.5q-182 -1 -281 85q-80 69 -80 160q0 22 5 45z" />
101
+ <glyph unicode="t" horiz-adv-x="633" d="M103 1027l8 55h200l44 292h55l-44 -292h266l-8 -55h-266l-112 -748q-8 -50 -8 -90q0 -68 24 -102q36 -54 111 -54q26 0 49 2t58 7l3 -49q-27 -8 -54 -11t-61 -3q-105 0 -153 72q-32 48 -32 133q0 43 8 95l112 748h-200z" />
102
+ <glyph unicode="u" d="M158 465l92 617h54l-93 -619q-12 -80 -12 -145q0 -120 42 -184q65 -100 206 -101q164 0 270 87t152 226l110 736h55l-96 -637h1l-4 -24l-63 -421h-45l21 188q-66 -101 -168.5 -155t-238.5 -54q-161 0 -241 120q-54 81 -54 221q0 66 12 145z" />
103
+ <glyph unicode="v" horiz-adv-x="978" d="M125 1082h58l206 -853l29 -146l6 -1l74 147l461 853h58l-583 -1081l1 -1h-52z" />
104
+ <glyph unicode="w" horiz-adv-x="1550" d="M165 1082h62l106 -769l23 -222l6 -1l104 223l358 769h55l127 -769l36 -222l6 -1l92 223l335 769h63l-477 -1082h-54l-145 813l-22 182l-6 1l-78 -183l-385 -813h-54z" />
105
+ <glyph unicode="x" horiz-adv-x="978" d="M-20 5l478 550l-301 527h68l274 -480l417 480h61l2 -5l-454 -522l317 -555h-67l-291 508l-442 -508h-60z" />
106
+ <glyph unicode="y" horiz-adv-x="978" d="M-46 -426l17 51q11 -3 32 -6t33 -3q88 0 150.5 55.5t117.5 158.5l91 176l-270 1076h59l223 -886l24 -108h6l9 16l520 978h60l-670 -1262q-62 -114 -131 -185.5t-197 -71.5q-18 0 -40.5 3.5t-33.5 7.5z" />
107
+ <glyph unicode="z" horiz-adv-x="978" d="M7 0l7 44l853 978l-2 5h-673l8 55h753l-7 -48l-853 -975l2 -5h763l-8 -54h-843z" />
108
+ <glyph unicode="{" horiz-adv-x="660" d="M74 543l3 23l3 20l3 23q123 0 196.5 73t92.5 203l34 247q24 177 112.5 292.5t267.5 167.5l6 -2l7 -38q-150 -46 -234 -155.5t-105 -264.5l-34 -247q-18 -125 -80.5 -206t-174.5 -104q100 -27 142 -110.5t26 -199.5l-34 -245q-23 -159 32.5 -262t194.5 -153l-27 -46 q-166 55 -222.5 173t-31.5 288l34 245q19 136 -31.5 207t-179.5 71z" />
109
+ <glyph unicode="|" horiz-adv-x="406" d="M61 -270l258 1726h54l-258 -1726h-54z" />
110
+ <glyph unicode="}" horiz-adv-x="660" d="M-130 -395q150 49 235 155t107 260l34 245q17 124 79.5 205.5t175.5 106.5q-101 26 -143 108.5t-25 199.5l34 247q23 161 -30 267t-190 153l21 45q165 -55 221 -174.5t32 -290.5l-34 -247q-20 -136 31 -206t180 -70l-3 -23l-3 -20l-3 -23q-123 0 -197 -74.5t-92 -203.5 l-34 -245q-25 -177 -113.5 -291.5t-270.5 -169.5z" />
111
+ <glyph unicode="~" horiz-adv-x="1412" d="M147 474q18 132 102.5 216t201.5 84q82 0 152 -40.5t149 -119.5q59 -62 112.5 -90t116.5 -28q82 0 152.5 71.5t86.5 185.5l60 -13q-18 -126 -105 -211.5t-201 -85.5q-84 0 -152.5 39t-146.5 120q-59 59 -114.5 88.5t-116.5 29.5q-85 0 -154 -68.5t-85 -189.5z" />
112
+ <glyph unicode="&#xa1;" horiz-adv-x="406" d="M31 -374l147 978h54l-147 -978h-54zM205 918l24 164h95l-24 -164h-95z" />
113
+ <glyph unicode="&#xa2;" horiz-adv-x="1110" d="M132 520l6 42q36 243 166.5 386.5t329.5 152.5l33 217h55l-33 -217q152 -10 246 -108.5t65 -267.5l-2 -5h-47q24 165 -64.5 246.5t-235.5 81.5q-183 0 -305 -138t-154 -348l-6 -42q-34 -224 43.5 -355.5t271.5 -131.5q133 0 251 75t141 225h45l2 -6q-20 -158 -142.5 -248 t-277.5 -99l-33 -225h-55l33 225q-187 12 -278 160.5t-55 379.5z" />
114
+ <glyph unicode="&#xa3;" horiz-adv-x="1150" d="M49 0l8 54h10q91 16 154.5 145.5t84.5 266.5l23 201h-244l8 54h242l36 319q32 212 149 324.5t288 112.5q168 0 237.5 -104t43.5 -283h-54q27 183 -34.5 258t-201.5 75q-141 0 -244 -101t-130 -282l-36 -319h477l-8 -54h-475l-23 -201q-20 -129 -72 -237.5t-128 -174.5 h808l-7 -54h-912z" />
115
+ <glyph unicode="&#xa4;" horiz-adv-x="1502" d="M36 13l210 185q-58 83 -81 188t-5 222q19 126 74.5 235t140.5 192l-157 190l46 39l156 -188q91 75 202 116.5t228 41.5q110 0 207.5 -44t167.5 -123l224 198l35 -40l-226 -200q60 -85 84.5 -191.5t7.5 -225.5q-19 -121 -70.5 -226.5t-129.5 -186.5l152 -182l-47 -40 l-149 179q-94 -83 -208.5 -127.5t-235.5 -44.5q-115 0 -215 46.5t-170 130.5l-207 -183zM215 608q-37 -248 96 -411.5t359 -163.5q213 0 402 169.5t224 405.5q36 246 -97 409.5t-357 163.5q-214 0 -403 -169.5t-224 -403.5z" />
116
+ <glyph unicode="&#xa5;" horiz-adv-x="1207" d="M93 326l8 55h450l36 240h-450l8 55h421l-370 780h65l345 -718l16 -51h5l32 51l558 718h66l-606 -780h424l-8 -55h-452l-36 -240h452l-8 -55h-452l-49 -326h-54l49 326h-450z" />
117
+ <glyph unicode="&#xa6;" horiz-adv-x="398" d="M52 -270l112 752h54l-112 -752h-54zM197 698l113 758h54l-113 -758h-54z" />
118
+ <glyph unicode="&#xa7;" horiz-adv-x="1223" d="M30 -69l2 5l48 2q-32 -208 80 -293.5t294 -85.5q178 0 298.5 81.5t139.5 208.5q19 124 -50 190t-290 127q-236 58 -344 142t-84 243q17 112 102.5 182t223.5 90q-114 48 -163 120t-31 187q24 163 159.5 255t344.5 92q206 0 312 -113t72 -313l-2 -5h-47q25 168 -65 272.5 t-279 104.5t-306 -82.5t-135 -207.5q-20 -130 48.5 -195.5t298.5 -133.5q242 -64 343 -140.5t79 -232.5q-17 -109 -108.5 -179t-235.5 -88q124 -50 177 -121.5t36 -191.5q-26 -168 -160 -257t-342 -89q-198 0 -325 103.5t-91 322.5zM178 553q-20 -135 56.5 -197.5 t341.5 -140.5l66 -19q155 1 261 68t121 164q19 128 -64.5 196.5t-334.5 141.5q-29 6 -55 13.5t-49 16.5q-147 -8 -238 -75.5t-105 -167.5z" />
119
+ <glyph unicode="&#xa8;" horiz-adv-x="906" d="M267 1338l17 118h137l-17 -118h-137zM737 1338l17 118h136l-17 -118h-136z" />
120
+ <glyph unicode="&#xa9;" horiz-adv-x="1666" d="M152 729q49 327 286 537t536 210q284 0 464.5 -218t133.5 -529q-49 -328 -286 -539t-536 -211q-284 0 -464.5 218.5t-133.5 531.5zM208 729q-46 -301 115 -498t435 -197q259 0 487 204t271 491q45 300 -116 496t-434 196q-261 0 -488 -203t-270 -489zM526 669l18 119 q26 178 129.5 282.5t248.5 104.5q134 0 204 -80.5t44 -227.5l-3 -5h-45q20 134 -33.5 197t-174.5 63q-119 0 -206.5 -96t-108.5 -237l-18 -120q-23 -150 34 -241t182 -91q116 0 190.5 64t93.5 195h44l2 -6q-20 -156 -109 -232t-230 -76q-138 0 -213 108t-49 279z" />
121
+ <glyph unicode="&#xaa;" horiz-adv-x="898" d="M206 920q15 105 96.5 159t224.5 54h219l11 69q16 108 -26 164.5t-140 56.5q-110 0 -180.5 -47.5t-83.5 -137.5l-45 5l-1 6q10 102 98.5 165t220.5 63q111 0 171.5 -72t40.5 -204l-47 -314q-8 -50 -8 -93t7 -88h-58q-6 27 -7 57t3 63q-48 -58 -120.5 -96t-160.5 -38 q-114 0 -172.5 62t-42.5 166zM261 924q-14 -86 27 -131.5t142 -45.5q84 0 168 48t113 105l27 177h-218q-108 0 -179 -44.5t-80 -108.5z" />
122
+ <glyph unicode="&#xab;" horiz-adv-x="905" d="M143 516l1 6l1 7l1 6l350 370h63l2 -5l-346 -374l237 -380h-70zM430 516l1 6l1 7l1 6l350 370h63l2 -5l-346 -374l237 -380h-70z" />
123
+ <glyph unicode="&#xac;" horiz-adv-x="1101" d="M147 700l8 53h793l-7 -47l-1 -6l-46 -304h-54l46 304h-739z" />
124
+ <glyph unicode="&#xad;" horiz-adv-x="607" d="M71 599l8 54h470l-8 -54h-470z" />
125
+ <glyph unicode="&#xae;" horiz-adv-x="1674" d="M144 729q49 327 285.5 537t536.5 210q284 0 464.5 -218t133.5 -529q-49 -328 -286 -539t-536 -211q-284 0 -464.5 218.5t-133.5 531.5zM199 729q-46 -301 115.5 -498t435.5 -197q259 0 487 204t271 491q45 300 -116 496t-434 196q-261 0 -488.5 -203t-270.5 -489z M560 316l128 850h239q138 0 204 -61.5t49 -178.5q-12 -77 -59 -127.5t-127 -79.5q65 -23 89.5 -76.5t13.5 -127.5l-8 -56q-7 -40 -7.5 -72.5t5.5 -54.5l-3 -16h-59q-6 21 -2.5 59t10.5 85l8 54q14 97 -21 135.5t-137 38.5h-212l-56 -372h-55zM679 744h206q87 0 157 48.5 t83 134.5q15 99 -30.5 141.5t-175.5 42.5h-184z" />
126
+ <glyph unicode="&#xaf;" horiz-adv-x="811" d="M213 1403l8 53h627l-8 -53h-627z" />
127
+ <glyph unicode="&#xb0;" horiz-adv-x="783" d="M262 1237q14 102 93.5 171t178.5 69q91 0 150.5 -71.5t45.5 -168.5q-16 -104 -93.5 -170.5t-174.5 -66.5q-94 0 -154.5 69t-45.5 168zM317 1237q-13 -82 30.5 -131.5t122.5 -49.5q73 0 132.5 51.5t71.5 129.5q11 83 -30.5 134t-118.5 51q-75 0 -136 -53t-72 -132z" />
128
+ <glyph unicode="&#xb1;" horiz-adv-x="1077" d="M102 751l8 54h442l65 462h54l-65 -462h420l-8 -54h-419l-65 -462h-54l64 462h-442zM179 88l8 54h835l-8 -54h-835z" />
129
+ <glyph unicode="&#xb2;" horiz-adv-x="807" d="M134 667l8 55l372 300q95 80 134 131t47 102q12 81 -28.5 125t-137.5 44q-100 0 -166 -51.5t-78 -130.5h-48l-2 6q10 100 93.5 165.5t208.5 65.5q111 0 170.5 -58t43.5 -167q-11 -73 -68 -136.5t-166 -154.5l-301 -235l2 -6h475l-8 -55h-551z" />
130
+ <glyph unicode="&#xb3;" horiz-adv-x="831" d="M181 882l2 6h49q-12 -81 42.5 -129.5t157.5 -48.5q101 0 167.5 46t79.5 125q13 89 -35.5 127.5t-160.5 38.5h-114l1 9l7 47h114q103 0 162 41.5t70 115.5q11 76 -34.5 119.5t-150.5 43.5q-88 0 -158 -46t-80 -119h-45l-2 6q9 98 94 156t200 58q118 0 182 -58t49 -163 q-10 -64 -53 -111.5t-112 -70.5q70 -22 101.5 -70.5t20.5 -121.5q-16 -111 -101.5 -169.5t-210.5 -58.5q-111 0 -187 59t-55 168z" />
131
+ <glyph unicode="&#xb4;" horiz-adv-x="511" d="M204 1218l257 260h77l2 -6l-267 -260h-66z" />
132
+ <glyph unicode="&#xb5;" d="M29 -416l224 1498h52l-96 -642q-35 -232 35.5 -319.5t209.5 -87.5q181 0 282.5 99.5t143.5 275.5l101 674h54l-87 -577h3q-4 -25 -7 -42t-7 -33l-64 -430h-41l20 200q-64 -108 -162.5 -164.5t-234.5 -56.5q-99 0 -176.5 46t-109.5 149l-88 -590h-52z" />
133
+ <glyph unicode="&#xb6;" horiz-adv-x="946" d="M167 988q32 214 179 341t383 127h179l-218 -1456h-54l78 520h-125q-224 0 -338.5 131t-83.5 337z" />
134
+ <glyph unicode="&#xb7;" horiz-adv-x="472" d="M185 624l22 152h118l-22 -152h-118z" />
135
+ <glyph unicode="&#xb8;" horiz-adv-x="490" d="M-57 -386q101 0 184 36.5t94 104.5q10 67 -31 90.5t-159 33.5l43 121h53l-22 -76q90 -7 136.5 -45.5t34.5 -123.5q-14 -91 -99 -140.5t-234 -49.5v49z" />
136
+ <glyph unicode="&#xb9;" horiz-adv-x="471" d="M209 1398l8 56l224 23l-122 -812h-54l112 747z" />
137
+ <glyph unicode="&#xba;" horiz-adv-x="914" d="M222 1025l17 117q23 154 118.5 244.5t236.5 90.5q135 0 205.5 -94.5t48.5 -240.5l-17 -117q-24 -155 -118.5 -244.5t-234.5 -89.5q-135 0 -206.5 93.5t-49.5 240.5zM276 1025q-20 -129 31.5 -204.5t178.5 -75.5q116 0 195 79.5t97 200.5l17 117q19 126 -34 203.5 t-176 77.5q-117 0 -196 -80.5t-96 -200.5z" />
138
+ <glyph unicode="&#xbb;" horiz-adv-x="897" d="M79 176l345 375l-235 389h70l237 -380l-1 -6l-1 -7l-1 -6l-349 -370h-63zM369 176l345 375l-235 389h70l237 -380l-1 -6l-1 -7l-1 -6l-349 -370h-63z" />
139
+ <glyph unicode="&#xbc;" horiz-adv-x="1533" d="M261 170l882 1138l40 -31l-881 -1138zM271 1397l8 56l224 23l-122 -812h-54l112 747zM708 186l5 36l522 579h62l-84 -560h176l-8 -55h-176l-28 -186h-55l28 186h-442zM804 246l2 -5h352l72 480l-5 2l-45 -59z" />
140
+ <glyph unicode="&#xbd;" horiz-adv-x="1447" d="M271 1397l8 56l224 23l-122 -812h-54l112 747zM273 170l882 1138l40 -31l-881 -1138zM815 0l8 55l372 300q95 80 134 131t47 102q12 81 -28.5 125t-137.5 44q-100 0 -166 -51.5t-78 -130.5h-48l-2 6q10 100 93.5 165.5t208.5 65.5q111 0 170.5 -58t43.5 -167 q-11 -73 -68 -136.5t-166 -154.5l-301 -235l2 -6h475l-8 -55h-551z" />
141
+ <glyph unicode="&#xbe;" horiz-adv-x="1653" d="M213 883l2 6h49q-12 -81 42.5 -129.5t157.5 -48.5q102 0 168.5 46t78.5 125q13 89 -35.5 127.5t-160.5 38.5h-114l7 44l2 12h114q103 0 161.5 41.5t69.5 115.5q11 76 -34 119.5t-150 43.5q-89 0 -159 -46t-80 -119h-45l-2 6q9 98 94 156t200 58q118 0 182 -58t49 -163 q-10 -64 -53 -111.5t-112 -70.5q70 -22 101.5 -70.5t21.5 -121.5q-17 -111 -102.5 -169.5t-210.5 -58.5q-111 0 -187 59t-55 168zM488 170l882 1138l40 -31l-881 -1138zM933 186l5 36l522 579h62l-84 -560h176l-8 -55h-176l-28 -186h-55l28 186h-442zM1029 246l2 -5h352 l72 480l-5 2l-45 -59z" />
142
+ <glyph unicode="&#xbf;" horiz-adv-x="912" d="M20 -27q21 146 96.5 243.5t225.5 216.5q76 52 98.5 100t37.5 150h54q-20 -118 -46 -166.5t-122 -125.5q-139 -116 -204.5 -198t-85.5 -222q-24 -152 41 -232t211 -80q135 0 229 85.5t118 222.5h46l2 -6q-24 -170 -136.5 -262.5t-266.5 -92.5q-159 0 -240.5 102t-57.5 265 zM499 977l15 106h82l-15 -106h-82z" />
143
+ <glyph unicode="&#xc0;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM535 1828h96l187 -266h-82z" />
144
+ <glyph unicode="&#xc1;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM702 1562l257 260h77l2 -6l-267 -260h-66z" />
145
+ <glyph unicode="&#xc2;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM522 1601l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
146
+ <glyph unicode="&#xc3;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM424 1615q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5 q-51 0 -92 -37.5t-48 -97.5z" />
147
+ <glyph unicode="&#xc4;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM479 1673l17 118h137l-17 -118h-137zM949 1673l17 118h136l-17 -118h-136z" />
148
+ <glyph unicode="&#xc5;" horiz-adv-x="1223" d="M-46 0l762 1456h66l327 -1456h-59l-97 435h-713l-227 -435h-59zM268 489h673l-183 820l-15 82h-6l-40 -82zM653 1726q8 59 54 99t103 40q52 0 86 -41.5t26 -97.5q-9 -59 -54 -97t-100 -38q-54 0 -89 39.5t-26 95.5zM710 1726q-6 -36 13.5 -57.5t53.5 -21.5 q31 0 56.5 22.5t31.5 56.5q5 36 -13.5 59t-50.5 23t-59 -23.5t-32 -58.5z" />
149
+ <glyph unicode="&#xc6;" horiz-adv-x="1816" d="M-30 0l1099 1456h776l-8 -54h-696l-66 -616h588l-8 -54h-586l-73 -678h700l-8 -54h-752l46 425h-628l-319 -425h-65zM394 478h593l100 922l-6 2l-71 -104z" />
150
+ <glyph unicode="&#xc7;" horiz-adv-x="1327" d="M157 619l33 218q43 297 212 468.5t411 171.5q219 0 344.5 -120t89.5 -339l-3 -6h-46q30 204 -75.5 307.5t-318.5 103.5q-205 0 -363 -162t-197 -422l-33 -220q-42 -275 63.5 -430.5t321.5 -155.5q203 0 344.5 104t172.5 309h45l2 -6q-31 -233 -185.5 -347t-386.5 -114 q-230 0 -352 178t-79 462zM414 -395q101 0 184 36.5t94 104.5q10 67 -31 90.5t-159 33.5l43 121h53l-22 -76q90 -7 136.5 -45.5t34.5 -123.5q-14 -91 -99 -140.5t-234 -49.5v49z" />
151
+ <glyph unicode="&#xc8;" horiz-adv-x="1166" d="M120 0l218 1456h886l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-886zM542 1828h96l187 -266h-82z" />
152
+ <glyph unicode="&#xc9;" horiz-adv-x="1166" d="M120 0l218 1456h886l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-886zM709 1562l257 260h77l2 -6l-267 -260h-66z" />
153
+ <glyph unicode="&#xca;" horiz-adv-x="1166" d="M120 0l218 1456h886l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-886zM529 1601l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
154
+ <glyph unicode="&#xcb;" horiz-adv-x="1166" d="M120 0l218 1456h886l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-886zM486 1673l17 118h137l-17 -118h-137zM956 1673l17 118h136l-17 -118h-136z" />
155
+ <glyph unicode="&#xcc;" horiz-adv-x="534" d="M160 0l218 1456h54l-218 -1456h-54zM192 1828h96l187 -266h-82z" />
156
+ <glyph unicode="&#xcd;" horiz-adv-x="534" d="M160 0l218 1456h54l-218 -1456h-54zM358 1562l257 260h77l2 -6l-267 -260h-66z" />
157
+ <glyph unicode="&#xce;" horiz-adv-x="534" d="M160 0l218 1456h54l-218 -1456h-54zM179 1601l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
158
+ <glyph unicode="&#xcf;" horiz-adv-x="534" d="M136 1673l17 118h137l-17 -118h-137zM160 0l218 1456h54l-218 -1456h-54zM606 1673l17 118h136l-17 -118h-136z" />
159
+ <glyph unicode="&#xd0;" horiz-adv-x="1370" d="M117 713l8 54h140l103 689h403q242 0 394 -181.5t112 -457.5l-27 -178q-44 -291 -243.5 -465t-453.5 -174h-403l107 713h-140zM212 54h349q218 0 407.5 167.5t227.5 417.5l27 181q38 260 -96 421t-364 161h-349l-95 -635h393l-8 -54h-393z" />
160
+ <glyph unicode="&#xd1;" horiz-adv-x="1449" d="M120 0l218 1456h55l731 -1354l6 1l203 1353h54l-218 -1456h-54l-731 1356l-6 -1l-203 -1355h-55zM538 1615q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5 t-48 -97.5z" />
161
+ <glyph unicode="&#xd2;" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -174.5t82 -465.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-247 0 -372.5 174.5t-81.5 465.5zM201 619q-43 -281 62 -433.5t345 -152.5q229 0 385 159.5t197 426.5l33 220q41 279 -63.5 431.5t-345.5 152.5 q-228 0 -384 -159.5t-196 -424.5zM602 1849h96l187 -266h-82z" />
162
+ <glyph unicode="&#xd3;" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -174.5t82 -465.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-247 0 -372.5 174.5t-81.5 465.5zM201 619q-43 -281 62 -433.5t345 -152.5q229 0 385 159.5t197 426.5l33 220q41 279 -63.5 431.5t-345.5 152.5 q-228 0 -384 -159.5t-196 -424.5zM769 1583l257 260h77l2 -6l-267 -260h-66z" />
163
+ <glyph unicode="&#xd4;" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -174.5t82 -465.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-247 0 -372.5 174.5t-81.5 465.5zM201 619q-43 -281 62 -433.5t345 -152.5q229 0 385 159.5t197 426.5l33 220q41 279 -63.5 431.5t-345.5 152.5 q-228 0 -384 -159.5t-196 -424.5zM590 1622l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
164
+ <glyph unicode="&#xd5;" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -174.5t82 -465.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-247 0 -372.5 174.5t-81.5 465.5zM201 619q-43 -281 62 -433.5t345 -152.5q229 0 385 159.5t197 426.5l33 220q41 279 -63.5 431.5t-345.5 152.5 q-228 0 -384 -159.5t-196 -424.5zM492 1636q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5t-48 -97.5z" />
165
+ <glyph unicode="&#xd6;" horiz-adv-x="1364" d="M146 619l33 218q45 305 214.5 472.5t429.5 167.5q247 0 372 -174.5t82 -465.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-247 0 -372.5 174.5t-81.5 465.5zM201 619q-43 -281 62 -433.5t345 -152.5q229 0 385 159.5t197 426.5l33 220q41 279 -63.5 431.5t-345.5 152.5 q-228 0 -384 -159.5t-196 -424.5zM546 1694l17 118h137l-17 -118h-137zM1016 1694l17 118h136l-17 -118h-136z" />
166
+ <glyph unicode="&#xd7;" horiz-adv-x="1052" d="M61 289l444 393l-303 364l45 39l302 -364l411 364l33 -39l-412 -364l326 -393l-44 -37l-326 391l-442 -391z" />
167
+ <glyph unicode="&#xd8;" horiz-adv-x="1364" d="M97 -75l155 197q-75 85 -103 211.5t-3 285.5l33 218q45 305 214.5 472.5t429.5 167.5q117 0 210 -42.5t154 -120.5l142 181h66l-178 -227q47 -83 63 -192.5t-3 -238.5l-33 -218q-46 -306 -215.5 -473t-428.5 -167q-95 0 -174 26.5t-137 79.5l-126 -160h-66zM197.5 352 q20.5 -115 83.5 -184l6 -1l869 1108q-53 72 -138.5 110t-203.5 38q-228 0 -384 -159.5t-196 -424.5l-33 -220q-24 -152 -3.5 -267zM319 124q51 -46 124 -68.5t165 -22.5q229 0 385 159.5t197 426.5l33 220q17 119 8 216.5t-45 164.5l-6 2z" />
168
+ <glyph unicode="&#xd9;" horiz-adv-x="1365" d="M175 469l148 987h54l-148 -987q-32 -213 74 -324.5t305 -111.5q187 0 332 116.5t176 319.5l148 987h54l-148 -987q-37 -247 -191 -368.5t-379 -121.5q-215 0 -338 127.5t-87 362.5zM620 1828h96l187 -266h-82z" />
169
+ <glyph unicode="&#xda;" horiz-adv-x="1365" d="M175 469l148 987h54l-148 -987q-32 -213 74 -324.5t305 -111.5q187 0 332 116.5t176 319.5l148 987h54l-148 -987q-37 -247 -191 -368.5t-379 -121.5q-215 0 -338 127.5t-87 362.5zM787 1562l257 260h77l2 -6l-267 -260h-66z" />
170
+ <glyph unicode="&#xdb;" horiz-adv-x="1365" d="M175 469l148 987h54l-148 -987q-32 -213 74 -324.5t305 -111.5q187 0 332 116.5t176 319.5l148 987h54l-148 -987q-37 -247 -191 -368.5t-379 -121.5q-215 0 -338 127.5t-87 362.5zM607 1601l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
171
+ <glyph unicode="&#xdc;" horiz-adv-x="1365" d="M175 469l148 987h54l-148 -987q-32 -213 74 -324.5t305 -111.5q187 0 332 116.5t176 319.5l148 987h54l-148 -987q-37 -247 -191 -368.5t-379 -121.5q-215 0 -338 127.5t-87 362.5zM564 1673l17 118h137l-17 -118h-137zM1034 1673l17 118h136l-17 -118h-136z" />
172
+ <glyph unicode="&#xdd;" horiz-adv-x="1223" d="M174 1456h66l360 -809l19 -50l34 50l604 809h66l-682 -902l-83 -554h-55l83 553zM696 1551l257 260h77l2 -6l-267 -260h-66z" />
173
+ <glyph unicode="&#xde;" horiz-adv-x="1219" d="M120 0l218 1456h54l-47 -313h371q203 0 309.5 -114.5t80.5 -290.5q-29 -187 -162.5 -295.5t-348.5 -108.5h-371l-50 -334h-54zM232 388h371q187 0 307.5 105.5t140.5 242.5q23 149 -61.5 251t-281.5 102h-371z" />
174
+ <glyph unicode="&#xdf;" horiz-adv-x="1183" d="M84 0l162 1082q29 195 132 293.5t266 98.5q118 0 193.5 -74t58.5 -194q-17 -107 -91.5 -208.5t-88.5 -197.5q-15 -96 157.5 -235t150.5 -288q-23 -147 -147 -222.5t-265 -75.5q-84 0 -174.5 26.5t-124.5 62.5l33 49q36 -34 112.5 -59.5t153.5 -25.5q135 0 238.5 72 t120.5 182q17 120 -155.5 256t-153.5 260q17 111 89 215.5t85 190.5q14 94 -43.5 153t-146.5 59q-129 0 -225.5 -88t-120.5 -250l-162 -1082h-54z" />
175
+ <glyph unicode="&#xe0;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM409 1508h96l187 -266h-82z" />
176
+ <glyph unicode="&#xe1;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM576 1242l257 260h77l2 -6l-267 -260h-66z" />
177
+ <glyph unicode="&#xe2;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM396 1281l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
178
+ <glyph unicode="&#xe3;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM298 1295q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5 l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5t-48 -97.5z" />
179
+ <glyph unicode="&#xe4;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM353 1353l17 118h137l-17 -118h-137zM823 1353l17 118h136l-17 -118h-136z" />
180
+ <glyph unicode="&#xe5;" horiz-adv-x="1081" d="M55 284q20 141 161.5 230.5t336.5 89.5h308l24 158q21 140 -53.5 213t-233.5 73q-141 0 -244 -71.5t-120 -182.5l-45 2l-1 5q14 130 129.5 215.5t288.5 85.5q168 0 262.5 -89t70.5 -253l-81 -542q-9 -59 -11 -112t6 -106h-60q-2 84 -1.5 113t6.5 70l2 16 q-70 -98 -190 -159t-278 -61q-145 0 -221.5 83.5t-55.5 221.5zM108 280q-17 -113 46 -180.5t186 -67.5q155 0 279.5 71.5t196.5 201.5l37 244h-306q-162 0 -292.5 -78t-146.5 -191zM527 1406q8 59 54 99t103 40q52 0 86 -41.5t26 -97.5q-9 -59 -54 -97t-100 -38 q-54 0 -89 39.5t-26 95.5zM584 1406q-6 -36 13.5 -57.5t53.5 -21.5q31 0 56.5 22.5t31.5 56.5q5 36 -13.5 59t-50.5 23t-59 -23.5t-32 -58.5z" />
181
+ <glyph unicode="&#xe6;" horiz-adv-x="1735" d="M56 284q24 163 148.5 254.5t333.5 91.5h289l14 90q24 164 -36 246t-207 82q-156 0 -263.5 -78.5t-124.5 -198.5l-44 6l-1 6q16 143 136.5 231t304.5 88q131 0 210.5 -73t85.5 -210q71 133 186.5 208t249.5 75q181 0 274.5 -119.5t63.5 -322.5l-12 -83h-787q0 -3 -1 -7.5 t-1 -5.5l-10 -64q-33 -215 47 -341t281 -126q98 0 190.5 35t161.5 96l23 -42q-74 -66 -163.5 -104.5t-219.5 -38.5q-138 0 -231.5 68t-129.5 189l-3 -18h1q-58 -95 -178 -167t-279 -72q-163 0 -247 83t-62 222zM110 280q-18 -122 49 -185.5t213 -63.5q124 0 244 66t150 128 l53 350h-288q-177 0 -290 -85.5t-131 -209.5zM894 638l2 -6h722l5 32q26 175 -49 279.5t-244 104.5q-153 0 -274.5 -117.5t-161.5 -292.5z" />
182
+ <glyph unicode="&#xe7;" horiz-adv-x="1039" d="M95 520l6 42q37 251 175 395.5t346 144.5q163 0 267.5 -99.5t73.5 -277.5l-2 -5h-47q24 165 -64.5 246.5t-235.5 81.5q-183 0 -305 -138t-154 -348l-6 -42q-34 -224 43.5 -355.5t271.5 -131.5q133 0 251 75t141 225h45l2 -6q-21 -166 -153.5 -257t-293.5 -91 q-199 0 -298.5 150.5t-62.5 390.5zM283 -395q101 0 184 36.5t94 104.5q10 67 -31 90.5t-159 33.5l43 121h53l-22 -76q90 -7 136.5 -45.5t34.5 -123.5q-14 -91 -99 -140.5t-234 -49.5v49z" />
183
+ <glyph unicode="&#xe8;" horiz-adv-x="1032" d="M82 500l10 64q35 243 186.5 390.5t344.5 147.5q176 0 276.5 -121t71.5 -321l-12 -83h-811q0 -3 -1 -7.5t-1 -5.5l-10 -64q-31 -203 63.5 -335t266.5 -132q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5q-178 0 -293.5 150.5t-82.5 370.5zM165 637l2 -6 h746l5 33q25 171 -58 277.5t-245 106.5q-155 0 -282 -118.5t-168 -292.5zM442 1507h96l187 -266h-82z" />
184
+ <glyph unicode="&#xe9;" horiz-adv-x="1032" d="M82 500l10 64q35 243 186.5 390.5t344.5 147.5q176 0 276.5 -121t71.5 -321l-12 -83h-811q0 -3 -1 -7.5t-1 -5.5l-10 -64q-31 -203 63.5 -335t266.5 -132q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5q-178 0 -293.5 150.5t-82.5 370.5zM165 637l2 -6 h746l5 33q25 171 -58 277.5t-245 106.5q-155 0 -282 -118.5t-168 -292.5zM608 1241l257 260h77l2 -6l-267 -260h-66z" />
185
+ <glyph unicode="&#xea;" horiz-adv-x="1032" d="M82 500l10 64q35 243 186.5 390.5t344.5 147.5q176 0 276.5 -121t71.5 -321l-12 -83h-811q0 -3 -1 -7.5t-1 -5.5l-10 -64q-31 -203 63.5 -335t266.5 -132q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5q-178 0 -293.5 150.5t-82.5 370.5zM165 637l2 -6 h746l5 33q25 171 -58 277.5t-245 106.5q-155 0 -282 -118.5t-168 -292.5zM429 1280l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
186
+ <glyph unicode="&#xeb;" horiz-adv-x="1032" d="M82 500l10 64q35 243 186.5 390.5t344.5 147.5q176 0 276.5 -121t71.5 -321l-12 -83h-811q0 -3 -1 -7.5t-1 -5.5l-10 -64q-31 -203 63.5 -335t266.5 -132q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5q-178 0 -293.5 150.5t-82.5 370.5zM165 637l2 -6 h746l5 33q25 171 -58 277.5t-245 106.5q-155 0 -282 -118.5t-168 -292.5zM386 1352l17 118h137l-17 -118h-137zM856 1352l17 118h136l-17 -118h-136z" />
187
+ <glyph unicode="&#xec;" horiz-adv-x="406" d="M81 1485h96l187 -266h-82zM101 0l162 1082h54l-162 -1082h-54z" />
188
+ <glyph unicode="&#xed;" horiz-adv-x="406" d="M101 0l162 1082h54l-162 -1082h-54zM247 1219l257 260h77l2 -6l-267 -260h-66z" />
189
+ <glyph unicode="&#xee;" horiz-adv-x="406" d="M69 1258l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66zM101 0l162 1082h54l-162 -1082h-54z" />
190
+ <glyph unicode="&#xef;" horiz-adv-x="406" d="M26 1331l17 118h137l-17 -118h-137zM101 0l162 1082h54l-162 -1082h-54zM496 1331l17 118h136l-17 -118h-136z" />
191
+ <glyph unicode="&#xf0;" horiz-adv-x="1183" d="M110 446q37 250 173.5 378.5t350.5 128.5q132 0 236.5 -53t149.5 -146l1 3q28 192 -6 322.5t-120 217.5l-395 -208l-20 48l374 197q-48 38 -106 70t-130 63l28 50q80 -34 145 -72.5t115 -82.5l283 149l21 -48l-265 -139q94 -101 125.5 -240t3.5 -329l-33 -220 q-38 -254 -190.5 -405t-354.5 -151q-192 0 -304 135.5t-82 331.5zM165 446q-26 -170 65 -289.5t279 -119.5q172 0 308.5 141t169.5 357l20 131q-28 95 -126 162t-256 67q-190 0 -310.5 -126t-149.5 -323z" />
192
+ <glyph unicode="&#xf1;" d="M92 0l83 554l79 528h46l-24 -215q65 114 167.5 174.5t241.5 60.5q170 0 245 -113t40 -352l-96 -637h-54l96 639q35 234 -30.5 321.5t-207.5 87.5q-168 0 -275 -107t-156 -270l-101 -671h-54zM342 1293q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5 t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5t-48 -97.5z" />
193
+ <glyph unicode="&#xf2;" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315.5 -152.5t77.5 -387.5l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 0 -316.5 152.5t-77.5 388.5zM139 520q-32 -211 60.5 -349t287.5 -138q182 0 321 143t170 344l6 42q31 206 -62 346t-285 140 q-183 0 -323 -145t-169 -341zM457 1506h96l187 -266h-82z" />
194
+ <glyph unicode="&#xf3;" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315.5 -152.5t77.5 -387.5l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 0 -316.5 152.5t-77.5 388.5zM139 520q-32 -211 60.5 -349t287.5 -138q182 0 321 143t170 344l6 42q31 206 -62 346t-285 140 q-183 0 -323 -145t-169 -341zM623 1240l257 260h77l2 -6l-267 -260h-66z" />
195
+ <glyph unicode="&#xf4;" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315.5 -152.5t77.5 -387.5l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 0 -316.5 152.5t-77.5 388.5zM139 520q-32 -211 60.5 -349t287.5 -138q182 0 321 143t170 344l6 42q31 206 -62 346t-285 140 q-183 0 -323 -145t-169 -341zM444 1279l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
196
+ <glyph unicode="&#xf5;" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315.5 -152.5t77.5 -387.5l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 0 -316.5 152.5t-77.5 388.5zM139 520q-32 -211 60.5 -349t287.5 -138q182 0 321 143t170 344l6 42q31 206 -62 346t-285 140 q-183 0 -323 -145t-169 -341zM346 1293q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5t-48 -97.5z" />
197
+ <glyph unicode="&#xf6;" d="M85 520l6 42q37 247 189 393.5t365 146.5q203 0 315.5 -152.5t77.5 -387.5l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-203 0 -316.5 152.5t-77.5 388.5zM139 520q-32 -211 60.5 -349t287.5 -138q182 0 321 143t170 344l6 42q31 206 -62 346t-285 140 q-183 0 -323 -145t-169 -341zM401 1351l17 118h137l-17 -118h-137zM871 1351l17 118h136l-17 -118h-136z" />
198
+ <glyph unicode="&#xf7;" horiz-adv-x="1159" d="M96 686l8 52h998l-8 -52h-998zM491 241l18 122h96l-18 -122h-96zM608 1020l18 122h96l-18 -122h-96z" />
199
+ <glyph unicode="&#xf8;" d="M85 520l6 42q37 247 189 393.5t365 146.5q59 0 113.5 -15t100.5 -43l112 175h63l-132 -207q84 -72 121 -189t15 -261l-6 -42q-38 -248 -189.5 -394.5t-363.5 -146.5q-57 0 -108 12.5t-94 38.5l-111 -175h-63l130 204q-91 70 -131 190.5t-17 270.5zM139 520 q-21 -135 10.5 -243t110.5 -166l6 -1l564 887q-40 25 -88.5 38t-104.5 13q-183 0 -323 -145t-169 -341zM306 75q38 -21 83 -31.5t98 -10.5q182 0 321 143t170 344l6 42q18 126 -10.5 231t-99.5 165l-6 1z" />
200
+ <glyph unicode="&#xf9;" d="M158 465l92 617h54l-93 -619q-35 -229 30 -329.5t206 -100.5q164 0 270 87t152 226l110 736h55l-96 -637h1l-4 -24l-63 -421h-45l21 188q-66 -101 -168.5 -155t-238.5 -54q-161 0 -241 120t-42 366zM451 1485h96l187 -266h-82z" />
201
+ <glyph unicode="&#xfa;" d="M158 465l92 617h54l-93 -619q-35 -229 30 -329.5t206 -100.5q164 0 270 87t152 226l110 736h55l-96 -637h1l-4 -24l-63 -421h-45l21 188q-66 -101 -168.5 -155t-238.5 -54q-161 0 -241 120t-42 366zM618 1219l257 260h77l2 -6l-267 -260h-66z" />
202
+ <glyph unicode="&#xfb;" d="M158 465l92 617h54l-93 -619q-35 -229 30 -329.5t206 -100.5q164 0 270 87t152 226l110 736h55l-96 -637h1l-4 -24l-63 -421h-45l21 188q-66 -101 -168.5 -155t-238.5 -54q-161 0 -241 120t-42 366zM439 1258l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186 h-66z" />
203
+ <glyph unicode="&#xfc;" d="M158 465l92 617h54l-93 -619q-35 -229 30 -329.5t206 -100.5q164 0 270 87t152 226l110 736h55l-96 -637h1l-4 -24l-63 -421h-45l21 188q-66 -101 -168.5 -155t-238.5 -54q-161 0 -241 120t-42 366zM396 1331l17 118h137l-17 -118h-137zM866 1331l17 118h136l-17 -118 h-136z" />
204
+ <glyph unicode="&#xfd;" horiz-adv-x="978" d="M-46 -426l17 51q11 -3 32 -6t33 -3q88 0 150.5 55.5t117.5 158.5l91 176l-270 1076h59l223 -886l24 -108h6l9 16l520 978h60l-670 -1262q-62 -114 -131 -185.5t-197 -71.5q-18 0 -40.5 3.5t-33.5 7.5zM552 1219l257 260h77l2 -6l-267 -260h-66z" />
205
+ <glyph unicode="&#xfe;" d="M28 -416l62 416l66 440l96 642l72 478h54l-101 -671q69 99 170.5 156t228.5 57q183 0 272.5 -153t51.5 -407l-3 -21q-39 -259 -167 -400.5t-320 -141.5q-123 0 -211 52t-130 140l-25 -171l-62 -416h-54zM184 270q24 -108 108 -172.5t227 -64.5q164 0 277 133.5t146 354.5 l3 21q34 233 -34.5 369.5t-241.5 136.5q-150 0 -251 -80t-158 -194l-11 -74z" />
206
+ <glyph unicode="&#xff;" horiz-adv-x="978" d="M-46 -426l17 51q11 -3 32 -6t33 -3q88 0 150.5 55.5t117.5 158.5l91 176l-270 1076h59l223 -886l24 -108h6l9 16l520 978h60l-670 -1262q-62 -114 -131 -185.5t-197 -71.5q-18 0 -40.5 3.5t-33.5 7.5zM330 1331l17 118h137l-17 -118h-137zM800 1331l17 118h136l-17 -118 h-136z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1873" d="M118 576l46 304q41 275 207.5 436t399.5 161q76 0 159 -6t169 -15h828l-8 -54h-832l-93 -616h731l-8 -54h-731l-101 -678h832l-8 -54h-828q-104 -10 -180 -15.5t-153 -5.5q-222 0 -346 167.5t-84 429.5zM172 576q-37 -249 67.5 -396t316.5 -147q70 0 141.5 2.5t132.5 9.5 l204 1366q-59 6 -127 9t-145 3q-203 0 -355.5 -150.5t-188.5 -390.5z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1921" d="M90 520l6 42q37 247 189 393.5t365 146.5q149 0 252.5 -86t135.5 -232q72 148 197 233t268 85q176 0 276.5 -121t71.5 -321l-12 -83h-794l-2 -15l-6 -42q-6 -34 -13 -65t-15 -59q3 -163 96 -263t241 -100q117 0 206 33.5t156 98.5l22 -42q-74 -71 -171 -107.5t-221 -36.5 q-131 0 -233.5 86.5t-135.5 228.5q-73 -149 -200.5 -232t-284.5 -83q-203 0 -316.5 152.5t-77.5 388.5zM144 520q-32 -211 60.5 -349t287.5 -138q155 0 281 106t182 269q0 22 1.5 45t5.5 47l10 64q3 28 9 55.5t15 54.5q-5 165 -97.5 269.5t-256.5 104.5q-183 0 -323 -145 t-169 -341zM1050 631h743l5 33q25 171 -58 277.5t-245 106.5q-145 0 -268 -107t-176 -272q0 -6 -0.5 -19t-0.5 -19z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1223" d="M174 1456h66l360 -809l19 -50l34 50l604 809h66l-682 -902l-83 -554h-55l83 553zM474 1662l17 118h137l-17 -118h-137zM944 1662l17 118h136l-17 -118h-136z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="796" d="M260 1252l2 17l241 206h80l183 -210l-2 -13h-70l-157 186l-211 -186h-66z" />
211
+ <glyph unicode="&#x2dc;" horiz-adv-x="818" d="M180 1286q11 84 67 131.5t134 47.5q68 0 142 -62t128 -62q48 0 89.5 39.5t50.5 101.5l54 -10q-12 -86 -69.5 -136t-132.5 -50q-71 0 -142 62.5t-127 62.5q-51 0 -92 -37.5t-48 -97.5z" />
212
+ <glyph unicode="&#x2000;" horiz-adv-x="932" />
213
+ <glyph unicode="&#x2001;" horiz-adv-x="1865" />
214
+ <glyph unicode="&#x2002;" horiz-adv-x="932" />
215
+ <glyph unicode="&#x2003;" horiz-adv-x="1865" />
216
+ <glyph unicode="&#x2004;" horiz-adv-x="621" />
217
+ <glyph unicode="&#x2005;" horiz-adv-x="466" />
218
+ <glyph unicode="&#x2006;" horiz-adv-x="310" />
219
+ <glyph unicode="&#x2007;" horiz-adv-x="310" />
220
+ <glyph unicode="&#x2008;" horiz-adv-x="233" />
221
+ <glyph unicode="&#x2009;" horiz-adv-x="373" />
222
+ <glyph unicode="&#x200a;" horiz-adv-x="103" />
223
+ <glyph unicode="&#x2010;" horiz-adv-x="607" d="M71 599l8 54h470l-8 -54h-470z" />
224
+ <glyph unicode="&#x2011;" horiz-adv-x="607" d="M71 599l8 54h470l-8 -54h-470z" />
225
+ <glyph unicode="&#x2012;" horiz-adv-x="607" d="M71 599l8 54h470l-8 -54h-470z" />
226
+ <glyph unicode="&#x2013;" horiz-adv-x="1412" d="M197 721l11 54h1085l-10 -54h-1086z" />
227
+ <glyph unicode="&#x2014;" horiz-adv-x="1673" d="M176 721l12 54h1336l-12 -54h-1336z" />
228
+ <glyph unicode="&#x2018;" horiz-adv-x="320" d="M188 1123l25 166l111 271h50l-106 -267l-26 -170h-54z" />
229
+ <glyph unicode="&#x2019;" horiz-adv-x="320" d="M188 1123l107 268l25 169h54l-25 -166l-111 -271h-50z" />
230
+ <glyph unicode="&#x201a;" horiz-adv-x="300" d="M-6 -171l87 269l25 170h54l-25 -168l-91 -271h-50z" />
231
+ <glyph unicode="&#x201c;" horiz-adv-x="500" d="M188 1123l25 166l111 271h50l-106 -267l-26 -170h-54zM368 1123l25 166l111 271h50l-106 -267l-26 -170h-54z" />
232
+ <glyph unicode="&#x201d;" horiz-adv-x="502" d="M188 1123l107 268l25 169h54l-25 -166l-111 -271h-50zM370 1123l107 268l25 169h54l-25 -166l-111 -271h-50z" />
233
+ <glyph unicode="&#x201e;" horiz-adv-x="481" d="M-5 -169l85 269l25 169h55l-25 -166l-90 -272h-50zM176 -169l86 269l25 169h54l-25 -166l-90 -272h-50z" />
234
+ <glyph unicode="&#x2022;" horiz-adv-x="635" d="M180 703l11 70q11 73 62 116.5t128 43.5q73 0 113.5 -46t30.5 -114l-11 -70q-11 -73 -62.5 -115.5t-127.5 -42.5q-74 0 -114 44.5t-30 113.5z" />
235
+ <glyph unicode="&#x2026;" horiz-adv-x="1255" d="M131 0l20 130h86l-20 -130h-86zM515 0l20 130h86l-20 -130h-86zM884 0l20 130h86l-20 -130h-86z" />
236
+ <glyph unicode="&#x202f;" horiz-adv-x="373" />
237
+ <glyph unicode="&#x2039;" horiz-adv-x="604" d="M111 551l1 6l1 7l1 6l350 370h63l2 -5l-346 -374l237 -380h-70z" />
238
+ <glyph unicode="&#x203a;" horiz-adv-x="604" d="M57 176l345 375l-235 389h70l237 -380l-1 -6l-1 -7l-1 -6l-349 -370h-63z" />
239
+ <glyph unicode="&#x205f;" horiz-adv-x="466" />
240
+ <glyph unicode="&#x20ac;" horiz-adv-x="1060" d="M85 553l8 55h187l33 222h-186l8 56h186l9 56q38 253 188.5 394t365.5 141q52 0 105.5 -8t111.5 -23l-9 -58q-51 16 -106 25.5t-111 9.5q-186 0 -322 -130t-168 -349l-9 -58h593l-8 -56h-593l-34 -222h593l-8 -55h-593l-6 -39q-35 -228 59.5 -354.5t289.5 -126.5 q55 0 113.5 8.5t111.5 25.5l-8 -57q-54 -15 -111.5 -23t-113.5 -8q-204 0 -317.5 146.5t-77.5 388.5l6 39h-187z" />
241
+ <glyph unicode="&#x2122;" horiz-adv-x="1247" d="M220 1399l8 57h384l-8 -57h-159l-71 -480h-56l71 480h-169zM610 919l80 537h75l114 -451l6 -1l250 452h69l-80 -537h-55l62 420l-5 2l-232 -422h-51l-107 436h-6l-65 -436h-55z" />
242
+ <glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
243
+ <glyph unicode="&#xfb02;" horiz-adv-x="1067" d="M140 1027l8 55h188l27 178q24 159 110 240t221 81q32 0 65 -4t61 -13l-16 -52q-31 8 -55 11.5t-62 3.5q-104 0 -178 -71.5t-92 -195.5l-27 -178h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM750 0l234 1560h54l-234 -1560h-54z" />
244
+ <glyph unicode="&#xfb03;" horiz-adv-x="1712" d="M140 1027l8 55h188l27 178q24 159 110 240t221 81q32 0 65 -4t61 -13l-16 -52q-31 8 -55 11.5t-62 3.5q-104 0 -178 -71.5t-92 -195.5l-27 -178h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM785 1027l8 55h188l24 158q25 169 122.5 255t251.5 86q65 0 132.5 -13.5 t127.5 -43.5l-16 -52q-62 29 -115.5 42t-135.5 13q-121 0 -207.5 -77t-105.5 -210l-24 -158h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM1395 0l162 1082h54l-162 -1082h-54z" />
245
+ <glyph unicode="&#xfb04;" horiz-adv-x="1712" d="M140 1027l8 55h188l27 178q24 159 110 240t221 81q32 0 65 -4t61 -13l-16 -52q-31 8 -55 11.5t-62 3.5q-104 0 -178 -71.5t-92 -195.5l-27 -178h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM785 1027l8 55h188l27 178q24 159 110 240t221 81q32 0 65 -4t61 -13 l-16 -52q-31 8 -55 11.5t-62 3.5q-104 0 -178 -71.5t-92 -195.5l-27 -178h286l-8 -55h-286l-154 -1027h-54l154 1027h-188zM1395 0l234 1560h54l-234 -1560h-54z" />
246
+ <hkern u1="&#x22;" u2="w" k="-11" />
247
+ <hkern u1="&#x27;" u2="w" k="-11" />
248
+ <hkern u1="&#x28;" u2="&#x178;" k="-22" />
249
+ <hkern u1="&#x28;" u2="&#xdd;" k="-22" />
250
+ <hkern u1="&#x28;" u2="Y" k="-22" />
251
+ <hkern u1="&#x28;" u2="W" k="-18" />
252
+ <hkern u1="&#x28;" u2="V" k="-20" />
253
+ <hkern u1="A" u2="w" k="33" />
254
+ <hkern u1="A" u2="t" k="17" />
255
+ <hkern u1="A" u2="&#x3f;" k="61" />
256
+ <hkern u1="C" u2="&#x7d;" k="17" />
257
+ <hkern u1="C" u2="]" k="12" />
258
+ <hkern u1="C" u2="&#x29;" k="26" />
259
+ <hkern u1="D" u2="&#xc6;" k="33" />
260
+ <hkern u1="E" u2="w" k="22" />
261
+ <hkern u1="E" u2="f" k="18" />
262
+ <hkern u1="F" u2="&#x2026;" k="234" />
263
+ <hkern u1="F" u2="&#x201e;" k="234" />
264
+ <hkern u1="F" u2="&#x201a;" k="234" />
265
+ <hkern u1="F" u2="&#x153;" k="21" />
266
+ <hkern u1="F" u2="&#xff;" k="24" />
267
+ <hkern u1="F" u2="&#xfd;" k="24" />
268
+ <hkern u1="F" u2="&#xfc;" k="22" />
269
+ <hkern u1="F" u2="&#xfb;" k="22" />
270
+ <hkern u1="F" u2="&#xfa;" k="22" />
271
+ <hkern u1="F" u2="&#xf9;" k="22" />
272
+ <hkern u1="F" u2="&#xf6;" k="21" />
273
+ <hkern u1="F" u2="&#xf5;" k="21" />
274
+ <hkern u1="F" u2="&#xf4;" k="21" />
275
+ <hkern u1="F" u2="&#xf3;" k="21" />
276
+ <hkern u1="F" u2="&#xf2;" k="21" />
277
+ <hkern u1="F" u2="&#xeb;" k="21" />
278
+ <hkern u1="F" u2="&#xea;" k="21" />
279
+ <hkern u1="F" u2="&#xe9;" k="21" />
280
+ <hkern u1="F" u2="&#xe8;" k="21" />
281
+ <hkern u1="F" u2="&#xe7;" k="21" />
282
+ <hkern u1="F" u2="&#xe5;" k="34" />
283
+ <hkern u1="F" u2="&#xe4;" k="34" />
284
+ <hkern u1="F" u2="&#xe3;" k="34" />
285
+ <hkern u1="F" u2="&#xe2;" k="34" />
286
+ <hkern u1="F" u2="&#xe1;" k="34" />
287
+ <hkern u1="F" u2="&#xe0;" k="34" />
288
+ <hkern u1="F" u2="&#xc5;" k="59" />
289
+ <hkern u1="F" u2="&#xc4;" k="59" />
290
+ <hkern u1="F" u2="&#xc3;" k="59" />
291
+ <hkern u1="F" u2="&#xc2;" k="59" />
292
+ <hkern u1="F" u2="&#xc1;" k="59" />
293
+ <hkern u1="F" u2="&#xc0;" k="59" />
294
+ <hkern u1="F" u2="y" k="24" />
295
+ <hkern u1="F" u2="v" k="24" />
296
+ <hkern u1="F" u2="u" k="22" />
297
+ <hkern u1="F" u2="r" k="26" />
298
+ <hkern u1="F" u2="q" k="21" />
299
+ <hkern u1="F" u2="o" k="21" />
300
+ <hkern u1="F" u2="g" k="21" />
301
+ <hkern u1="F" u2="e" k="21" />
302
+ <hkern u1="F" u2="d" k="21" />
303
+ <hkern u1="F" u2="c" k="21" />
304
+ <hkern u1="F" u2="a" k="34" />
305
+ <hkern u1="F" u2="T" k="-20" />
306
+ <hkern u1="F" u2="A" k="59" />
307
+ <hkern u1="F" u2="&#x3a;" k="234" />
308
+ <hkern u1="F" u2="&#x2e;" k="234" />
309
+ <hkern u1="F" u2="&#x2c;" k="234" />
310
+ <hkern u1="K" u2="w" k="63" />
311
+ <hkern u1="L" u2="w" k="92" />
312
+ <hkern u1="O" u2="&#xc6;" k="33" />
313
+ <hkern u1="P" u2="&#xc6;" k="97" />
314
+ <hkern u1="P" u2="t" k="-14" />
315
+ <hkern u1="Q" u2="&#x178;" k="35" />
316
+ <hkern u1="Q" u2="&#xdd;" k="35" />
317
+ <hkern u1="Q" u2="Y" k="35" />
318
+ <hkern u1="Q" u2="W" k="20" />
319
+ <hkern u1="Q" u2="V" k="28" />
320
+ <hkern u1="Q" u2="T" k="43" />
321
+ <hkern u1="R" u2="&#x178;" k="48" />
322
+ <hkern u1="R" u2="&#xdd;" k="48" />
323
+ <hkern u1="R" u2="Y" k="48" />
324
+ <hkern u1="R" u2="V" k="19" />
325
+ <hkern u1="R" u2="T" k="80" />
326
+ <hkern u1="T" u2="&#xf8;" k="95" />
327
+ <hkern u1="T" u2="&#xe6;" k="114" />
328
+ <hkern u1="T" u2="&#xc6;" k="179" />
329
+ <hkern u1="T" u2="&#xbb;" k="216" />
330
+ <hkern u1="T" u2="&#xab;" k="328" />
331
+ <hkern u1="T" u2="w" k="57" />
332
+ <hkern u1="T" u2="r" k="75" />
333
+ <hkern u1="V" u2="&#x7d;" k="-19" />
334
+ <hkern u1="V" u2="r" k="30" />
335
+ <hkern u1="V" u2="]" k="-17" />
336
+ <hkern u1="V" u2="&#x29;" k="-20" />
337
+ <hkern u1="W" u2="&#x7d;" k="-14" />
338
+ <hkern u1="W" u2="r" k="21" />
339
+ <hkern u1="W" u2="]" k="-12" />
340
+ <hkern u1="W" u2="&#x29;" k="-15" />
341
+ <hkern u1="Y" u2="&#x2022;" k="45" />
342
+ <hkern u1="Y" u2="&#xf8;" k="64" />
343
+ <hkern u1="Y" u2="&#xe6;" k="63" />
344
+ <hkern u1="Y" u2="&#xc6;" k="96" />
345
+ <hkern u1="Y" u2="&#xbb;" k="51" />
346
+ <hkern u1="Y" u2="&#xab;" k="82" />
347
+ <hkern u1="Y" u2="&#x7d;" k="-19" />
348
+ <hkern u1="Y" u2="t" k="22" />
349
+ <hkern u1="Y" u2="r" k="40" />
350
+ <hkern u1="Y" u2="f" k="22" />
351
+ <hkern u1="Y" u2="]" k="-18" />
352
+ <hkern u1="Y" u2="&#x2a;" k="49" />
353
+ <hkern u1="Y" u2="&#x29;" k="-20" />
354
+ <hkern u1="Y" u2="&#x26;" k="30" />
355
+ <hkern u1="Z" u2="w" k="27" />
356
+ <hkern u1="[" u2="&#xdc;" k="18" />
357
+ <hkern u1="[" u2="&#xdb;" k="18" />
358
+ <hkern u1="[" u2="&#xda;" k="18" />
359
+ <hkern u1="[" u2="&#xd9;" k="18" />
360
+ <hkern u1="[" u2="U" k="18" />
361
+ <hkern u1="[" u2="J" k="18" />
362
+ <hkern u1="f" u2="&#x201d;" k="-16" />
363
+ <hkern u1="f" u2="&#x201c;" k="-16" />
364
+ <hkern u1="f" u2="&#x2019;" k="-16" />
365
+ <hkern u1="f" u2="&#x2018;" k="-16" />
366
+ <hkern u1="f" u2="&#x153;" k="24" />
367
+ <hkern u1="f" u2="&#xeb;" k="24" />
368
+ <hkern u1="f" u2="&#xea;" k="24" />
369
+ <hkern u1="f" u2="&#xe9;" k="24" />
370
+ <hkern u1="f" u2="&#xe8;" k="24" />
371
+ <hkern u1="f" u2="&#xe7;" k="24" />
372
+ <hkern u1="f" u2="&#x7d;" k="-19" />
373
+ <hkern u1="f" u2="q" k="24" />
374
+ <hkern u1="f" u2="g" k="24" />
375
+ <hkern u1="f" u2="e" k="24" />
376
+ <hkern u1="f" u2="d" k="24" />
377
+ <hkern u1="f" u2="c" k="24" />
378
+ <hkern u1="f" u2="]" k="-18" />
379
+ <hkern u1="f" u2="&#x29;" k="-20" />
380
+ <hkern u1="f" u2="&#x27;" k="-16" />
381
+ <hkern u1="f" u2="&#x22;" k="-16" />
382
+ <hkern u1="k" u2="&#x153;" k="20" />
383
+ <hkern u1="k" u2="&#xeb;" k="20" />
384
+ <hkern u1="k" u2="&#xea;" k="20" />
385
+ <hkern u1="k" u2="&#xe9;" k="20" />
386
+ <hkern u1="k" u2="&#xe8;" k="20" />
387
+ <hkern u1="k" u2="&#xe7;" k="20" />
388
+ <hkern u1="k" u2="q" k="20" />
389
+ <hkern u1="k" u2="g" k="20" />
390
+ <hkern u1="k" u2="e" k="20" />
391
+ <hkern u1="k" u2="d" k="20" />
392
+ <hkern u1="k" u2="c" k="20" />
393
+ <hkern u1="r" u2="w" k="-17" />
394
+ <hkern u1="r" u2="t" k="-17" />
395
+ <hkern u1="r" u2="f" k="-15" />
396
+ <hkern u1="v" u2="f" k="-13" />
397
+ <hkern u1="w" u2="&#x2026;" k="124" />
398
+ <hkern u1="w" u2="&#x201e;" k="124" />
399
+ <hkern u1="w" u2="&#x201a;" k="124" />
400
+ <hkern u1="w" u2="&#x3a;" k="124" />
401
+ <hkern u1="w" u2="&#x2e;" k="124" />
402
+ <hkern u1="w" u2="&#x2c;" k="124" />
403
+ <hkern u1="y" u2="f" k="-13" />
404
+ <hkern u1="&#x7b;" u2="&#xdc;" k="20" />
405
+ <hkern u1="&#x7b;" u2="&#xdb;" k="20" />
406
+ <hkern u1="&#x7b;" u2="&#xda;" k="20" />
407
+ <hkern u1="&#x7b;" u2="&#xd9;" k="20" />
408
+ <hkern u1="&#x7b;" u2="U" k="20" />
409
+ <hkern u1="&#x7b;" u2="J" k="20" />
410
+ <hkern u1="&#xc0;" u2="w" k="33" />
411
+ <hkern u1="&#xc0;" u2="t" k="17" />
412
+ <hkern u1="&#xc0;" u2="&#x3f;" k="61" />
413
+ <hkern u1="&#xc1;" u2="w" k="33" />
414
+ <hkern u1="&#xc1;" u2="t" k="17" />
415
+ <hkern u1="&#xc1;" u2="&#x3f;" k="61" />
416
+ <hkern u1="&#xc2;" u2="w" k="33" />
417
+ <hkern u1="&#xc2;" u2="t" k="17" />
418
+ <hkern u1="&#xc2;" u2="&#x3f;" k="61" />
419
+ <hkern u1="&#xc3;" u2="w" k="33" />
420
+ <hkern u1="&#xc3;" u2="t" k="17" />
421
+ <hkern u1="&#xc3;" u2="&#x3f;" k="61" />
422
+ <hkern u1="&#xc4;" u2="w" k="33" />
423
+ <hkern u1="&#xc4;" u2="t" k="17" />
424
+ <hkern u1="&#xc4;" u2="&#x3f;" k="61" />
425
+ <hkern u1="&#xc5;" u2="w" k="33" />
426
+ <hkern u1="&#xc5;" u2="t" k="17" />
427
+ <hkern u1="&#xc5;" u2="&#x3f;" k="61" />
428
+ <hkern u1="&#xc7;" u2="&#x7d;" k="17" />
429
+ <hkern u1="&#xc7;" u2="]" k="12" />
430
+ <hkern u1="&#xc7;" u2="&#x29;" k="26" />
431
+ <hkern u1="&#xc8;" u2="w" k="22" />
432
+ <hkern u1="&#xc8;" u2="f" k="18" />
433
+ <hkern u1="&#xc9;" u2="w" k="22" />
434
+ <hkern u1="&#xc9;" u2="f" k="18" />
435
+ <hkern u1="&#xca;" u2="w" k="22" />
436
+ <hkern u1="&#xca;" u2="f" k="18" />
437
+ <hkern u1="&#xcb;" u2="w" k="22" />
438
+ <hkern u1="&#xcb;" u2="f" k="18" />
439
+ <hkern u1="&#xd0;" u2="&#xc6;" k="33" />
440
+ <hkern u1="&#xd2;" u2="&#xc6;" k="33" />
441
+ <hkern u1="&#xd3;" u2="&#xc6;" k="33" />
442
+ <hkern u1="&#xd4;" u2="&#xc6;" k="33" />
443
+ <hkern u1="&#xd5;" u2="&#xc6;" k="33" />
444
+ <hkern u1="&#xd6;" u2="&#xc6;" k="33" />
445
+ <hkern u1="&#xdd;" u2="&#x2022;" k="45" />
446
+ <hkern u1="&#xdd;" u2="&#xf8;" k="64" />
447
+ <hkern u1="&#xdd;" u2="&#xe6;" k="63" />
448
+ <hkern u1="&#xdd;" u2="&#xc6;" k="96" />
449
+ <hkern u1="&#xdd;" u2="&#xbb;" k="51" />
450
+ <hkern u1="&#xdd;" u2="&#xab;" k="82" />
451
+ <hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
452
+ <hkern u1="&#xdd;" u2="t" k="22" />
453
+ <hkern u1="&#xdd;" u2="r" k="40" />
454
+ <hkern u1="&#xdd;" u2="f" k="22" />
455
+ <hkern u1="&#xdd;" u2="]" k="-18" />
456
+ <hkern u1="&#xdd;" u2="&#x2a;" k="49" />
457
+ <hkern u1="&#xdd;" u2="&#x29;" k="-20" />
458
+ <hkern u1="&#xdd;" u2="&#x26;" k="30" />
459
+ <hkern u1="&#xfd;" u2="f" k="-13" />
460
+ <hkern u1="&#xff;" u2="f" k="-13" />
461
+ <hkern u1="&#x178;" u2="&#x2022;" k="45" />
462
+ <hkern u1="&#x178;" u2="&#xf8;" k="64" />
463
+ <hkern u1="&#x178;" u2="&#xe6;" k="63" />
464
+ <hkern u1="&#x178;" u2="&#xc6;" k="96" />
465
+ <hkern u1="&#x178;" u2="&#xbb;" k="51" />
466
+ <hkern u1="&#x178;" u2="&#xab;" k="82" />
467
+ <hkern u1="&#x178;" u2="&#x7d;" k="-19" />
468
+ <hkern u1="&#x178;" u2="t" k="22" />
469
+ <hkern u1="&#x178;" u2="r" k="40" />
470
+ <hkern u1="&#x178;" u2="f" k="22" />
471
+ <hkern u1="&#x178;" u2="]" k="-18" />
472
+ <hkern u1="&#x178;" u2="&#x2a;" k="49" />
473
+ <hkern u1="&#x178;" u2="&#x29;" k="-20" />
474
+ <hkern u1="&#x178;" u2="&#x26;" k="30" />
475
+ <hkern u1="&#x2018;" u2="w" k="-11" />
476
+ <hkern u1="&#x2019;" u2="w" k="-11" />
477
+ <hkern u1="&#x201c;" u2="w" k="-11" />
478
+ <hkern u1="&#x201d;" u2="w" k="-11" />
479
+ <hkern g1="B" g2="T" k="27" />
480
+ <hkern g1="B" g2="V" k="24" />
481
+ <hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
482
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
483
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
484
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
485
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
486
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
487
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
488
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
489
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
490
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
491
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="102" />
492
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
493
+ <hkern g1="C,Ccedilla" g2="T" k="29" />
494
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
495
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
496
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
497
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
498
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
499
+ <hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
500
+ <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
501
+ <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
502
+ <hkern g1="T" g2="W" k="-15" />
503
+ <hkern g1="T" g2="T" k="-16" />
504
+ <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
505
+ <hkern g1="T" g2="z" k="60" />
506
+ <hkern g1="T" g2="V" k="-16" />
507
+ <hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
508
+ <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
509
+ <hkern g1="T" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="218" />
510
+ <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
511
+ <hkern g1="T" g2="x" k="77" />
512
+ <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
513
+ <hkern g1="T" g2="m,n,p,ntilde" k="109" />
514
+ <hkern g1="T" g2="S" k="16" />
515
+ <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
516
+ <hkern g1="T" g2="s" k="116" />
517
+ <hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
518
+ <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
519
+ <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
520
+ <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
521
+ <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
522
+ <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
523
+ <hkern g1="K" g2="m,n,p,ntilde" k="23" />
524
+ <hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
525
+ <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
526
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
527
+ <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
528
+ <hkern g1="L" g2="W" k="143" />
529
+ <hkern g1="L" g2="T" k="275" />
530
+ <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
531
+ <hkern g1="L" g2="V" k="175" />
532
+ <hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
533
+ <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
534
+ <hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
535
+ <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
536
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
537
+ <hkern g1="P" g2="X" k="31" />
538
+ <hkern g1="P" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="324" />
539
+ <hkern g1="P" g2="Z" k="26" />
540
+ <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
541
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
542
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
543
+ <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
544
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
545
+ <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
546
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
547
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
548
+ <hkern g1="V" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="225" />
549
+ <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
550
+ <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
551
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
552
+ <hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
553
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
554
+ <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
555
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
556
+ <hkern g1="X" g2="V" k="-14" />
557
+ <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
558
+ <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
559
+ <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
560
+ <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
561
+ <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
562
+ <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
563
+ <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
564
+ <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
565
+ <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
566
+ <hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
567
+ <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
568
+ <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
569
+ <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
570
+ <hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
571
+ <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="211" />
572
+ <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
573
+ <hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
574
+ <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
575
+ <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
576
+ <hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
577
+ <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
578
+ <hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
579
+ <hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
580
+ <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
581
+ <hkern g1="W" g2="T" k="-14" />
582
+ <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
583
+ <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
584
+ <hkern g1="W" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="123" />
585
+ <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
586
+ <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
587
+ <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
588
+ <hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
589
+ <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
590
+ <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
591
+ <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
592
+ <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
593
+ <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
594
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
595
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
596
+ <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
597
+ <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
598
+ <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
599
+ <hkern g1="b,p,thorn" g2="z" k="15" />
600
+ <hkern g1="b,p,thorn" g2="x" k="15" />
601
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
602
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
603
+ <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
604
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
605
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
606
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
607
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
608
+ <hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
609
+ <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
610
+ <hkern g1="v,y,yacute,ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="107" />
611
+ <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
612
+ <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
613
+ <hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
614
+ <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
615
+ <hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
616
+ <hkern g1="r" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="123" />
617
+ <hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
618
+ <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
619
+ <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
620
+ <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
621
+ <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
622
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="107" />
623
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="61" />
624
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="120" />
625
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="59" />
626
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="m,n,p,ntilde" k="20" />
627
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="50" />
628
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="s" k="80" />
629
+ <hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
630
+ </font>
631
+ </defs></svg>