rearview 1.0.0.rc1-jruby → 1.0.0.rc2-jruby

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1814) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rails +8 -0
  3. data/lib/rearview/version.rb +1 -1
  4. data/public/favicon.ico +0 -0
  5. data/public/help/alert.html +20 -0
  6. data/public/help/quick.html +34 -0
  7. data/public/monitors/index.json +3 -0
  8. data/public/monitors/outage.rb +2 -0
  9. data/public/rearview-src/css/rearview.css +1 -0
  10. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  11. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  12. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  13. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  14. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  15. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  16. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  17. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  18. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  19. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  20. data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
  21. data/public/rearview-src/img/login/company-logo.svg +107 -0
  22. data/public/rearview-src/img/noise-light.png +0 -0
  23. data/public/rearview-src/img/noise.png +0 -0
  24. data/public/rearview-src/img/rearview.svg +19 -0
  25. data/public/rearview-src/img/rearviewlogo.png +0 -0
  26. data/public/rearview-src/img/rearviewlogo_small.png +0 -0
  27. data/public/rearview-src/img/sample-monitor.png +0 -0
  28. data/public/rearview-src/js/app.build.js +15 -0
  29. data/public/rearview-src/js/app.js +295 -0
  30. data/public/rearview-src/js/collection/dashboard.js +41 -0
  31. data/public/rearview-src/js/collection/monitor.js +53 -0
  32. data/public/rearview-src/js/main.js +89 -0
  33. data/public/rearview-src/js/model/base.js +34 -0
  34. data/public/rearview-src/js/model/dashboard.js +47 -0
  35. data/public/rearview-src/js/model/monitor.js +67 -0
  36. data/public/rearview-src/js/model/user.js +81 -0
  37. data/public/rearview-src/js/route/index.js +47 -0
  38. data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
  39. data/public/rearview-src/js/util/templar.js +178 -0
  40. data/public/rearview-src/js/view/addcategory.js +250 -0
  41. data/public/rearview-src/js/view/adddashboard.js +166 -0
  42. data/public/rearview-src/js/view/addmonitor.js +679 -0
  43. data/public/rearview-src/js/view/alert.js +47 -0
  44. data/public/rearview-src/js/view/alerttimeline.js +340 -0
  45. data/public/rearview-src/js/view/base.js +535 -0
  46. data/public/rearview-src/js/view/dashboard.js +493 -0
  47. data/public/rearview-src/js/view/dashboardtile.js +146 -0
  48. data/public/rearview-src/js/view/deletemonitor.js +68 -0
  49. data/public/rearview-src/js/view/ecosystem.js +90 -0
  50. data/public/rearview-src/js/view/expandedmonitor.js +706 -0
  51. data/public/rearview-src/js/view/header.js +43 -0
  52. data/public/rearview-src/js/view/primarynav.js +63 -0
  53. data/public/rearview-src/js/view/resetmonitor.js +101 -0
  54. data/public/rearview-src/js/view/secondarynav.js +45 -0
  55. data/public/rearview-src/js/view/smallmonitor.js +416 -0
  56. data/public/rearview-src/less/alert.less +45 -0
  57. data/public/rearview-src/less/dashboard.less +173 -0
  58. data/public/rearview-src/less/ecosystem.less +221 -0
  59. data/public/rearview-src/less/elements.less +168 -0
  60. data/public/rearview-src/less/expandedmonitor.less +283 -0
  61. data/public/rearview-src/less/header.less +76 -0
  62. data/public/rearview-src/less/login.less +1050 -0
  63. data/public/rearview-src/less/primarynav.less +151 -0
  64. data/public/rearview-src/less/rearview.less +1207 -0
  65. data/public/rearview-src/login/icons/rearview.svg +19 -0
  66. data/public/rearview-src/templates/addcategory.hbs +38 -0
  67. data/public/rearview-src/templates/adddashboard.hbs +26 -0
  68. data/public/rearview-src/templates/addmonitor.hbs +10 -0
  69. data/public/rearview-src/templates/alert.hbs +4 -0
  70. data/public/rearview-src/templates/alerttimeline.hbs +15 -0
  71. data/public/rearview-src/templates/dashboard.hbs +35 -0
  72. data/public/rearview-src/templates/dashboardtile.hbs +22 -0
  73. data/public/rearview-src/templates/deletemonitor.hbs +16 -0
  74. data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
  75. data/public/rearview-src/templates/header.hbs +9 -0
  76. data/public/rearview-src/templates/primarynav.hbs +50 -0
  77. data/public/rearview-src/templates/resetmonitor.hbs +16 -0
  78. data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
  79. data/public/rearview-src/templates/secondarynav.hbs +11 -0
  80. data/public/rearview-src/templates/setmetrics.hbs +53 -0
  81. data/public/rearview-src/templates/smallmonitor.hbs +52 -0
  82. data/public/rearview-src/templates/test.txt +1 -0
  83. data/public/rearview-src/test/spec/model/application.js +60 -0
  84. data/public/rearview-src/test/spec/model/job.js +109 -0
  85. data/public/rearview-src/test/spec/model/user.js +50 -0
  86. data/public/rearview-src/test/spec/view/base.js +58 -0
  87. data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
  88. data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
  89. data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
  90. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
  91. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  92. data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
  93. data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
  94. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  95. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  96. data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
  97. data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
  98. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  99. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  100. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  101. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  102. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
  103. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
  104. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
  105. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
  106. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
  107. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
  108. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
  109. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
  110. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
  111. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
  112. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
  113. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
  114. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
  115. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
  116. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
  117. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  118. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
  119. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
  120. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
  121. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
  122. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
  123. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
  124. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
  125. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
  126. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
  127. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
  128. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
  129. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  130. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  131. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  132. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
  133. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
  134. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
  135. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
  136. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
  137. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
  138. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
  139. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
  140. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
  141. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
  142. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
  143. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
  144. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
  145. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
  146. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
  147. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
  148. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
  149. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
  150. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  151. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  152. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  153. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
  154. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  155. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  156. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  157. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  158. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  159. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  160. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  161. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  162. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  163. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  164. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  165. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  166. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  167. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  168. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  169. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  170. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  171. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  172. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  173. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  174. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  175. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  176. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  177. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  178. data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
  179. data/public/rearview-src/vendor/codemirror/README.md +8 -0
  180. data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
  181. data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
  182. data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
  183. data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
  184. data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
  185. data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
  186. data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
  187. data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
  188. data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
  189. data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
  190. data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
  191. data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
  192. data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
  193. data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
  194. data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
  195. data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
  196. data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
  197. data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
  198. data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
  199. data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
  200. data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
  201. data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
  202. data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
  203. data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
  204. data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
  205. data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
  206. data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
  207. data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
  208. data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
  209. data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  210. data/public/rearview-src/vendor/codemirror/index.html +472 -0
  211. data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
  212. data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
  213. data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
  214. data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
  215. data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
  216. data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
  217. data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
  218. data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
  219. data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
  220. data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
  221. data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
  222. data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
  223. data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
  224. data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
  225. data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
  226. data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
  227. data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
  228. data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
  229. data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
  230. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
  231. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
  232. data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
  233. data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
  234. data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
  235. data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
  236. data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
  237. data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
  238. data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  239. data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
  240. data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
  241. data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
  242. data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
  243. data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
  244. data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
  245. data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
  246. data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
  247. data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
  248. data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
  249. data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
  250. data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
  251. data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
  252. data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
  253. data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
  254. data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
  255. data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
  256. data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
  257. data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
  258. data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
  259. data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
  260. data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
  261. data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
  262. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
  263. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  264. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  265. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  266. data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
  267. data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
  268. data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
  269. data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
  270. data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
  271. data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
  272. data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
  273. data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
  274. data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
  275. data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
  276. data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
  277. data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
  278. data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
  279. data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
  280. data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
  281. data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
  282. data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
  283. data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
  284. data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
  285. data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
  286. data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
  287. data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
  288. data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
  289. data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
  290. data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
  291. data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
  292. data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
  293. data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
  294. data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
  295. data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
  296. data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
  297. data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  298. data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
  299. data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
  300. data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
  301. data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
  302. data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
  303. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
  304. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  305. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  306. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  307. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
  308. data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
  309. data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
  310. data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
  311. data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
  312. data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
  313. data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
  314. data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
  315. data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
  316. data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
  317. data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
  318. data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
  319. data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
  320. data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
  321. data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
  322. data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
  323. data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
  324. data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
  325. data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
  326. data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
  327. data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
  328. data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
  329. data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
  330. data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
  331. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  332. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  333. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
  334. data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
  335. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
  336. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
  337. data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  338. data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
  339. data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
  340. data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
  341. data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
  342. data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
  343. data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
  344. data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
  345. data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
  346. data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
  347. data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
  348. data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
  349. data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
  350. data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
  351. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
  352. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  353. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
  354. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
  355. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
  356. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
  357. data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
  358. data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
  359. data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
  360. data/public/rearview-src/vendor/codemirror/package.json +21 -0
  361. data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
  362. data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
  363. data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
  364. data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
  365. data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
  366. data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
  367. data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
  368. data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
  369. data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
  370. data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
  371. data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
  372. data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
  373. data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
  374. data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
  375. data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
  376. data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
  377. data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
  378. data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
  379. data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
  380. data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
  381. data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
  382. data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
  383. data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
  384. data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
  385. data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  386. data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
  387. data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
  388. data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  389. data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  390. data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
  391. data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
  392. data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  393. data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  394. data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  395. data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
  396. data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  397. data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
  398. data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  399. data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  400. data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  401. data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  402. data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  403. data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
  404. data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  405. data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  406. data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  407. data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
  408. data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  409. data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  410. data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  411. data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  412. data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  413. data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  414. data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  415. data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  416. data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  417. data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
  418. data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
  419. data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  420. data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  421. data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  422. data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  423. data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  424. data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  425. data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  426. data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  427. data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
  428. data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
  429. data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  430. data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  431. data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  432. data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  433. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  434. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  435. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  436. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  437. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  438. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  439. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  440. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  441. data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
  442. data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  443. data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
  444. data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  445. data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
  446. data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
  447. data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
  448. data/public/rearview-src/vendor/highcharts/index.htm +79 -0
  449. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
  450. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
  451. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
  452. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
  453. data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
  454. data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
  455. data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
  456. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
  457. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
  458. data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
  459. data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
  460. data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
  461. data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
  462. data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
  463. data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
  464. data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
  465. data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
  466. data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
  467. data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
  468. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  469. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
  470. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
  471. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
  472. data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
  473. data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
  474. data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
  475. data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
  476. data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
  477. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  478. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  479. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  480. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  481. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  482. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  483. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  484. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  485. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  486. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  487. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  488. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  489. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  490. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  491. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  492. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
  493. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
  494. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  495. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
  496. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  497. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  498. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  499. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  500. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  501. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  502. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  503. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  504. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  505. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  506. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  507. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  508. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  509. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  510. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  511. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  512. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  513. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
  514. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
  515. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
  516. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
  517. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  518. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  519. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  520. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  521. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  522. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
  523. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  524. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  525. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  526. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  527. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  528. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  529. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  530. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  531. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  532. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  533. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  534. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  535. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  536. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  537. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  538. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  539. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  540. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  541. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  542. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  543. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  544. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  545. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  546. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  547. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  548. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  549. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  550. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  551. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  552. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  553. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  554. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  555. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  556. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  557. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  558. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  559. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  560. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  561. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  562. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  563. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  564. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  565. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  566. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  567. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  568. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  569. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  570. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  571. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  572. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  573. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  574. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  575. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  576. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  577. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  578. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  579. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  580. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  581. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  582. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  583. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  584. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  585. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  586. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  587. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  588. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  589. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  590. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  591. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  592. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  593. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  594. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  595. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  596. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
  597. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
  598. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
  599. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
  600. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
  601. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
  602. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
  603. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
  604. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  605. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  606. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  607. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  608. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  609. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  610. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  611. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  612. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  613. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  614. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  615. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  616. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  617. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  618. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  619. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
  620. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
  621. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
  622. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
  623. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
  624. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
  625. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  626. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  627. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  628. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  629. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  630. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  631. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  632. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  633. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  634. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  635. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  636. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  637. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  638. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  639. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
  640. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
  641. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  642. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
  643. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  644. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  645. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  646. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  647. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  648. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  649. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  650. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  651. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  652. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  653. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  654. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  655. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  656. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  657. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  658. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
  659. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
  660. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
  661. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
  662. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
  663. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
  664. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  665. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  666. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  667. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  668. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  669. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  670. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  671. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  672. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  673. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  674. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  675. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  676. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  677. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  678. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  679. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
  680. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
  681. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
  682. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
  683. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  684. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  685. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  686. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  687. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  688. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  689. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  690. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  691. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  692. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  693. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  694. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  695. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  696. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  697. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  698. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  699. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  700. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  701. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  702. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  703. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
  704. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  705. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  706. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  707. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  708. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
  709. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  710. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  711. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  712. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  713. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  714. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  715. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  716. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  717. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  718. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  719. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  720. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  721. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  722. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  723. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  724. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  725. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  726. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  727. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
  728. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  729. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  730. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  731. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  732. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  733. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  734. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  735. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  736. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  737. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  738. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  739. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  740. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  741. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  742. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  743. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  744. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
  745. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  746. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  747. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  748. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  749. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  750. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  751. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
  752. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  753. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  754. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
  755. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  756. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  757. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  758. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  759. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  760. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  761. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  762. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  763. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  764. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  765. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  766. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  767. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  768. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  769. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  770. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  771. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  772. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  773. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  774. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  775. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  776. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  777. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
  778. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
  779. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
  780. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
  781. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
  782. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
  783. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
  784. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
  785. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
  786. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
  787. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
  788. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
  789. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
  790. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
  791. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
  792. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
  793. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
  794. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
  795. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
  796. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
  797. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
  798. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  799. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  800. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  801. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  802. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  803. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  804. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  805. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  806. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  807. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  808. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  809. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  810. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  811. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  812. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  813. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  814. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  815. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  816. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  817. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  818. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  819. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  820. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  821. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  822. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  823. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  824. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  825. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  826. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  827. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  828. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  829. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  830. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  831. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  832. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  833. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  834. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  835. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  836. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  837. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  838. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  839. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  840. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  841. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  842. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  843. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  844. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  845. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  846. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  847. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  848. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  849. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  850. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  851. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  852. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  853. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  854. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  855. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  856. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  857. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  858. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  859. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  860. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  861. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  862. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  863. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  864. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  865. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  866. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  867. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  868. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  869. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  870. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  871. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  872. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
  873. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  874. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  875. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  876. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  877. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  878. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  879. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  880. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  881. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  882. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  883. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  884. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  885. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  886. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  887. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  888. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  889. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  890. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  891. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  892. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  893. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
  894. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
  895. data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
  896. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  897. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
  898. data/public/rearview-src/vendor/less/js/less.js +11 -0
  899. data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
  900. data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
  901. data/public/rearview-src/vendor/require/js/require.js +11408 -0
  902. data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
  903. data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
  904. data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
  905. data/public/rearview-src/vendor/timeline/timeline.css +130 -0
  906. data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
  907. data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
  908. data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
  909. data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
  910. data/public/rearview/build.txt +295 -0
  911. data/public/rearview/css/rearview.css +1 -0
  912. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  913. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  914. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  915. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  916. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  917. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  918. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  919. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  920. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  921. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  922. data/public/rearview/img/livingsocial-logo-white.svg +107 -0
  923. data/public/rearview/img/login/company-logo.svg +107 -0
  924. data/public/rearview/img/noise-light.png +0 -0
  925. data/public/rearview/img/noise.png +0 -0
  926. data/public/rearview/img/rearview.svg +19 -0
  927. data/public/rearview/img/rearviewlogo.png +0 -0
  928. data/public/rearview/img/rearviewlogo_small.png +0 -0
  929. data/public/rearview/img/sample-monitor.png +0 -0
  930. data/public/rearview/js/app.build.js +0 -0
  931. data/public/rearview/js/app.js +1 -0
  932. data/public/rearview/js/collection/dashboard.js +1 -0
  933. data/public/rearview/js/collection/monitor.js +1 -0
  934. data/public/rearview/js/main.js +402 -0
  935. data/public/rearview/js/model/base.js +1 -0
  936. data/public/rearview/js/model/dashboard.js +1 -0
  937. data/public/rearview/js/model/monitor.js +1 -0
  938. data/public/rearview/js/model/user.js +1 -0
  939. data/public/rearview/js/route/index.js +1 -0
  940. data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
  941. data/public/rearview/js/util/templar.js +1 -0
  942. data/public/rearview/js/view/addcategory.js +1 -0
  943. data/public/rearview/js/view/adddashboard.js +1 -0
  944. data/public/rearview/js/view/addmonitor.js +1 -0
  945. data/public/rearview/js/view/alert.js +1 -0
  946. data/public/rearview/js/view/alerttimeline.js +1 -0
  947. data/public/rearview/js/view/base.js +1 -0
  948. data/public/rearview/js/view/dashboard.js +1 -0
  949. data/public/rearview/js/view/dashboardtile.js +1 -0
  950. data/public/rearview/js/view/deletemonitor.js +1 -0
  951. data/public/rearview/js/view/ecosystem.js +1 -0
  952. data/public/rearview/js/view/expandedmonitor.js +1 -0
  953. data/public/rearview/js/view/header.js +1 -0
  954. data/public/rearview/js/view/primarynav.js +1 -0
  955. data/public/rearview/js/view/resetmonitor.js +1 -0
  956. data/public/rearview/js/view/secondarynav.js +1 -0
  957. data/public/rearview/js/view/smallmonitor.js +1 -0
  958. data/public/rearview/less/alert.less +45 -0
  959. data/public/rearview/less/dashboard.less +173 -0
  960. data/public/rearview/less/ecosystem.less +221 -0
  961. data/public/rearview/less/elements.less +168 -0
  962. data/public/rearview/less/expandedmonitor.less +283 -0
  963. data/public/rearview/less/header.less +76 -0
  964. data/public/rearview/less/login.less +1050 -0
  965. data/public/rearview/less/primarynav.less +151 -0
  966. data/public/rearview/less/rearview.less +1207 -0
  967. data/public/rearview/login/icons/rearview.svg +19 -0
  968. data/public/rearview/templates/addcategory.hbs +38 -0
  969. data/public/rearview/templates/adddashboard.hbs +26 -0
  970. data/public/rearview/templates/addmonitor.hbs +10 -0
  971. data/public/rearview/templates/alert.hbs +4 -0
  972. data/public/rearview/templates/alerttimeline.hbs +15 -0
  973. data/public/rearview/templates/dashboard.hbs +35 -0
  974. data/public/rearview/templates/dashboardtile.hbs +22 -0
  975. data/public/rearview/templates/deletemonitor.hbs +16 -0
  976. data/public/rearview/templates/expandedmonitor.hbs +191 -0
  977. data/public/rearview/templates/header.hbs +9 -0
  978. data/public/rearview/templates/primarynav.hbs +50 -0
  979. data/public/rearview/templates/resetmonitor.hbs +16 -0
  980. data/public/rearview/templates/schedulemonitor.hbs +78 -0
  981. data/public/rearview/templates/secondarynav.hbs +11 -0
  982. data/public/rearview/templates/setmetrics.hbs +53 -0
  983. data/public/rearview/templates/smallmonitor.hbs +52 -0
  984. data/public/rearview/templates/test.txt +1 -0
  985. data/public/rearview/test/spec/model/application.js +1 -0
  986. data/public/rearview/test/spec/model/job.js +1 -0
  987. data/public/rearview/test/spec/model/user.js +1 -0
  988. data/public/rearview/test/spec/view/base.js +1 -0
  989. data/public/rearview/vendor/backbone/js/backbone.js +6 -0
  990. data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
  991. data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
  992. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
  993. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  994. data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
  995. data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
  996. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  997. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  998. data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
  999. data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
  1000. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  1001. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  1002. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  1003. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  1004. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
  1005. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
  1006. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
  1007. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
  1008. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
  1009. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
  1010. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
  1011. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
  1012. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
  1013. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
  1014. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
  1015. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
  1016. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
  1017. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
  1018. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
  1019. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  1020. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
  1021. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
  1022. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
  1023. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
  1024. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
  1025. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
  1026. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
  1027. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
  1028. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
  1029. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
  1030. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
  1031. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  1032. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  1033. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  1034. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
  1035. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
  1036. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
  1037. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
  1038. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
  1039. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
  1040. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
  1041. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
  1042. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
  1043. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
  1044. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
  1045. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
  1046. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
  1047. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
  1048. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
  1049. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
  1050. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
  1051. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
  1052. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  1053. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  1054. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  1055. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
  1056. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  1057. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  1058. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  1059. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  1060. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  1061. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  1062. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  1063. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  1064. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  1065. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  1066. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  1067. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  1068. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  1069. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  1070. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  1071. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  1072. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  1073. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  1074. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  1075. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  1076. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  1077. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  1078. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  1079. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  1080. data/public/rearview/vendor/codemirror/LICENSE +23 -0
  1081. data/public/rearview/vendor/codemirror/README.md +8 -0
  1082. data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
  1083. data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
  1084. data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
  1085. data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
  1086. data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
  1087. data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
  1088. data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
  1089. data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
  1090. data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
  1091. data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
  1092. data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
  1093. data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
  1094. data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
  1095. data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
  1096. data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
  1097. data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
  1098. data/public/rearview/vendor/codemirror/demo/search.html +85 -0
  1099. data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
  1100. data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
  1101. data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
  1102. data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
  1103. data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
  1104. data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
  1105. data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
  1106. data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
  1107. data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
  1108. data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
  1109. data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
  1110. data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
  1111. data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  1112. data/public/rearview/vendor/codemirror/index.html +472 -0
  1113. data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
  1114. data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
  1115. data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
  1116. data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
  1117. data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
  1118. data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
  1119. data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
  1120. data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
  1121. data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
  1122. data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
  1123. data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
  1124. data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
  1125. data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
  1126. data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
  1127. data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
  1128. data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
  1129. data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
  1130. data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
  1131. data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
  1132. data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
  1133. data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
  1134. data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
  1135. data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
  1136. data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
  1137. data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
  1138. data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
  1139. data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
  1140. data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  1141. data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
  1142. data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
  1143. data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
  1144. data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
  1145. data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
  1146. data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
  1147. data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
  1148. data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
  1149. data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
  1150. data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
  1151. data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
  1152. data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
  1153. data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
  1154. data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
  1155. data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
  1156. data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
  1157. data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
  1158. data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
  1159. data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
  1160. data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
  1161. data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
  1162. data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
  1163. data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
  1164. data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  1165. data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  1166. data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  1167. data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  1168. data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
  1169. data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
  1170. data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
  1171. data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
  1172. data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
  1173. data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
  1174. data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
  1175. data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
  1176. data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
  1177. data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
  1178. data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
  1179. data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
  1180. data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
  1181. data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
  1182. data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
  1183. data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
  1184. data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
  1185. data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
  1186. data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
  1187. data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
  1188. data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
  1189. data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
  1190. data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
  1191. data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
  1192. data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
  1193. data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
  1194. data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
  1195. data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
  1196. data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
  1197. data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
  1198. data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
  1199. data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  1200. data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
  1201. data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
  1202. data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
  1203. data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
  1204. data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
  1205. data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
  1206. data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  1207. data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  1208. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  1209. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
  1210. data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
  1211. data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
  1212. data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
  1213. data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
  1214. data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
  1215. data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
  1216. data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
  1217. data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
  1218. data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
  1219. data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
  1220. data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
  1221. data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
  1222. data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
  1223. data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
  1224. data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
  1225. data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
  1226. data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
  1227. data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
  1228. data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
  1229. data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
  1230. data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
  1231. data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
  1232. data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
  1233. data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  1234. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1235. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
  1236. data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
  1237. data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
  1238. data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
  1239. data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  1240. data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
  1241. data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
  1242. data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
  1243. data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
  1244. data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
  1245. data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
  1246. data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
  1247. data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
  1248. data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
  1249. data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
  1250. data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
  1251. data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
  1252. data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
  1253. data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
  1254. data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
  1255. data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
  1256. data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
  1257. data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
  1258. data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
  1259. data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
  1260. data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
  1261. data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
  1262. data/public/rearview/vendor/codemirror/package.json +21 -0
  1263. data/public/rearview/vendor/codemirror/test/driver.js +1 -0
  1264. data/public/rearview/vendor/codemirror/test/index.html +168 -0
  1265. data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
  1266. data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
  1267. data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
  1268. data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
  1269. data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
  1270. data/public/rearview/vendor/codemirror/test/run.js +32 -0
  1271. data/public/rearview/vendor/codemirror/test/test.js +1 -0
  1272. data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
  1273. data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
  1274. data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
  1275. data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
  1276. data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
  1277. data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
  1278. data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
  1279. data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
  1280. data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
  1281. data/public/rearview/vendor/codemirror/theme/night.css +19 -0
  1282. data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
  1283. data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
  1284. data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
  1285. data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
  1286. data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
  1287. data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  1288. data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
  1289. data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
  1290. data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  1291. data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  1292. data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
  1293. data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
  1294. data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  1295. data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  1296. data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  1297. data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
  1298. data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  1299. data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
  1300. data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  1301. data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  1302. data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  1303. data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  1304. data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  1305. data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
  1306. data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  1307. data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  1308. data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  1309. data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
  1310. data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  1311. data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  1312. data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  1313. data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  1314. data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  1315. data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  1316. data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  1317. data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  1318. data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  1319. data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
  1320. data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
  1321. data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  1322. data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  1323. data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  1324. data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  1325. data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  1326. data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  1327. data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  1328. data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  1329. data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
  1330. data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
  1331. data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  1332. data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  1333. data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  1334. data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  1335. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  1336. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  1337. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  1338. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  1339. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  1340. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  1341. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  1342. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  1343. data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
  1344. data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  1345. data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
  1346. data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  1347. data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
  1348. data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
  1349. data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
  1350. data/public/rearview/vendor/highcharts/index.htm +79 -0
  1351. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
  1352. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
  1353. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
  1354. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
  1355. data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
  1356. data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
  1357. data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
  1358. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
  1359. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
  1360. data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
  1361. data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
  1362. data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
  1363. data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
  1364. data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
  1365. data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
  1366. data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
  1367. data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
  1368. data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
  1369. data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
  1370. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  1371. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
  1372. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
  1373. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
  1374. data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
  1375. data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
  1376. data/public/rearview/vendor/jasmine/src/Player.js +1 -0
  1377. data/public/rearview/vendor/jasmine/src/Song.js +1 -0
  1378. data/public/rearview/vendor/jquery/js/jquery.js +24 -0
  1379. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  1380. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1381. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1382. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1383. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1384. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1385. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1386. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1387. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1388. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1389. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1390. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1391. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1392. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1393. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1394. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
  1395. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
  1396. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  1397. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
  1398. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  1399. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  1400. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  1401. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  1402. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  1403. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  1404. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  1405. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  1406. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  1407. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  1408. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  1409. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  1410. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  1411. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  1412. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  1413. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  1414. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  1415. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
  1416. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
  1417. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
  1418. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
  1419. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  1420. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  1421. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  1422. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  1423. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  1424. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
  1425. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  1426. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  1427. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  1428. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  1429. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  1430. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  1431. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  1432. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  1433. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  1434. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  1435. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  1436. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  1437. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  1438. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  1439. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  1440. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  1441. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  1442. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  1443. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  1444. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  1445. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  1446. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  1447. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  1448. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  1449. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  1450. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  1451. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  1452. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  1453. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  1454. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  1455. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  1456. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  1457. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  1458. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  1459. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  1460. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  1461. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  1462. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  1463. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  1464. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  1465. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  1466. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  1467. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  1468. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  1469. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  1470. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  1471. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  1472. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  1473. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  1474. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  1475. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  1476. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  1477. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  1478. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  1479. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  1480. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  1481. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  1482. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  1483. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  1484. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  1485. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  1486. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  1487. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  1488. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  1489. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  1490. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  1491. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  1492. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  1493. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  1494. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  1495. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  1496. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  1497. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  1498. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
  1499. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
  1500. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
  1501. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
  1502. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
  1503. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
  1504. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
  1505. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
  1506. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  1507. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  1508. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1509. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1510. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1511. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1512. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1513. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1514. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1515. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1516. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  1517. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  1518. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  1519. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  1520. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  1521. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
  1522. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
  1523. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
  1524. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
  1525. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
  1526. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
  1527. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  1528. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1529. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1530. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1531. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1532. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1533. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1534. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1535. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1536. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  1537. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  1538. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  1539. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  1540. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  1541. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
  1542. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
  1543. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
  1544. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
  1545. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  1546. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1547. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1548. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1549. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1550. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1551. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1552. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1553. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1554. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1555. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1556. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1557. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1558. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1559. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1560. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
  1561. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
  1562. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
  1563. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
  1564. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
  1565. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
  1566. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  1567. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1568. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1569. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1570. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1571. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1572. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1573. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1574. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1575. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1576. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  1577. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  1578. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  1579. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  1580. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  1581. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
  1582. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
  1583. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
  1584. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
  1585. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  1586. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  1587. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  1588. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  1589. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  1590. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  1591. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  1592. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  1593. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  1594. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  1595. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  1596. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  1597. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  1598. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  1599. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  1600. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  1601. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  1602. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  1603. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  1604. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  1605. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
  1606. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
  1607. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
  1608. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
  1609. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
  1610. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
  1611. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
  1612. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
  1613. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
  1614. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
  1615. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
  1616. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
  1617. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
  1618. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
  1619. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
  1620. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
  1621. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
  1622. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
  1623. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
  1624. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
  1625. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
  1626. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
  1627. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
  1628. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
  1629. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
  1630. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
  1631. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
  1632. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
  1633. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
  1634. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
  1635. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
  1636. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
  1637. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
  1638. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
  1639. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
  1640. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
  1641. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
  1642. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
  1643. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
  1644. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
  1645. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
  1646. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
  1647. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
  1648. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
  1649. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
  1650. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
  1651. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
  1652. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
  1653. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
  1654. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
  1655. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
  1656. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
  1657. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
  1658. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
  1659. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
  1660. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
  1661. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
  1662. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
  1663. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
  1664. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
  1665. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
  1666. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
  1667. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
  1668. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
  1669. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
  1670. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
  1671. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
  1672. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
  1673. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
  1674. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
  1675. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
  1676. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
  1677. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
  1678. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
  1679. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
  1680. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
  1681. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
  1682. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
  1683. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
  1684. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
  1685. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
  1686. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
  1687. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
  1688. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
  1689. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
  1690. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
  1691. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
  1692. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
  1693. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
  1694. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
  1695. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
  1696. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
  1697. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
  1698. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
  1699. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
  1700. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  1701. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  1702. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  1703. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  1704. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  1705. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  1706. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  1707. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  1708. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  1709. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  1710. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  1711. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  1712. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  1713. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  1714. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  1715. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  1716. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  1717. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  1718. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  1719. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  1720. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  1721. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  1722. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  1723. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  1724. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  1725. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  1726. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  1727. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  1728. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  1729. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  1730. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  1731. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  1732. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  1733. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  1734. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  1735. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  1736. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  1737. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  1738. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  1739. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  1740. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  1741. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  1742. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  1743. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  1744. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  1745. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  1746. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  1747. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  1748. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  1749. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  1750. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  1751. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  1752. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  1753. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  1754. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  1755. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  1756. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  1757. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  1758. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  1759. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  1760. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  1761. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  1762. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  1763. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  1764. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  1765. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  1766. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  1767. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  1768. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  1769. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  1770. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  1771. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  1772. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  1773. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  1774. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
  1775. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  1776. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  1777. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  1778. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  1779. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  1780. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  1781. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  1782. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  1783. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  1784. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  1785. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  1786. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  1787. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  1788. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  1789. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  1790. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  1791. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  1792. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  1793. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  1794. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  1795. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
  1796. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
  1797. data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
  1798. data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  1799. data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
  1800. data/public/rearview/vendor/less/js/less.js +13 -0
  1801. data/public/rearview/vendor/parsley/js/parsley.js +1 -0
  1802. data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
  1803. data/public/rearview/vendor/require/js/require.js +31 -0
  1804. data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
  1805. data/public/rearview/vendor/timeline/examples/example.json +38 -0
  1806. data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
  1807. data/public/rearview/vendor/timeline/timeline.css +114 -0
  1808. data/public/rearview/vendor/timeline/timeline.js +45 -0
  1809. data/public/rearview/vendor/underscore/js/underscore.js +5 -0
  1810. data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
  1811. data/public/rearview/vendor/xdate/js/xdate.js +1 -0
  1812. data/script/rails +8 -0
  1813. data/tasks/rearview.rake +9 -0
  1814. metadata +1814 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7415b15c3ab9ddbb67a85f78f77a2e287caf5b8
4
- data.tar.gz: 19fb13fbb11fc5220c24070619169f5d45e43858
3
+ metadata.gz: 8cbcd5557e8b54272f639f0c40edfcd1ec75da73
4
+ data.tar.gz: 2a7bd8de3efd21196680f21070f3d9c758d054ac
5
5
  SHA512:
6
- metadata.gz: 5af874662fcf2b2eaec4fbe84bc3e908ae576dba8e7fd767f5b0e88a552346fd5322f452f20cd487eb20f68069b1c7ab90d6256f66fd1a8e77f641be0a611f61
7
- data.tar.gz: d2b40e6a4578bfb267908c3c0db5186e7d70b6d951fd2a4cead4235f6df37eacd04b3414488e6aac6ec3b7003a5e470058e9feb16249c45e4755945030e928e6
6
+ metadata.gz: 97d4f8ac945ec3bc16773e6a55fb9a42947abdb37269b356eda0c9ff30e587d9e7ecca48e9e6cbc416c6e3503283a14634dc385d85d1c52629ccc70c3e0811ea
7
+ data.tar.gz: e93c54e88aa64a326e6ae87af743f1eb9f36e95fe68c6141cbc23a195c6775188a1238b1779a67c1beba67a8a35ffdfad0721b4e9064aa28f329e6c1b60aa65b
data/bin/rails ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/rearview/engine', __FILE__)
6
+
7
+ require 'rails/all'
8
+ require 'rails/engine/commands'
@@ -1,3 +1,3 @@
1
1
  module Rearview
2
- VERSION = "1.0.0.rc1"
2
+ VERSION = "1.0.0.rc2"
3
3
  end
File without changes
@@ -0,0 +1,20 @@
1
+ <table>
2
+ <tr>
3
+ <th colspan="2">Multiple alert URIs can be entered (separated by a space, comma or new line).</th>
4
+ <tr>
5
+ <th>URI</th>
6
+ <td>ALERT TYPE</td>
7
+ </tr>
8
+ <tr>
9
+ <th>mailto:first.last@hungrymachine.com</th>
10
+ <td>Send email alerts.</td>
11
+ </tr>
12
+ <tr>
13
+ <th>pagerduty:54232f6f4c4447efb6d15e20dbb7349b</th>
14
+ <td>Send alerts to pagerduty.</td>
15
+ </tr>
16
+ <tr>
17
+ <th>campfire://first.last@hungrymachine.com?token=yourtoken&amp;room=Test</th>
18
+ <td>Send alerts to a campfire room.</td>
19
+ </tr>
20
+ </table>
@@ -0,0 +1,34 @@
1
+ <table>
2
+ <tr>
3
+ <th>@timeseries</th>
4
+ <td>Is the main collection of data retrieved from Graphite. The form is a json array of arrays of objects.</td>
5
+ </tr>
6
+ <tr>
7
+ <th>@a,@b,@c,...</th>
8
+ <td>Are convenience variables extracted from @timeline, by position. @a is the first entry, @b the second and so on. Note: These are not predictable when using wildcard metrics.</td>
9
+ </tr>
10
+ <tr>
11
+ <th>with_metrics { |a,b| .. }</th>
12
+ <td>Iterates over each metric in the timeseries aligning the timestamp for each metric across iterations. Block args are the variables you want to map to the metrics by position.</td>
13
+ </tr>
14
+ <tr>
15
+ <th>graph_value[label, timestamp, value]</th>
16
+ <td>Plots an x/y for the given label on the graph.</td>
17
+ </tr>
18
+ <tr>
19
+ <th>Array.mean</th>
20
+ <td>Calculates the mean of the Array of Numeric. e.g. @a.values.mean</td>
21
+ </tr>
22
+ <tr>
23
+ <th>Array.median</th>
24
+ <td>Calculates the median of the Array of Numeric. e.g. @a.values.median</td>
25
+ </tr>
26
+ <tr>
27
+ <th>Array.sum</th>
28
+ <td>Calculates the sum of the Array of Numeric. e.g. @a.values.sum</td>
29
+ </tr>
30
+ <tr>
31
+ <th>Array.percentile(n)</th>
32
+ <td>Calculates the n-th percentile of the Array of Numeric. e.g. @a.values.percentile(90)</td>
33
+ </tr>
34
+ </table>
@@ -0,0 +1,3 @@
1
+ [
2
+ { "name" : "Outage Monitor", "description" : "Monitor template to detect when an application is no longer sending metrics", "path" : "/monitors/outage.rb", "metrics" : ["foo.bar.baz"]}
3
+ ]
@@ -0,0 +1,2 @@
1
+ # This template monitors a metric and if it detects nil (no data) for over a minute it alerts
2
+ raise "Custom raise message goes here" if (@a.values.inject :+) == 0
@@ -0,0 +1 @@
1
+ html{height:100%}body{background:#373737;height:100%}hr{border-color:#b6b3a6}@font-face{font-family:'ProximaBold';src:url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf') format('truetype')}@font-face{font-family:'ProximaRegular';src:url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf') format('truetype')}.ls-rearview .nav-primary .navbar-inner{border-bottom:1px solid #000;background:#171717;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#171717),color-stop(1,#555));background:-ms-linear-gradient(bottom,#171717,#555);background:-moz-linear-gradient(center bottom,#171717 0,#555 100%)}.ls-rearview .nav-primary.navbar .nav>.active>a,.ls-rearview .nav-primary.navbar .nav>.active>a:hover,.ls-rearview .nav-primary.navbar .nav>.active>a:focus{background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%);font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:after{top:-8px}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:before{border:0;content:none;display:none}.ls-rearview .nav-primary.navbar .nav>li>a{color:#9d9a94;text-shadow:none;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li.active a{color:#fff}.ls-rearview .nav-primary.navbar .brand{margin-top:-5px;padding-bottom:0;color:#fff;text-shadow:none;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .nav-primary.navbar .brand img{vertical-align:-6px;margin-right:8px}.ls-rearview .nav-primary.navbar .dropdown-menu{padding:0;border:2px solid #fff;background:rgba(0,0,0,0.75);box-shadow:0 0 7px #333;-moz-box-shadow:0 0 7px #333;-webkit-box-shadow:0 0 7px #333}.ls-rearview .nav-primary.navbar .dropdown-menu a{color:#fff;line-height:30px;text-transform:uppercase}.ls-rearview .nav-primary.navbar .dropdown-menu li{background:0;border-bottom:1px solid black;border-top:1px solid #555}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child{border-top:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child{border-bottom:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child a:hover{border-radius:5px 5px 0 0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child a:hover{border-radius:0 0 5px 5px}.ls-rearview .footer-action-bar .navbar-inner{background:#f5f4ee;border:0}.ls-rearview .footer-action-bar .navbar-inner a{text-transform:uppercase}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%)}.ls-rearview .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#a29f99;border-bottom-color:#a29f99}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#b9ced5;border-bottom-color:#b9ced5}.ls-rearview .header{margin:2em 0 1em 0;padding:14px 20px 0 20px;background:#f5f4ee;box-shadow:0 18px 60px #000;-moz-box-shadow:0 18px 60px #000;-webkit-box-shadow:0 18px 60px #000}.ls-rearview .header hr{margin:0;border-top:1px solid #b7b3a6;border-bottom:1px solid #b7b3a6;border-radius:4px}.ls-rearview .header .current-application-title{float:left;width:80%;overflow:hidden;white-space:nowrap}.ls-rearview .header .current-application-title h2{text-transform:uppercase}.ls-rearview .header .current-application-title h2,.ls-rearview .header .current-application-title h3{display:inline;vertical-align:baseline;color:#444240;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:30px}.ls-rearview .header .current-application-title h3{color:#7f7c78;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .header .go-back{line-height:38px;text-decoration:none;cursor:pointer;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .header .go-back strong{font-weight:normal;font-size:38px;vertical-align:sub}.ls-rearview .header .date{padding:16px 0 0 0;float:right;text-align:right;width:20%;color:#666;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .header .date strong{color:#444;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal{width:880px;margin-top:-284px;margin-left:-440px;overflow:visible;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal h1{margin:0;padding:12px;color:#666;background:#c9c7c3;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .modal h2{margin:0;color:#666;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:22px}.ls-rearview .modal .hero-unit{margin-bottom:10px;padding:16px;background:#faf9f6;border:1px solid #dedddc;border-radius:2px}.ls-rearview .modal .hero-unit fieldset.bottom{margin-bottom:0}.ls-rearview .modal .hero-unit.expressions-metrics,.ls-rearview .modal .hero-unit.test-graph{margin-right:16px;width:287px;float:left}.ls-rearview .modal .hero-unit.expressions-metrics .output,.ls-rearview .modal .hero-unit.test-graph .output{display:block;float:none}.ls-rearview .modal .hero-unit.expressions-metrics .output textarea,.ls-rearview .modal .hero-unit.test-graph .output textarea{width:100%}.ls-rearview .modal .hero-unit.expressions-metrics{width:480px}.ls-rearview .modal .hero-unit.test-graph{margin-right:0}.ls-rearview .modal .modal-header{padding:14px}.ls-rearview .modal .modal-header .close,.ls-rearview .modal .modal-header .back{margin:-17px;padding:0;position:absolute;top:0;left:0;background:url(../img/close-button.png) no-repeat 0 0;height:38px;width:38px;text-indent:-9000px;opacity:.9;z-index:10000}.ls-rearview .modal .modal-header .back{margin:-15px;display:none;border:0;background:url(../img/back-button.png) no-repeat 0 0}.ls-rearview .modal .modal-header .close:hover,.ls-rearview .modal .modal-header .back:hover{opacity:1}.ls-rearview .modal .modal-body{padding-top:0;max-height:480px}.ls-rearview .modal .modal-footer{background:#e4e3e1}.ls-rearview .modal form{margin:0}.ls-rearview .modal fieldset.set-schedule{margin-right:16px;margin-bottom:10px;float:none;display:block}.ls-rearview .modal fieldset.day-month-picker{margin-right:0;margin-bottom:10px;float:left;display:block}.ls-rearview .modal fieldset.pager-duty,.ls-rearview .modal fieldset.test-in-graph{margin-right:0}.ls-rearview .modal fieldset.pager-duty textarea,.ls-rearview .modal fieldset.description textarea,.ls-rearview .modal fieldset.monitor-name input{width:378px}.ls-rearview .modal fieldset.expressions textarea,.ls-rearview .modal fieldset.metrics textarea{width:458px}.ls-rearview .modal.modal-large .hero-unit.expressions-metrics{float:left}.ls-rearview .modal.modal-large .hero-unit.test-graph{margin-left:530px;float:none;width:auto!important}.ls-rearview .graph{margin-bottom:12px;border:2px solid #999;border-radius:2px;background:#333;min-height:150px;overflow:hidden}.ls-rearview .graph .highcharts-container{top:0!important}.ls-rearview .graph .highcharts-container .highcharts-loading{margin:0!important;padding:0;position:absolute;top:0!important;left:0!important;opacity:.8!important;height:100%!important;width:100%!important;background:#000!important}.ls-rearview .graph .highcharts-container .highcharts-loading span{top:35%!important;color:#999;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview input[type=text],.ls-rearview textarea,.ls-rearview select{background:#333;border:1px solid #b6b3a6;color:#adabac}.ls-rearview input.input-minutes-back{width:73px}.ls-rearview input.date-picker{width:114px}.ls-rearview .previous-errors select{width:155px}.ls-rearview fieldset{margin-right:16px;float:left;display:inline-block}.ls-rearview .form-horizontal .controls{margin-left:76px}.ls-rearview .form-horizontal .control-label{float:left;padding-top:5px;text-align:right;width:0}.ls-rearview .monitor-panel{width:90%}.ls-rearview .monitor-wrap{margin:0;padding:0 0 90px 0;overflow:visible;width:100%;position:relative;z-index:1;-webkit-perspective:0;-moz-perspective:0;perspective:0}.ls-rearview .monitor-wrap .monitor-grid{margin:0}.ls-rearview .monitor-wrap .monitor-grid .row-fluid{display:block}.ls-rearview .monitor-wrap .monitor-grid .small-monitor:last{margin-right:0;padding-right:0}.ls-rearview .monitor-wrap .edit-monitor-wrap{display:block;height:inherit;width:100%;z-index:100;top:0;right:4000px;position:absolute;transition:right .4s;-moz-transition:right .4s;-webkit-transition:right .4s}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor{background:#545954;border-radius:7px;margin:0 6%;padding:8px 7px;min-height:500px}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .data-view{background:#767a76;border-radius:4px;float:left;width:66%}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .metrics-schedule{background:#767a76;border-radius:4px}.ls-rearview .monitor-wrap .edit-monitor-wrap.active{right:0}.ls-rearview .small-monitor-wrap{position:relative;z-index:1}.ls-rearview .small-monitor{margin-bottom:20px;margin-top:0;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .small-monitor h1{margin:0 0 0 3px;color:#fff;line-height:22px;float:left;display:inline-block;cursor:pointer;width:60%;overflow:hidden;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .small-monitor h1 span{display:block;width:9999999px}.ls-rearview .small-monitor .btn-group{margin:3px auto 0 auto;width:180px;display:block}.ls-rearview .small-monitor .graph{margin:0;position:relative;overflow:hidden;min-height:220px}.ls-rearview .small-monitor .btn-group.activate{margin:0 auto;display:inline-block;float:right;width:52px}.ls-rearview .small-monitor .header-controls{margin:0 0 3px 0}.ls-rearview .small-monitor .overlay{margin:0;padding:0;position:absolute;top:0;left:0;height:100%;width:100%;background:#000;opacity:.7}.ls-rearview .small-monitor .overlay h1{margin-top:75px;color:#999;width:100%;height:100%;text-align:center;line-height:36px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .small-monitor figure{margin:0;display:block;border-radius:4px}.ls-rearview .small-monitor .back,.ls-rearview .small-monitor .front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .small-monitor .back{position:absolute;left:0;top:0;width:100%;background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .small-monitor .back fieldset{display:block;height:100%;width:100%;padding:0;margin:0}.ls-rearview .small-monitor .back .description{border:2px solid #999;margin:3px 3px 48px 3px;min-height:200px;overflow:auto;background:#333}.ls-rearview .small-monitor .back p{margin:3px 7px;color:#adabac;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .small-monitor .back .btn-wrap{margin:4px;position:absolute;right:0;bottom:0}.ls-rearview .small-monitor .front{padding:3px;background:#545954}.ls-rearview .small-monitor *{-webkit-transform-style:preserve-3d}.ls-rearview .small-monitor.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .small-monitor.active .graph,.ls-rearview .small-monitor.active .header-controls{visibility:hidden;-webkit-backface-visibility:hidden}.ls-rearview .expanded-monitor{margin:0 6%;padding:2px;position:relative;background:#545954;border-radius:5px;color:#fff;min-height:400px;min-width:900px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .expanded-monitor .expressions{width:50%}.ls-rearview .expanded-monitor .metrics-test{width:48%}.ls-rearview .expanded-monitor .metrics-test .metrics{margin-bottom:10px;display:block;clear:both;width:100%}.ls-rearview .expanded-monitor .metrics-test .test-in-graph{margin-right:0}.ls-rearview .expanded-monitor .metrics-test .save-changes hr{border-color:#b6b3a6}.ls-rearview .expanded-monitor .data-view{margin:3px 3px 10px 3px;padding:3px;float:left;width:66%;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor .metrics-schedule{margin:3px}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty{margin-right:0}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty textarea,.ls-rearview .expanded-monitor .metrics-schedule fieldset.description textarea{width:320px}.ls-rearview .expanded-monitor .metrics-schedule .day-month-picker .btn-group{margin-bottom:10px}.ls-rearview .expanded-monitor .metrics-schedule .button-view{margin:10px 0 0 0;padding:3px;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor label{margin-bottom:3px;color:#b6b3a6;font-size:14px;text-transform:uppercase}.ls-rearview .expanded-monitor label i{font-size:10px;font-style:normal}.ls-rearview .expanded-monitor .name-field{margin-bottom:3px;display:none}.ls-rearview .expanded-monitor .name-field input{margin-bottom:0}.ls-rearview .expanded-monitor textarea:focus,.ls-rearview .expanded-monitor input[type="text"]:focus,.ls-rearview .expanded-monitor input[type="password"]:focus,.ls-rearview .expanded-monitor input[type="datetime"]:focus,.ls-rearview .expanded-monitor input[type="datetime-local"]:focus,.ls-rearview .expanded-monitor input[type="date"]:focus,.ls-rearview .expanded-monitor input[type="month"]:focus,.ls-rearview .expanded-monitor input[type="time"]:focus,.ls-rearview .expanded-monitor input[type="week"]:focus,.ls-rearview .expanded-monitor input[type="number"]:focus,.ls-rearview .expanded-monitor input[type="email"]:focus,.ls-rearview .expanded-monitor input[type="url"]:focus,.ls-rearview .expanded-monitor input[type="search"]:focus,.ls-rearview .expanded-monitor input[type="tel"]:focus,.ls-rearview .expanded-monitor input[type="color"]:focus,.ls-rearview .expanded-monitor .uneditable-input:focus{border-color:#b6b3a6;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(182,179,166,0.7);outline:0 none}.ls-rearview .authentication-stats{margin:0 auto;width:100%}.ls-rearview .authentication-stats label{padding:5px 7px;display:inline-block;cursor:text}.ls-rearview .authentication-stats label:hover{padding:4px 6px;border:1px solid #b6b3a6;min-width:220px;background:#333;border-radius:3px;color:#adabac}.ls-rearview .authentication-stats .graph{margin:0 3px 3px 0;padding:3px;height:200px;border:3px solid #b6b3a6;border-radius:4px;background:#000;overflow:hidden;clear:both}.ls-rearview .alerts-output{padding:3px;float:right;width:32%}.ls-rearview .alerts-output .output-view{margin:0;min-height:135px;width:97%}.ls-rearview .alerts-history{color:#f5f4ed;min-height:133px}.ls-rearview .alerts-history ul{margin:0;padding:3px;overflow:auto;min-height:133px;border:3px solid #b6b3a6;border-radius:4px;background:#373737}.ls-rearview .alerts-history li{margin-bottom:26px;position:relative}.ls-rearview .alerts-history button{margin-top:4px;position:absolute;top:0;right:0}.ls-rearview .alerts-history h1{margin:0;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .alerts-history h2,.ls-rearview .alerts-history p{margin:0;line-height:16px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px}.ls-rearview .alerts-history label{background-image:url("/public/img/alerts_icon.png");background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs{margin-bottom:0;border-bottom:0;clear:both}.ls-rearview .nav-tabs li{margin-bottom:0;margin-left:10px}.ls-rearview .nav-tabs a{padding-top:4px;padding-bottom:4px;background:#656a65;border:0;color:#7e8079;text-transform:uppercase}.ls-rearview .nav-tabs .active a{background:#767a76;border:0;color:#b6b3a6}.ls-rearview .nav-tabs a:hover{background:#767a76;color:#b6b3a6}.ls-rearview .tab-content{padding:10px;background:#767a76;border-radius:4px}.ls-rearview .tab-content form{margin-bottom:0}.ls-rearview .metrics-test{width:488px;float:right}.ls-rearview .small-monitor.red .front{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red .data-view,.ls-rearview .expanded-monitor.red .button-view,.ls-rearview .expanded-monitor.red .tab-content{background:#8f7976}.ls-rearview .expanded-monitor.red .nav-tabs a{background:#816965;color:#917f79}.ls-rearview .expanded-monitor.red .nav-tabs a:hover,.ls-rearview .expanded-monitor.red .nav-tabs .active a{background:#8f7976;color:#b6b3a6}.ls-rearview .nav-tabs .active a.metrics-tab,.ls-rearview .expanded-monitor .nav-tabs a.metrics-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.metrics-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.schedule-tab,.ls-rearview .expanded-monitor .nav-tabs a.schedule-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.schedule-tab{background-image:url("/public/img/schedule_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.alerts-tab,.ls-rearview .expanded-monitor .nav-tabs a.alerts-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.alerts-tab{background-image:url("/public/img/alerts_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:18px}.ls-rearview .nav-tabs .active a.output-tab,.ls-rearview .expanded-monitor .nav-tabs a.output-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.output-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:22px}.ls-rearview .metrics-schedule .expressions textarea{width:396px;min-height:200px}.ls-rearview .metrics-schedule .metrics-test .metrics textarea{width:459px}.ls-rearview .CodeMirror.error{border-color:#b94a48!important;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 6px rgba(213,147,146,0.8);outline:0 none}.ls-rearview .expressions-metrics .metrics.error label,.ls-rearview .expressions-metrics .expressions.error label{color:#b94a48}.ls-rearview .expressions-metrics .metrics .CodeMirror,.ls-rearview .expressions-metrics .expressions .CodeMirror{width:471px;display:block;visibility:visible;border:1px solid #b6b3a6;border-radius:3px;transition:border .2s linear 0s,box-shadow .2s linear 0s}.ls-rearview .expressions-metrics .metrics .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .expressions-metrics .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .expressions-metrics fieldset{margin-bottom:16px}.ls-rearview .expressions-metrics fieldset i{font-style:normal;font-weight:normal;font-size:10px}.ls-rearview .metrics-schedule .metrics .CodeMirror,.ls-rearview .metrics-schedule .expressions .CodeMirror{border-radius:3px;display:block;visibility:visible}.ls-rearview .metrics-schedule .metrics .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .metrics-schedule .expressions .CodeMirror-scroll{border-radius:3px;height:196px}.ls-rearview .metrics-schedule .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .metrics-schedule .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .ecosystem-application-wrap{z-index:1;position:relative;-webkit-perspective:0;-moz-perspective:0;-o-perspective:0;perspective:0}.ls-rearview .ecosystem-application-wrap .application-tile{margin:0 0 20px 20px;float:left;width:200px;height:200px;cursor:pointer;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .ecosystem-application-wrap .application-tile.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .ecosystem-application-wrap .application-tile figure{margin:0;display:block;height:100%;width:100%;border-radius:4px;position:absolute;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .ecosystem-application-wrap .application-tile .front{background:#545954}.ls-rearview .ecosystem-application-wrap .application-tile .front p{line-height:40px;text-align:center;color:#fff;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset{margin:0;position:absolute;bottom:0;width:100%;float:right;opacity:0;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile .front:hover fieldset{opacity:1}.ls-rearview .ecosystem-application-wrap .application-tile .back{background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset{margin:5px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset input{width:176px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front button,.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front:hover button{visibility:hidden;opacity:0}.ls-rearview .ecosystem-application-wrap .application-tile.red .front{background:#735854}.ls-rearview .add-application .application-name{width:100%}.ls-rearview .add-application .application-name input[type='text']{width:98%}.ls-rearview .alert-wrap{top:-100px;height:auto;left:0;margin-top:0;margin-left:0;display:block;position:fixed;width:100%!important;z-index:1058;-webkit-transition:all 1s;-moz-transition-duration:1s;-webkit-transition-duration:1s;transition-duration:1s}.ls-rearview .alert-wrap.active{-webkit-transform:translateY(150px)!important;-moz-transform:translateY(150px)!important;-ms-transform:translateY(150px)!important;-o-transform:translateY(150px)!important;transform:translateY(150px)!important}.ls-rearview .alert{text-align:center;margin:0 25%;border-radius:4px!important;border:none!important;background-color:rgba(0,0,0,0.7)!important;color:#efc338!important;text-shadow:none;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:17px}.ls-rearview .alert-error{color:#cc3e3a!important}.ls-rearview .alert-success{color:#6ea933!important}.ls-rearview .alert-success .close{color:#6ea933!important;opacity:.7!important}.ls-rearview textarea:focus,.ls-rearview input[type="text"]:focus,.ls-rearview input[type="password"]:focus,.ls-rearview input[type="datetime"]:focus,.ls-rearview input[type="datetime-local"]:focus,.ls-rearview input[type="date"]:focus,.ls-rearview input[type="month"]:focus,.ls-rearview input[type="time"]:focus,.ls-rearview input[type="week"]:focus,.ls-rearview input[type="number"]:focus,.ls-rearview input[type="email"]:focus,.ls-rearview input[type="url"]:focus,.ls-rearview input[type="search"]:focus,.ls-rearview input[type="tel"]:focus,.ls-rearview input[type="color"]:focus,.ls-rearview .uneditable-input:focus{border-color:rgba(140,134,110,0.8);box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(75,75,75,0.7);outline:0 none}.ls-rearview .control-group.error input,.ls-rearview .control-group.error select,.ls-rearview .control-group.error textarea{border-color:#b94a48;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(185,74,74,0.7)}.ls-rearview .btn-inverse,.ls-rearview .btn-inverse.active,.ls-rearview .btn-inverse:active{color:#b6b3a6}.ls-rearview .CodeMirror-wrap{border-radius:3px!important}.ls-rearview .CodeMirror-wrap pre{white-space:pre-wrap!important;word-break:break-all!important;word-wrap:break-word!important}.ls-rearview .CodeMirror-wrap .CodeMirror-scroll{background:#000}.ls-rearview .CodeMirror-wrap .CodeMirror-gutter{border-top-left-radius:3px;border-bottom-left-radius:3px}.ls-rearview .fullscreen{margin:0;padding:0;display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;border:0 solid #bbb;opacity:1}.ls-rearview .tooltip .tooltip-arrow{display:none!important}.ls-rearview .tooltip .tooltip-inner{max-width:none!important}.ls-rearview .ui-widget{font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px;background:#000!important}.ls-rearview .ui-widget .ui-slider{margin-top:7px}.ls-rearview .ui-widget .ui-timepicker-div dt{font-weight:normal!important}
@@ -0,0 +1,249 @@
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>
5
+ This is a custom SVG webfont generated by Fontspring.
6
+ Designer : Mark Simonson
7
+ Foundry : Mark Simonson
8
+ Foundry URL : httpwwwmarksimonsoncom
9
+ </metadata>
10
+ <defs>
11
+ <font id="webfont66L2sXE3" horiz-adv-x="256" >
12
+ <font-face units-per-em="1000" ascent="775" descent="-225" />
13
+ <missing-glyph horiz-adv-x="500" />
14
+ <glyph unicode=" " />
15
+ <glyph unicode="!" d="M201 600q0 -5 -1 -24t-2 -47t-2.5 -62t-3.5 -69.5t-3.5 -69.5t-2.5 -62q-1 -23 -17.5 -39t-41.5 -16q-23 0 -39.5 16t-17.5 39q-1 28 -3 62t-3.5 69.5t-3.5 69.5t-3 62t-2 47t-1 24q0 31 21.5 52t53.5 21q31 0 51.5 -21t20.5 -52zM209 70q0 -16 -6.5 -30.5t-17.5 -25.5 t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57z" />
16
+ <glyph unicode="&#x22;" horiz-adv-x="406" d="M362 608q0 -5 -4 -31t-10 -59l-12 -67l-10 -56q-2 -11 -11 -18.5t-23 -7.5q-11 0 -20 7.5t-11 18.5l-10 56l-12 67t-10 59t-4 31q0 29 20 49t49 20t48.5 -20t19.5 -49zM182 608q0 -5 -4 -30.5t-10 -58.5l-12 -67l-10 -56q-2 -12 -11.5 -19.5t-22.5 -7.5q-11 0 -20.5 7.5 t-11.5 19.5l-10 56l-12 67t-10 58.5t-4 30.5q0 29 20 49t49 20q28 0 48.5 -20t20.5 -49z" />
17
+ <glyph unicode="#" horiz-adv-x="618" d="M589 455q0 -16 -11.5 -27.5t-27.5 -11.5h-73l-55 -166h50q16 0 27.5 -12t11.5 -29t-11.5 -28.5t-27.5 -11.5h-77l-48 -145q-5 -14 -17 -22t-26 -8q-20 0 -32.5 12.5t-12.5 30.5v6.5t2 7.5l41 118h-95l-49 -146q-5 -14 -17 -22t-26 -8q-20 -1 -32 12.5t-12 30.5q0 9 2 14 l40 119h-43q-17 0 -28.5 12t-11.5 30q0 16 11.5 27.5t28.5 11.5h71l54 166h-46q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h74l48 147q5 13 16.5 21t25.5 8q20 0 32.5 -13t12.5 -30q0 -5 -2 -13l-39 -120h94l48 146q5 14 17 22t26 8q20 0 32.5 -13t12.5 -30 q0 -6 -2 -14l-41 -119h46q16 0 27.5 -12t11.5 -29zM383 416h-94l-54 -166h93z" />
18
+ <glyph unicode="$" horiz-adv-x="614" d="M579 202q0 -42 -13.5 -78t-40.5 -63.5t-68 -45.5t-96 -24v-51q0 -19 -13.5 -32.5t-32.5 -13.5q-21 0 -35 13.5t-14 32.5v50q-30 3 -62 10t-61 18t-51.5 26t-34.5 33q-5 8 -7.5 15.5t-2.5 16.5q0 28 20 47t46 19q21 0 39 -12q24 -17 52.5 -29t61.5 -18v158q-39 10 -77 23 t-69 35.5t-50 56.5t-19 85q0 38 14.5 72t42.5 61t67.5 45t90.5 23v53q0 19 14 32.5t35 13.5q19 0 32.5 -13.5t13.5 -32.5v-55q22 -3 48 -8.5t50 -14.5t44 -21.5t31 -28.5q10 -15 10 -31q0 -14 -6 -26t-16 -20.5t-23 -13.5t-26 -5q-9 0 -19 3q-22 6 -46 19.5t-47 18.5v-141 q39 -10 77.5 -23.5t70 -36t51 -57t19.5 -85.5zM266 429v122q-34 -5 -52 -22t-18 -43q0 -11 5 -19.5t14 -15.5t22 -12.5t29 -9.5zM435 186q0 12 -5.5 22t-15.5 17.5t-23.5 13.5t-29.5 11v-134q18 4 32 11t23.5 16t14 20t4.5 23z" />
19
+ <glyph unicode="%" horiz-adv-x="757" d="M365 509q0 -35 -12 -65t-34.5 -52t-53.5 -34.5t-70 -12.5q-38 0 -69.5 12.5t-53.5 34.5t-34 52t-12 65t12 66t34 53.5t53.5 35.5t69.5 13q39 0 70 -13t53.5 -35.5t34.5 -53.5t12 -66zM211 8q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14 q13 0 23 -9.5t10 -22.5q0 -8 -5 -16zM732 153q0 -35 -12 -65t-34.5 -52.5t-54 -35t-69.5 -12.5t-69.5 12.5t-53.5 35t-34 52.5t-12 65t12 66t34 53.5t53.5 35.5t69.5 13t69.5 -13t54 -35.5t34.5 -53.5t12 -66zM116 509q0 -39 22.5 -62.5t56.5 -23.5q17 0 31.5 6t25 17.5 t16.5 27t6 35.5q0 42 -22 65.5t-57 23.5q-34 0 -56.5 -23.5t-22.5 -65.5zM483 153q0 -20 6 -36.5t16.5 -27.5t25 -17t31.5 -6t32 6t25.5 17t16.5 27.5t6 36.5q0 42 -22.5 65.5t-57.5 23.5t-57 -23.5t-22 -65.5z" />
20
+ <glyph unicode="&#x26;" horiz-adv-x="646" d="M509 134q8 -9 17.5 -18t18 -19t14 -21t5.5 -24q0 -22 -16 -40.5t-41 -18.5q-13 0 -25 6.5t-22.5 15.5t-19 19t-14.5 16q-38 -29 -83 -45.5t-99 -16.5q-46 0 -86 12t-70 36t-47 60.5t-17 84.5q0 38 11.5 67.5t31.5 52.5t45.5 40.5t54.5 31.5q-20 37 -32 73.5t-12 70.5 t14 63t39.5 50.5t60.5 34t77 12.5q35 0 67 -9.5t56 -27.5t38 -44.5t14 -59.5q0 -38 -14 -66t-37 -49.5t-52.5 -37.5t-60.5 -30q16 -23 31 -41.5l29 -35l27.5 -32l26.5 -31.5q13 20 24 41t20 42q6 14 19.5 23t29.5 9q23 0 39 -16.5t16 -37.5q0 -11 -8 -30q-6 -13 -14.5 -28 t-18.5 -29.5l-19.5 -28.5t-17.5 -24zM159 193q0 -24 8.5 -43.5t22.5 -33t32.5 -21t39.5 -7.5q26 0 50 9t46 25l-47.5 53l-35 41t-29 37.5l-29.5 41.5q-26 -19 -42 -43t-16 -59zM320 585q-15 0 -27.5 -5.5t-22 -15t-15 -22.5t-5.5 -28q0 -20 8 -43t21 -47q21 10 39 21 t31.5 23.5t21.5 27.5t8 33q0 26 -17 41t-42 15z" />
21
+ <glyph unicode="'" horiz-adv-x="225" d="M182 608q0 -5 -4 -30.5t-10 -58.5l-12 -67l-10 -56q-2 -12 -11.5 -19.5t-22.5 -7.5q-11 0 -20.5 7.5t-11.5 19.5l-10 56l-12 67t-10 58.5t-4 30.5q0 29 20 49t49 20q28 0 48.5 -20t20.5 -49z" />
22
+ <glyph unicode="(" horiz-adv-x="297" d="M266 -126q0 -23 -15.5 -41t-39.5 -18q-11 0 -21.5 4.5t-17.5 14.5q-30 41 -54 90t-41.5 102t-26.5 108t-9 109q0 53 9.5 108.5t26.5 108.5t41 102.5t54 90.5q7 9 17.5 13.5t21.5 4.5q25 0 40 -18t15 -39q0 -14 -6 -26q-20 -40 -35 -80.5t-25.5 -82.5t-16 -87.5 t-5.5 -94.5q0 -99 21 -181t61 -161q6 -14 6 -27z" />
23
+ <glyph unicode=")" horiz-adv-x="297" d="M257 243q0 -54 -9.5 -109t-26.5 -108t-41.5 -102t-54.5 -90q-7 -10 -17.5 -14.5t-21.5 -4.5q-24 0 -39.5 18t-15.5 41q0 13 6 27q40 79 61 161t21 181q0 49 -5.5 94.5t-16 87.5t-25.5 82.5t-35 80.5q-6 12 -6 26q0 21 15 39t39 18q11 0 22 -4.5t18 -13.5q30 -41 54 -90 t41.5 -102.5t27 -108.5t9.5 -109z" />
24
+ <glyph unicode="*" horiz-adv-x="351" d="M177 683q11 0 20.5 -9t8.5 -21l-4 -86l71 45q8 5 16 5q10 0 20 -8t10 -23q0 -19 -15 -26l-75 -39l75 -39q15 -8 15 -25q0 -13 -9 -22t-22 -9q-8 0 -15 4l-71 46l4 -86q1 -12 -8.5 -21t-22.5 -9t-22 9t-8 21l4 86l-73 -46q-7 -5 -15 -5q-10 0 -20 8.5t-10 22.5q0 8 4 15 t12 11l75 39l-75 39q-16 8 -16 25q0 14 9.5 23t21.5 9q8 0 15 -4l72 -46l-4 86q-1 12 8.5 21t23.5 9z" />
25
+ <glyph unicode="+" horiz-adv-x="504" d="M481 339q0 -18 -11 -29.5t-27 -11.5h-147v-166q0 -18 -12.5 -30.5t-31.5 -12.5q-18 0 -30.5 12.5t-12.5 30.5v166h-147q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h147v159q0 17 12.5 29.5t32.5 12.5q17 0 29.5 -12.5t12.5 -29.5v-159h147q16 0 27 -11t11 -27z" />
26
+ <glyph unicode="," d="M215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -26 -10q-13 0 -25.5 8.5t-12.5 23.5q0 13 10 22q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
27
+ <glyph unicode="-" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
28
+ <glyph unicode="." d="M209 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
29
+ <glyph unicode="/" horiz-adv-x="329" d="M314 650q0 -5 -2 -13l-211 -633q-5 -14 -17 -22t-26 -8q-19 0 -31.5 12.5t-12.5 29.5q0 6 3 14l211 633q5 14 16.5 22t26.5 8q19 0 31 -13t12 -30z" />
30
+ <glyph unicode="0" horiz-adv-x="620" d="M586 333q0 -65 -16.5 -126.5t-50.5 -110.5t-86 -78.5t-123 -29.5q-72 0 -124 29.5t-85.5 78.5t-50 110.5t-16.5 126.5q0 64 16.5 126t50 110.5t85.5 78t124 29.5q71 0 123 -29.5t86 -78t50.5 -110.5t16.5 -126zM441 333q0 46 -7 86t-23 69t-40.5 46t-60.5 17t-61 -17 t-41 -46t-23 -69t-7 -86t7 -86t23 -69.5t41 -46.5t61 -17t60.5 17t40.5 46.5t23 69.5t7 86z" />
31
+ <glyph unicode="1" horiz-adv-x="411" d="M345 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v420l-75 -77q-16 -16 -39 -16t-41 17t-18 42q0 24 18 42l154 156q24 24 60 24q34 0 58.5 -23.5t24.5 -57.5v-527v0z" />
32
+ <glyph unicode="2" horiz-adv-x="600" d="M555 64q0 -27 -18 -45.5t-43 -18.5h-386q-26 0 -46.5 19.5t-20.5 49.5q0 17 8 33t22 27l156.5 119t101.5 88t54.5 68.5t16.5 59.5q0 22 -9 38t-24 27t-34.5 16.5t-40.5 5.5q-40 0 -74 -10.5t-63 -30.5q-19 -13 -41 -13q-25 0 -43.5 18.5t-18.5 45.5q0 15 9 29 q12 19 37.5 35t57 27.5t66.5 18t67 6.5q53 0 99.5 -14.5t81 -42t54.5 -67t20 -89.5q0 -43 -17.5 -83.5t-51 -81.5t-83.5 -84t-115 -90h217q25 0 43 -18t18 -43z" />
33
+ <glyph unicode="3" horiz-adv-x="587" d="M546 184q0 -43 -18.5 -79t-53 -62t-83 -40.5t-108.5 -14.5q-36 0 -73.5 6.5t-70.5 18t-58.5 27.5t-37.5 36q-8 13 -8 27q0 27 20 45t45 18q19 0 35 -10q33 -20 70.5 -31t72.5 -11q61 0 93.5 23.5t32.5 61.5q0 20 -8 34.5t-24.5 24t-41.5 14t-60 4.5q-20 -3 -36 0.5 t-28 11.5t-18.5 21t-6.5 30q0 26 18 44t47 18q33 -2 60 1.5t46.5 12t30 22.5t10.5 35q0 20 -9.5 35t-26 24.5t-39.5 14.5t-49 5q-35 0 -67.5 -9.5t-61.5 -28.5q-14 -10 -34 -10q-23 0 -42.5 17t-19.5 43t21 43q42 33 96 52t123 19q58 0 105 -12.5t79.5 -36t50 -57 t17.5 -75.5q0 -32 -12.5 -57.5t-33 -45t-46.5 -32t-54 -17.5q25 -3 53 -14t50.5 -31t37.5 -49t15 -66z" />
34
+ <glyph unicode="4" horiz-adv-x="597" d="M578 200q0 -26 -18 -44t-43 -18h-31v-74q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v74h-251q-30 0 -51.5 22t-21.5 56q0 26 13 46l223 352q17 27 47 43t62 16q23 4 44.5 0.5t38.5 -13.5t27.5 -27t10.5 -40v-330h31q25 0 43 -18.5t18 -44.5zM344 263v278 l-180 -278h180z" />
35
+ <glyph unicode="5" horiz-adv-x="608" d="M573 219q0 -53 -19 -96t-54 -73t-84.5 -46t-109.5 -16q-33 0 -68.5 5.5t-68 15.5t-57.5 25t-37 35q-8 14 -8 29q0 28 21 46t47 18q18 0 37 -11q29 -18 63 -27.5t70 -9.5q30 0 53 8t38.5 21.5t24 31.5t8.5 38q0 22 -8 40.5t-23.5 31.5t-38 20t-50.5 7q-31 0 -58 -7 t-54 -25q-25 -17 -55 -17q-33 0 -52.5 19.5t-19.5 48.5v256q0 33 23.5 56.5t56.5 23.5h323q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-261v-163q24 24 62.5 40t84.5 16q42 0 81 -15t68.5 -42.5t47 -67.5t17.5 -91z" />
36
+ <glyph unicode="6" horiz-adv-x="608" d="M577 217q0 -49 -18.5 -91t-52 -72.5t-80.5 -48t-104 -17.5q-76 0 -130.5 27.5t-89.5 74t-51.5 109t-16.5 133.5q0 76 21 139t60.5 109t97.5 71.5t132 25.5q24 0 51 -3.5t51 -11.5t43.5 -20t28.5 -28q7 -14 7 -27q0 -29 -21 -45.5t-44 -16.5q-16 0 -29 7q-19 10 -40 14.5 t-47 4.5q-37 0 -67.5 -14.5t-52.5 -40t-34.5 -60t-12.5 -74.5v-7t1 -7q12 17 29.5 32.5t40 27.5t48.5 19t53 7q45 0 86 -14t72.5 -41.5t50 -68t18.5 -93.5zM433 212q0 26 -10.5 45t-27.5 31t-39.5 18t-46.5 6q-38 0 -72 -16.5t-58 -46.5q2 -24 10.5 -48t24.5 -43.5 t40.5 -31.5t59.5 -12q29 0 51 8.5t37 22.5t23 31.5t8 35.5z" />
37
+ <glyph unicode="7" horiz-adv-x="545" d="M531 595q0 -16 -6 -28l-232 -530q-8 -20 -26.5 -31.5t-40.5 -11.5q-32 0 -51.5 21.5t-19.5 48.5q0 13 6 27l199 451h-280q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h382q26 0 47.5 -20t21.5 -52z" />
38
+ <glyph unicode="8" horiz-adv-x="606" d="M571 173q0 -47 -22 -81.5t-59.5 -57.5t-86 -34.5t-100.5 -11.5q-53 0 -101 11.5t-85.5 34.5t-59.5 57.5t-22 81.5q0 30 11 57t30.5 48.5t45.5 38t56 27.5q-28 10 -52 24t-42 33t-28 44t-10 56q0 47 22.5 80.5t59.5 54.5t82.5 31t92.5 10q46 0 92 -10t82.5 -31t59.5 -54.5 t23 -80.5q0 -31 -10.5 -56t-28.5 -44t-42 -33t-52 -24q30 -11 56 -27.5t45.5 -38t31 -48.5t11.5 -57zM415 479q0 18 -8.5 32t-23.5 24t-35.5 15t-44.5 5q-25 0 -45.5 -5t-35.5 -15t-23.5 -24t-8.5 -32q0 -19 12 -32.5t29 -23.5t37 -15.5t35 -7.5q15 2 34.5 7.5t37 15.5 t29 23.5t11.5 32.5zM427 191q0 21 -13.5 36.5t-33 26.5t-41 17.5t-36.5 8.5q-16 -2 -37 -8.5t-40.5 -17.5t-33 -26.5t-13.5 -36.5q0 -18 9.5 -33t26 -25.5t39.5 -16.5t49 -6q25 0 48 6t39.5 16.5t26.5 25.5t10 33z" />
39
+ <glyph unicode="9" horiz-adv-x="608" d="M573 334q0 -76 -21 -139.5t-60.5 -109t-97.5 -71t-132 -25.5q-24 0 -51 3.5t-51 11t-43.5 19.5t-28.5 28q-8 14 -8 28t6 25.5t15.5 19.5t21 12.5t23.5 4.5q16 0 29 -7q19 -10 40 -14.5t47 -4.5q37 0 67.5 14.5t52.5 40t34.5 60t12.5 74.5v7t-1 7q-12 -17 -29.5 -32.5 t-40 -27.5t-48.5 -19t-53 -7q-45 0 -86 14t-72.5 41.5t-50 68t-18.5 93.5q0 49 18.5 90.5t52 72.5t80.5 48.5t104 17.5q76 0 130.5 -27.5t89.5 -74t51.5 -109.5t16.5 -133zM428 417q-2 24 -10.5 48t-24.5 43.5t-40.5 31.5t-59.5 12q-29 0 -51 -8.5t-37 -22.5t-23 -31.5 t-8 -35.5q0 -26 10.5 -45t27.5 -31t39.5 -18t46.5 -6q38 0 72 16.5t58 46.5z" />
40
+ <glyph unicode=":" horiz-adv-x="251" d="M209 409q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57zM209 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
41
+ <glyph unicode=";" d="M209 409q0 -16 -6.5 -30.5t-17.5 -26t-26 -18t-31 -6.5q-17 0 -31.5 6.5t-25.5 18t-17.5 26t-6.5 30.5q0 33 24 57t57 24t57 -24t24 -57zM215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -26 -10q-13 0 -25.5 8.5t-12.5 23.5q0 13 10 22q20 16 34.5 37t19.5 41 q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
42
+ <glyph unicode="&#x3c;" horiz-adv-x="504" d="M480 153q0 -20 -13.5 -31t-28.5 -11q-9 0 -16 3l-361 161q-17 8 -27.5 24.5t-10.5 36.5q0 18 10.5 34t27.5 24l361 162q7 3 16 3q16 0 29 -11.5t13 -31.5q0 -12 -6.5 -23t-18.5 -16l-335 -143l335 -142q12 -5 18.5 -15.5t6.5 -23.5z" />
43
+ <glyph unicode="=" horiz-adv-x="504" d="M481 429q0 -17 -11.5 -29t-27.5 -12h-380q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h380q16 0 27.5 -11.5t11.5 -27.5zM481 241q0 -17 -11 -28.5t-27 -11.5h-382q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h382q16 0 27 -11t11 -27z" />
44
+ <glyph unicode="&#x3e;" horiz-adv-x="504" d="M481 336q0 -20 -10.5 -36.5t-27.5 -24.5l-361 -161q-8 -3 -16 -3q-16 0 -29 11.5t-13 30.5q0 13 6.5 23.5t18.5 15.5l335 142l-335 143q-13 5 -19.5 16t-6.5 23q-1 20 12.5 31.5t30.5 11.5q8 0 16 -3l361 -162q17 -8 27.5 -24t10.5 -34z" />
45
+ <glyph unicode="?" horiz-adv-x="456" d="M436 519q0 -37 -12.5 -63t-31 -45.5t-40 -35l-40 -30t-31 -30t-12.5 -36.5q0 -10 1.5 -14.5t1.5 -12.5q0 -19 -14 -36t-42 -17q-14 0 -27 6t-23 17.5t-15.5 29t-5.5 40.5q0 30 11 51.5t27 38.5t35 30t35 25.5t27 26t11 30.5q0 23 -18 40t-60 17q-23 0 -43.5 -7t-38.5 -19 t-42 -12t-41.5 15.5t-17.5 42.5q0 15 6 27q10 20 32.5 35t50 24.5t56.5 14.5t53 5q48 0 86.5 -11.5t65.5 -32.5t41.5 -50t14.5 -64zM307 70q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57z" />
46
+ <glyph unicode="@" horiz-adv-x="783" d="M747 332q0 -63 -18.5 -109.5t-47.5 -77t-64 -45.5t-68 -15q-45 0 -68.5 23t-28.5 54q-27 -35 -65.5 -56t-79.5 -21q-36 0 -65 12.5t-49 35t-30.5 53.5t-10.5 67q0 50 19 94.5t50.5 78t72 53t84.5 19.5q45 0 77 -19t48 -48l3 14q4 19 19.5 31.5t35.5 12.5q24 0 39.5 -16 t15.5 -37v-6t-1 -5l-39 -185q-1 -5 -2 -12t-1 -12q0 -23 10.5 -34t26.5 -11q15 0 31.5 9t30.5 28.5t23 50t9 73.5q0 59 -19.5 108t-55.5 84.5t-87 55t-114 19.5q-71 0 -135 -29t-113 -77.5t-77.5 -112.5t-28.5 -134q0 -59 21.5 -109.5t59 -88t89 -59t112.5 -21.5 q47 0 88.5 12t79.5 34q3 2 9 2q7 0 13.5 -5t6.5 -13q0 -9 -8 -14q-44 -26 -93 -40t-100 -14q-68 0 -126 24t-100.5 66.5t-66.5 100t-24 123.5q0 80 33 151.5t87.5 125.5t126.5 85.5t150 31.5q72 0 130 -24.5t99 -66.5t63.5 -97.5t22.5 -117.5zM487 357q-4 8 -11 17t-17 16.5 t-23.5 12.5t-29.5 5q-30 0 -55.5 -12.5t-43.5 -32.5t-28.5 -46.5t-10.5 -53.5q0 -39 22.5 -63.5t60.5 -24.5q20 0 36.5 6t30.5 15.5t25 21t19 22.5z" />
47
+ <glyph unicode="A" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208z" />
48
+ <glyph unicode="B" horiz-adv-x="663" d="M622 180q0 -38 -12.5 -70.5t-37 -57t-60.5 -38.5t-84 -14h-282q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h271q48 0 84 -14t60 -37.5t36 -54.5t12 -64q0 -32 -9 -58t-25 -45.5t-36.5 -32t-44.5 -17.5q27 -4 50 -18.5t40.5 -36t27.5 -50t10 -59.5z M464 472q0 32 -21 52.5t-57 20.5h-178v-145h178q36 0 57 20t21 52zM477 200q0 16 -5.5 30t-16.5 24.5t-27 17t-37 6.5h-183v-155h183q41 0 63.5 20.5t22.5 56.5z" />
49
+ <glyph unicode="C" horiz-adv-x="687" d="M389 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q38 0 73.5 16t63.5 47q11 11 25 17t29 6 q27 0 46 -18t19 -44q0 -11 -3 -21t-11 -18q-38 -46 -97 -78.5t-145 -32.5q-75 0 -140 25t-112.5 70.5t-75 109t-27.5 140.5t27.5 140.5t75 109t112.5 70.5t140 25z" />
50
+ <glyph unicode="D" horiz-adv-x="718" d="M683 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM538 333q0 44 -13.5 82.5t-39.5 66.5t-65.5 44t-90.5 16h-121v-417h121q49 0 88 16.5 t66 45t41 66.5t14 80z" />
51
+ <glyph unicode="E" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43z" />
52
+ <glyph unicode="F" horiz-adv-x="571" d="M544 604q0 -26 -18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-212q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5z" />
53
+ <glyph unicode="G" horiz-adv-x="720" d="M673 176q0 -45 -25.5 -80.5t-66 -59.5t-91 -36.5t-101.5 -12.5q-73 0 -137.5 24.5t-113 69.5t-76.5 109t-28 143t28 143t76.5 109t113 69t137.5 24q81 0 139.5 -28t97.5 -70q8 -9 12.5 -20.5t4.5 -22.5q0 -26 -20.5 -45t-46.5 -19q-28 0 -48 20q-29 28 -65 43.5t-74 15.5 q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q22 0 43 4.5t40 11.5t34 16.5t25 18.5v80h-121q-26 0 -43.5 18t-17.5 45q0 26 17.5 43.5t43.5 17.5h183q33 0 56.5 -23.5t23.5 -56.5v-113v0z" />
54
+ <glyph unicode="H" horiz-adv-x="731" d="M666 65q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v215h-315v-216q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-198h315v198q0 29 21 49.5t52 20.5q29 0 49.5 -20.5t20.5 -49.5v-538v0z" />
55
+ <glyph unicode="I" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0z" />
56
+ <glyph unicode="J" horiz-adv-x="486" d="M420 219q0 -59 -17.5 -102.5t-48.5 -72t-74.5 -42.5t-94.5 -14q-19 0 -42.5 2.5t-46 9.5t-41.5 17.5t-29 27.5q-8 13 -8 29q0 27 19.5 45t44.5 18q8 0 17 -3q17 -5 35.5 -12.5t39.5 -7.5q48 0 76 29t28 78v382q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-384v0z " />
57
+ <glyph unicode="K" horiz-adv-x="636" d="M569 63q0 -26 -20 -47.5t-49 -21.5q-16 0 -30 6.5t-24 20.5l-186 246l-52 -62v-141q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-234l220 278q9 12 23 18t28 6q27 0 47.5 -19t20.5 -46q0 -24 -15 -42 l-178 -210l201 -251q14 -19 14 -40z" />
58
+ <glyph unicode="L" horiz-adv-x="523" d="M496 64q0 -27 -18 -45.5t-43 -18.5h-289q-33 0 -56.5 23.5t-23.5 56.5v523q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-478h227q25 0 43 -18t18 -43z" />
59
+ <glyph unicode="M" horiz-adv-x="855" d="M789 65q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v402l-180 -447q-5 -11 -15.5 -18.5t-24.5 -7.5q-13 0 -23 7.5t-15 18.5l-180 447v-403q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5q49 5 88 -8t57 -57l136 -338l136 338 q12 29 38 47t59 18q24 4 47 1t41.5 -12.5t29.5 -26.5t11 -42v-522v0z" />
60
+ <glyph unicode="N" horiz-adv-x="729" d="M663 80q0 -17 -6.5 -32.5t-18.5 -27.5t-28 -19t-35 -7q-20 0 -39 9.5t-32 26.5l-296 405v-371q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v518q0 18 7 34t19.5 29t29.5 20.5t37 7.5q23 0 43.5 -10t34.5 -29l284 -386v355q0 29 21 49.5t51 20.5 q29 0 49.5 -20.5t20.5 -49.5v-523v0z" />
61
+ <glyph unicode="O" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87z" />
62
+ <glyph unicode="P" horiz-adv-x="624" d="M602 452q0 -44 -15 -83t-43.5 -68t-70 -46.5t-95.5 -17.5h-170v-173q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h232q54 0 96 -17t70.5 -46.5t43 -68.5t14.5 -83zM457 452q0 42 -28 66t-70 24h-151v-180h151q42 0 70 24t28 66 z" />
63
+ <glyph unicode="Q" horiz-adv-x="765" d="M731 333q0 -71 -22.5 -131t-64.5 -105l12 -14q14 -17 14 -40q0 -24 -18 -44t-46 -20q-29 0 -49 23l-17 19q-35 -16 -74.5 -24.5t-83.5 -8.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5 t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17q35 0 70 11l-37 43q-8 8 -11 18t-3 21q0 24 18 44t46 20q29 0 48 -22l38 -44q17 27 25.5 59.5t8.5 68.5z" />
64
+ <glyph unicode="R" horiz-adv-x="643" d="M602 452q0 -44 -12.5 -78t-33.5 -58.5t-47 -40t-53 -21.5l92 -156q9 -17 9 -34q0 -26 -19 -48t-51 -22q-19 0 -35 9.5t-26 26.5l-114 207h-104v-173q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v523q0 33 23.5 56.5t56.5 23.5h232q52 0 93.5 -16t70.5 -45 t44.5 -68.5t15.5 -85.5zM357 542h-149v-180h149q43 0 71.5 24t28.5 66t-28.5 66t-71.5 24z" />
65
+ <glyph unicode="S" horiz-adv-x="600" d="M570 202q0 -46 -16.5 -85t-49.5 -67.5t-83.5 -45t-117.5 -16.5q-36 0 -75 6t-74.5 17t-63 27t-41.5 37q-11 16 -11 34q0 29 20.5 47.5t46.5 18.5q10 0 20 -2.5t18 -8.5q34 -23 76 -37.5t91 -14.5q29 0 51 6t36.5 16.5t21.5 24t7 27.5q0 22 -16.5 36t-43.5 23.5t-61.5 17 t-70.5 17.5t-70.5 24t-61.5 36t-43.5 54.5t-16.5 79.5q0 42 17.5 78.5t50 64.5t79.5 44t106 16q28 0 62.5 -4.5t66.5 -14t59 -23.5t41 -32q12 -15 12 -34q0 -29 -22.5 -46.5t-48.5 -17.5q-19 0 -36 10q-35 20 -72.5 29t-74.5 9q-46 0 -70.5 -18.5t-24.5 -48.5 q0 -20 16.5 -32.5t43.5 -21.5t61.5 -16.5t70 -17.5t70 -24.5t61.5 -37t43.5 -55t16.5 -79.5z" />
66
+ <glyph unicode="T" horiz-adv-x="582" d="M563 604q0 -26 -18 -44t-43 -18h-139v-477q0 -29 -21 -50t-51 -21q-29 0 -50 21t-21 50v477h-139q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h421q25 0 43 -18.5t18 -44.5z" />
67
+ <glyph unicode="U" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0z" />
68
+ <glyph unicode="V" horiz-adv-x="684" d="M657 599q0 -13 -5 -26l-194 -504q-13 -34 -43.5 -54.5t-65.5 -20.5h-14q-35 0 -65.5 20.5t-43.5 54.5l-195 504q-5 10 -5 26q0 27 20.5 50.5t54.5 23.5q23 0 43 -13t28 -36l170 -470l169 470q8 22 27.5 35.5t42.5 13.5q34 0 55 -22.5t21 -51.5z" />
69
+ <glyph unicode="W" horiz-adv-x="918" d="M897 605q0 -11 -3 -20l-149 -521q-9 -31 -34.5 -50.5t-57.5 -19.5h-2q-33 0 -58 19.5t-33 50.5l-101 394l-100 -394q-8 -31 -33.5 -50.5t-56.5 -19.5h-2q-32 0 -58 19.5t-35 50.5l-150 522q-3 9 -3 19q0 29 21 51.5t55 22.5q26 0 46.5 -16t27.5 -42l106 -436l114 436 q6 23 25 37.5t45 14.5q23 0 41.5 -14.5t24.5 -37.5l114 -436l104 435q6 26 27.5 42.5t48.5 16.5q34 0 55 -22.5t21 -51.5z" />
70
+ <glyph unicode="X" horiz-adv-x="668" d="M611 63q0 -12 -4.5 -24t-13.5 -22t-22 -16.5t-29 -6.5q-17 0 -32 8t-25 22l-151 220l-152 -221q-10 -14 -24.5 -21.5t-31.5 -7.5q-27 0 -48 18.5t-21 49.5q0 11 3 20.5t9 18.5l170 241l-158 226q-11 15 -11 36q0 26 18.5 47t50.5 21q37 0 59 -31l136 -202l134 201 q21 32 59 32q29 0 50 -20t21 -47q0 -22 -12 -38l-157 -224l170 -241q12 -18 12 -39z" />
71
+ <glyph unicode="Y" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45z" />
72
+ <glyph unicode="Z" horiz-adv-x="592" d="M556 64q0 -27 -18 -45.5t-43 -18.5h-381q-30 0 -54 22.5t-24 57.5q0 26 15 47l306 415h-259q-26 0 -44 18.5t-18 45.5q0 25 18 43t44 18h377q29 0 51 -22t22 -56q0 -29 -17 -52l-303 -412h267q25 0 43 -18t18 -43z" />
73
+ <glyph unicode="[" horiz-adv-x="280" d="M269 -147q0 -18 -12 -30.5t-29 -12.5h-101q-33 0 -56.5 23.5t-23.5 56.5v708q0 33 23.5 56.5t56.5 23.5h101q17 0 29 -12.5t12 -30.5q0 -17 -12 -29.5t-29 -12.5h-90v-698h90q17 0 29 -12.5t12 -29.5z" />
74
+ <glyph unicode="\" horiz-adv-x="329" d="M314 16q0 -16 -12 -29t-32 -13q-14 0 -25.5 8t-16.5 22l-211 633q-2 3 -2 6.5v6.5q0 17 12 30t32 13q14 0 25.5 -8t16.5 -22l211 -633q1 -4 1.5 -7t0.5 -7z" />
75
+ <glyph unicode="]" horiz-adv-x="280" d="M233 -110q0 -33 -23.5 -56.5t-56.5 -23.5h-100q-17 0 -29.5 12.5t-12.5 30.5q0 17 12.5 29.5t29.5 12.5h89v698h-89q-17 0 -29.5 12.5t-12.5 31.5q0 17 12.5 29t29.5 12h100q33 0 56.5 -23.5t23.5 -56.5v-708v0z" />
76
+ <glyph unicode="^" horiz-adv-x="441" d="M401 369q0 -15 -11.5 -28.5t-31.5 -13.5q-12 0 -23 6.5t-16 18.5l-99 228l-98 -228q-5 -12 -16 -18.5t-23 -6.5q-19 0 -31 12t-12 29q0 9 4 17l116 249q8 18 25 28.5t38 10.5q19 0 35.5 -11t24.5 -28l115 -249q3 -8 3 -16z" />
77
+ <glyph unicode="_" horiz-adv-x="564" d="M573 -82q0 -18 -12 -30.5t-29 -12.5h-499q-17 0 -29.5 12.5t-12.5 30.5q0 17 12.5 29.5t29.5 12.5h499q17 0 29 -12.5t12 -29.5z" />
78
+ <glyph unicode="`" horiz-adv-x="251" d="M214 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
79
+ <glyph unicode="a" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5z" />
80
+ <glyph unicode="b" horiz-adv-x="586" d="M553 241q0 -60 -16.5 -107.5t-45 -79.5t-67.5 -49t-85 -17q-44 0 -82 19t-67 55v-5q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-190q29 37 67.5 55.5t81.5 18.5q46 0 85.5 -17.5t68 -50.5t44.5 -80 t16 -106zM422 241q0 31 -9 57t-25 45t-38.5 29t-50.5 10q-31 0 -62 -16t-47 -40v-171q16 -23 47 -38.5t62 -15.5q28 0 50.5 10t38.5 28.5t25 44t9 57.5z" />
81
+ <glyph unicode="c" horiz-adv-x="499" d="M461 77q0 -11 -5 -22t-15 -19q-26 -21 -64 -34.5t-89 -13.5q-56 0 -103 18.5t-81 52.5t-53 80.5t-19 102.5q0 55 19 101.5t53 80.5t81 52.5t103 18.5q28 0 54.5 -5t48.5 -13.5t38.5 -20.5t24.5 -27q6 -11 6 -23q0 -26 -19.5 -40t-40.5 -14q-19 0 -35 10t-34 15t-37 5 q-29 0 -53 -10t-41.5 -28.5t-27 -44.5t-9.5 -57q0 -32 9.5 -57.5t27 -44.5t41.5 -29t53 -10q39 0 72 21q16 10 34 10q23 0 42 -15t19 -40z" />
82
+ <glyph unicode="d" horiz-adv-x="586" d="M523 57q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v5q-29 -36 -67 -55t-82 -19q-46 0 -85 17t-67.5 49t-45 79.5t-16.5 107.5q0 59 16 106t44.5 80t68 50.5t85.5 17.5q43 0 81.5 -18.5t67.5 -55.5v189q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5 t18.5 -44.5v-553zM395 156v171q-16 24 -47 39.5t-63 15.5q-27 0 -49.5 -10t-38.5 -29t-25 -45t-9 -57t9 -57t25 -44.5t38.5 -28.5t49.5 -10q32 0 63 15.5t47 39.5z" />
83
+ <glyph unicode="e" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238z" />
84
+ <glyph unicode="f" horiz-adv-x="327" d="M368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26 q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
85
+ <glyph unicode="g" horiz-adv-x="585" d="M522 33q0 -69 -24 -113.5t-62 -70t-84 -35.5t-91 -10q-22 0 -50 3t-55 10t-49 18.5t-33 28.5q-8 13 -8 28q0 23 16 38t37 15q14 0 27 -7q26 -16 54.5 -23t60.5 -7q23 0 46.5 5.5t43 19.5t31.5 37.5t12 59.5v49q-29 -36 -66.5 -56t-82.5 -20t-84 16t-67.5 47t-45 77 t-16.5 106q0 59 16 105t44.5 77.5t67.5 47.5t85 16q44 0 82 -18.5t67 -55.5v5q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5v-393zM394 171v156q-8 12 -20 22t-26.5 17.5t-30.5 11.5t-32 4q-27 0 -49.5 -9t-38.5 -26.5t-25 -42t-9 -55.5t9 -55.5t25 -42t38.5 -26.5 t49.5 -9q16 0 32 4t30.5 11.5t26.5 17.5t20 22z" />
86
+ <glyph unicode="h" horiz-adv-x="580" d="M517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v237q0 25 -6.5 42t-18 27t-28 14.5t-37.5 4.5q-18 0 -34.5 -5t-30.5 -13t-25.5 -18t-19.5 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18 q26 0 44 -18t18 -44v-191q12 14 28.5 27.5t38.5 24t47.5 17t55.5 6.5q80 0 118.5 -40.5t38.5 -111.5v-286v0z" />
87
+ <glyph unicode="i" horiz-adv-x="253" d="M126 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370z" />
88
+ <glyph unicode="j" horiz-adv-x="253" d="M126 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM190 -13q0 -83 -42.5 -133t-129.5 -50q-27 0 -48.5 3t-36 10t-22 18.5t-7.5 27.5q0 22 15 36.5t35 14.5q11 0 18.5 -3t24.5 -3q29 0 47.5 19t18.5 60v440q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-440z" />
89
+ <glyph unicode="k" horiz-adv-x="535" d="M477 58q0 -23 -17.5 -43.5t-45.5 -20.5q-15 0 -29.5 6.5t-23.5 20.5l-113 165l-58 -62v-67q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-343l171 202q17 20 43 20q24 0 42 -18t18 -42q0 -21 -14 -38 l-112 -128l127 -170q12 -17 12 -36z" />
90
+ <glyph unicode="l" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554v0z" />
91
+ <glyph unicode="m" horiz-adv-x="852" d="M790 57q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v248q0 34 -16.5 55.5t-55.5 21.5q-34 0 -60 -18t-40 -38v-269q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v248q0 34 -16.5 55.5t-55.5 21.5q-33 0 -59.5 -18.5t-40.5 -38.5v-268 q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7q7 11 22.5 24t36.5 24.5t46 19t53 7.5q54 0 87 -23t47 -65q10 16 27 32t38.5 28.5t47 20t53.5 7.5q67 0 104.5 -35.5t37.5 -110.5v-292v0z" />
92
+ <glyph unicode="n" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v235q0 51 -24 70.5t-65 19.5q-19 0 -35.5 -5t-30.5 -13t-25 -18t-19 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7 q12 14 28.5 27.5t38 24t47 17t55.5 6.5q80 0 118.5 -41.5t38.5 -112.5v-284v0z" />
93
+ <glyph unicode="o" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5z" />
94
+ <glyph unicode="p" horiz-adv-x="583" d="M553 242q0 -60 -16 -107.5t-44.5 -80t-68 -49.5t-85.5 -17q-43 0 -81.5 18t-67.5 56v-190q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v555q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-5q28 35 66 54t83 19q46 0 85.5 -17t68 -49t44.5 -79.5t16 -107.5zM421 242 q0 31 -9 57t-25 44.5t-38.5 28.5t-49.5 10q-31 0 -62 -16t-47 -39v-171q16 -23 47 -39t62 -16q27 0 49.5 10t38.5 29t25 44.5t9 57.5z" />
95
+ <glyph unicode="q" horiz-adv-x="583" d="M521 -127q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v189q-29 -38 -67.5 -56t-81.5 -18q-47 0 -86 17t-67.5 49.5t-44.5 80t-16 107.5t16 107.5t44.5 79.5t67.5 49t86 17q45 0 83 -19t66 -54v4q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5 v-553zM393 156v171q-8 12 -20 22t-27 17.5t-31 11.5t-31 4q-27 0 -49.5 -10t-38.5 -28.5t-25 -44.5t-9 -57q0 -32 9 -57.5t25 -44.5t38.5 -29t49.5 -10q15 0 31 4.5t31 12t27 17.5t20 21z" />
96
+ <glyph unicode="r" horiz-adv-x="360" d="M350 435q0 -29 -17.5 -45t-43.5 -20q-29 -4 -55.5 -16t-43.5 -35v-262q0 -26 -18 -44.5t-44 -18.5h-2q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-10q9 12 19.5 24.5t23.5 22.5t28 16.5t33 6.5q28 0 42 -15t14 -37z" />
97
+ <glyph unicode="s" horiz-adv-x="477" d="M446 143q0 -33 -14 -61.5t-40.5 -49t-65.5 -32.5t-89 -12q-24 0 -53 4t-56.5 12t-50.5 20t-34 28q-9 12 -9 27q0 23 16.5 38t36.5 15q15 0 26 -7q29 -17 63.5 -28t66.5 -11q42 0 61.5 14.5t19.5 37.5q0 20 -21.5 30t-53 16.5l-69 14.5t-69 24t-53 44t-21.5 76 q0 30 13 57.5t38.5 48.5t62 33.5t84.5 12.5q24 0 50.5 -3.5t51 -11t44.5 -18.5t30 -26q8 -11 8 -25q0 -20 -15 -34t-35 -14q-14 0 -24 6q-23 14 -51.5 21.5t-57.5 7.5q-35 0 -55.5 -14t-20.5 -34q0 -18 21 -27t53 -15.5t69 -15t69 -25.5t53 -46t21 -78z" />
98
+ <glyph unicode="t" horiz-adv-x="338" d="M327 46q0 -12 -4.5 -22.5t-15.5 -18.5t-31 -12.5t-51 -4.5q-67 0 -102 33.5t-35 98.5v252h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v75q0 26 18.5 44.5t46.5 18.5q26 0 44.5 -18.5t18.5 -44.5v-75h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-218 q0 -29 14.5 -41t29.5 -12h5.5h5.5q27 0 41.5 -16t14.5 -39z" />
99
+ <glyph unicode="u" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0z" />
100
+ <glyph unicode="v" horiz-adv-x="513" d="M491 425q0 -13 -4 -22l-141 -349q-11 -27 -35 -43.5t-53 -16.5h-2q-29 0 -53.5 16.5t-35.5 43.5l-141 349q-5 12 -5 23q0 23 18 42.5t47 19.5q19 0 34.5 -10.5t22.5 -28.5l113 -302l113 301q7 19 23 29.5t35 10.5q29 0 46.5 -19.5t17.5 -43.5z" />
101
+ <glyph unicode="w" horiz-adv-x="769" d="M750 428q0 -9 -3 -18l-108 -354q-8 -27 -31.5 -44.5t-51.5 -17.5h-2q-29 0 -52.5 17t-31.5 45l-85 273l-85 -273q-8 -27 -31.5 -44.5t-52.5 -17.5h-2q-29 0 -52.5 17.5t-31.5 44.5l-108 354q-3 9 -3 18q0 23 17.5 42t46.5 19q20 0 37.5 -12.5t22.5 -32.5l79 -286l91 280 q8 23 27.5 37t45.5 14q23 0 42.5 -14t27.5 -37l91 -280l79 286q5 20 22.5 32.5t38.5 12.5q28 0 45.5 -18.5t17.5 -42.5z" />
102
+ <glyph unicode="x" horiz-adv-x="504" d="M455 52q0 -21 -15.5 -39.5t-42.5 -18.5q-14 0 -27 6t-21 19l-97 144l-99 -145q-17 -24 -46 -24q-24 0 -41.5 17.5t-17.5 40.5q0 18 10 32l113 164l-103 151q-10 14 -10 32q0 21 16.5 39t42.5 18q31 0 49 -26l86 -128l84 127q8 13 21.5 20t28.5 7q26 0 42.5 -17.5 t16.5 -39.5q0 -18 -10 -32l-104 -151l114 -164q10 -14 10 -32z" />
103
+ <glyph unicode="y" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5z" />
104
+ <glyph unicode="z" horiz-adv-x="479" d="M442 57q0 -24 -16 -40.5t-38 -16.5h-289q-25 0 -44 18.5t-19 46.5q0 11 3.5 21t10.5 19l210 267h-169q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h285q23 0 42 -17.5t19 -44.5q0 -24 -13 -40l-213 -270h177q22 0 38 -16t16 -38z" />
105
+ <glyph unicode="{" horiz-adv-x="288" d="M277 -148q0 -17 -11.5 -29.5t-37.5 -12.5h-18q-30 0 -58 11t-49.5 31.5t-34.5 50t-13 66.5v172q0 18 -5 34t-19 24q-17 11 -25.5 19.5t-8.5 25.5t8.5 25.5t25.5 19.5q14 8 19 24t5 34v171q0 37 13 66.5t34.5 50.5t49.5 32t58 11h18q26 0 37.5 -12.5t11.5 -29.5 q0 -18 -11.5 -30.5t-37.5 -12.5h-18q-26 0 -44 -20t-18 -54v-185q0 -32 -10.5 -55.5t-35.5 -34.5q25 -11 35.5 -34.5t10.5 -55.5v-184q0 -34 18 -54.5t44 -20.5h18q26 0 37.5 -12.5t11.5 -30.5z" />
106
+ <glyph unicode="|" horiz-adv-x="216" d="M151 16q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v636q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-636v0z" />
107
+ <glyph unicode="}" horiz-adv-x="288" d="M291 244q0 -17 -8.5 -25.5t-25.5 -19.5q-14 -8 -19 -24t-5 -34v-172q0 -37 -13 -66.5t-34.5 -50t-49.5 -31.5t-58 -11h-18q-26 0 -37.5 12.5t-11.5 29.5q0 18 11.5 30.5t37.5 12.5h18q26 0 44 20.5t18 54.5v184q0 32 10.5 55.5t35.5 34.5q-25 11 -35.5 34.5t-10.5 55.5 v185q0 34 -18 54t-44 20h-18q-26 0 -37.5 12.5t-11.5 30.5q0 17 11.5 29.5t37.5 12.5h18q30 0 58 -11t49.5 -32t34.5 -50.5t13 -66.5v-171q0 -18 5 -34t19 -24q17 -11 25.5 -19.5t8.5 -25.5z" />
108
+ <glyph unicode="~" horiz-adv-x="510" d="M480 615q-5 -40 -14 -76.5t-25.5 -64.5t-42.5 -45t-63 -17q-33 0 -53 13t-33 32.5t-20.5 42.5l-14.5 42.5t-15.5 32.5t-23.5 13q-12 0 -21.5 -11t-16.5 -29.5t-12 -42.5t-8 -50q-2 -17 -14 -27.5t-29 -10.5q-23 0 -33.5 14.5t-10.5 33.5q5 39 14.5 75.5t26.5 64t42 44.5 t62 17q32 0 52.5 -13t33.5 -33t20.5 -42.5l14.5 -42.5t15.5 -33t23.5 -13q13 0 22.5 11t16.5 29.5t12 43.5t8 52q2 16 14 26.5t29 10.5q21 0 32 -14t11 -33z" />
109
+ <glyph unicode="&#xa0;" />
110
+ <glyph unicode="&#xa1;" d="M207 414q0 -33 -23.5 -57t-56.5 -24t-57 24t-24 57q0 16 6.5 30.5t17.5 25.5t25.5 17.5t31.5 6.5q16 0 31 -6.5t25.5 -17.5t17 -25.5t6.5 -30.5zM201 -116q0 -31 -21.5 -52t-53.5 -21q-31 0 -51.5 21t-20.5 52q0 5 1 24t2 47t2.5 62t3.5 69.5t3.5 69.5t2.5 62 q1 23 17.5 39t41.5 16q23 0 39.5 -16t17.5 -39q1 -28 3 -62t3.5 -69.5t3.5 -69.5t3 -62t2 -47t1 -24z" />
111
+ <glyph unicode="&#xa2;" horiz-adv-x="499" d="M461 77q0 -10 -5 -22q-13 -25 -48.5 -41.5t-74.5 -22.5v-46q0 -19 -13 -32t-32 -13q-20 0 -33.5 13t-13.5 32v47q-47 7 -85 28.5t-66 54t-43 75t-15 92.5q0 49 15 91.5t43 75t66 54t85 28.5v29q0 19 13.5 32t33.5 13q19 0 32 -13t13 -32v-28q41 -6 75.5 -23t46.5 -42 q5 -12 5 -21q0 -26 -19.5 -40t-40.5 -14q-5 0 -8.5 0.5t-7.5 1.5q-14 5 -25.5 11.5t-25.5 10.5v-269q13 4 25 11t26 11q7 3 16 3q23 0 42 -15t19 -40zM241 111v261q-36 -15 -57 -48.5t-21 -81.5t21 -82t57 -49z" />
112
+ <glyph unicode="&#xa3;" horiz-adv-x="550" d="M524 60q0 -20 -10.5 -34t-28.5 -22.5t-42 -12.5t-52 -4q-33 0 -56.5 7t-43.5 15l-39 15t-42 7q-17 0 -38 -5.5t-43 -15.5q-6 -3 -12.5 -4t-12.5 -1q-23 0 -38 15.5t-15 37.5q0 14 7 27t22 23q35 23 55 50.5t20 56.5q0 14 -3.5 27.5t-8.5 26.5h-86q-17 0 -28.5 12 t-11.5 30q0 16 11.5 27.5t28.5 11.5h34l-17.5 26.5t-15 28t-10 31t-3.5 34.5q0 48 21 86t55.5 65t78 41.5t88.5 14.5q34 0 66.5 -6t60 -17t47.5 -27t28 -35q2 -5 3 -10.5t1 -11.5q0 -28 -18.5 -44t-43.5 -16q-14 0 -25 4q-16 6 -28 14.5t-23 15.5t-23 12t-28 5 q-22 0 -41 -6.5t-33.5 -19t-22.5 -30t-8 -38.5q0 -19 4.5 -34.5t11.5 -29.5t15.5 -27l17.5 -26h111q16 0 27.5 -12t11.5 -29t-11.5 -28.5t-27.5 -11.5h-80q0 -5 0.5 -9.5t0.5 -9.5q0 -35 -18.5 -64.5t-45.5 -46.5q11 4 24.5 5.5t24.5 1.5q22 0 38 -5t30.5 -11.5t29 -11.5 t33.5 -5q8 0 16 1.5t16 3.5t15.5 3.5t15.5 1.5q24 0 44 -17t20 -46z" />
113
+ <glyph unicode="&#xa4;" horiz-adv-x="623" d="M582 116q0 -20 -15.5 -36.5t-38.5 -16.5q-22 0 -37 15l-43 42q-29 -17 -63 -25.5t-74 -8.5q-41 0 -75 9t-63 26l-41 -42q-8 -8 -18 -11.5t-20 -3.5q-20 0 -36.5 15t-16.5 37t15 37l41 41q-20 30 -30 65.5t-10 73.5t10 73.5t30 65.5l-42 43q-15 15 -15 36q0 20 15 36.5 t38 16.5t38 -15l44 -44q28 16 62 25t74 9t73.5 -9t62.5 -25l44 44q15 15 37 15q21 0 37.5 -15t16.5 -38q0 -22 -15 -37l-41 -41q20 -30 30.5 -66t10.5 -74q0 -39 -11 -75t-31 -66l41 -40q16 -16 16 -36zM439 333q0 27 -8.5 51t-24.5 42t-40 28.5t-55 10.5q-30 0 -54 -10.5 t-40 -28.5t-24.5 -42t-8.5 -51t8.5 -51t24.5 -42.5t40 -29t54 -10.5q31 0 55 10.5t40 29t24.5 42.5t8.5 51z" />
114
+ <glyph unicode="&#xa5;" horiz-adv-x="645" d="M629 153q0 -16 -11 -27t-27 -11h-197v-51q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v51h-196q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h196v80h-195q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h143l-143 221q-10 14 -10 34q0 23 18.5 44t48.5 21 q17 0 33 -8.5t26 -23.5l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45q0 -19 -10 -35l-142 -220h146q16 0 27 -11.5t11 -28.5t-11 -28t-27 -11h-197v-80h197q16 0 27 -11.5t11 -28.5z" />
115
+ <glyph unicode="&#xa6;" horiz-adv-x="216" d="M151 407q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v245q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-245zM151 16q0 -17 -12.5 -29.5t-30.5 -12.5q-17 0 -29.5 12.5t-12.5 29.5v245q0 17 12.5 29t31.5 12q17 0 29 -12t12 -29v-245z" />
116
+ <glyph unicode="&#xa7;" horiz-adv-x="484" d="M446 75q0 -37 -15.5 -66t-43.5 -49t-66.5 -30.5t-83.5 -10.5q-28 0 -57.5 4.5t-55.5 13t-47 20.5t-32 27q-10 11 -10 26q0 20 14 34.5t32 14.5q16 0 27 -8q26 -18 60 -31t69 -13q39 0 63 14.5t24 43.5q0 24 -21.5 36t-53 20.5t-69 17t-69 25t-53 43.5t-21.5 74 q0 25 9 45.5t23 36.5t31.5 26.5t34.5 16.5q-48 18 -73 49.5t-25 76.5q0 31 14.5 57.5t40.5 46t62.5 30.5t80.5 11q35 0 68 -6t59 -16.5t41.5 -25t15.5 -32.5q0 -20 -13.5 -33t-32.5 -13q-14 0 -24 7q-25 15 -53 22.5t-56 7.5q-37 0 -58.5 -14t-21.5 -40q0 -21 21 -31.5 t53 -18l69 -15.5t69 -24t53 -44t21 -75q0 -42 -21 -75t-62 -53q36 -16 59.5 -44.5t23.5 -78.5zM321 302q0 16 -7 28t-18.5 20.5t-26.5 14t-31 9.5q-46 -11 -62 -30t-16 -44q0 -18 9 -29.5t23.5 -20t33 -13.5t37.5 -9q29 13 43.5 30.5t14.5 43.5z" />
117
+ <glyph unicode="&#xa8;" horiz-adv-x="295" d="M321 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM109 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
118
+ <glyph unicode="&#xa9;" horiz-adv-x="778" d="M734 334q0 -71 -27 -134t-74 -110t-109.5 -74t-134.5 -27q-71 0 -134 27t-110 74t-74 110t-27 134q0 72 27 134.5t74 109.5t110 74t134 27q72 0 134.5 -27t109.5 -74t74 -109.5t27 -134.5zM698 334q0 64 -24.5 120t-66.5 98t-98 66.5t-120 24.5q-63 0 -119.5 -24.5 t-98.5 -66.5t-66.5 -98t-24.5 -120q0 -63 24.5 -119.5t66.5 -98.5t98.5 -66.5t119.5 -24.5q64 0 120 24.5t98 66.5t66.5 98.5t24.5 119.5zM535 190q0 -8 -6 -14q-26 -25 -60 -39t-75 -14q-43 0 -81 16t-66 44.5t-44.5 67t-16.5 84.5t16.5 84.5t44.5 66.5t66 43.5t81 15.5 q41 0 74.5 -13.5t59.5 -37.5q6 -6 6 -14t-6 -15t-16 -7q-9 0 -15 6q-20 19 -47 30t-56 11q-33 0 -62.5 -12.5t-51.5 -35t-35 -53.5t-13 -69q0 -37 13 -68.5t35 -54.5t51.5 -36t62.5 -13q30 0 57.5 11t47.5 31q4 6 14 6q9 0 15.5 -6t6.5 -15z" />
119
+ <glyph unicode="&#xaa;" horiz-adv-x="385" d="M335 365q0 -19 -13 -32t-32 -13q-17 -3 -32 8t-15 29v1q-14 -15 -39 -27.5t-63 -12.5q-20 0 -39.5 6.5t-35.5 19.5t-25.5 32.5t-9.5 45.5t9.5 45t25.5 31.5t35.5 18.5t39.5 6q38 0 63 -11.5t39 -26.5v40q0 25 -19 39.5t-50 14.5q-17 0 -35.5 -6.5t-35.5 -17.5 q-8 -5 -16 -5q-12 0 -23.5 9.5t-11.5 25.5q0 9 5 17q8 12 24.5 21t36 14.5t39 8t33.5 2.5q28 0 54 -6t46 -20t32.5 -38.5t12.5 -60.5v-158zM243 404v36q-10 13 -27.5 20t-36.5 7q-23 0 -40 -11.5t-17 -33.5q0 -23 17 -35t40 -12q19 0 36.5 7.5t27.5 21.5z" />
120
+ <glyph unicode="&#xab;" horiz-adv-x="527" d="M447 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112q-11 13 -16.5 28t-5.5 31t6 31.5t17 28.5l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29zM257 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112 q-22 25 -22 59t23 60l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29z" />
121
+ <glyph unicode="&#xac;" horiz-adv-x="515" d="M475 235q0 -17 -12 -28.5t-29 -11.5t-28.5 11.5t-11.5 28.5v153h-332q-16 0 -27.5 12t-11.5 29q0 16 11.5 27.5t27.5 11.5h333q33 0 56.5 -23.5t23.5 -56.5v-153v0z" />
122
+ <glyph unicode="&#xad;" horiz-adv-x="300" d="M223 296q22 0 37.5 -15.5t15.5 -37.5q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146v0z" />
123
+ <glyph unicode="&#xae;" horiz-adv-x="494" d="M459 465q0 -44 -16.5 -82.5t-45 -67.5t-67.5 -45.5t-83 -16.5t-82.5 16.5t-67.5 45.5t-45.5 67.5t-16.5 82.5t16.5 83t45.5 67.5t67.5 45t82.5 16.5t83 -16.5t67.5 -45t45 -67.5t16.5 -83zM427 465q0 37 -14 70t-38.5 57.5t-57.5 38.5t-70 14q-38 0 -70.5 -14t-57 -38.5 t-38.5 -57.5t-14 -70t14 -70t38.5 -57.5t57 -38.5t70.5 -14q37 0 70 14t57.5 38.5t38.5 57.5t14 70zM344 512q0 -20 -7.5 -34t-18 -22.5t-21 -12t-15.5 -3.5l50 -73q4 -5 4 -12q0 -8 -5.5 -12.5t-12.5 -4.5q-10 0 -16 10l-60 91h-42v-86q0 -7 -5 -11.5t-13 -4.5 q-7 0 -11.5 4.5t-4.5 11.5v201q0 14 9.5 23t23.5 9h66q31 0 55 -20t24 -54zM309 512q0 20 -14 32t-30 12h-65v-86h65q16 0 30 11.5t14 30.5z" />
124
+ <glyph unicode="&#xaf;" horiz-adv-x="363" d="M363 599q0 -16 -10.5 -26.5t-24.5 -10.5h-293q-14 0 -24.5 10.5t-10.5 26.5q0 14 10.5 24.5t24.5 10.5h293q14 0 24.5 -10.5t10.5 -24.5z" />
125
+ <glyph unicode="&#xb0;" horiz-adv-x="311" d="M290 541q0 -28 -10.5 -52.5t-29 -42.5t-43 -28.5t-52.5 -10.5t-52.5 10.5t-43 28.5t-29 42.5t-10.5 52.5t10.5 53t29 43.5t43 29t52.5 10.5t52.5 -10.5t43 -29t29 -43.5t10.5 -53zM221 541q0 28 -19.5 47.5t-46.5 19.5q-28 0 -46.5 -19.5t-18.5 -47.5q0 -27 18.5 -46 t46.5 -19q27 0 46.5 19t19.5 46z" />
126
+ <glyph unicode="&#xb1;" horiz-adv-x="504" d="M481 366q0 -17 -11 -28.5t-27 -11.5h-147v-167q0 -18 -12.5 -30.5t-31.5 -12.5q-18 0 -30.5 12.5t-12.5 30.5v167h-148q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h148v161q0 17 12.5 29.5t32.5 12.5q17 0 29.5 -12.5t12.5 -29.5v-161h147q16 0 27 -11t11 -27zM481 40 q0 -17 -11 -28.5t-27 -11.5h-382q-16 0 -27 11.5t-11 28.5q0 16 11 27t27 11h382q16 0 27 -11t11 -27z" />
127
+ <glyph unicode="&#xb2;" horiz-adv-x="397" d="M366 461q0 -17 -11 -28.5t-26 -11.5h-251q-16 0 -27 11.5t-11 29.5q0 11 5 21t15 17l99.5 71.5t62 52t31.5 39t9 32.5q0 14 -5.5 24.5t-14.5 17t-21.5 10t-26.5 3.5q-23 0 -45 -7.5t-40 -20.5q-11 -8 -25 -8q-15 0 -26.5 10.5t-11.5 27.5q0 12 7 22q8 13 25.5 23t38 17 t42 10t37.5 3q34 0 63.5 -8t51.5 -24t34 -39.5t12 -53.5q0 -24 -10.5 -47.5t-32 -48t-54 -51t-75.5 -57.5h144q15 0 26 -11t11 -26z" />
128
+ <glyph unicode="&#xb3;" horiz-adv-x="397" d="M363 532q0 -53 -45.5 -85.5t-120.5 -32.5q-26 0 -54 5t-51 14.5t-37.5 22.5t-14.5 30t12.5 28.5t28.5 11.5q11 0 22 -6q22 -15 46 -22t45 -7q35 0 54 13t19 34q0 29 -25 39t-63 10h-15q-14 0 -25 8.5t-11 28.5q0 19 11 28t25 9h14q40 0 61 9.5t21 35.5q0 23 -20.5 33.5 t-52.5 10.5q-21 0 -42.5 -6t-40.5 -20q-10 -7 -23 -7q-14 0 -24.5 10.5t-10.5 26.5q0 9 6 20q15 22 55 37.5t90 15.5q77 0 118 -30t41 -79q0 -18 -7.5 -33.5t-19.5 -27.5t-28 -19.5t-34 -10.5q15 -1 32 -7.5t31.5 -18.5t23.5 -29.5t9 -39.5z" />
129
+ <glyph unicode="&#xb4;" horiz-adv-x="251" d="M196 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
130
+ <glyph unicode="&#xb5;" horiz-adv-x="593" d="M580 47q0 -26 -15 -43t-47 -17q-17 0 -35.5 4t-35.5 14t-31 27t-21 42q-21 -37 -56 -61.5t-79 -24.5q-27 0 -44.5 8.5t-25.5 19.5v-144q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v555q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -49 24 -69.5t66 -20.5 q18 0 34 5t30 12.5t25.5 17.5t19.5 21v271q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-282q0 -20 10 -29.5t22 -17t22 -18.5t10 -33z" />
131
+ <glyph unicode="&#xb6;" horiz-adv-x="449" d="M403 -76q0 -12 -9 -21t-23 -9q-13 0 -22 9t-9 21v681h-78v-681q0 -12 -9 -21t-23 -9q-13 0 -22 9t-9 21v399q-36 0 -67 13.5t-54.5 37t-37 54.5t-13.5 67t13.5 67t37 54.5t54.5 37t67 13.5h142q26 0 44 -18t18 -44v-681v0z" />
132
+ <glyph unicode="&#xb7;" d="M209 244q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25.5 17.5t-17.5 25.5t-6.5 30.5q0 33 24 57t57 24t57 -24t24 -57z" />
133
+ <glyph unicode="&#xb8;" horiz-adv-x="221" d="M221 -111q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l21 56q5 13 15 21t22 8 q10 0 17 -6t7 -16q0 -8 -3 -15l-19 -46q17 10 36 10q28 0 47.5 -19t19.5 -51z" />
134
+ <glyph unicode="&#xb9;" horiz-adv-x="286" d="M226 463q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4q23 0 39 -15t16 -37v-311v0z" />
135
+ <glyph unicode="&#xba;" horiz-adv-x="405" d="M375 483q0 -33 -12 -63t-34 -52.5t-54.5 -36t-72.5 -13.5t-71.5 13.5t-54 36t-34.5 52.5t-12 63t12 63t34.5 52.5t54 36t71.5 13.5t72.5 -13.5t54.5 -36t34 -52.5t12 -63zM280 483q0 42 -20.5 65.5t-57.5 23.5t-57 -23.5t-20 -65.5t20 -66.5t57 -24.5t57.5 24.5 t20.5 66.5z" />
136
+ <glyph unicode="&#xbb;" horiz-adv-x="527" d="M466 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q23 -26 23 -60zM276 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29 l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q11 -13 17 -28.5t6 -31.5z" />
137
+ <glyph unicode="&#xbc;" horiz-adv-x="833" d="M814 125q0 -17 -11 -28t-25 -11h-23v-45q0 -20 -14 -33.5t-34 -13.5t-33.5 13.5t-13.5 33.5v45h-163q-16 0 -27.5 12t-11.5 31q0 7 1.5 13t5.5 12l136 213q11 18 30 28.5t41 10.5q17 0 32 -6.5t26.5 -17t18 -25t6.5 -30.5v-166h23q14 0 25 -11t11 -25zM618 641 q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM226 309q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4 q23 0 39 -15t16 -37v-311zM660 161v158l-101 -158h101z" />
138
+ <glyph unicode="&#xbd;" horiz-adv-x="867" d="M835 40q0 -17 -11 -28.5t-26 -11.5h-251q-16 0 -27 11.5t-11 29.5q0 11 5 21t15 17l99.5 71.5t62 52t31.5 39t9 32.5q0 14 -5.5 24.5t-14.5 17t-21.5 10t-26.5 3.5q-23 0 -45 -7.5t-40 -20.5q-11 -8 -25 -8q-15 0 -26.5 10.5t-11.5 27.5q0 12 7 22q8 13 25.5 23t38 17 t42 10t37.5 3q34 0 63.5 -8t51.5 -24t34 -39.5t12 -53.5q0 -24 -10.5 -47.5t-32 -48t-54 -51t-75.5 -57.5h144q15 0 26 -11t11 -26zM618 641q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM226 309 q0 -20 -14 -34t-35 -14q-20 0 -34 14t-14 34v235l-45 -46q-11 -11 -26 -11t-27.5 11.5t-12.5 28.5q0 16 12 28l102 101q8 8 18 12t21 4q23 0 39 -15t16 -37v-311z" />
139
+ <glyph unicode="&#xbe;" horiz-adv-x="921" d="M902 125q0 -17 -11 -28t-25 -11h-23v-45q0 -20 -14 -33.5t-34 -13.5t-33.5 13.5t-13.5 33.5v45h-163q-16 0 -27.5 12t-11.5 31q0 7 1.5 13t5.5 12l136 213q11 18 30 28.5t41 10.5q17 0 32 -6.5t26.5 -17t18 -25t6.5 -30.5v-166h23q14 0 25 -11t11 -25zM705 641 q0 -8 -5 -16l-394 -617q-9 -14 -26 -14q-14 0 -23.5 9t-9.5 22q0 9 5 17l394 617q9 14 26 14q13 0 23 -9.5t10 -22.5zM363 378q0 -53 -45.5 -85.5t-120.5 -32.5q-26 0 -54 5t-51 14.5t-37.5 22.5t-14.5 30t12.5 28.5t28.5 11.5q11 0 22 -6q22 -15 46 -22t45 -7q35 0 54 13 t19 34q0 29 -25 39t-63 10h-15q-14 0 -25 8.5t-11 28.5q0 19 11 28t25 9h14q40 0 61 9.5t21 35.5q0 23 -20.5 33.5t-52.5 10.5q-21 0 -42.5 -6t-40.5 -20q-10 -7 -23 -7q-14 0 -24.5 10.5t-10.5 26.5q0 9 6 20q15 22 55 37.5t90 15.5q77 0 118 -30t41 -79q0 -18 -7.5 -33.5 t-19.5 -27.5t-28 -19.5t-34 -10.5q15 -1 32 -7.5t31.5 -18.5t23.5 -29.5t9 -39.5zM748 161v158l-101 -158h101z" />
140
+ <glyph unicode="&#xbf;" horiz-adv-x="398" d="M311 413q0 -33 -24 -57t-57 -24t-57 24t-24 57t24 57t57 24t57 -24t24 -57zM426 -88q0 -15 -6 -27q-10 -20 -32.5 -35t-50 -24.5t-56.5 -14.5t-53 -5q-48 0 -86.5 11.5t-65.5 32.5t-41.5 50t-14.5 64q0 37 12.5 63t31 45.5t40 34.5t40 29.5t31 30.5t12.5 37 q0 10 -1.5 14.5t-1.5 11.5q0 20 14 37t42 17q14 0 27 -6t22.5 -17.5t15.5 -29t6 -40.5q0 -30 -11 -51.5t-27 -38.5t-35 -30t-35 -25.5t-27 -26t-11 -30.5q0 -23 18 -40t60 -17q23 0 43.5 7t38.5 19t42 12t41.5 -15.5t17.5 -42.5z" />
141
+ <glyph unicode="&#xc0;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM369 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
142
+ <glyph unicode="&#xc1;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM475 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
143
+ <glyph unicode="&#xc2;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM469 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
144
+ <glyph unicode="&#xc3;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM504 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5 q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
145
+ <glyph unicode="&#xc4;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM516 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM304 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
146
+ <glyph unicode="&#xc5;" horiz-adv-x="684" d="M656 70q0 -28 -20.5 -52t-55.5 -24q-23 0 -42 12.5t-27 34.5l-26 72h-286l-27 -72q-8 -22 -27.5 -34.5t-42.5 -12.5q-34 0 -54.5 23.5t-20.5 52.5q0 16 5 27l195 501q13 34 43.5 54.5t65.5 20.5q38 3 72.5 -17.5t48.5 -57.5l194 -501q5 -15 5 -27zM446 238l-104 287 l-104 -287h208zM447 793q0 -22 -8 -41t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM389 793q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33 t33 -14q20 0 33 14t13 33z" />
147
+ <glyph unicode="&#xc6;" horiz-adv-x="968" d="M932 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v33h-235l-51 -88q-9 -16 -24.5 -24t-32.5 -8q-30 0 -49.5 21.5t-19.5 48.5q0 20 10 37l303 499q20 32 53 50t69 18h394q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-274v-141h267q25 0 43 -18.5 t18 -44.5t-18 -44t-43 -18h-267v-151h274q25 0 43 -18t18 -43zM454 238v287l-167 -287h167z" />
148
+ <glyph unicode="&#xc7;" horiz-adv-x="687" d="M389 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-45 0 -83.5 -16.5t-66.5 -46t-43.5 -69.5t-15.5 -87t15.5 -87.5t43.5 -69.5t66.5 -45.5t83.5 -16.5q38 0 73.5 16t63.5 47q11 11 25 17t29 6 q28 0 46.5 -18.5t18.5 -43.5q0 -11 -3 -21t-11 -18q-36 -44 -90.5 -75t-134.5 -35l-16 -40q17 10 36 10q28 0 47.5 -19t19.5 -51q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25 q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l16 44q-67 7 -124 34.5t-99 72t-65.5 104.5t-23.5 131q0 77 27.5 140.5t75 109t112.5 70.5t140 25z" />
149
+ <glyph unicode="&#xc8;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM327 750q0 -13 -9.5 -23 t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
150
+ <glyph unicode="&#xc9;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM434 834q0 -17 -12 -27 l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
151
+ <glyph unicode="&#xca;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM428 750q0 -11 -9 -22.5 t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
152
+ <glyph unicode="&#xcb;" horiz-adv-x="583" d="M544 64q0 -27 -18 -45.5t-43 -18.5h-337q-33 0 -56.5 23.5t-23.5 56.5v507q0 33 23.5 56.5t56.5 23.5h337q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-275v-141h268q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-268v-151h275q25 0 43 -18t18 -43zM476 778q0 -29 -20 -48.5 t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM264 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
153
+ <glyph unicode="&#xcc;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM166 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
154
+ <glyph unicode="&#xcd;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM271 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
155
+ <glyph unicode="&#xce;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM265 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12 q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
156
+ <glyph unicode="&#xcf;" horiz-adv-x="274" d="M208 64q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-539v0zM313 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM101 778q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
157
+ <glyph unicode="&#xd0;" horiz-adv-x="742" d="M708 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v197h-37q-22 0 -37 15.5t-15 38.5q0 21 15 36t37 15h37v205q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM563 333q0 44 -13.5 82.5 t-39.5 66.5t-65.5 44t-90.5 16h-121v-160h104q21 0 36 -15t15 -38q0 -22 -15 -37t-36 -15h-104v-152h121q49 0 88 16.5t66 45t41 66.5t14 80z" />
158
+ <glyph unicode="&#xd1;" horiz-adv-x="729" d="M663 80q0 -17 -6.5 -32.5t-18.5 -27.5t-28 -19t-35 -7q-20 0 -39 9.5t-32 26.5l-296 405v-371q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v518q0 18 7 34t19.5 29t29.5 20.5t37 7.5q23 0 43.5 -10t34.5 -29l284 -386v355q0 29 21 49.5t51 20.5 q29 0 49.5 -20.5t20.5 -49.5v-523v0zM525 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5 t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
159
+ <glyph unicode="&#xd2;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM410 750q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
160
+ <glyph unicode="&#xd3;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM515 834q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
161
+ <glyph unicode="&#xd4;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM511 750q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32 l41 -62q5 -6 5 -17z" />
162
+ <glyph unicode="&#xd5;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM544 829q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28 q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
163
+ <glyph unicode="&#xd6;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-75 0 -139 25.5t-110.5 71.5t-72.5 109.5t-26 138.5t26 138.5t72.5 109.5t110.5 71.5t139 25.5q76 0 140 -25.5t110.5 -71.5t72.5 -109.5t26 -138.5zM585 333q0 47 -14.5 87t-41 69.5t-64 46t-83.5 16.5 t-83.5 -16.5t-63.5 -46t-40.5 -69.5t-14.5 -87t14.5 -87t40.5 -69t63.5 -46t83.5 -17t83.5 17t64 46t41 69t14.5 87zM557 778q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM345 778q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
164
+ <glyph unicode="&#xd7;" horiz-adv-x="504" d="M438 187q0 -17 -13 -28t-27 -11q-16 0 -27 11l-119 119l-118 -119q-11 -11 -27 -11t-28.5 11.5t-12.5 28.5q0 15 11 26l119 120l-118 118q-12 12 -12 27t11 28t28 13t29 -12l118 -119l119 120q11 11 26 11t28 -11.5t13 -28.5q0 -16 -11 -27l-119 -119l119 -120 q11 -13 11 -27z" />
165
+ <glyph unicode="&#xd8;" horiz-adv-x="765" d="M731 333q0 -75 -26 -138.5t-72.5 -109.5t-110.5 -71.5t-140 -25.5q-52 0 -98.5 12t-85.5 35l-20 -26q-13 -16 -31 -16q-17 0 -29.5 11.5t-12.5 28.5q0 12 8 25l20 26q-47 46 -73 109.5t-26 139.5q0 75 26 138.5t72.5 109.5t110.5 71.5t139 25.5q48 0 91.5 -10.5 t81.5 -30.5l15 19q12 15 32 15q16 0 29 -11t13 -28q0 -11 -8 -22l-14 -19q51 -47 80 -112.5t29 -145.5zM585 333q0 44 -12.5 81t-35.5 66l-259 -339q22 -13 48 -20t56 -7q46 0 83.5 17t64 46t41 69t14.5 87zM474 531q-20 10 -43 15.5t-49 5.5q-46 0 -83.5 -16.5t-63.5 -46 t-40.5 -69.5t-14.5 -87q0 -40 10 -74.5t29 -62.5z" />
166
+ <glyph unicode="&#xd9;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM394 750 q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
167
+ <glyph unicode="&#xda;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM500 834 q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
168
+ <glyph unicode="&#xdb;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM497 750 q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
169
+ <glyph unicode="&#xdc;" horiz-adv-x="733" d="M668 267q0 -62 -18.5 -113.5t-56 -88.5t-94 -57t-132.5 -20t-132.5 20.5t-94 57t-56 87.5t-18.5 113v336q0 29 21 50t52 21q29 0 50 -21t21 -50v-331q0 -70 39.5 -113.5t117.5 -43.5t117 43.5t39 113.5v331q0 29 21 50t53 21q29 0 50 -21t21 -50v-335v0zM543 778 q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM331 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
170
+ <glyph unicode="&#xdd;" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45zM455 834q0 -17 -12 -27 l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
171
+ <glyph unicode="&#xde;" horiz-adv-x="624" d="M602 343q0 -44 -15 -82.5t-43.5 -67.5t-70 -46t-95.5 -17h-170v-66q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v539q0 29 21 49.5t51 20.5q29 0 49.5 -20.5t20.5 -49.5v-44h170q54 0 96 -17.5t70.5 -47t43 -68.5t14.5 -83zM457 344q0 42 -28.5 66t-71.5 24 h-149v-179h149q43 0 71.5 23.5t28.5 65.5z" />
172
+ <glyph unicode="&#xdf;" horiz-adv-x="643" d="M627 144q0 -34 -14 -62.5t-40.5 -49.5t-63.5 -32.5t-83 -11.5q-27 0 -54.5 4.5t-51.5 12.5t-42.5 20t-28.5 27q-9 13 -9 28q0 22 14 36t34 14q14 0 28 -8q23 -16 51.5 -25.5t58.5 -9.5q40 0 59.5 16t19.5 36t-19.5 30t-48.5 17.5l-62.5 16t-62.5 25t-48.5 43.5t-19.5 73 q0 26 9 45.5t23 35t29.5 27l29.5 22t23 20t9 20.5q0 12 -6.5 21.5t-17.5 16t-25 9.5t-28 3q-21 0 -39.5 -6t-32 -17.5t-21 -28t-7.5 -37.5v-418q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v418q0 41 15.5 78t44.5 64.5t72 43.5t97 16q40 0 77 -10t65.5 -29 t46 -45.5t17.5 -60.5q0 -28 -10 -48.5t-24.5 -36t-31.5 -27t-31.5 -23t-24.5 -23t-10 -26.5q0 -18 19.5 -26t48.5 -14.5l62.5 -14.5t62.5 -25t48.5 -46t19.5 -78z" />
173
+ <glyph unicode="&#xe0;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM295 583 q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
174
+ <glyph unicode="&#xe1;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM401 667 q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
175
+ <glyph unicode="&#xe2;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM397 583 q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
176
+ <glyph unicode="&#xe3;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM431 662 q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23 t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
177
+ <glyph unicode="&#xe4;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM443 611 q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM231 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
178
+ <glyph unicode="&#xe5;" horiz-adv-x="543" d="M480 57q0 -26 -18 -44.5t-44 -18.5h-5h-5v0q-23 0 -39 16.5t-16 39.5q-25 -29 -65 -45.5t-88 -16.5q-29 0 -59 10t-54 29.5t-39.5 49.5t-15.5 71q0 42 15.5 72t39.5 48.5t54 27t59 8.5q48 0 88.5 -15t64.5 -44v65q0 37 -29 59t-77 22q-29 0 -56 -7t-52 -24q-12 -7 -23 -7 q-17 0 -32.5 13t-15.5 36q0 13 7 25q11 18 35 31t52.5 21t57 12t49.5 4q41 0 79 -9t67.5 -30.5t47 -56.5t17.5 -87v-255zM353 116v60q-16 21 -43.5 31.5t-58.5 10.5q-38 0 -64.5 -19t-26.5 -54q0 -34 26.5 -52.5t64.5 -18.5q31 0 58.5 10.5t43.5 31.5zM375 636q0 -22 -8 -41 t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM317 636q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33t33 -14q20 0 33 14t13 33z" />
179
+ <glyph unicode="&#xe6;" horiz-adv-x="870" d="M839 261q0 -25 -17.5 -42.5t-42.5 -17.5h-279q3 -22 13 -42t26.5 -35t39 -23.5t51.5 -8.5q20 0 42 5t42 16q12 6 27 6q20 0 36.5 -13.5t16.5 -35.5q0 -12 -7 -24q-10 -16 -31 -27t-45.5 -18t-49 -10t-40.5 -3q-59 0 -106 20t-80 68q-30 -38 -83 -63t-118 -25 q-40 0 -76.5 9.5t-64.5 29t-44.5 49t-16.5 70.5q0 40 14 69.5t38 49t56 29.5t67 10q50 0 93.5 -14.5t71.5 -43.5v65q0 36 -31.5 58t-83.5 22q-30 0 -59.5 -7.5t-57.5 -24.5q-12 -7 -24 -7q-17 0 -32 13.5t-15 35.5q0 14 7 25q11 18 35 31.5t53 21.5t58 12t50 4 q32 0 58.5 -5.5t47.5 -16t37 -26t26 -35.5q13 17 29 32t37 26.5t48 18t61 6.5q77 0 132 -43.5t78 -118.5q5 -14 9 -32t4 -40zM718 287q-1 17 -7 36t-19.5 34.5t-34 26t-49.5 10.5q-27 0 -47 -10t-33.5 -25.5t-20.5 -34.5t-9 -37h220zM372 169v6q-18 20 -48.5 31.5 t-64.5 11.5q-42 0 -70.5 -16.5t-28.5 -48.5q0 -33 28.5 -49t67.5 -16q24 0 45 7.5t37 19t25 26t9 28.5z" />
180
+ <glyph unicode="&#xe7;" horiz-adv-x="499" d="M461 77q0 -13 -6 -23q-7 -13 -21.5 -24t-33.5 -19.5t-41 -14t-45 -7.5l-16 -40q17 10 36 10q28 0 47.5 -19t19.5 -51q0 -40 -33 -62.5t-78 -22.5q-18 0 -36.5 3t-34.5 8.5t-26 14t-10 20.5t8.5 20t19.5 8q6 0 12 -3q16 -8 32.5 -12.5t30.5 -4.5q20 0 36 8t16 25 q0 12 -7.5 19t-21.5 7q-12 0 -20 -6t-20 -6q-15 0 -24 10t-9 21q0 3 0.5 5.5t1.5 5.5l16 43q-49 5 -90 25.5t-70 53.5t-45.5 77t-16.5 96q0 55 19 101.5t53 80.5t81 52.5t103 18.5q28 0 54.5 -5t48.5 -13.5t38.5 -20.5t24.5 -27q6 -11 6 -23q0 -26 -19.5 -40t-40.5 -14 q-19 0 -35 10t-34 15t-37 5q-29 0 -53 -10t-41.5 -28.5t-27 -44.5t-9.5 -57q0 -32 9.5 -57.5t27 -44.5t41.5 -29t53 -10q39 0 72 21q16 10 34 10q23 0 42 -15t19 -40z" />
181
+ <glyph unicode="&#xe8;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM309 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27 t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
182
+ <glyph unicode="&#xe9;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM415 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22 l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
183
+ <glyph unicode="&#xea;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM409 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9 t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
184
+ <glyph unicode="&#xeb;" horiz-adv-x="553" d="M522 259q0 -23 -17 -40.5t-42 -17.5h-298q3 -23 13.5 -43.5t28 -35.5t42 -24t55.5 -9q20 0 45.5 6t48.5 18q12 6 25 6q20 0 37 -14t17 -37q0 -25 -22 -38q-36 -22 -78.5 -32t-86.5 -10q-55 0 -102.5 18t-82 51t-54 80t-19.5 105q0 52 18.5 98.5t51.5 80.5t79 54t101 20 q41 0 76.5 -11.5t64.5 -32.5t50.5 -51.5t34.5 -67.5q5 -17 9.5 -36t4.5 -37zM401 287q-1 17 -8 36t-21 34.5t-36.5 26t-53.5 10.5q-30 0 -51.5 -10t-35.5 -25.5t-22 -34.5t-10 -37h238zM457 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5 t20 -47.5zM245 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
185
+ <glyph unicode="&#xec;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM155 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
186
+ <glyph unicode="&#xed;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM259 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
187
+ <glyph unicode="&#xee;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM254 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12 q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
188
+ <glyph unicode="&#xef;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0zM302 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM90 611q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
189
+ <glyph unicode="&#xf0;" horiz-adv-x="574" d="M543 252q0 -59 -17.5 -107.5t-50.5 -83t-80.5 -54t-107.5 -19.5q-58 0 -105 17.5t-80.5 49t-51.5 75t-18 94.5q0 52 16.5 95t45 74.5t68 49t84.5 17.5q52 0 91.5 -23t68.5 -70q-20 46 -62 87.5t-95 78.5l-123 -54q-6 -3 -13 -3q-11 0 -21.5 9t-10.5 24q0 22 20 30l84 37 q-9 5 -17 11t-13.5 13t-8.5 15.5t-3 19.5q1 27 20 44t42 17q12 0 26.5 -6.5t29.5 -16.5l29.5 -20.5t25.5 -19.5l81 36q6 2 11 2q11 0 21.5 -8.5t10.5 -23.5q0 -20 -18 -28l-51 -23q40 -36 72 -74t54 -79.5t34 -87t12 -95.5zM411 224q0 25 -8.5 47.5t-24 39t-38.5 26.5 t-53 10t-52.5 -10t-38.5 -26.5t-24 -39t-8 -47.5t8 -47.5t24 -39t38.5 -26.5t52.5 -10t53 10t38.5 26.5t24 39t8.5 47.5z" />
190
+ <glyph unicode="&#xf1;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v235q0 51 -24 70.5t-65 19.5q-19 0 -35.5 -5t-30.5 -13t-25 -18t-19 -21v-268q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-7 q12 14 28.5 27.5t38 24t47 17t55.5 6.5q80 0 118.5 -41.5t38.5 -112.5v-284v0zM452 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5 t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
191
+ <glyph unicode="&#xf2;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM314 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
192
+ <glyph unicode="&#xf3;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM420 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
193
+ <glyph unicode="&#xf4;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM413 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12 t35 -32l41 -62q5 -6 5 -17z" />
194
+ <glyph unicode="&#xf5;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM449 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28 q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
195
+ <glyph unicode="&#xf6;" horiz-adv-x="574" d="M543 242q0 -52 -17.5 -98t-50.5 -80.5t-80.5 -55t-107.5 -20.5t-107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5t107.5 -20.5t80.5 -55t50.5 -80.5t17.5 -97zM411 242q0 28 -8.5 53.5t-24 44.5t-38.5 30.5t-53 11.5t-52.5 -11.5 t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -29 8 -54.5t24 -44.5t38.5 -30.5t52.5 -11.5t53 11.5t38.5 30.5t24 44.5t8.5 54.5zM461 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM249 611q0 -29 -19.5 -48.5t-47.5 -19.5 q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
196
+ <glyph unicode="&#xf7;" horiz-adv-x="511" d="M255 576q26 0 43.5 -17.5t17.5 -42.5q0 -26 -17.5 -44t-43.5 -18t-43.5 18t-17.5 44q0 25 17.5 42.5t43.5 17.5zM488 339q0 -18 -11 -29.5t-27 -11.5h-388q-17 0 -28 11.5t-11 29.5q0 16 11 27t28 11h388q16 0 27 -11t11 -27zM316 157q0 -26 -17.5 -43.5t-43.5 -17.5 t-43.5 17.5t-17.5 43.5q0 25 17.5 43t43.5 18t43.5 -18t17.5 -43z" />
197
+ <glyph unicode="&#xf8;" horiz-adv-x="574" d="M121 3q-9 -10 -22 -10q-12 0 -21 9t-9 21t7 19l21 25q-32 35 -48.5 79.5t-16.5 95.5t17.5 97t50.5 80.5t80 55t107 20.5q42 0 77 -10t64 -28l18 21q7 10 22 10q12 0 22 -8.5t10 -20.5q0 -10 -7 -19l-18 -21q33 -35 50.5 -80.5t17.5 -96.5q0 -52 -17.5 -98t-50.5 -80.5 t-80.5 -55t-107.5 -20.5q-85 0 -145 40zM220 120q14 -10 30.5 -14.5t36.5 -4.5q30 0 53 11.5t38.5 30.5t24 44.5t8.5 54.5q0 44 -20 79zM287 382q-30 0 -52.5 -11.5t-38.5 -30.5t-24 -44.5t-8 -53.5q0 -42 17 -76l169 199q-28 17 -63 17z" />
198
+ <glyph unicode="&#xf9;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM316 583q0 -13 -9.5 -23t-23.5 -10q-11 0 -21 8l-93 82q-12 10 -12 27q0 15 11.5 27t27.5 12t28 -12l83 -89q9 -9 9 -22z" />
199
+ <glyph unicode="&#xfa;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM421 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
200
+ <glyph unicode="&#xfb;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM416 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
201
+ <glyph unicode="&#xfc;" horiz-adv-x="579" d="M516 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v4q-25 -28 -67.5 -50.5t-102.5 -22.5q-80 0 -118 40.5t-38 111.5v287q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-237q0 -25 6.5 -42t18 -27.5t28 -15t36.5 -4.5q37 0 65 17t45 38v271q0 26 18.5 44 t46.5 18q26 0 44 -18t18 -44v-370v0zM463 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM251 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
202
+ <glyph unicode="&#xfd;" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5zM388 667q0 -17 -12 -27l-93 -82q-10 -8 -21 -8q-12 0 -22.5 9.5t-10.5 23.5q0 13 9 22l83 89q10 12 27 12q15 0 27.5 -11t12.5 -28z" />
203
+ <glyph unicode="&#xfe;" horiz-adv-x="583" d="M553 242q0 -60 -16 -107.5t-44.5 -80t-68 -49.5t-85.5 -17q-43 0 -81.5 18t-67.5 56v-190q0 -26 -18.5 -44t-45.5 -18q-26 0 -44.5 18t-18.5 44v739q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-189q28 35 66 54t83 19q46 0 85.5 -17t68 -49t44.5 -79.5t16 -107.5z M421 242q0 31 -9 57t-25 44.5t-38.5 28.5t-49.5 10q-31 0 -62 -16t-47 -39v-171q16 -23 47 -39t62 -16q27 0 49.5 10t38.5 29t25 44.5t9 57.5z" />
204
+ <glyph unicode="&#xff;" horiz-adv-x="513" d="M491 427q0 -14 -4 -23l-195 -483q-26 -63 -69 -90t-97 -27q-17 0 -31 4t-24.5 11.5t-16.5 18t-6 23.5q0 23 16.5 39.5t43.5 16.5h8t8 1q16 3 28.5 11t19.5 23l18 41l-165 412q-4 9 -4 21q0 23 17.5 43t46.5 20q19 0 35 -11t24 -31l112 -300l112 300q7 19 24 30.5t37 11.5 q29 0 45.5 -19.5t16.5 -42.5zM430 611q0 -29 -20 -48.5t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM218 611q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
205
+ <glyph unicode="&#x110;" horiz-adv-x="742" d="M708 333q0 -75 -26 -136.5t-72.5 -105t-112 -67.5t-143.5 -24h-183q-33 0 -56.5 23.5t-23.5 56.5v197h-37q-22 0 -37 15.5t-15 38.5q0 21 15 36t37 15h37v205q0 33 23.5 56.5t56.5 23.5h183q78 0 143.5 -24t112 -67.5t72.5 -105.5t26 -137zM563 333q0 44 -13.5 82.5 t-39.5 66.5t-65.5 44t-90.5 16h-121v-160h104q21 0 36 -15t15 -38q0 -22 -15 -37t-36 -15h-104v-152h121q49 0 88 16.5t66 45t41 66.5t14 80z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="253" d="M190 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370v0z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1084" d="M1047 64q0 -27 -18 -45.5t-43 -18.5h-340q-16 0 -30 6t-24.5 16.5t-16.5 25t-6 30.5q-17 -23 -40 -39.5t-50 -28t-55.5 -17t-55.5 -5.5q-73 0 -134 25.5t-105.5 71t-69.5 109t-25 139.5t25 139t69.5 108.5t105.5 71t134 25.5q27 0 55.5 -5.5t55.5 -16.5t50 -27.5 t40 -38.5q0 16 6 30.5t16.5 25t25 16.5t30.5 6h339q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-274v-141h267q25 0 43 -18.5t18 -44.5t-18 -44t-43 -18h-267v-151h274q25 0 43 -18t18 -43zM569 230v206q-24 57 -72 86t-109 29q-48 0 -86.5 -16.5t-65.5 -45.5t-41.5 -69 t-14.5 -87t14.5 -87t41.5 -69t65.5 -46t86.5 -17q61 0 109 30t72 86z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="931" d="M900 261q0 -25 -17.5 -42.5t-42.5 -17.5h-296q3 -22 13.5 -42.5t28 -36t42 -24.5t55.5 -9q22 0 46.5 6t46.5 17q12 6 25 6q20 0 37 -13.5t17 -36.5q0 -14 -9 -26q-11 -14 -32.5 -24.5t-47 -17t-51.5 -9.5t-46 -3q-40 0 -71 10t-54 25.5t-40 34.5t-29 37 q-12 -17 -28.5 -36t-39.5 -35t-52.5 -26t-67.5 -10q-60 0 -107 20.5t-80 55t-50.5 80.5t-17.5 98q0 51 17.5 97t50.5 80.5t80 55t107 20.5q38 0 67.5 -10.5t52.5 -26.5t40 -35t29 -36q11 18 27.5 37t39 34.5t52 26t66.5 10.5q83 0 141.5 -44t83.5 -119q5 -14 9.5 -32 t4.5 -39zM780 287q-1 17 -8 36t-21.5 34.5t-37 26t-53.5 10.5q-29 0 -50.5 -10t-36 -25.5t-22 -34.5t-9.5 -37h238zM411 242q0 31 -9 56.5t-25 44t-39 29t-51 10.5t-50.5 -10.5t-38.5 -29t-25 -44t-9 -56.5t9 -57t25 -45t38.5 -29.5t50.5 -10.5t51 10.5t39 29.5t25 45t9 57z " />
209
+ <glyph unicode="&#x178;" horiz-adv-x="645" d="M597 607q0 -19 -10 -35l-193 -299v-209q0 -29 -21 -49.5t-51 -20.5q-29 0 -49.5 20.5t-20.5 49.5v209l-195 300q-10 14 -10 34q0 24 19 44.5t49 20.5q17 0 32.5 -8t25.5 -24l150 -241l147 240q10 16 25.5 24.5t33.5 8.5q31 0 49.5 -20t18.5 -45zM497 778q0 -29 -20 -48.5 t-48 -19.5t-48 19.5t-20 48.5q0 28 20 47.5t48 19.5t48 -19.5t20 -47.5zM285 778q0 -29 -19.5 -48.5t-47.5 -19.5q-29 0 -48.5 19.5t-19.5 48.5q0 28 19.5 47.5t48.5 19.5q28 0 47.5 -19.5t19.5 -47.5z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="300" d="M276 583q0 -11 -9 -22.5t-25 -11.5t-25 13l-68 83l-67 -83q-11 -12 -25 -12t-24.5 9t-10.5 23q0 10 6 18l40 62q13 20 34.5 32t47.5 12q24 0 45 -12t35 -32l41 -62q5 -6 5 -17z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="209" d="M209 636q0 -22 -8 -41t-22 -33.5t-33 -22.5t-41 -8q-21 0 -40.5 8t-33.5 22.5t-22.5 33.5t-8.5 41q0 21 8.5 40.5t22.5 34t33.5 23t40.5 8.5q22 0 41 -8.5t33 -23t22 -34t8 -40.5zM151 636q0 20 -13 33.5t-33 13.5q-19 0 -33 -13.5t-14 -33.5q0 -19 14 -33t33 -14 q20 0 33 14t13 33z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="327" d="M325 662q0 -12 -4.5 -30.5t-16.5 -35.5t-32.5 -29.5t-51.5 -12.5q-26 0 -42 10.5t-28 23.5l-22.5 23.5t-24.5 10.5q-11 0 -19.5 -8t-13.5 -28q-3 -14 -14.5 -23t-25.5 -9q-13 0 -20.5 9.5t-7.5 22.5q0 12 4.5 30.5t16.5 35.5t32.5 29.5t52.5 12.5q25 0 40.5 -10.5 t27.5 -23l23 -23t25 -10.5q11 0 19.5 8t13.5 27q3 14 14 23t25 9t21.5 -9.5t7.5 -22.5z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="449" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="899" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="449" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="899" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="299" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="224" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="149" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="149" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="112" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="179" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="49" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="300" d="M276 243q0 -23 -15.5 -39t-37.5 -16h-146q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h146q22 0 37.5 -15.5t15.5 -37.5z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="593" d="M569 243q0 -23 -15.5 -39t-37.5 -16h-439q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h439q22 0 37.5 -15.5t15.5 -37.5z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="833" d="M809 243q0 -23 -15.5 -39t-37.5 -16h-679q-22 0 -37.5 16t-15.5 39q0 22 15.5 37.5t37.5 15.5h679q22 0 37.5 -15.5t15.5 -37.5z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="255" d="M207 470q0 -33 -23 -56.5t-55 -23.5q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10q18 0 27 -11t9 -22q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="255" d="M215 575q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -27 -10t-26.5 11t-9.5 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
231
+ <glyph unicode="&#x201a;" d="M215 49q0 -48 -21.5 -91.5t-59.5 -77.5q-10 -10 -27 -10t-26.5 11t-9.5 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="459" d="M410 470q0 -33 -23 -56.5t-55 -23.5q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10t26.5 -11.5t9.5 -21.5q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52zM207 470q0 -33 -23 -56.5t-55 -23.5 q-18 0 -34 7t-28.5 20t-20 32t-7.5 43q0 48 21.5 91.5t59.5 77.5q10 10 27 10q18 0 27 -11t9 -22q0 -14 -9 -21q-20 -16 -34.5 -37t-19.5 -41q2 1 8 2t11 1q29 0 48.5 -20t19.5 -52z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="459" d="M419 575q0 -48 -21.5 -91.5t-59.5 -77.5q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43zM216 575q0 -48 -21.5 -91.5t-59.5 -77.5 q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="459" d="M419 49q0 -48 -21.5 -91.5t-59.5 -77.5q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43zM215 49q0 -48 -21.5 -91.5t-59.5 -77.5 q-11 -10 -27 -10q-18 0 -27 11t-9 22q0 12 9 21q20 16 34.5 37t19.5 41q-2 -1 -8 -2t-11 -1q-29 0 -48.5 20t-19.5 52q0 33 23 56.5t55 23.5q18 0 34 -7t28.5 -20t20 -32t7.5 -43z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="358" d="M299 242q0 -24 -9.5 -45.5t-25.5 -37.5t-37.5 -25.5t-46.5 -9.5t-46.5 9.5t-37.5 25.5t-25.5 37.5t-9.5 45.5q0 25 9.5 46.5t25.5 37.5t37.5 25.5t46.5 9.5t46.5 -9.5t37.5 -25.5t25.5 -37.5t9.5 -46.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="768" d="M720 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57zM464 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57 t56.5 24t57 -24t24 -57zM208 70q0 -16 -6.5 -30.5t-17.5 -25.5t-26 -17.5t-31 -6.5q-17 0 -31.5 6.5t-25 17.5t-17 25.5t-6.5 30.5q0 33 23.5 57t56.5 24t57 -24t24 -57z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="179" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="337" d="M257 102q0 -16 -11.5 -30.5t-31.5 -14.5q-19 0 -31 14l-100 112q-22 25 -22 59t23 60l99 110q12 13 30 13q17 0 30.5 -12t13.5 -31q0 -17 -10 -28l-100 -111l100 -112q10 -11 10 -29z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="337" d="M276 242q0 -34 -22 -59l-100 -112q-12 -14 -31 -14q-17 0 -30.5 13t-13.5 32q0 17 11 29l100 112l-100 111q-10 11 -10 27q0 17 12 30.5t31 13.5t31 -13l99 -110q23 -26 23 -60z" />
240
+ <glyph unicode="&#x205f;" horiz-adv-x="224" />
241
+ <glyph unicode="&#x20ac;" horiz-adv-x="709" d="M412 678q86 0 145.5 -32t97.5 -78q14 -17 14 -39q0 -27 -20 -45.5t-48 -18.5q-14 0 -27.5 6t-24.5 17q-29 30 -64 47t-73 17q-31 0 -58.5 -8t-51 -22t-42.5 -34.5t-32 -45.5h215q14 0 25 -11t11 -27q0 -15 -11 -26t-25 -11h-238q-2 -8 -2 -17v-17t0.5 -15.5t1.5 -15.5 h237q15 0 26 -11t11 -28q0 -15 -11 -26t-26 -11h-215q13 -26 31.5 -46.5t42.5 -35t52 -22.5t59 -8q38 0 73.5 16t63.5 47q11 11 25 17t29 6q28 0 46.5 -18.5t18.5 -43.5q0 -11 -3 -21t-11 -18q-38 -46 -97 -78.5t-145 -32.5q-61 0 -115.5 17t-99 48t-77 75t-48.5 98h-20 q-15 0 -26 11t-11 28q0 15 11 26t26 11h6q-1 8 -1 15.5v15.5v17t1 17h-6q-15 0 -26 11t-11 28q0 14 11 25t26 11h21q16 54 48.5 97.5t76.5 74.5t98.5 47.5t115.5 16.5z" />
242
+ <glyph unicode="&#x2122;" horiz-adv-x="454" d="M419 454q0 -13 -14 -13t-14 13v175l-69 -168q-3 -8 -10 -8t-10 8l-69 168v-175q0 -13 -14 -13t-14 13v197q0 9 6.5 15.5t17.5 6.5q16 0 22 -14l61 -152l60 151q7 15 23 15q11 0 17.5 -6.5t6.5 -15.5v-197zM175 654q0 -5 -3.5 -9t-8.5 -4h-56v-187q0 -13 -14 -13t-14 13 v187h-56q-5 0 -8.5 4t-3.5 9t3.5 9t8.5 4h140q5 0 8.5 -4t3.5 -9z" />
243
+ <glyph unicode="&#xe000;" horiz-adv-x="490" d="M0 490h490v-490h-490v490z" />
244
+ <glyph unicode="&#xfb01;" horiz-adv-x="580" d="M453 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370zM335 626q0 -19 -11.5 -34t-32.5 -15h-5h-6 q-26 0 -43.5 -17t-17.5 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 39 12 70.5t34 53t51.5 33t65.5 11.5q21 0 36 -3t25 -9 t15 -16t5 -23z" />
245
+ <glyph unicode="&#xfb02;" horiz-adv-x="580" d="M517 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554zM335 626q0 -19 -11.5 -34t-32.5 -15h-5h-6q-26 0 -43.5 -17t-17.5 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315 q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 39 12 70.5t34 53t51.5 33t65.5 11.5q21 0 36 -3t25 -9t15 -16t5 -23z" />
246
+ <glyph unicode="&#xfb03;" horiz-adv-x="907" d="M780 686q32 0 54 -21.5t22 -53.5t-22 -54t-54 -22q-31 0 -53.5 22t-22.5 54t22.5 53.5t53.5 21.5zM844 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v370q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-370zM695 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5 t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5 t8 -23.5zM368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26 q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
247
+ <glyph unicode="&#xfb04;" horiz-adv-x="907" d="M844 57q0 -26 -18.5 -44.5t-45.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v554q0 26 18.5 44t46.5 18q26 0 44 -18t18 -44v-554v0zM695 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315 q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5zM368 618q0 -24 -14 -36t-29 -12q-11 0 -20 3.5t-26 3.5q-26 0 -43 -17t-17 -51v-26h50 q22 0 38 -16.5t16 -39.5t-16 -39t-38 -16h-50v-315q0 -26 -18.5 -44.5t-46.5 -18.5q-26 0 -44.5 18.5t-18.5 44.5v315h-31q-23 0 -39 16.5t-16 40.5q0 22 16 38t39 16h31v26q0 78 45 123t118 45q26 0 47 -4.5t36 -12.5t23 -18.5t8 -23.5z" />
248
+ </font>
249
+ </defs></svg>
@@ -0,0 +1,250 @@
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>
5
+ This is a custom SVG webfont generated by Fontspring.
6
+ Designer : Mark Simonson
7
+ Foundry : Mark Simonson
8
+ Foundry URL : httpwwwmarksimonsoncom
9
+ </metadata>
10
+ <defs>
11
+ <font id="webfont2TbRDnwN" horiz-adv-x="572" >
12
+ <font-face units-per-em="1000" ascent="775" descent="-225" />
13
+ <missing-glyph horiz-adv-x="258" />
14
+ <glyph unicode=" " horiz-adv-x="258" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="258" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="258" />
17
+ <glyph unicode="!" horiz-adv-x="230" d="M161 627l-1 -31l-2.5 -77t-3.5 -100t-3.5 -100l-2.5 -77l-1 -31q-1 -13 -10 -21.5t-23 -8.5q-13 0 -21.5 8.5t-9.5 21.5l-1 31l-2.5 77t-3.5 100t-3.5 100l-2.5 77l-1 31q-1 19 13 32.5t34 13.5q19 0 32.5 -13.5t12.5 -32.5zM170 45q0 -11 -4.5 -21t-12 -17.5t-17.5 -12 t-21 -4.5t-21 4.5t-17.5 12t-12 17.5t-4.5 21q0 23 16 39t39 16t39 -16t16 -39z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="343" d="M290 631q0 -4 -3 -30l-7 -59l-8 -66.5t-7 -52.5q-1 -7 -7 -12t-15 -5q-7 0 -12.5 5t-6.5 12q-3 19 -7 52.5l-8 66.5l-7 59t-3 30q0 19 13 32.5t33 13.5q19 0 32 -13.5t13 -32.5zM145 631q0 -4 -3 -30l-7 -59l-8 -66.5t-7 -52.5q-1 -7 -7 -12t-15 -5q-7 0 -12.5 5t-6.5 12 q-3 19 -7 52.5l-8 66.5l-7 59t-3 30q0 19 13 32.5t32 13.5q20 0 33 -13.5t13 -32.5z" />
19
+ <glyph unicode="#" horiz-adv-x="590" d="M564 458q0 -11 -7 -18t-18 -7h-94l-67 -199h81q10 0 17.5 -8t7.5 -19t-7.5 -18.5t-17.5 -7.5h-99l-56 -168q-3 -9 -10.5 -14.5t-17.5 -5.5q-13 0 -21 8.5t-8 19.5q0 2 0.5 4.5t1.5 4.5l51 151h-111l-56 -168q-3 -9 -10.5 -14.5t-17.5 -5.5q-14 0 -22 9t-8 20q0 3 2 9 l51 150h-74q-11 0 -18.5 8t-7.5 20q0 10 7.5 17.5t18.5 7.5h92l66 199h-78q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h96l56 169q3 9 10.5 14t17.5 5q13 0 21 -8.5t8 -19.5q0 -6 -1 -9l-50 -151h110l56 169q3 9 10.5 14t16.5 5q14 0 21.5 -8.5t7.5 -19.5q0 -5 -1 -8l-51 -152 h77q11 0 18 -7.5t7 -19.5zM383 433h-110l-66 -199h110z" />
20
+ <glyph unicode="$" horiz-adv-x="593" d="M544 184q0 -34 -11.5 -67t-37 -60t-65.5 -45.5t-98 -22.5v-66q0 -12 -8.5 -20.5t-20.5 -8.5q-14 0 -23 8.5t-9 20.5v66q-32 2 -61.5 8.5t-55.5 17t-48.5 25t-41.5 31.5q-7 6 -10 14t-3 16q0 15 10.5 28.5t27.5 13.5q13 0 24 -9q30 -26 70 -46t88 -25v244q-38 10 -75.5 23 t-67 33.5t-47.5 51.5t-18 77q0 39 15.5 71.5t43 56.5t66 38.5t83.5 17.5v69q0 12 9 20.5t23 8.5q12 0 20.5 -8.5t8.5 -20.5v-70q26 -3 49.5 -8t45 -13.5t41.5 -20.5t38 -28q13 -10 13 -29q0 -8 -3 -15.5t-8.5 -13t-12.5 -9t-15 -3.5q-14 0 -24 9q-29 25 -59.5 37.5 t-64.5 17.5v-217q39 -11 77 -25t68 -36t48.5 -55t18.5 -82zM271 398v204q-54 -4 -88 -32t-34 -73q0 -21 9.5 -36.5t26 -26.5t38.5 -20t48 -16zM458 177q0 24 -10 42t-27 31t-40 22.5t-49 17.5v-227q36 4 60 15.5t38.5 27.5t21 34.5t6.5 36.5z" />
21
+ <glyph unicode="%" horiz-adv-x="731" d="M353 511q0 -35 -12 -65t-33 -51.5t-51 -34t-66 -12.5t-65.5 12.5t-50.5 34t-32.5 51.5t-11.5 65t11.5 65.5t32.5 53t50.5 35t65.5 12.5t66 -12.5t51 -35t33 -53t12 -65.5zM185 3q-7 -10 -18 -10q-9 0 -16.5 6.5t-7.5 16.5q0 7 4 12l405 635q7 10 19 10q10 0 16.5 -7.5 t6.5 -16.5q0 -7 -3 -11zM700 151q0 -35 -12 -65t-33 -51.5t-50.5 -34t-65.5 -12.5t-65.5 12.5t-50.5 34t-32.5 51.5t-11.5 65t11.5 65.5t32.5 53t50.5 35t65.5 12.5t65.5 -12.5t50.5 -35t33 -53t12 -65.5zM91 511q0 -48 27.5 -80.5t72.5 -32.5q22 0 41 9t32.5 24t21 35.5 t7.5 44.5q0 50 -28.5 82.5t-73.5 32.5t-72.5 -32.5t-27.5 -82.5zM438 151q0 -24 7.5 -44.5t20.5 -35.5t31.5 -24t41.5 -9q22 0 41 9t32.5 24t21 35.5t7.5 44.5q0 50 -28.5 82.5t-73.5 32.5t-73 -32.5t-28 -82.5z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="641" d="M483 126q13 -15 27.5 -28l27 -25t20.5 -23t8 -20q0 -14 -10 -25t-27 -11q-10 0 -22.5 8.5t-25 20.5t-24.5 25l-21 22q-37 -37 -84 -59.5t-108 -22.5q-43 0 -81 11.5t-66 35t-44.5 58t-16.5 81.5q0 39 12 69t32.5 53.5t47 42t55.5 33.5q-23 38 -37 76.5t-14 73.5 q0 33 13 61.5t35.5 49.5t53.5 32.5t66 11.5q33 0 60.5 -8.5t47.5 -25.5t31.5 -41.5t11.5 -55.5q0 -38 -14.5 -65.5t-38.5 -49.5t-54.5 -39.5t-62.5 -33.5q23 -32 43.5 -57.5l39.5 -47l37 -41l36 -38.5q21 31 36.5 64.5t26.5 61.5q4 10 12.5 15.5t19.5 5.5q15 0 24.5 -10.5 t9.5 -23.5q0 -8 -3 -14l-17 -37t-19 -37.5t-21 -37t-23 -35.5zM117 179q0 -31 11 -55t29.5 -40.5t43 -25t50.5 -8.5q42 0 76.5 18.5t63.5 47.5l-60.5 64.5l-44 49t-36 44t-35.5 49.5q-42 -26 -70 -59t-28 -85zM303 618q-19 0 -36 -7t-29.5 -20t-20 -31t-7.5 -39 q0 -26 11.5 -56t28.5 -59q27 13 51 27t42 30t28.5 35.5t10.5 44.5q0 37 -22.5 56t-56.5 19z" />
23
+ <glyph unicode="'" horiz-adv-x="199" d="M145 631q0 -4 -3 -30l-7 -59l-8 -66.5t-7 -52.5q-1 -7 -7 -12t-15 -5q-7 0 -12.5 5t-6.5 12q-3 19 -7 52.5l-8 66.5l-7 59t-3 30q0 19 13 32.5t32 13.5q20 0 33 -13.5t13 -32.5z" />
24
+ <glyph unicode="(" horiz-adv-x="248" d="M226 -161q0 -11 -8.5 -21t-22.5 -10q-7 0 -13 3t-11 9q-30 45 -54 95.5t-40 104t-24.5 110t-8.5 113.5t8.5 113.5t24.5 110t40 104t55 95.5q4 6 10 9.5t14 3.5q13 0 21.5 -8.5t8.5 -20.5q0 -8 -2 -12q-22 -45 -40 -90t-31 -93t-20 -100.5t-7 -111.5q0 -116 26.5 -210 t70.5 -182q3 -6 3 -12z" />
25
+ <glyph unicode=")" horiz-adv-x="248" d="M204 243q0 -57 -8.5 -113.5t-24.5 -110t-40 -104t-54 -95.5q-5 -6 -11 -9t-13 -3q-14 0 -22.5 9.5t-8.5 20.5q0 7 3 13q44 88 70.5 182t26.5 210q0 59 -7 111.5t-20 100.5t-31 93t-40 90q-3 4 -3 11q0 11 8 20.5t22 9.5q8 0 14 -3t11 -10q31 -45 55 -95.5t40 -104 t24.5 -110t8.5 -113.5z" />
26
+ <glyph unicode="*" horiz-adv-x="340" d="M171 683q9 0 15.5 -6.5t5.5 -15.5l-5 -99l84 53q4 3 11 3t14.5 -5.5t7.5 -16.5q0 -13 -11 -18l-89 -45l88 -45q11 -5 11 -19q0 -9 -6 -15.5t-16 -6.5q-7 0 -11 3l-83 54l5 -99q1 -9 -5.5 -15.5t-17.5 -6.5q-10 0 -15.5 6.5t-5.5 15.5l4 99l-84 -54q-5 -3 -10 -3 q-8 0 -15 6t-7 16q0 6 3 11t8 8l89 45l-89 45q-11 6 -11 19q0 10 6.5 16t15.5 6q5 0 10 -3l84 -54l-4 99q0 9 6 15.5t17 6.5z" />
27
+ <glyph unicode="+" horiz-adv-x="499" d="M476 338q0 -12 -7 -19.5t-18 -7.5h-173v-191q0 -12 -8 -20t-21 -8q-12 0 -20 8t-8 20v191h-173q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h173v186q0 11 8 19t22 8q11 0 19 -8t8 -19v-186h173q11 0 18 -7t7 -18z" />
28
+ <glyph unicode="," horiz-adv-x="230" d="M176 24q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
29
+ <glyph unicode="-" horiz-adv-x="300" d="M276 243q0 -15 -9 -24.5t-23 -9.5h-188q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h188q14 0 23 -9t9 -23z" />
30
+ <glyph unicode="." horiz-adv-x="230" d="M170 45q0 -23 -16 -39t-39 -16t-39 16t-16 39t16 39t39 16t39 -16t16 -39z" />
31
+ <glyph unicode="/" horiz-adv-x="296" d="M288 670q0 -6 -1 -9l-225 -674q-3 -8 -10 -13t-16 -5q-12 0 -20.5 8.5t-8.5 19.5q0 3 2 9l225 674q3 8 10 13t16 5q12 0 20 -8.5t8 -19.5z" />
32
+ <glyph unicode="0" horiz-adv-x="612" d="M561 333q0 -61 -14.5 -122.5t-45 -111t-79 -80.5t-116.5 -31q-69 0 -117 31t-79 80.5t-45 111t-14 122.5t14 122.5t45 110.5t79 80t117 31q68 0 116.5 -31t79 -80t45 -110.5t14.5 -122.5zM476 333q0 50 -8.5 98.5t-28.5 86.5t-52.5 61.5t-80.5 23.5t-80.5 -23.5 t-52.5 -61.5t-28.5 -86.5t-8.5 -98.5t8.5 -98.5t28.5 -87t52.5 -62t80.5 -23.5t80.5 23.5t52.5 62t28.5 87t8.5 98.5z" />
33
+ <glyph unicode="1" horiz-adv-x="339" d="M261 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v522l-88 -93q-10 -10 -24 -10t-25 10t-11 26q0 15 10 25l141 144q12 13 33 13q19 0 33 -12.5t14 -32.5v-592v0z" />
34
+ <glyph unicode="2" horiz-adv-x="588" d="M518 38q0 -17 -10.5 -27.5t-25.5 -10.5h-399q-14 0 -26 11.5t-12 28.5q0 9 3.5 17t11.5 14l155.5 124.5t114 106t70.5 93.5t24 86q0 32 -12 55t-31.5 38t-44.5 22t-51 7q-50 0 -90.5 -16.5t-70.5 -45.5q-10 -10 -24 -10t-26 10.5t-12 26.5t10 26q21 21 45 36.5t51 26 t56.5 15.5t60.5 5q42 0 82 -12t71.5 -36t51 -61t19.5 -87q0 -51 -24.5 -100.5t-68 -99t-102.5 -101t-129 -106.5h297q15 0 25.5 -10.5t10.5 -25.5z" />
35
+ <glyph unicode="3" horiz-adv-x="557" d="M502 180q0 -42 -16 -77t-46.5 -60.5t-74.5 -40t-99 -14.5q-36 0 -68 6.5t-60 18.5t-50.5 28t-40.5 35q-10 10 -10 24t10 26.5t25 12.5q13 0 25 -10q32 -32 74.5 -49.5t92.5 -17.5q73 0 114.5 33.5t41.5 91.5q0 31 -12 53.5t-34 36.5t-52.5 21t-67.5 7q-11 0 -24.5 -0.5 t-24.5 2.5t-18.5 11t-7.5 25q0 15 10.5 25.5t25.5 10.5q37 0 72 4t62 15.5t43.5 33t16.5 57.5q0 28 -12 49t-32 35.5t-47.5 22t-57.5 7.5q-47 0 -85 -15.5t-72 -45.5q-9 -9 -22 -9t-24.5 10t-11.5 26t11 25q39 38 91 60.5t119 22.5q48 0 89.5 -12t71.5 -34.5t47.5 -56 t17.5 -75.5q0 -36 -13.5 -63t-34.5 -46t-46.5 -30.5t-49.5 -15.5q23 -2 50 -13t50 -31t38.5 -50t15.5 -70z" />
36
+ <glyph unicode="4" horiz-adv-x="558" d="M532 205q0 -15 -10.5 -25.5t-24.5 -10.5h-65v-134q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v134h-282q-16 0 -28.5 12.5t-12.5 32.5q0 14 8 27l267 401q10 14 26 22.5t34 8.5q14 0 27 -5.5t22.5 -15.5t15.5 -22.5t6 -26.5v-361h65q14 0 24.5 -10.5t10.5 -26.5z M349 242v348l-234 -348h234z" />
37
+ <glyph unicode="5" horiz-adv-x="590" d="M538 208q0 -51 -18 -92t-50 -69.5t-75.5 -43.5t-93.5 -15q-36 0 -67.5 5.5t-58 16t-49 26.5t-41.5 36q-10 10 -10 26q0 13 9.5 26t26.5 13q16 0 26 -10q32 -32 72 -48.5t92 -16.5q34 0 62.5 11t48.5 30t31.5 45.5t11.5 56.5q0 33 -11.5 59.5t-31.5 45.5t-48 29t-62 10 q-38 0 -73.5 -12t-64.5 -36q-16 -13 -34 -13q-17 0 -30 11.5t-13 29.5v278q0 25 17.5 42.5t42.5 17.5h318q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-295v-232q24 24 64.5 42t91.5 18q42 0 80 -14t67.5 -41t47 -67t17.5 -91z" />
38
+ <glyph unicode="6" horiz-adv-x="591" d="M542 206q0 -44 -16 -83.5t-46 -69.5t-73.5 -47.5t-98.5 -17.5q-70 0 -119 28.5t-79.5 76t-44.5 109.5t-14 130t16 130.5t49.5 110t84.5 76t121 28.5q27 0 51 -4t44.5 -12t39 -20t35.5 -28q10 -10 10 -25t-11 -26t-26 -11t-25 9q-22 20 -49.5 31.5t-68.5 11.5 q-48 0 -83.5 -22.5t-59 -59.5t-34.5 -84t-11 -96v-13t1 -13q11 17 29.5 35.5t43.5 33.5t54.5 25t61.5 10q45 0 84.5 -13.5t69.5 -40t47 -66.5t17 -93zM458 203q0 37 -12 64t-33 45t-49 26.5t-60 8.5q-50 0 -94.5 -27.5t-72.5 -72.5q3 -31 13.5 -64t30 -60t50 -44t74.5 -17 q39 0 67.5 13t47.5 33.5t28.5 45.5t9.5 49z" />
39
+ <glyph unicode="7" horiz-adv-x="515" d="M491 628q0 -8 -3 -14l-267 -596q-5 -11 -15.5 -17.5t-22.5 -6.5q-19 0 -31 12.5t-12 28.5q0 6 4 16l246 542h-329q-15 0 -25.5 10.5t-10.5 27.5q0 15 10.5 25.5t25.5 10.5h391q13 0 26 -10.5t13 -28.5z" />
40
+ <glyph unicode="8" horiz-adv-x="581" d="M530 169q0 -42 -19 -76t-51.5 -57t-76 -35.5t-92.5 -12.5q-50 0 -93.5 12t-75.5 35.5t-51 57t-19 76.5q0 33 13 61t35 50.5t51 38.5t60 25q-29 8 -55.5 22t-47 33.5t-33 45.5t-12.5 59q0 45 20 77.5t52.5 54t73 31.5t82.5 10q41 0 82 -10t73.5 -31.5t53 -54t20.5 -77.5 q0 -33 -12.5 -59t-33 -45.5t-47.5 -33.5t-56 -22q31 -9 60 -25t51 -38.5t35 -50.5t13 -61zM436 493q0 26 -11.5 46.5t-31 34.5t-46 21.5t-56.5 7.5t-56.5 -7.5t-46 -21.5t-31 -34.5t-11.5 -46.5q0 -30 17 -51t40.5 -34.5t48 -20t39.5 -9.5q15 3 40 9.5t48 20t40 34.5t17 51z M446 178q0 33 -18.5 56.5t-43.5 39t-51.5 23.5t-41.5 10q-15 -2 -41.5 -10t-52 -23.5t-44 -39t-18.5 -56.5q0 -27 12.5 -48.5t34 -36.5t50 -23t59.5 -8t59 8t49.5 23t34 36.5t12.5 48.5z" />
41
+ <glyph unicode="9" horiz-adv-x="591" d="M540 334q0 -68 -16 -130.5t-49.5 -110t-84.5 -76t-121 -28.5q-27 0 -51 4t-44.5 12t-39 20t-35.5 28q-11 9 -11 25q0 7 3 14t8.5 12t12 8t14.5 3q14 0 25 -9q22 -20 49.5 -31.5t68.5 -11.5q48 0 83.5 22.5t59 59.5t34.5 84t11 96v13t-1 13q-11 -17 -29.5 -35.5 t-43.5 -33.5t-54.5 -25t-61.5 -10q-45 0 -84.5 13.5t-69.5 40t-47 66.5t-17 93q0 43 16 82.5t46 69.5t73.5 48t98.5 18q70 0 118.5 -28.5t79.5 -76t45 -109.5t14 -130zM454 419q-3 31 -13.5 64t-30 60t-50.5 44t-74 17q-39 0 -67.5 -13t-47.5 -33.5t-28.5 -45.5t-9.5 -49 q0 -37 12 -64t33 -45t49 -26.5t60 -8.5q50 0 94.5 27.5t72.5 72.5z" />
42
+ <glyph unicode=":" horiz-adv-x="230" d="M170 435q0 -23 -16 -39t-39 -16t-39 16t-16 39t16 39t39 16t39 -16t16 -39zM170 45q0 -23 -16 -39t-39 -16t-39 16t-16 39t16 39t39 16t39 -16t16 -39z" />
43
+ <glyph unicode=";" horiz-adv-x="230" d="M170 435q0 -11 -4.5 -21t-12 -17.5t-17.5 -12t-21 -4.5t-21 4.5t-17.5 12t-12 17.5t-4.5 21q0 23 16 39t39 16t39 -16t16 -39zM176 26q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14 t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
44
+ <glyph unicode="&#x3c;" horiz-adv-x="499" d="M476 133q0 -14 -10 -21.5t-19 -7.5q-5 0 -11 3l-393 194q-9 5 -14.5 14t-5.5 21q0 10 5.5 18.5t14.5 13.5l392 195q4 2 12 2q10 0 19.5 -7.5t9.5 -20.5q0 -8 -4 -14.5t-12 -10.5l-367 -178l368 -177q7 -3 11 -10t4 -14z" />
45
+ <glyph unicode="=" horiz-adv-x="499" d="M476 432q0 -12 -7.5 -20t-17.5 -8h-402q-11 0 -18.5 8t-7.5 20q0 10 7.5 17.5t18.5 7.5h402q10 0 17.5 -7.5t7.5 -17.5zM476 238q0 -12 -7 -19.5t-18 -7.5h-403q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h403q11 0 18 -7t7 -18z" />
46
+ <glyph unicode="&#x3e;" horiz-adv-x="499" d="M475 336q0 -12 -5.5 -21t-14.5 -14l-393 -194q-6 -3 -12 -3q-9 0 -18.5 8t-9.5 21q0 7 4 14t11 10l368 177l-367 178q-8 4 -12 10t-4 14q0 13 9 21t20 8q8 0 12 -2l392 -195q9 -5 14.5 -13.5t5.5 -18.5z" />
47
+ <glyph unicode="?" horiz-adv-x="462" d="M431 522q0 -38 -14.5 -65t-36 -48t-46.5 -38t-46.5 -33.5t-36 -35t-14.5 -42.5q0 -11 6.5 -22.5t6.5 -22.5q0 -13 -9 -23t-23 -10q-15 0 -25.5 10.5t-16.5 24.5t-9 28t-3 21q0 32 13.5 55t33.5 41t43.5 33.5t43.5 32t33.5 36t13.5 46.5q0 38 -29 65.5t-89 27.5 q-46 0 -80 -16t-60 -43q-9 -10 -24 -10q-14 0 -25 11t-11 26q0 16 10 26q19 19 41 34t46.5 25t52.5 15.5t58 5.5q46 0 82 -12t61.5 -33t39 -49.5t13.5 -60.5zM279 45q0 -23 -16 -39t-39 -16t-39 16t-16 39t16 39t39 16t39 -16t16 -39z" />
48
+ <glyph unicode="@" horiz-adv-x="783" d="M747 321q0 -59 -15 -103t-40 -73.5t-56 -44.5t-62 -15q-42 0 -65.5 25t-25.5 59q-27 -35 -69 -59.5t-90 -24.5q-35 0 -63 12t-48 33.5t-31 51.5t-11 66q0 52 20 98t53 80t75.5 53.5t86.5 19.5q49 0 81.5 -23t46.5 -55l9 44q2 11 11.5 18t20.5 7q15 0 24.5 -9t9.5 -22 q0 -2 -0.5 -3.5t-0.5 -3.5l-50 -240q-1 -5 -1.5 -10.5t-0.5 -10.5q0 -26 13.5 -39t33.5 -13q15 0 33.5 9t35 30t28 56t11.5 87q0 61 -20.5 113t-57.5 90t-89 59t-116 21q-72 0 -137.5 -29.5t-114.5 -79t-78 -114.5t-29 -135q0 -60 21.5 -112t59.5 -90t91 -59.5t115 -21.5 q50 0 94.5 13.5t84.5 38.5q4 2 7 2q5 0 11 -4t6 -12q0 -9 -6 -12q-45 -28 -97 -43.5t-104 -15.5q-68 0 -126 24t-100.5 66.5t-66.5 100t-24 123.5q0 81 33 152.5t87.5 125.5t126.5 85t150 31q71 0 129 -25t99.5 -68t64 -100.5t22.5 -123.5zM522 369q-4 12 -12.5 25t-21 24 t-30 18t-39.5 7q-38 0 -70 -16.5t-56 -43t-37.5 -61t-13.5 -70.5q0 -48 27 -79.5t75 -31.5q26 0 48.5 8t41 21t33.5 29t26 32z" />
49
+ <glyph unicode="A" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z" />
50
+ <glyph unicode="B" horiz-adv-x="629" d="M575 180q0 -40 -13 -73t-38 -57t-60.5 -37t-81.5 -13h-244q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h237q43 0 78 -12.5t59 -35t37 -54t13 -68.5q0 -32 -9.5 -58t-26 -45.5t-37.5 -32t-44 -17.5q27 -4 50.5 -19t41 -37t28 -50t10.5 -58zM476 485 q0 45 -29 76.5t-86 31.5h-200v-215h200q57 0 86 30.5t29 76.5zM489 189q0 23 -8 44t-23.5 36.5t-38.5 25t-54 9.5h-204v-230h204q59 0 91.5 30.5t32.5 84.5z" />
51
+ <glyph unicode="C" horiz-adv-x="676" d="M394 678q75 0 130 -27t93 -68q11 -13 11 -29t-11 -28t-28 -12q-8 0 -15.5 3t-12.5 10q-29 35 -74.5 56t-92.5 21q-55 0 -102 -20t-81.5 -56t-54 -85.5t-19.5 -109.5q0 -59 19.5 -109t54 -86t81.5 -56t102 -20q48 0 91.5 19.5t75.5 56.5q5 6 12.5 9.5t15.5 3.5 q17 0 28 -12.5t11 -28.5q0 -8 -3 -15t-8 -13q-39 -41 -93.5 -67.5t-129.5 -26.5q-72 0 -134.5 25t-109 70.5t-73 109t-26.5 140.5t26.5 140.5t73 109t109 70.5t134.5 25z" />
52
+ <glyph unicode="D" horiz-adv-x="700" d="M648 333q0 -71 -24.5 -132t-69 -105.5t-107.5 -70t-141 -25.5h-168q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h168q78 0 141 -25.5t107.5 -70.5t69 -106t24.5 -132zM562 333q0 54 -17 101.5t-49.5 82.5t-80 55.5t-109.5 20.5h-145v-519h145 q61 0 108.5 20.5t80.5 55.5t50 82t17 101z" />
53
+ <glyph unicode="E" horiz-adv-x="569" d="M521 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324 q15 0 25.5 -10.5t10.5 -25.5z" />
54
+ <glyph unicode="F" horiz-adv-x="550" d="M521 629q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-269q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v572q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5z" />
55
+ <glyph unicode="G" horiz-adv-x="713" d="M656 151q0 -39 -24.5 -69.5t-62.5 -51.5t-84.5 -32t-90.5 -11q-71 0 -133.5 25t-109 70.5t-73.5 109t-27 141.5t27 141.5t73.5 108.5t109 70t133.5 25q75 0 132 -25.5t97 -65.5q6 -5 8.5 -12.5t2.5 -15.5q0 -17 -10.5 -28t-27.5 -11q-15 0 -27 12q-32 34 -78.5 53 t-96.5 19q-55 0 -102 -20t-81.5 -56t-54 -85.5t-19.5 -109.5q0 -59 19.5 -109t54 -86t81.5 -56.5t102 -20.5q30 0 57 6.5t50 17t41.5 23.5t30.5 25v136h-199q-15 0 -25.5 10.5t-10.5 27.5q0 15 10.5 25.5t25.5 10.5h222q25 0 42.5 -17.5t17.5 -42.5v-132v0z" />
56
+ <glyph unicode="H" horiz-adv-x="712" d="M634 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v271h-390v-271q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-253h390v253q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0z" />
57
+ <glyph unicode="I" horiz-adv-x="239" d="M161 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0z" />
58
+ <glyph unicode="J" horiz-adv-x="475" d="M397 201q0 -54 -16.5 -94.5t-45 -66.5t-67 -39t-83.5 -13q-22 0 -42.5 3t-40 10t-37.5 18t-34 26q-12 10 -12 26q0 15 11 27t26 12q14 0 23 -8q20 -17 44.5 -28.5t56.5 -11.5q62 0 98 38.5t36 101.5v431q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-432v0z" />
59
+ <glyph unicode="K" horiz-adv-x="601" d="M544 33q0 -14 -11 -27t-29 -13q-8 0 -16 3.5t-14 10.5l-246 293l-67 -76v-189q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-311l288 337q6 7 13.5 10t15.5 3q17 0 29 -11t12 -28q0 -14 -9 -23l-228 -260l253 -293 q9 -11 9 -24z" />
60
+ <glyph unicode="L" horiz-adv-x="510" d="M477 38q0 -17 -10.5 -27.5t-25.5 -10.5h-303q-25 0 -42.5 17.5t-17.5 42.5v573q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-559h280q15 0 25.5 -10.5t10.5 -25.5z" />
61
+ <glyph unicode="M" horiz-adv-x="809" d="M731 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v514l-224 -542q-2 -6 -7.5 -9.5t-13.5 -3.5q-6 0 -11.5 3.5t-7.5 9.5l-223 542v-514q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v570q0 27 20 47t49 20q20 0 39 -11t27 -31l191 -465l192 465q8 20 26.5 31t39.5 11 q14 0 26.5 -5.5t22 -14.5t15 -21.5t5.5 -25.5v-570v0z" />
62
+ <glyph unicode="N" horiz-adv-x="708" d="M630 41q0 -9 -3.5 -17.5t-10 -15t-16 -10.5t-20.5 -4q-12 0 -23 5.5t-18 15.5l-378 517v-497q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v588q0 10 4 19t11 16t16.5 11t21.5 4q13 0 24.5 -5.5t19.5 -16.5l372 -505v487q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5 v-592v0z" />
63
+ <glyph unicode="O" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5z" />
64
+ <glyph unicode="P" horiz-adv-x="587" d="M555 466q0 -41 -14 -77.5t-41 -64t-66 -43.5t-88 -16h-185v-230q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v572q0 25 17.5 42.5t42.5 17.5h208q50 0 89 -16t65.5 -43.5t40.5 -64t14 -77.5zM469 466q0 57 -36.5 92t-96.5 35h-175v-254h175q60 0 96.5 35t36.5 92z" />
65
+ <glyph unicode="Q" horiz-adv-x="765" d="M713 333q0 -75 -24 -137.5t-68 -108.5l42 -45q9 -11 9 -24q0 -15 -11 -27t-28 -12t-27 12l-44 47q-38 -24 -83 -37t-97 -13q-74 0 -135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333 q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5q71 0 127 34l-74 80q-5 5 -7.5 11t-2.5 13q0 14 11 26.5t28 12.5q16 0 27 -12l75 -81q29 36 45 83.5t16 103.5z" />
66
+ <glyph unicode="R" horiz-adv-x="608" d="M555 466q0 -45 -14 -80t-38 -59t-55.5 -38t-65.5 -17l143 -217q6 -11 6 -21q0 -15 -11.5 -27.5t-29.5 -12.5q-10 0 -18.5 4.5t-14.5 13.5l-163 253h-133v-230q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v572q0 25 17.5 42.5t42.5 17.5h208q46 0 84 -14t66 -40.5 t43.5 -63.5t15.5 -83zM336 593h-175v-255h175q60 0 96.5 35.5t36.5 92.5t-36.5 92t-96.5 35z" />
67
+ <glyph unicode="S" horiz-adv-x="586" d="M540 184q0 -36 -13 -71.5t-42.5 -63t-76.5 -44.5t-114 -17q-37 0 -70.5 6t-62.5 17t-54.5 26t-46.5 34q-13 12 -13 30q0 15 10.5 28.5t28.5 13.5q6 0 12.5 -1.5t11.5 -6.5q35 -31 82 -52t105 -21q45 0 75 11t48 27.5t26 37t8 39.5q0 32 -17 53t-44.5 35.5t-63 24l-73 20 t-73 23.5t-63 33.5t-44.5 50.5t-17 75q0 41 17.5 75t48 58.5t72.5 38t91 13.5q32 0 62 -5t57 -14t51 -22t44 -30q14 -12 14 -30q0 -15 -11 -27.5t-28 -12.5q-14 0 -24 9q-37 30 -81 44t-90 14q-60 0 -98.5 -29t-38.5 -77q0 -28 17 -46t44.5 -31t63 -22.5l73 -20t73 -24.5 t63 -36t44.5 -54t17 -79z" />
68
+ <glyph unicode="T" horiz-adv-x="570" d="M544 629q0 -15 -10.5 -25.5t-25.5 -10.5h-182v-558q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v558h-181q-15 0 -25.5 10.5t-10.5 27.5q0 15 10.5 25.5t25.5 10.5h446q15 0 25.5 -10.5t10.5 -27.5z" />
69
+ <glyph unicode="U" horiz-adv-x="700" d="M622 260q0 -62 -17 -112.5t-51 -86t-85 -54.5t-119 -19t-119 19.5t-85 54.5t-51 85t-17 112v374q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-372q0 -92 48 -145.5t141 -53.5t141 53.5t48 145.5v372q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-373v0z" />
70
+ <glyph unicode="V" horiz-adv-x="658" d="M630 629q0 -9 -3 -16l-231 -574q-8 -20 -26.5 -32.5t-39.5 -12.5h-2q-22 0 -40.5 12.5t-26.5 32.5l-230 574q-3 7 -3 16q0 15 12.5 29.5t32.5 14.5q13 0 24 -7t16 -20l216 -555l216 555q5 12 15.5 19.5t24.5 7.5q20 0 32.5 -13.5t12.5 -30.5z" />
71
+ <glyph unicode="W" horiz-adv-x="883" d="M856 631q0 -4 -2 -12l-166 -584q-5 -18 -20.5 -29.5t-35.5 -11.5h-1q-20 0 -34 12t-19 29l-137 503l-138 -503q-5 -18 -20 -29.5t-35 -11.5h-1q-20 0 -34 11.5t-19 28.5l-166 585q-2 8 -2 12q0 16 11.5 29t31.5 13q15 0 27.5 -9t16.5 -24l141 -529l146 531q4 14 15 22.5 t27 8.5q14 0 25.5 -8.5t15.5 -22.5l146 -531l140 529q4 14 16 23t27 9q19 0 31.5 -12t12.5 -29z" />
72
+ <glyph unicode="X" horiz-adv-x="652" d="M603 34q0 -8 -3 -15.5t-8.5 -13t-13 -9t-15.5 -3.5q-9 0 -17 3.5t-13 11.5l-207 276l-208 -276q-5 -8 -13 -11.5t-17 -3.5q-17 0 -28.5 11.5t-11.5 28.5q0 6 1.5 12.5t6.5 11.5l216 285l-201 268q-8 11 -8 23q0 14 11 27t29 13q19 0 32 -16l191 -257l191 258q10 15 30 15 q16 0 28.5 -11.5t12.5 -28.5q0 -13 -7 -23l-201 -267l216 -286q7 -10 7 -23z" />
73
+ <glyph unicode="Y" horiz-adv-x="626" d="M585 633q0 -12 -6 -21l-224 -330v-247q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v247l-225 330q-7 10 -7 21q0 14 10.5 27t29.5 13q9 0 18.5 -4.5t15.5 -12.5l199 -299l199 299q5 8 14 12t18 4q17 0 29 -11.5t12 -27.5z" />
74
+ <glyph unicode="Z" horiz-adv-x="585" d="M542 38q0 -17 -10.5 -27.5t-25.5 -10.5h-421q-16 0 -29 13t-13 33q0 16 9 28l371 519h-345q-15 0 -25.5 10.5t-10.5 27.5q0 15 10.5 25.5t25.5 10.5h414q16 0 29 -13t13 -33q0 -16 -9 -28l-371 -519h352q15 0 25.5 -10.5t10.5 -25.5z" />
75
+ <glyph unicode="[" horiz-adv-x="243" d="M232 -162q0 -12 -7.5 -20t-18.5 -8h-106q-25 0 -42.5 17.5t-17.5 42.5v748q0 25 17.5 42.5t42.5 17.5h106q11 0 18.5 -8t7.5 -20q0 -11 -7.5 -19t-18.5 -8h-108v-758h108q11 0 18.5 -8t7.5 -19z" />
76
+ <glyph unicode="\" horiz-adv-x="296" d="M288 -3q0 -10 -7.5 -19.5t-20.5 -9.5q-8 0 -15.5 5.5t-10.5 13.5l-225 674q-1 2 -1.5 4t-0.5 4q0 11 8 20t21 9q8 0 15.5 -5t10.5 -13l225 -674q1 -2 1 -4.5v-4.5z" />
77
+ <glyph unicode="]" horiz-adv-x="243" d="M203 -130q0 -25 -17.5 -42.5t-42.5 -17.5h-105q-11 0 -19 8t-8 20q0 11 8 19t19 8h107v758h-107q-11 0 -19 8t-8 21q0 11 8 18.5t19 7.5h105q25 0 42.5 -17.5t17.5 -42.5v-748v0z" />
78
+ <glyph unicode="^" horiz-adv-x="432" d="M399 354q0 -9 -7.5 -18.5t-20.5 -9.5q-7 0 -13.5 3.5t-9.5 10.5l-132 272l-131 -272q-3 -7 -9.5 -10.5t-13.5 -3.5q-12 0 -20.5 9t-8.5 20q0 6 3 12l144 284q5 10 15 16t23 6q11 0 20.5 -6t14.5 -16l143 -284q3 -6 3 -13z" />
79
+ <glyph unicode="_" horiz-adv-x="564" d="M573 -67q0 -12 -7.5 -20t-18.5 -8h-529q-11 0 -19 8t-8 20q0 11 8 19t19 8h529q11 0 18.5 -8t7.5 -19z" />
80
+ <glyph unicode="`" horiz-adv-x="226" d="M203 571q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
81
+ <glyph unicode="a" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45z" />
82
+ <glyph unicode="b" horiz-adv-x="575" d="M528 241q0 -59 -16 -106t-44.5 -79.5t-68 -50t-86.5 -17.5q-51 0 -93.5 23.5t-69.5 60.5v-41q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-227q29 40 71 62.5t92 22.5q47 0 86.5 -18t68 -51t44.5 -80t16 -105zM450 241 q0 40 -10.5 74.5t-30.5 59.5t-49 39t-66 14q-45 0 -84.5 -23t-59.5 -55v-219q20 -32 59.5 -54t84.5 -22q37 0 66 14t49 39t30.5 59t10.5 74z" />
83
+ <glyph unicode="c" horiz-adv-x="495" d="M455 72q0 -5 -1.5 -10.5t-6.5 -10.5q-28 -29 -66 -46t-93 -17q-54 0 -98.5 19.5t-76 53.5t-49 80.5t-17.5 100.5t17.5 100t49 80t76 53.5t98.5 19.5q27 0 50 -4.5t42.5 -13t36 -20t30.5 -25.5q8 -10 8 -21q0 -13 -10 -23.5t-24 -10.5q-15 0 -26 11q-22 21 -47.5 30.5 t-55.5 9.5q-39 0 -69.5 -14t-52.5 -39t-33.5 -59t-11.5 -74t11.5 -74.5t33.5 -59.5t52.5 -39t69.5 -14q61 0 103 41q10 9 25 9q14 0 24.5 -9.5t10.5 -23.5z" />
84
+ <glyph unicode="d" horiz-adv-x="575" d="M500 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v41q-27 -37 -69.5 -60.5t-93.5 -23.5q-47 0 -86.5 17.5t-68 50t-44.5 79.5t-16 106q0 58 15.5 105t44 80t68 51t87.5 18q49 0 91.5 -22.5t71.5 -62.5v227q0 14 11 25t28 11q14 0 25 -11t11 -25v-606zM425 131v219 q-20 32 -60 55t-85 23q-36 0 -65 -14t-49 -39t-30.5 -59.5t-10.5 -74.5t10.5 -74t30.5 -59t49 -39t65 -14q45 0 85 22t60 54z" />
85
+ <glyph unicode="e" horiz-adv-x="563" d="M516 258q0 -17 -12 -29t-29 -12h-349q2 -34 15 -64.5t35.5 -53t53.5 -36t70 -13.5q35 0 68 11t62 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-36 -29 -79 -43t-94 -14q-54 0 -99 18.5t-77.5 52t-51 80t-18.5 103.5q0 52 18 98.5t49.5 80.5t75 54t95.5 20 q45 0 82 -13.5t65.5 -38.5t48 -59t28.5 -76l4.5 -24t2.5 -26zM443 272q0 27 -9.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h317z" />
86
+ <glyph unicode="f" horiz-adv-x="283" d="M332 631q0 -13 -9.5 -21.5t-20.5 -8.5q-12 0 -25.5 7t-29.5 7q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-386q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v386h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v37 q0 75 37.5 116t102.5 41q12 0 28.5 -2.5t31.5 -7.5t25.5 -14t10.5 -22z" />
87
+ <glyph unicode="g" horiz-adv-x="574" d="M499 14q0 -60 -19.5 -100.5t-51.5 -64.5t-73.5 -34.5t-85.5 -10.5q-27 0 -51 2.5t-46.5 9.5t-43 18t-40.5 28q-11 9 -11 25q0 13 9.5 22.5t23.5 9.5q13 0 21 -7q29 -26 62 -36t76 -10q30 0 58 7.5t49.5 25t34.5 45t13 67.5v69q-26 -37 -68.5 -61.5t-93.5 -24.5 q-47 0 -86.5 17t-68 49.5t-44.5 78.5t-16 105q0 58 15.5 104.5t44 79t68 50t87.5 17.5q49 0 91 -22.5t71 -62.5v43q0 14 11 25t28 11q14 0 25 -11t11 -25v-439zM424 139v211q-10 16 -25 30t-34 24.5t-41 17t-44 6.5q-36 0 -65 -13.5t-49 -38t-30.5 -58.5t-10.5 -74 t10.5 -73.5t30.5 -58t49 -38.5t65 -14q22 0 44 6.5t41 17.5t34 25t25 30z" />
88
+ <glyph unicode="h" horiz-adv-x="552" d="M477 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v287q0 32 -8 53t-22 34t-34.5 18t-44.5 5q-22 0 -43 -6t-39.5 -16.5t-34 -24t-26.5 -28.5v-322q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-224q13 15 31 29.5t40.5 26.5 t48.5 19t53 7q76 0 115 -37.5t39 -116.5v-310v0z" />
89
+ <glyph unicode="i" horiz-adv-x="225" d="M112 653q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5t15 36t35 15zM150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422z" />
90
+ <glyph unicode="j" horiz-adv-x="225" d="M112 653q21 0 36 -15t15 -36t-15.5 -35.5t-35.5 -14.5t-35 14.5t-15 35.5t15 36t35 15zM150 -47q0 -71 -37 -110t-106 -39q-17 0 -35 3t-33 9t-25 15t-10 21q0 13 10 21.5t22 8.5t26.5 -8t34.5 -8q34 0 56 20.5t22 66.5v500q0 14 11 25t28 11q14 0 25 -11t11 -25v-500z " />
91
+ <glyph unicode="k" horiz-adv-x="514" d="M464 31q0 -13 -10 -25.5t-27 -12.5q-8 0 -16 3.5t-13 10.5l-168 210l-80 -79v-107q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-411l250 254q10 10 23 10q14 0 24.5 -11t10.5 -25q0 -13 -9 -22l-164 -168l171 -211q8 -10 8 -22 z" />
92
+ <glyph unicode="l" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-606v0z" />
93
+ <glyph unicode="m" horiz-adv-x="808" d="M733 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v297q0 46 -21 73t-68 27q-38 0 -73.5 -22.5t-54.5 -51.5v-323q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v297q0 46 -20.5 73t-68.5 27q-37 0 -72 -23t-55 -52v-322q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422 q0 14 11 25t28 11q14 0 25 -11t11 -25v-40q7 12 22.5 26t36.5 26.5t45.5 21t51.5 8.5q56 0 87.5 -26t42.5 -64q10 16 27 32.5t38 29t46 20.5t51 8q66 0 100.5 -36.5t34.5 -109.5v-318v0z" />
94
+ <glyph unicode="n" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v285q0 64 -29.5 88t-78.5 24q-22 0 -43 -6t-40 -16.5t-34.5 -24t-25.5 -28.5v-322q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-40q13 15 31 29.5t40.5 26.5t48 19t52.5 7 q76 0 115 -38.5t39 -117.5v-308v0z" />
95
+ <glyph unicode="o" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71z" />
96
+ <glyph unicode="p" d="M528 242q0 -59 -15.5 -106t-44 -80t-68 -50.5t-87.5 -17.5q-50 0 -92 22t-71 63v-227q0 -14 -11 -25t-27 -11q-15 0 -26 11t-11 25v607q0 14 11 25t28 11q14 0 25 -11t11 -25v-42q26 37 69 60.5t94 23.5q48 0 87.5 -17.5t68 -50t44 -79.5t15.5 -106zM449 242 q0 40 -10.5 74t-30.5 59t-49 39t-65 14q-45 0 -84.5 -22.5t-59.5 -54.5v-218q20 -32 59.5 -55t84.5 -23q36 0 65 14t49 39t30.5 59.5t10.5 74.5z" />
97
+ <glyph unicode="q" d="M496 -154q0 -14 -11 -25t-27 -11q-15 0 -26 11t-11 25v227q-29 -41 -71 -63t-91 -22q-48 0 -87.5 17.5t-68 50.5t-44 80t-15.5 106t15.5 106t44 79.5t68 50t87.5 17.5q51 0 93.5 -23.5t68.5 -60.5v42q0 14 11 25t28 11q14 0 25 -11t11 -25v-607zM421 133v218 q-9 16 -24.5 30t-34.5 24.5t-41 16.5t-44 6q-36 0 -65 -14t-48.5 -39t-30 -59t-10.5 -74t10.5 -74.5t30 -59.5t48.5 -39t65 -14q22 0 44 6.5t41 17t34.5 24.5t24.5 30z" />
98
+ <glyph unicode="r" horiz-adv-x="330" d="M317 456q0 -17 -11 -28.5t-28 -12.5q-37 -2 -70.5 -19.5t-57.5 -53.5v-311q0 -15 -11 -26t-27 -11h-1q-15 1 -25.5 11.5t-10.5 25.5v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-48q11 14 25 29.5t31 28t36.5 20.5t40.5 8q14 0 24 -10t10 -25z" />
99
+ <glyph unicode="s" horiz-adv-x="465" d="M418 134q0 -30 -12 -57t-36 -46.5t-59.5 -31t-82.5 -11.5q-26 0 -50 3.5t-46.5 11t-43.5 19t-40 28.5q-11 9 -11 23t10 23t24 9q12 0 22 -7q26 -21 62 -35t76 -14q56 0 85 23.5t29 59.5q0 29 -22 44.5t-55.5 25.5t-72 18.5t-72 24t-55.5 41t-22 70.5q0 28 12 53.5 t35 44.5t56.5 30t76.5 11q26 0 49 -4t43.5 -11t38 -18t33.5 -24q10 -9 10 -22t-9 -21.5t-21 -8.5t-20 7q-23 18 -55 29.5t-69 11.5q-50 0 -78.5 -22t-28.5 -54q0 -26 22 -40t55.5 -23.5t72 -18t72 -24.5t55.5 -43.5t22 -74.5z" />
100
+ <glyph unicode="t" horiz-adv-x="294" d="M286 31q0 -12 -8 -20t-20.5 -13.5t-28.5 -7.5t-32 -2q-54 0 -80.5 29.5t-26.5 83.5v316h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v102q0 14 11 25t28 11q14 0 25 -11t11 -25v-102h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-300q0 -27 12 -44.5t37 -17.5 q10 0 20.5 3.5t19.5 3.5q13 0 22.5 -9t9.5 -22z" />
101
+ <glyph unicode="u" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v37q-28 -32 -73 -56t-99 -24q-76 0 -115 37.5t-39 116.5v311q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -32 7.5 -53t22 -34t34.5 -18t44 -5q44 0 83 22t60 51v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z " />
102
+ <glyph unicode="v" horiz-adv-x="490" d="M472 452q0 -7 -3 -13l-170 -410q-7 -16 -21.5 -25.5t-33.5 -9.5h-1q-17 0 -31 9.5t-21 25.5l-170 410q-3 6 -3 13q0 14 10.5 25.5t27.5 11.5q11 0 20.5 -6t14.5 -17l154 -379l153 379q5 11 14.5 17t20.5 6q17 0 28 -11t11 -26z" />
103
+ <glyph unicode="w" horiz-adv-x="734" d="M711 453q0 -4 -2 -10l-133 -416q-5 -14 -17 -23.5t-29 -9.5h-1q-16 0 -28 9.5t-17 23.5l-117 361l-117 -361q-5 -14 -17.5 -23.5t-29.5 -9.5h-1q-16 0 -27.5 9.5t-16.5 23.5l-133 416q-2 6 -2 10q0 13 10 24.5t26 11.5q12 0 22.5 -7t14.5 -18l112 -366l120 363 q5 13 15 20.5t25 7.5q13 0 23 -7.5t15 -20.5l120 -363l112 366q4 11 14 18t22 7q16 0 26.5 -11t10.5 -25z" />
104
+ <glyph unicode="x" horiz-adv-x="486" d="M445 28q0 -12 -9.5 -23.5t-25.5 -11.5q-8 0 -15 3.5t-12 10.5l-140 191l-140 -191q-11 -14 -27 -14q-14 0 -24.5 10.5t-10.5 24.5q0 12 7 20l149 200l-139 186q-7 10 -7 19q0 12 9.5 24t26.5 12t27 -13l129 -177l128 176q5 7 12 10.5t15 3.5q14 0 25 -10.5t11 -24.5 q0 -13 -7 -21l-138 -185l150 -200q6 -9 6 -20z" />
105
+ <glyph unicode="y" horiz-adv-x="490" d="M472 452q0 -7 -3 -13l-224 -537q-22 -52 -58.5 -75t-83.5 -23q-10 0 -20.5 1t-19 4t-14 10t-5.5 19q0 15 10 24.5t23 9.5q7 0 13 -0.5t12 -0.5q23 -1 40 10t31 41l32 73l-184 444q-3 6 -3 13q0 14 10.5 25.5t27.5 11.5q11 0 20.5 -6t14.5 -17l154 -379l153 379 q5 11 14.5 17t20.5 6q17 0 28 -11t11 -26z" />
106
+ <glyph unicode="z" horiz-adv-x="472" d="M426 34q0 -15 -9 -24.5t-22 -9.5h-314q-14 0 -24 10.5t-10 27.5q0 7 2.5 13.5t6.5 11.5l262 354h-240q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h310q13 0 23 -10t10 -27q0 -13 -8 -24l-265 -357h247q13 0 22 -9t9 -22z" />
107
+ <glyph unicode="{" horiz-adv-x="260" d="M249 -162q0 -12 -7.5 -20t-18.5 -8h-41q-24 0 -46.5 9.5t-40 27t-28 42t-10.5 55.5v206q0 28 -8 45t-26 22q-11 3 -17.5 10t-6.5 18t6.5 17t17.5 9q18 5 26 22t8 45v205q0 31 10.5 56t28 42.5t40 27t46.5 9.5h41q11 0 18.5 -8t7.5 -20q0 -11 -7.5 -19t-18.5 -8h-41 q-27 0 -46.5 -22.5t-19.5 -57.5v-211q0 -32 -10.5 -54.5t-35.5 -33.5q25 -11 35.5 -33.5t10.5 -54.5v-211q0 -35 19.5 -57.5t46.5 -22.5h41q11 0 18.5 -8t7.5 -19z" />
108
+ <glyph unicode="|" horiz-adv-x="211" d="M133 1q0 -11 -8 -19t-20 -8q-11 0 -19 8t-8 19v666q0 11 8 18.5t21 7.5q11 0 18.5 -7.5t7.5 -18.5v-666v0z" />
109
+ <glyph unicode="}" horiz-adv-x="260" d="M261 244q0 -11 -6.5 -17.5t-17.5 -9.5q-18 -5 -26 -22t-8 -45v-206q0 -31 -10.5 -55.5t-28 -42t-40 -27t-46.5 -9.5h-40q-11 0 -19 8t-8 20q0 11 8 19t19 8h40q27 0 46.5 22.5t19.5 57.5v211q0 32 10.5 54.5t35.5 33.5q-25 11 -35.5 33.5t-10.5 54.5v211q0 35 -19.5 57.5 t-46.5 22.5h-40q-11 0 -19 8t-8 21q0 11 8 18.5t19 7.5h40q24 0 46.5 -9.5t40 -27t28 -42.5t10.5 -56v-205q0 -28 8 -45t26 -22q11 -3 17.5 -9.5t6.5 -17.5z" />
110
+ <glyph unicode="~" horiz-adv-x="503" d="M472 633q-5 -41 -13.5 -79t-24 -67t-39.5 -46.5t-58 -17.5q-31 0 -50.5 14t-32.5 35t-21 46t-17 46t-20.5 35t-30.5 14q-17 0 -29.5 -12t-22 -33.5t-16.5 -52t-11 -66.5q-2 -11 -9.5 -17t-18.5 -6q-14 0 -21 8.5t-7 21.5q5 42 14 80t24.5 67t39 46t57.5 17q31 0 51 -14 t32.5 -35.5t21 -46t17 -46t20 -35.5t30.5 -14q16 0 29 12t23 33.5t16.5 52t10.5 67.5q1 11 9 17t19 6q13 0 20.5 -9t7.5 -21z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="230" d="M170 438q-1 -23 -16.5 -39t-38.5 -16t-39 16t-16 39q0 11 4.5 21t12 17.5t17.5 12t21 4.5t21 -4.5t17.5 -12t12 -17.5t4.5 -21zM161 -145q1 -18 -13 -31.5t-31 -13.5q-20 0 -34 13.5t-13 31.5l1 31l2.5 77t3 100.5t3 100.5l2.5 77l1 31q1 13 10 21.5t23 8.5 q13 0 21.5 -8.5t9.5 -21.5l1 -31l2.5 -77t3.5 -100.5t3.5 -100.5l2.5 -77z" />
112
+ <glyph unicode="&#xa2;" horiz-adv-x="495" d="M455 73q0 -14 -8 -22q-26 -26 -58 -42t-78 -20v-67q0 -11 -8.5 -19.5t-19.5 -8.5q-14 0 -22.5 8.5t-8.5 19.5v69q-47 6 -84.5 27.5t-64.5 54.5t-41.5 76t-14.5 93q0 49 14.5 91.5t41.5 75.5t64.5 55t84.5 28v51q0 11 8.5 19.5t22.5 8.5q11 0 19.5 -8.5t8.5 -19.5v-49 q46 -4 78 -20t58 -42q8 -10 8 -21q0 -14 -10.5 -24t-24.5 -10q-7 0 -13.5 3t-11.5 8q-20 19 -40 27.5t-44 11.5v-371q24 2 44 11.5t40 28.5q10 9 25 9q13 0 24 -9t11 -23zM252 59v364q-60 -14 -93.5 -63t-33.5 -118q0 -70 33.5 -119.5t93.5 -63.5z" />
113
+ <glyph unicode="&#xa3;" horiz-adv-x="518" d="M505 48q0 -15 -13 -26t-32.5 -19t-42.5 -12t-44 -4q-34 0 -55.5 7t-39.5 16t-37 16t-47 7q-20 0 -44.5 -8t-49.5 -20q-4 -2 -7.5 -2.5t-7.5 -0.5q-14 0 -23.5 9t-9.5 24q0 10 4.5 18.5t13.5 13.5q53 28 81 64.5t28 76.5q0 17 -4 31.5t-11 28.5h-125q-11 0 -18.5 8 t-7.5 20q0 11 7.5 18.5t18.5 7.5h86l-27.5 32.5t-24.5 36t-18 41.5t-7 48q0 41 18 77t48.5 62.5t71 42t86.5 15.5q29 0 56 -5.5t51 -16.5t44.5 -27t35.5 -37q3 -5 4.5 -10t1.5 -10q0 -15 -11 -25.5t-28 -10.5q-21 0 -35 17q-10 12 -22 22t-26 17.5t-30 11.5t-33 4 q-29 0 -54.5 -9t-45.5 -25.5t-31.5 -40t-11.5 -53.5q0 -27 8 -48.5t20 -40t26 -35t27 -33.5h130q11 0 18.5 -8t7.5 -20q0 -11 -7.5 -18.5t-18.5 -7.5h-102q3 -10 5 -20.5t2 -22.5q0 -46 -22.5 -78t-53.5 -54q11 4 24.5 6.5t27.5 2.5q24 0 42 -6.5t34.5 -14t33.5 -14t38 -6.5 q14 0 26.5 3.5t23 8t20 8t17.5 3.5q14 0 27.5 -10t13.5 -26z" />
114
+ <glyph unicode="&#xa4;" horiz-adv-x="598" d="M556 110q0 -12 -9.5 -22.5t-23.5 -10.5q-13 0 -22 9l-55 53q-29 -22 -65.5 -34t-81.5 -12t-82.5 12.5t-66.5 34.5l-53 -54q-5 -5 -10.5 -7t-11.5 -2q-12 0 -23 9t-11 23q0 13 9 22l55 55q-22 31 -33.5 68t-11.5 79t11.5 79.5t34.5 67.5l-56 56q-10 10 -10 23 q0 12 9.5 22.5t23.5 10.5q13 0 23 -10l56 -56q29 22 65.5 34t81.5 12q44 0 80.5 -12t65.5 -34l56 56q9 9 21 9t23 -9.5t11 -23.5q0 -13 -9 -22l-56 -56q23 -30 35 -67.5t12 -79.5t-12 -79.5t-34 -68.5l55 -54q9 -9 9 -21zM461 333q0 33 -10.5 64t-31 54.5t-51 37.5t-69.5 14 t-69 -14t-51 -37.5t-31.5 -54.5t-10.5 -64q0 -34 10.5 -65t31.5 -55t51 -38t69 -14t69.5 14t51 38t31 55t10.5 65z" />
115
+ <glyph unicode="&#xa5;" horiz-adv-x="626" d="M611 148q0 -11 -7.5 -18.5t-17.5 -7.5h-231v-87q0 -17 -11.5 -29t-28.5 -12q-18 0 -30.5 11t-12.5 30v87h-230q-11 0 -18.5 8t-7.5 20q0 10 7.5 17.5t18.5 7.5h230v107h-231q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h195l-189 278q-7 8 -7 21q0 14 10.5 27t29.5 13 q9 0 18.5 -4.5t15.5 -12.5l199 -299l199 299q5 8 14 12t18 4q17 0 29 -11.5t12 -27.5q0 -12 -6 -21l-189 -278h196q11 0 18 -7.5t7 -19.5q0 -11 -7 -18t-18 -7h-231v-107h231q10 0 17.5 -8t7.5 -19z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="211" d="M133 398q0 -11 -8 -19t-20 -8q-11 0 -19 8t-8 19v263q0 11 8 18.5t21 7.5q11 0 18.5 -7.5t7.5 -18.5v-263zM133 7q0 -11 -8 -19t-20 -8q-11 0 -19 8t-8 19v263q0 11 8 18.5t21 7.5q11 0 18.5 -7.5t7.5 -18.5v-263z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="468" d="M418 66q0 -35 -14 -62.5t-39 -46t-60 -28.5t-77 -10q-31 0 -56.5 5t-47.5 13.5t-40 19.5t-33 24q-11 8 -11 23q0 13 8.5 22t21.5 9q10 0 18 -6q25 -22 61 -38.5t79 -16.5q52 0 84.5 22.5t32.5 64.5q0 31 -22 47.5t-55.5 27t-72 19.5t-72 24t-55.5 41t-22 70q0 27 9.5 48 t25.5 36.5t36.5 26.5t43.5 17q-53 17 -84 45t-31 78q0 28 12 52.5t35 43t56.5 29.5t76.5 11q30 0 61 -6.5t55.5 -17t40.5 -24.5t16 -29q0 -12 -7.5 -21t-19.5 -9q-9 0 -16 6q-26 23 -61 34t-67 11q-48 0 -78.5 -21.5t-30.5 -58.5q0 -28 22 -43t55.5 -24t72 -17.5t72 -24.5 t55.5 -43t22 -74q0 -42 -23 -75t-69 -53q42 -16 67 -44t25 -77zM344 305q0 22 -10 37t-26 25.5t-36 17.5t-41 12q-65 -17 -88.5 -42t-23.5 -57q0 -21 12 -35.5t32 -24.5t45.5 -17l52.5 -14q40 17 61.5 40t21.5 58z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="272" d="M286 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM79 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="778" d="M734 334q0 -71 -27 -134t-74 -110t-109.5 -74t-134.5 -27q-71 0 -134 27t-110 74t-74 110t-27 134q0 72 27 134.5t74 109.5t110 74t134 27q72 0 134.5 -27t109.5 -74t74 -109.5t27 -134.5zM703 334q0 65 -24.5 122t-67.5 100t-100 67.5t-122 24.5t-122 -24.5t-100 -67.5 t-67.5 -100t-24.5 -122t24.5 -122t67.5 -100t100 -67.5t122 -24.5t122 24.5t100 67.5t67.5 100t24.5 122zM535 191q0 -8 -4 -12q-28 -29 -63 -43.5t-77 -14.5q-43 0 -81 16.5t-66 45t-44.5 67.5t-16.5 85t16.5 85t44.5 67.5t66 44.5t81 16q42 0 77.5 -15t61.5 -44 q4 -4 4 -11t-4.5 -12.5t-12.5 -5.5q-7 0 -11 6q-22 24 -52.5 36.5t-62.5 12.5q-34 0 -65 -13t-54.5 -36.5t-37.5 -57t-14 -73.5q0 -39 14 -72.5t37.5 -57.5t54.5 -37.5t65 -13.5q32 0 63 13.5t51 36.5q5 5 12 5q6 0 12 -5t6 -13z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="378" d="M317 348q0 -12 -8 -20t-21 -8q-12 0 -20 8t-8 20v13q-18 -20 -44.5 -31.5t-62.5 -11.5q-21 0 -41 7t-35.5 20t-25.5 32.5t-10 44.5q0 26 10 45.5t25.5 32t35.5 19t41 6.5q36 0 62.5 -11.5t44.5 -30.5v55q0 31 -23.5 48t-55.5 17q-22 0 -43.5 -7.5t-40.5 -23.5 q-6 -6 -15 -6q-8 0 -15.5 6.5t-7.5 15.5t7 15q13 12 27.5 20.5t30 14t31.5 8t33 2.5q26 0 49.5 -6t41 -19t28 -34.5t10.5 -51.5v-189zM260 394v56q-14 18 -36.5 28t-48.5 10q-33 0 -54.5 -18.5t-21.5 -47.5q0 -30 21.5 -48t54.5 -18q26 0 48.5 10t36.5 28z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="439" d="M381 85q0 -11 -8.5 -20t-20.5 -9q-13 0 -20 9l-118 133q-9 10 -13 21.5t-4 23.5t4 23.5t13 21.5l117 129q7 9 20 9q11 0 20 -8t9 -20q0 -10 -6 -17l-125 -138l125 -141q7 -9 7 -17zM237 85q0 -11 -8.5 -20t-20.5 -9q-13 0 -20 9l-118 133q-17 19 -17 44q0 26 17 45 l118 130q7 9 20 9q10 0 19.5 -7.5t9.5 -19.5q0 -11 -7 -18l-125 -138l125 -141q7 -9 7 -17z" />
122
+ <glyph unicode="&#xac;" horiz-adv-x="504" d="M470 232q0 -11 -8 -19t-20 -8q-11 0 -19 8t-8 19v172h-366q-11 0 -18.5 8t-7.5 20q0 10 7.5 17.5t18.5 7.5h361q25 0 42.5 -17.5t17.5 -42.5v-165v0z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="300" d="M238 275q14 0 23 -9t9 -23t-9 -24t-23 -10h-176q-14 0 -23 9t-9 23t8.5 24t23.5 10h176v0z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="494" d="M459 465q0 -44 -16.5 -82.5t-45 -67.5t-67.5 -45.5t-83 -16.5t-82.5 16.5t-67.5 45.5t-45.5 67.5t-16.5 82.5t16.5 83t45.5 67.5t67.5 45t82.5 16.5t83 -16.5t67.5 -45t45 -67.5t16.5 -83zM430 465q0 38 -14.5 71.5t-39 58t-58 39t-71.5 14.5t-71.5 -14.5t-58.5 -39 t-39.5 -58t-14.5 -71.5t14.5 -71.5t39.5 -58.5t58.5 -39.5t71.5 -14.5t71.5 14.5t58 39.5t39 58.5t14.5 71.5zM342 512q0 -20 -7.5 -34t-18 -22.5t-21 -12t-15.5 -3.5l51 -76q3 -5 3 -8q0 -6 -5 -12t-13 -6t-13 7l-61 94h-44v-87q0 -6 -4.5 -10.5t-12.5 -4.5q-6 0 -10.5 4.5 t-4.5 10.5v207q0 11 8 19t19 8h72q31 0 54 -20t23 -54zM309 512q0 20 -14 33t-30 13h-67v-90h67q16 0 30 12.5t14 31.5z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="363" d="M363 597q0 -11 -6.5 -18t-16.5 -7h-317q-10 0 -16.5 7t-6.5 18q0 10 6.5 16.5t16.5 6.5h317q10 0 16.5 -6.5t6.5 -16.5z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="290" d="M267 555q0 -26 -9.5 -48t-26.5 -38.5t-39.5 -26t-47.5 -9.5t-47 9.5t-38.5 26t-26 38.5t-9.5 48q0 25 9.5 47.5t26 39t38.5 26t47 9.5t47.5 -9.5t39.5 -26t26.5 -39t9.5 -47.5zM219 555q0 30 -22 52t-53 22q-30 0 -51 -22t-21 -52q0 -31 21 -52.5t51 -21.5q31 0 53 21.5 t22 52.5z" />
127
+ <glyph unicode="&#xb1;" horiz-adv-x="499" d="M476 351q0 -12 -7 -19.5t-18 -7.5h-173v-192q0 -12 -8 -20t-21 -8q-12 0 -20 8t-8 20v192h-173q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h173v186q0 11 8 19t22 8q11 0 19 -8t8 -19v-186h173q11 0 18 -7t7 -18zM476 27q0 -12 -7 -19.5t-18 -7.5h-403q-11 0 -18 7.5t-7 19.5 q0 11 7 18t18 7h403q11 0 18 -7t7 -18z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="388" d="M347 447q0 -11 -7 -18.5t-16 -7.5h-258q-9 0 -15.5 6.5t-6.5 16.5q0 11 4.5 17.5t12.5 11.5q53 38 94 70.5t68.5 60.5t41.5 53t14 48q0 19 -7 33t-19 23t-27.5 13t-31.5 4q-29 0 -55 -10.5t-45 -26.5q-8 -6 -16 -6q-9 0 -17 6.5t-8 18.5t8 19q14 12 30 21t33.5 15t35.5 9 t36 3q27 0 53 -7t46 -21.5t32 -37t12 -52.5t-15 -59.5t-41.5 -58.5t-63.5 -59t-81 -62h186q9 0 16 -7t7 -16z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="388" d="M343 530q0 -51 -40.5 -83.5t-110.5 -32.5q-23 0 -49 5.5t-47.5 15t-36 21.5t-14.5 26q0 10 7.5 18.5t18.5 8.5q9 0 15 -6q21 -19 48.5 -29.5t55.5 -10.5q44 0 68.5 19t24.5 51q0 38 -30 53.5t-74 15.5h-15q-8 0 -16.5 5.5t-8.5 18.5q0 12 8.5 18t16.5 6h14q42 0 70 14.5 t28 49.5q0 31 -26 47.5t-63 16.5q-27 0 -51.5 -8.5t-45.5 -28.5q-5 -5 -14 -5t-17 6.5t-8 17.5t8 17q26 24 58.5 37t74.5 13q64 0 104 -28.5t40 -78.5q0 -22 -8.5 -38t-21.5 -27.5t-28.5 -18t-30.5 -9.5q14 -1 31 -7.5t31.5 -18.5t24 -29.5t9.5 -41.5z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="226" d="M190 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="565" d="M550 21q0 -11 -7.5 -21.5t-25.5 -10.5q-20 0 -37.5 3.5t-32.5 12.5t-26 25.5t-17 43.5q-26 -35 -66 -60.5t-87 -25.5q-43 0 -66.5 14t-34.5 34v-190q0 -14 -11 -25t-27 -11q-15 0 -26 11t-11 25v607q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -60 29.5 -86t80.5 -26 q21 0 42 6t39.5 16.5t33.5 24t26 28.5v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-340q0 -31 11.5 -41.5t25.5 -15t25.5 -9.5t11.5 -26z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="449" d="M378 -85q0 -8 -6.5 -14.5t-16.5 -6.5q-9 0 -15.5 6.5t-6.5 14.5v707h-89v-707q0 -8 -6.5 -14.5t-16.5 -6.5q-9 0 -15.5 6.5t-6.5 14.5v408q-36 0 -67 13.5t-54.5 37t-37 54.5t-13.5 67t13.5 67t37 54.5t54.5 37t67 13.5h137q17 0 29.5 -12.5t12.5 -29.5v-710v0z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="230" d="M170 244q0 -11 -4.5 -20.5t-12 -17t-17.5 -12t-21 -4.5t-21 4.5t-17.5 12t-12 17t-4.5 20.5q0 23 16 39t39 16t39 -16t16 -39z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="205" d="M205 -111q0 -37 -30.5 -58.5t-73.5 -21.5q-15 0 -32.5 2.5t-32.5 7.5t-25 12.5t-10 18.5q0 8 6.5 14t14.5 6q5 0 8 -2q17 -11 34.5 -15.5t34.5 -4.5q24 0 42.5 11t18.5 31q0 16 -9 25.5t-28 9.5q-13 0 -24.5 -8t-22.5 -8q-9 0 -15 7t-6 15v3.5t1 3.5l20 53q3 9 11 14.5 t18 5.5q7 1 11.5 -3.5t4.5 -10.5q0 -4 -1 -6l-18 -46q16 11 37 11q29 0 47.5 -18t18.5 -49z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="235" d="M175 444q0 -12 -8.5 -20.5t-22.5 -8.5q-12 0 -20.5 8.5t-8.5 20.5v299l-53 -55q-8 -8 -17 -8q-10 0 -17.5 8t-7.5 19q0 10 7 17l84 85q8 8 16.5 13t19.5 5q12 0 20 -7.5t8 -17.5v-358v0z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="405" d="M365 483q0 -34 -11.5 -64t-32.5 -52.5t-51 -35.5t-68 -13q-37 0 -67 13t-51 35.5t-32.5 52.5t-11.5 64t11.5 64t32.5 52.5t51 35.5t67 13q38 0 68 -13t51 -35.5t32.5 -52.5t11.5 -64zM306 483q0 49 -27 82t-77 33q-49 0 -75.5 -33t-26.5 -82q0 -50 26.5 -83.5t75.5 -33.5 q50 0 77 33.5t27 83.5z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="439" d="M386 242q0 -24 -17 -44l-118 -133q-8 -9 -20 -9q-11 0 -20 8t-9 20q0 11 7 18l125 141l-125 138q-7 7 -7 17t7.5 19t20.5 9q12 0 21 -9l118 -130q17 -20 17 -45zM242 243q0 -25 -17 -45l-118 -133q-8 -9 -20 -9q-11 0 -20 8t-9 20q0 11 7 18l125 141l-125 138q-7 9 -7 17 q0 11 8 19.5t21 8.5q12 0 21 -9l117 -129q9 -10 13 -21.5t4 -23.5z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="770" d="M739 126q0 -11 -7 -18.5t-16 -7.5h-41v-77q0 -12 -8.5 -20.5t-21.5 -8.5q-12 0 -20.5 8.5t-8.5 20.5v77h-181q-8 0 -14.5 6.5t-6.5 16.5q0 9 5 17l10 16l148 221q11 16 24 22.5t31 6.5q9 0 17 -3t14 -8.5t9 -13t3 -15.5v-217h41q9 0 16 -7t7 -16zM577 653q0 -6 -4 -12 l-409 -640q-8 -10 -19 -10q-10 0 -17 7t-7 17q0 6 4 11l409 641q7 10 19 10q11 0 17.5 -8t6.5 -16zM175 290q0 -12 -8.5 -20.5t-22.5 -8.5q-12 0 -20.5 8.5t-8.5 20.5v299l-53 -55q-8 -8 -17 -8q-10 0 -17.5 8t-7.5 19q0 10 7 17l84 85q8 8 16.5 13t19.5 5q12 0 20 -7.5 t8 -17.5v-358zM616 149v198l-136 -198h136z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="807" d="M765 26q0 -11 -7 -18.5t-16 -7.5h-258q-9 0 -15.5 6.5t-6.5 16.5q0 11 4.5 17.5t12.5 11.5q53 38 94 70.5t68.5 60.5t41.5 53t14 48q0 19 -7 33t-19 23t-27.5 13t-31.5 4q-29 0 -55 -10.5t-45 -26.5q-8 -6 -16 -6q-9 0 -17 6.5t-8 18.5t8 19q14 12 30 21t33.5 15t35.5 9 t36 3q27 0 53 -7t46 -21.5t32 -37t12 -52.5t-15 -59.5t-41.5 -58.5t-63.5 -59t-81 -62h186q9 0 16 -7t7 -16zM577 653q0 -6 -4 -12l-409 -640q-8 -10 -19 -10q-10 0 -17 7t-7 17q0 6 4 11l409 641q7 10 19 10q11 0 17.5 -8t6.5 -16zM175 290q0 -12 -8.5 -20.5t-22.5 -8.5 q-12 0 -20.5 8.5t-8.5 20.5v299l-53 -55q-8 -8 -17 -8q-10 0 -17.5 8t-7.5 19q0 10 7 17l84 85q8 8 16.5 13t19.5 5q12 0 20 -7.5t8 -17.5v-358z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="878" d="M848 126q0 -11 -7 -18.5t-16 -7.5h-41v-77q0 -12 -8.5 -20.5t-21.5 -8.5q-12 0 -20.5 8.5t-8.5 20.5v77h-181q-8 0 -14.5 6.5t-6.5 16.5q0 9 5 17l10 16l148 221q11 16 24 22.5t31 6.5q9 0 17 -3t14 -8.5t9 -13t3 -15.5v-217h41q9 0 16 -7t7 -16zM685 653q0 -6 -4 -12 l-409 -640q-8 -10 -19 -10q-10 0 -17 7t-7 17q0 6 4 11l409 641q7 10 19 10q11 0 17.5 -8t6.5 -16zM343 376q0 -51 -40.5 -83.5t-110.5 -32.5q-23 0 -49 5.5t-47.5 15t-36 21.5t-14.5 26q0 10 7.5 18.5t18.5 8.5q9 0 15 -6q21 -19 48.5 -29.5t55.5 -10.5q44 0 68.5 19 t24.5 51q0 38 -30 53.5t-74 15.5h-15q-8 0 -16.5 5.5t-8.5 18.5q0 12 8.5 18t16.5 6h14q42 0 70 14.5t28 49.5q0 31 -26 47.5t-63 16.5q-27 0 -51.5 -8.5t-45.5 -28.5q-5 -5 -14 -5t-17 6.5t-8 17.5t8 17q26 24 58.5 37t74.5 13q64 0 104 -28.5t40 -78.5q0 -22 -8.5 -38 t-21.5 -27.5t-28.5 -18t-30.5 -9.5q14 -1 31 -7.5t31.5 -18.5t24 -29.5t9.5 -41.5zM725 149v198l-136 -198h136z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="394" d="M293 437q0 -22 -16 -38t-39 -16t-39 16t-16 38q0 23 16 39.5t39 16.5t39 -16.5t16 -39.5zM435 -90q0 -14 -10 -26q-19 -19 -41 -34t-46.5 -25t-52.5 -15.5t-58 -5.5q-46 0 -82 12t-61.5 33t-39 49.5t-13.5 60.5q0 38 14.5 65t36 48t46.5 38t46.5 33.5t36 34.5t14.5 43 q0 11 -7 22.5t-7 22.5q0 12 8.5 22.5t24.5 10.5q15 0 25 -10.5t16.5 -24.5t9.5 -28t3 -21q0 -32 -13.5 -55t-33.5 -41t-43.5 -33.5t-43.5 -32t-33.5 -36.5t-13.5 -46q0 -38 29 -65.5t89 -27.5q46 0 80 16t60 43q9 10 24 10q14 0 25 -11t11 -26z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M363 738q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M462 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M449 737q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M485 834q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5t29.5 -14.5 t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M480 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM273 771q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="658" d="M630 38q0 -15 -12.5 -29.5t-32.5 -14.5q-13 0 -24 7t-16 20l-50 127h-332l-50 -127q-5 -13 -16 -20t-24 -7q-20 0 -32.5 13.5t-12.5 30.5q0 8 3 16l230 574q8 20 26.5 32.5t41.5 12.5q22 0 40 -12.5t26 -32.5l232 -574q3 -8 3 -16zM470 222l-141 359l-142 -359h283z M427 788q0 -20 -7.5 -38t-21 -31.5t-31.5 -21t-38 -7.5t-38 7.5t-31.5 21t-21 31.5t-7.5 38t7.5 38t21 31.5t31.5 21.5t38 8t38 -8t31.5 -21.5t21 -31.5t7.5 -38zM387 788q0 25 -16.5 42t-41.5 17q-24 0 -41 -17t-17 -42q0 -24 17 -41.5t41 -17.5q25 0 41.5 17.5t16.5 41.5z " />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="947" d="M899 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v88h-263l-81 -133q-5 -9 -14 -13.5t-19 -4.5q-17 0 -29.5 12t-12.5 29q0 10 6 21l348 557q14 23 39.5 37t52.5 14h380q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317 q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324q15 0 25.5 -10.5t10.5 -25.5zM456 222v359l-222 -359h222z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="676" d="M394 678q75 0 130 -27t93 -68q11 -13 11 -29t-11 -28t-28 -12q-8 0 -15.5 3t-12.5 10q-29 35 -74.5 56t-92.5 21q-55 0 -102 -20t-81.5 -56t-54 -85.5t-19.5 -109.5q0 -59 19.5 -109t54 -86t81.5 -56t102 -20q48 0 91.5 19.5t75.5 56.5q5 6 12.5 9.5t15.5 3.5 q17 0 28 -12t11 -29q0 -8 -3 -15t-8 -13q-38 -41 -89.5 -66.5t-123.5 -27.5l-15 -39q16 11 37 11q29 0 47.5 -18t18.5 -49q0 -37 -30.5 -58.5t-73.5 -21.5q-15 0 -32.5 2.5t-32.5 7.5t-25 12.5t-10 18.5q0 8 6.5 14t14.5 6q5 0 8 -2q17 -11 34.5 -15.5t34.5 -4.5 q24 0 42.5 11t18.5 31q0 16 -9 25.5t-28 9.5q-13 0 -24 -8t-22 -8q-9 0 -15.5 6.5t-6.5 15.5v3.5t1 3.5l17 48q-66 6 -122.5 33t-98 72t-65 105.5t-23.5 132.5q0 77 26.5 140.5t73 109t109 70.5t134.5 25z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="569" d="M521 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324 q15 0 25.5 -10.5t10.5 -25.5zM330 738q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="569" d="M521 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324 q15 0 25.5 -10.5t10.5 -25.5zM429 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="569" d="M521 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324 q15 0 25.5 -10.5t10.5 -25.5zM414 737q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="569" d="M521 38q0 -17 -10.5 -27.5t-25.5 -10.5h-347q-25 0 -42.5 17.5t-17.5 42.5v547q0 25 17.5 42.5t42.5 17.5h347q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-324v-215h317q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-317v-230h324 q15 0 25.5 -10.5t10.5 -25.5zM446 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM239 771q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="239" d="M161 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0zM155 738q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="239" d="M161 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0zM253 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="239" d="M161 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0zM241 737q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7 t21 -19l68 -99q3 -5 3 -11z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="239" d="M161 35q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v598q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-598v0zM272 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM65 771q0 -20 -13.5 -33.5t-32.5 -13.5 q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="728" d="M676 333q0 -71 -24.5 -132t-69 -105.5t-107.5 -70t-141 -25.5h-168q-25 0 -42.5 17.5t-17.5 42.5v239h-72q-13 0 -21.5 9t-8.5 23q0 12 8.5 20.5t21.5 8.5h72v247q0 25 17.5 42.5t42.5 17.5h168q78 0 141 -25.5t107.5 -70.5t69 -106t24.5 -132zM590 333q0 54 -17 101.5 t-49.5 82.5t-80 55.5t-109.5 20.5h-145v-233h146q12 0 20.5 -8.5t8.5 -22.5q0 -13 -8.5 -21.5t-20.5 -8.5h-146v-225h145q61 0 108.5 20.5t80.5 55.5t50 82t17 101z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="708" d="M630 41q0 -9 -3.5 -17.5t-10 -15t-16 -10.5t-20.5 -4q-12 0 -23 5.5t-18 15.5l-378 517v-497q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v588q0 10 4 19t11 16t16.5 11t21.5 4q13 0 24.5 -5.5t19.5 -16.5l372 -505v487q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5 v-592v0zM508 834q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5 t29.5 -14.5t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5zM417 738q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5zM516 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5zM503 737q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z " />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5zM538 834q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5 q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5t29.5 -14.5t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26t-135 26t-104.5 72.5t-67.5 109.5t-24 137t24 137t67.5 109.5t104.5 72.5t135 26t135 -26t104.5 -72.5t67.5 -109.5t24 -137zM627 333q0 58 -17.5 108t-49.5 86t-77 56.5t-101 20.5t-101.5 -20.5t-77.5 -56.5 t-49 -86t-17 -108t17 -107.5t49 -86t77.5 -57t101.5 -20.5t101 20.5t77 57t49.5 86t17.5 107.5zM532 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM325 771q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5 q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
165
+ <glyph unicode="&#xd7;" horiz-adv-x="499" d="M424 185q0 -12 -9 -19.5t-17 -7.5q-10 0 -18 8l-131 131l-130 -131q-8 -8 -18 -8t-18.5 8t-8.5 19q0 10 8 18l130 131l-130 130q-8 8 -8 18t7.5 18.5t19.5 8.5q11 0 18 -7l130 -131l131 131q7 7 17 7t18.5 -8t8.5 -19t-7 -18l-130 -130l130 -131q7 -7 7 -18z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="765" d="M713 333q0 -74 -24 -137t-67.5 -109.5t-104.5 -72.5t-135 -26q-50 0 -93 11.5t-80 33.5l-21 -31q-7 -10 -21 -10q-11 0 -20 7.5t-9 18.5q0 7 5 14l22 33q-54 47 -84 115.5t-30 152.5q0 74 24 137t67.5 109.5t104.5 72.5t135 26q48 0 89.5 -11t77.5 -31l19 28q8 11 22 11 q11 0 19.5 -7.5t8.5 -18.5q0 -10 -4 -15l-20 -29q57 -47 88 -117t31 -155zM627 333q0 63 -20 116t-58 89l-297 -441q27 -17 59.5 -26t70.5 -9q56 0 101 20.5t77 57t49.5 86t17.5 107.5zM506 572q-26 15 -57.5 23.5t-66.5 8.5q-56 0 -101.5 -20.5t-77.5 -56.5t-49 -86 t-17 -108q0 -62 19 -113.5t54 -87.5z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="700" d="M622 260q0 -62 -17 -112.5t-51 -86t-85 -54.5t-119 -19t-119 19.5t-85 54.5t-51 85t-17 112v374q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-372q0 -92 48 -145.5t141 -53.5t141 53.5t48 145.5v372q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-373v0z M384 738q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="700" d="M622 260q0 -62 -17 -112.5t-51 -86t-85 -54.5t-119 -19t-119 19.5t-85 54.5t-51 85t-17 112v374q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-372q0 -92 48 -145.5t141 -53.5t141 53.5t48 145.5v372q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-373v0z M483 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="700" d="M622 260q0 -62 -17 -112.5t-51 -86t-85 -54.5t-119 -19t-119 19.5t-85 54.5t-51 85t-17 112v374q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-372q0 -92 48 -145.5t141 -53.5t141 53.5t48 145.5v372q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-373v0z M471 737q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="700" d="M622 260q0 -62 -17 -112.5t-51 -86t-85 -54.5t-119 -19t-119 19.5t-85 54.5t-51 85t-17 112v374q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-372q0 -92 48 -145.5t141 -53.5t141 53.5t48 145.5v372q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-373v0z M501 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM294 771q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="626" d="M585 633q0 -12 -6 -21l-224 -330v-247q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v247l-225 330q-7 10 -7 21q0 14 10.5 27t29.5 13q9 0 18.5 -4.5t15.5 -12.5l199 -299l199 299q5 8 14 12t18 4q17 0 29 -11.5t12 -27.5zM446 847q0 -11 -8 -17l-126 -108q-7 -5 -12 -5 q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="587" d="M555 346q0 -41 -14 -77.5t-41 -63.5t-66 -43t-88 -16h-185v-105q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v586q0 17 12 28.5t31 11.5q17 0 28.5 -11.5t11.5 -28.5v-79h185q50 0 89 -16t65.5 -44t40.5 -64.5t14 -77.5zM469 346q0 57 -36.5 92.5t-96.5 35.5h-175v-254 h175q60 0 96.5 34.5t36.5 91.5z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="597" d="M578 135q0 -29 -11.5 -56t-35 -47t-58.5 -32t-81 -12q-30 0 -55 4.5t-45 12.5t-36.5 19t-31.5 25q-11 11 -11 25q0 13 8 23t21 10q9 0 19 -8q23 -22 56.5 -36t74.5 -14q57 0 85 26t28 58q0 29 -21.5 44.5t-53 26t-69 19t-69 23.5t-53 40.5t-21.5 69.5q0 27 11 47t27 35.5 t35 27.5t35 23.5t27 24t11 28.5q0 17 -9 29.5t-23 21t-31.5 13t-35.5 4.5q-24 0 -44.5 -7.5t-36.5 -22t-25 -35t-9 -46.5v-468q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v468q0 37 13.5 69.5t38 56.5t60 38t79.5 14q34 0 66 -8.5t56 -25t38.5 -40t14.5 -52.5 q0 -28 -11 -47t-28 -34t-36 -26.5t-36 -24t-28 -27.5t-11 -35q0 -26 21.5 -39.5t53 -22.5t69 -17.5t69 -24.5t53 -43.5t21.5 -74.5z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM299 571q0 -8 -5.5 -14.5 t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM398 680q0 -11 -8 -17 l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM384 570q0 -7 -5.5 -14 t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM421 667q-2 -25 -9.5 -46 t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5t29.5 -14.5t30.5 15.5t16.5 48.5 q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM415 604q0 -20 -14 -33.5 t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM208 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="527" d="M452 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v2v11v11q-30 -33 -70.5 -50t-89.5 -17q-31 0 -61 10t-54 30.5t-39 50.5t-15 69q0 40 15 70t39 50t54 29.5t61 9.5q50 0 90.5 -16t69.5 -50v87q0 49 -34.5 75.5t-87.5 26.5q-36 0 -67 -11.5t-59 -34.5q-10 -8 -21 -8 q-12 0 -22.5 8t-10.5 22q0 13 10 22q19 17 40 29.5t43.5 21t46.5 12.5t50 4q38 0 72 -9t59.5 -28.5t40.5 -50.5t15 -75v-301zM377 102v91q-22 30 -57.5 45t-75.5 15q-53 0 -86 -29.5t-33 -76.5q0 -46 33 -75.5t86 -29.5q40 0 75.5 15t57.5 45zM363 641q0 -20 -7.5 -38 t-21 -31.5t-31.5 -21t-38 -7.5t-38 7.5t-31.5 21t-21 31.5t-7.5 38t7.5 38t21 31.5t31.5 21.5t38 8t38 -8t31.5 -21.5t21 -31.5t7.5 -38zM323 641q0 25 -16.5 42t-41.5 17q-24 0 -41 -17t-17 -42q0 -24 17 -41.5t41 -17.5q25 0 41.5 17.5t16.5 41.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="889" d="M842 258q0 -17 -12 -29t-29 -12h-325q3 -34 15 -64t32.5 -52.5t49 -35.5t64.5 -13q32 0 62 10t55 30q8 7 21 7q12 0 22 -8t10 -22q0 -12 -10 -22q-18 -15 -37.5 -26t-40 -18.5t-42 -11t-43.5 -3.5q-64 0 -114 28t-79 88q-26 -52 -79 -84t-120 -32q-39 0 -74 10t-62 30.5 t-42.5 50.5t-15.5 69t14.5 68.5t39 50t57 30.5t67.5 10q54 0 98.5 -15.5t76.5 -48.5v86q0 48 -36.5 74.5t-96.5 26.5q-40 0 -74 -11t-65 -36q-8 -7 -20 -7q-11 0 -22 8.5t-11 22.5q0 13 10 22q20 17 42 29.5t46 20.5t50 12t53 4q30 0 57.5 -6t50.5 -19t39.5 -32.5 t23.5 -47.5q12 22 29.5 41t39.5 33t49.5 22.5t60.5 8.5q84 0 138 -50t71 -137l4 -24.5t2 -25.5zM769 272q0 27 -8.5 55.5t-26.5 52t-45.5 38.5t-66.5 15q-36 0 -62.5 -15t-45 -38t-28 -51.5t-10.5 -56.5h293zM401 180v12q-25 29 -63.5 45t-81.5 16q-59 0 -95 -27.5 t-36 -73.5t36 -73t95 -27q32 0 58.5 11t46 29t30 41t10.5 47z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="495" d="M455 73q0 -14 -8 -22q-13 -14 -27.5 -25t-32 -18.5t-37.5 -12.5t-44 -6l-16 -42q16 11 37 11q29 0 47.5 -18t18.5 -49q0 -37 -30.5 -58.5t-73.5 -21.5q-15 0 -32.5 2.5t-32.5 7.5t-25 12.5t-10 18.5q0 8 6.5 14t14.5 6q5 0 8 -2q17 -11 34.5 -15.5t34.5 -4.5 q24 0 42.5 11t18.5 31q0 16 -9 25.5t-28 9.5q-13 0 -24 -8t-22 -8q-9 0 -15.5 6.5t-6.5 15.5v3.5t1 3.5l18 50q-48 4 -88 25t-68 54.5t-43.5 77.5t-15.5 95q0 54 17.5 100t49 80t76 53.5t98.5 19.5q27 0 50 -4.5t42.5 -13t36 -20t30.5 -25.5q8 -10 8 -21q0 -13 -10 -23.5 t-24 -10.5q-15 0 -26 11q-22 21 -47.5 30.5t-55.5 9.5q-39 0 -69.5 -14t-52.5 -39t-33.5 -59t-11.5 -74t11.5 -74.5t33.5 -59.5t52.5 -39t69.5 -14q61 0 103 41q10 9 25 9q14 0 24.5 -9t10.5 -23z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="563" d="M516 258q0 -17 -12 -29t-29 -12h-349q2 -34 15 -64.5t35.5 -53t53.5 -36t70 -13.5q35 0 68 11t62 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-36 -29 -79 -43t-94 -14q-54 0 -99 18.5t-77.5 52t-51 80t-18.5 103.5q0 52 18 98.5t49.5 80.5t75 54t95.5 20 q45 0 82 -13.5t65.5 -38.5t48 -59t28.5 -76l4.5 -24t2.5 -26zM443 272q0 27 -9.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h317zM319 571q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7 l118 -114q5 -7 5 -13z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="563" d="M516 258q0 -17 -12 -29t-29 -12h-349q2 -34 15 -64.5t35.5 -53t53.5 -36t70 -13.5q35 0 68 11t62 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-36 -29 -79 -43t-94 -14q-54 0 -99 18.5t-77.5 52t-51 80t-18.5 103.5q0 52 18 98.5t49.5 80.5t75 54t95.5 20 q45 0 82 -13.5t65.5 -38.5t48 -59t28.5 -76l4.5 -24t2.5 -26zM443 272q0 27 -9.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h317zM418 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7 q9 0 17.5 -7t8.5 -18z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="563" d="M516 258q0 -17 -12 -29t-29 -12h-349q2 -34 15 -64.5t35.5 -53t53.5 -36t70 -13.5q35 0 68 11t62 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-36 -29 -79 -43t-94 -14q-54 0 -99 18.5t-77.5 52t-51 80t-18.5 103.5q0 52 18 98.5t49.5 80.5t75 54t95.5 20 q45 0 82 -13.5t65.5 -38.5t48 -59t28.5 -76l4.5 -24t2.5 -26zM443 272q0 27 -9.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h317zM405 570q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5 q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="563" d="M516 258q0 -17 -12 -29t-29 -12h-349q2 -34 15 -64.5t35.5 -53t53.5 -36t70 -13.5q35 0 68 11t62 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-36 -29 -79 -43t-94 -14q-54 0 -99 18.5t-77.5 52t-51 80t-18.5 103.5q0 52 18 98.5t49.5 80.5t75 54t95.5 20 q45 0 82 -13.5t65.5 -38.5t48 -59t28.5 -76l4.5 -24t2.5 -26zM443 272q0 27 -9.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h317zM436 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5z M229 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0zM148 571q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0zM246 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0zM233 570q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99 q3 -5 3 -11z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0zM265 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM58 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5 t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
190
+ <glyph unicode="&#xf0;" d="M525 247q0 -56 -16.5 -103.5t-47.5 -82t-75.5 -54t-99.5 -19.5q-54 0 -98 18.5t-75.5 51.5t-48.5 78t-17 98q0 52 16 97t45.5 78t70 51.5t88.5 18.5q47 0 86 -20.5t72 -68.5q-28 50 -69 91.5t-91 78.5l-123 -54q-6 -2 -9 -2q-8 0 -15 6.5t-7 17.5q0 13 13 20l98 43 q-8 5 -18.5 11t-20 13.5t-16 16t-6.5 18.5q0 16 11.5 27t26.5 11q9 0 22 -7t27.5 -16.5t28 -20.5l23.5 -19l89 39q4 2 8 2q8 0 14.5 -5.5t6.5 -16.5q0 -15 -12 -21l-67 -29q40 -35 74.5 -73.5t59 -81.5t38.5 -91t14 -101zM446 234q0 35 -10.5 67.5t-31 57t-50 39t-68.5 14.5 t-69 -14.5t-50.5 -39t-31 -57t-10.5 -67.5q0 -36 10.5 -68t31 -57t50.5 -39.5t69 -14.5t68.5 14.5t50 39.5t31 57t10.5 68z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v285q0 64 -29.5 88t-78.5 24q-22 0 -43 -6t-40 -16.5t-34.5 -24t-25.5 -28.5v-322q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-40q13 15 31 29.5t40.5 26.5t48 19t52.5 7 q76 0 115 -38.5t39 -117.5v-308v0zM432 667q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5 t27.5 -31.5t23 -31.5t29.5 -14.5t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
192
+ <glyph unicode="&#xf2;" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71zM320 571q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
193
+ <glyph unicode="&#xf3;" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71zM419 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
194
+ <glyph unicode="&#xf4;" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71zM405 570q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z " />
195
+ <glyph unicode="&#xf5;" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71zM442 667q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5 q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5t29.5 -14.5t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
196
+ <glyph unicode="&#xf6;" d="M525 242q0 -53 -16.5 -99t-47.5 -80.5t-75.5 -54.5t-99.5 -20t-99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20t99.5 -20t75.5 -54t47.5 -80.5t16.5 -98.5zM446 242q0 37 -10.5 70.5t-31 59t-50 41t-68.5 15.5t-69 -15.5t-50.5 -41 t-31 -59t-10.5 -70.5t10.5 -71t31 -59.5t50.5 -41t69 -15.5t68.5 15.5t50 41t31 59.5t10.5 71zM436 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM229 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5 q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
197
+ <glyph unicode="&#xf7;" horiz-adv-x="511" d="M255 572q20 0 33.5 -13t13.5 -33q0 -19 -13.5 -32.5t-33.5 -13.5q-19 0 -32 13.5t-13 32.5q0 20 13 33t32 13zM482 338q0 -12 -7 -19.5t-18 -7.5h-403q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h403q11 0 18 -7t7 -18zM302 144q0 -19 -13.5 -32.5t-33.5 -13.5 q-19 0 -32 13.5t-13 32.5t13 32.5t32 13.5q20 0 33.5 -13.5t13.5 -32.5z" />
198
+ <glyph unicode="&#xf8;" d="M113 -5q-5 -7 -14 -7q-8 0 -15 6t-7 15q0 8 4 12l31 40q-32 35 -48.5 81t-16.5 100q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20q40 0 74.5 -10.5t62.5 -30.5l27 34q4 7 14 7q8 0 15 -6t7 -15q0 -8 -4 -13l-27 -35q34 -35 52 -82t18 -102q0 -53 -16.5 -99t-47.5 -80.5 t-75.5 -54.5t-99.5 -20q-83 0 -142 45zM188 89q20 -16 44 -25t54 -9q39 0 68.5 15.5t50 41t31 59.5t10.5 71q0 73 -38 125zM286 428q-39 0 -69 -15.5t-50.5 -41t-31 -59t-10.5 -70.5q0 -70 34 -121l219 277q-38 30 -92 30z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v37q-28 -32 -73 -56t-99 -24q-76 0 -115 37.5t-39 116.5v311q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -32 7.5 -53t22 -34t34.5 -18t44 -5q44 0 83 22t60 51v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z M309 571q0 -8 -5.5 -14.5t-14.5 -6.5q-6 0 -13 5l-126 108q-8 6 -8 17q0 10 7.5 17.5t18.5 7.5t18 -7l118 -114q5 -7 5 -13z" />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v37q-28 -32 -73 -56t-99 -24q-76 0 -115 37.5t-39 116.5v311q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -32 7.5 -53t22 -34t34.5 -18t44 -5q44 0 83 22t60 51v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z M408 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v37q-28 -32 -73 -56t-99 -24q-76 0 -115 37.5t-39 116.5v311q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -32 7.5 -53t22 -34t34.5 -18t44 -5q44 0 83 22t60 51v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z M394 570q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="551" d="M476 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v37q-28 -32 -73 -56t-99 -24q-76 0 -115 37.5t-39 116.5v311q0 14 11 25t28 11q14 0 25 -11t11 -25v-288q0 -32 7.5 -53t22 -34t34.5 -18t44 -5q44 0 83 22t60 51v325q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z M427 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM220 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="490" d="M472 452q0 -7 -3 -13l-224 -537q-22 -52 -58.5 -75t-83.5 -23q-10 0 -20.5 1t-19 4t-14 10t-5.5 19q0 15 10 24.5t23 9.5q7 0 13 -0.5t12 -0.5q23 -1 40 10t31 41l32 73l-184 444q-3 6 -3 13q0 14 10.5 25.5t27.5 11.5q11 0 20.5 -6t14.5 -17l154 -379l153 379 q5 11 14.5 17t20.5 6q17 0 28 -11t11 -26zM378 680q0 -11 -8 -17l-126 -108q-7 -5 -12 -5q-8 0 -14.5 6t-6.5 15q0 8 5 13l118 114q7 7 18 7q9 0 17.5 -7t8.5 -18z" />
204
+ <glyph unicode="&#xfe;" d="M528 242q0 -59 -15.5 -106t-44 -80t-68 -50.5t-87.5 -17.5q-50 0 -92 22t-71 63v-221q0 -14 -11 -25t-27 -11q-15 0 -26 11t-11 25v779q0 14 11 25t28 11q14 0 25 -11t11 -25v-220q26 37 69 60.5t94 23.5q48 0 87.5 -17.5t68 -50t44 -79.5t15.5 -106zM449 242 q0 40 -10.5 74t-30.5 59t-49 39t-65 14q-45 0 -84.5 -22.5t-59.5 -54.5v-218q20 -32 59.5 -55t84.5 -23q36 0 65 14t49 39t30.5 59.5t10.5 74.5z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="490" d="M472 452q0 -7 -3 -13l-224 -537q-22 -52 -58.5 -75t-83.5 -23q-10 0 -20.5 1t-19 4t-14 10t-5.5 19q0 15 10 24.5t23 9.5q7 0 13 -0.5t12 -0.5q23 -1 40 10t31 41l32 73l-184 444q-3 6 -3 13q0 14 10.5 25.5t27.5 11.5q11 0 20.5 -6t14.5 -17l154 -379l153 379 q5 11 14.5 17t20.5 6q17 0 28 -11t11 -26zM395 604q0 -20 -14 -33.5t-33 -13.5t-33 13.5t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM188 604q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z " />
206
+ <glyph unicode="&#x110;" horiz-adv-x="728" d="M676 333q0 -71 -24.5 -132t-69 -105.5t-107.5 -70t-141 -25.5h-168q-25 0 -42.5 17.5t-17.5 42.5v239h-72q-13 0 -21.5 9t-8.5 23q0 12 8.5 20.5t21.5 8.5h72v247q0 25 17.5 42.5t42.5 17.5h168q78 0 141 -25.5t107.5 -70.5t69 -106t24.5 -132zM590 333q0 54 -17 101.5 t-49.5 82.5t-80 55.5t-109.5 20.5h-145v-233h146q12 0 20.5 -8.5t8.5 -22.5q0 -13 -8.5 -21.5t-20.5 -8.5h-146v-225h145q61 0 108.5 20.5t80.5 55.5t50 82t17 101z" />
207
+ <glyph unicode="&#x131;" horiz-adv-x="225" d="M150 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422v0z" />
208
+ <glyph unicode="&#x152;" horiz-adv-x="1105" d="M1057 38q0 -17 -10.5 -27.5t-25.5 -10.5h-348q-22 0 -35 9.5t-19 26t-7 38.5t1 46q-18 -33 -44.5 -57.5t-57.5 -41t-66 -25t-70 -8.5q-73 0 -132.5 26t-102 72.5t-66 109.5t-23.5 137t23.5 137t66 109t102 72t132.5 26q35 0 70 -8t66 -24.5t57.5 -41t44.5 -57.5 q-2 24 -1.5 46t7 38.5t19.5 26.5t35 10h348q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-325v-215h318q15 0 25.5 -10.5t10.5 -27.5q0 -15 -10.5 -25.5t-25.5 -10.5h-318v-230h325q15 0 25.5 -10.5t10.5 -25.5zM613 223v220q-29 80 -90.5 120t-138.5 40 q-57 0 -102.5 -20.5t-78 -56.5t-49.5 -85.5t-17 -107.5q0 -59 17 -108.5t49.5 -85.5t78 -56.5t102.5 -20.5q78 0 139 40.5t90 120.5z" />
209
+ <glyph unicode="&#x153;" horiz-adv-x="962" d="M914 258q0 -17 -12 -29t-29 -12h-347q2 -34 15 -64.5t35 -53t53 -36t70 -13.5q35 0 68.5 11t62.5 34q8 5 17 5q10 0 20 -8.5t10 -22.5q0 -16 -11 -24q-18 -14 -38 -25t-41.5 -18t-45 -10.5t-48.5 -3.5q-47 0 -81.5 13.5t-59.5 34.5t-41.5 45t-25.5 45q-9 -20 -24.5 -44 t-39 -45t-57 -35t-78.5 -14q-55 0 -99.5 20t-75.5 54.5t-47.5 80.5t-16.5 99q0 52 16.5 98.5t47.5 80.5t75.5 54t99.5 20q45 0 79 -14.5t58 -35.5t39.5 -45t23.5 -43q8 19 24 43t40 45t57.5 35.5t76.5 14.5q88 0 146 -50.5t78 -136.5l4 -24.5t2 -25.5zM843 272 q-1 27 -10.5 55.5t-29 52t-49.5 38.5t-71 15q-39 0 -68 -15t-48.5 -38t-30 -51.5t-11.5 -56.5h318zM446 242q0 38 -11 71.5t-31.5 59t-50 40.5t-67.5 15t-68 -15t-50.5 -40.5t-31.5 -59t-11 -71.5t11 -72.5t31.5 -60t50.5 -40.5t68 -15t67.5 15t50 40.5t31.5 60t11 72.5z " />
210
+ <glyph unicode="&#x178;" horiz-adv-x="626" d="M585 633q0 -12 -6 -21l-224 -330v-247q0 -17 -12 -29t-30 -12q-17 0 -29 12t-12 29v247l-225 330q-7 10 -7 21q0 14 10.5 27t29.5 13q9 0 18.5 -4.5t15.5 -12.5l199 -299l199 299q5 8 14 12t18 4q17 0 29 -11.5t12 -27.5zM465 771q0 -20 -14 -33.5t-33 -13.5t-33 13.5 t-14 33.5q0 19 14 32.5t33 13.5t33 -13.5t14 -32.5zM258 771q0 -20 -13.5 -33.5t-32.5 -13.5q-20 0 -33.5 13.5t-13.5 33.5q0 19 13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
211
+ <glyph unicode="&#x2c6;" horiz-adv-x="265" d="M251 570q0 -7 -5.5 -14t-16.5 -7q-10 0 -16 8l-82 105l-79 -104q-6 -8 -17 -8q-8 0 -15 5.5t-7 14.5q0 3 4 11l65 99q8 12 21 19t29 7q14 0 27 -7t21 -19l68 -99q3 -5 3 -11z" />
212
+ <glyph unicode="&#x2da;" horiz-adv-x="196" d="M196 641q0 -20 -7.5 -38t-21 -31.5t-31.5 -21t-38 -7.5t-38 7.5t-31.5 21t-21 31.5t-7.5 38t7.5 38t21 31.5t31.5 21.5t38 8t38 -8t31.5 -21.5t21 -31.5t7.5 -38zM156 641q0 25 -16.5 42t-41.5 17q-24 0 -41 -17t-17 -42q0 -24 17 -41.5t41 -17.5q25 0 41.5 17.5 t16.5 41.5z" />
213
+ <glyph unicode="&#x2dc;" horiz-adv-x="313" d="M312 667q-2 -25 -9.5 -46t-19.5 -36t-29 -23t-38 -8q-27 0 -43 14.5t-28 31.5l-23 31.5t-29 14.5t-30.5 -15.5t-16.5 -48.5q-1 -10 -8 -16t-17 -6q-9 0 -14.5 5.5t-5.5 13.5q0 25 7.5 46.5t20.5 36.5t30.5 23.5t37.5 8.5q27 0 43 -14.5t27.5 -31.5t23 -31.5t29.5 -14.5 t30.5 15.5t16.5 48.5q1 10 8 16t17 6t15 -6.5t5 -14.5z" />
214
+ <glyph unicode="&#x2000;" horiz-adv-x="443" />
215
+ <glyph unicode="&#x2001;" horiz-adv-x="887" />
216
+ <glyph unicode="&#x2002;" horiz-adv-x="443" />
217
+ <glyph unicode="&#x2003;" horiz-adv-x="887" />
218
+ <glyph unicode="&#x2004;" horiz-adv-x="295" />
219
+ <glyph unicode="&#x2005;" horiz-adv-x="221" />
220
+ <glyph unicode="&#x2006;" horiz-adv-x="147" />
221
+ <glyph unicode="&#x2007;" horiz-adv-x="147" />
222
+ <glyph unicode="&#x2008;" horiz-adv-x="110" />
223
+ <glyph unicode="&#x2009;" horiz-adv-x="177" />
224
+ <glyph unicode="&#x200a;" horiz-adv-x="49" />
225
+ <glyph unicode="&#x2010;" horiz-adv-x="300" d="M276 243q0 -15 -9 -24.5t-23 -9.5h-188q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h188q14 0 23 -9t9 -23z" />
226
+ <glyph unicode="&#x2011;" horiz-adv-x="300" d="M276 243q0 -15 -9 -24.5t-23 -9.5h-188q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h188q14 0 23 -9t9 -23z" />
227
+ <glyph unicode="&#x2012;" horiz-adv-x="300" d="M276 243q0 -15 -9 -24.5t-23 -9.5h-188q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h188q14 0 23 -9t9 -23z" />
228
+ <glyph unicode="&#x2013;" horiz-adv-x="593" d="M569 243q0 -15 -9 -24.5t-23 -9.5h-481q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h481q14 0 23 -9t9 -23z" />
229
+ <glyph unicode="&#x2014;" horiz-adv-x="833" d="M809 243q0 -15 -9 -24.5t-23 -9.5h-721q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h721q14 0 23 -9t9 -23z" />
230
+ <glyph unicode="&#x2018;" horiz-adv-x="230" d="M163 505q0 -22 -15 -38t-38 -16q-12 0 -23.5 5t-20.5 15t-14 24t-5 32q0 40 20 78.5t51 64.5q7 5 13 5q8 0 16.5 -6.5t8.5 -17.5q0 -10 -8 -18q-18 -17 -31.5 -38t-15.5 -41q2 1 6 1.5t8 0.5q21 0 34.5 -14t13.5 -37z" />
231
+ <glyph unicode="&#x2019;" horiz-adv-x="230" d="M176 601q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
232
+ <glyph unicode="&#x201a;" horiz-adv-x="230" d="M176 24q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
233
+ <glyph unicode="&#x201c;" horiz-adv-x="390" d="M329 505q0 -22 -15 -38t-38 -16q-12 0 -23.5 5t-20.5 15t-14 24t-5 32q0 40 20 78.5t51 64.5q7 5 13 5q8 0 16.5 -6.5t8.5 -17.5q0 -10 -8 -18q-18 -17 -31.5 -38t-15.5 -41q2 1 6 1.5t8 0.5q21 0 34.5 -14t13.5 -37zM169 505q0 -22 -15 -38t-38 -16q-12 0 -23.5 5 t-20.5 15t-14 24t-5 32q0 40 20 78.5t51 64.5q7 5 13 5q8 0 16.5 -6.5t8.5 -17.5q0 -10 -8 -18q-18 -17 -31.5 -38t-15.5 -41q2 1 6 1.5t8 0.5q21 0 34.5 -14t13.5 -37z" />
234
+ <glyph unicode="&#x201d;" horiz-adv-x="390" d="M336 601q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32zM176 601q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5 q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
235
+ <glyph unicode="&#x201e;" horiz-adv-x="390" d="M336 24q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32zM176 24q0 -40 -20 -78.5t-51 -64.5q-7 -5 -13 -5 q-8 0 -16.5 6t-8.5 17t8 19q18 17 31.5 38t15.5 41q-2 -1 -6 -1.5t-8 -0.5q-21 0 -34.5 14t-13.5 37q0 22 15 38t38 16q12 0 23.5 -5t20.5 -15t14 -24t5 -32z" />
236
+ <glyph unicode="&#x2022;" horiz-adv-x="358" d="M288 242q0 -22 -8.5 -41.5t-23.5 -34t-34.5 -23t-41.5 -8.5t-41.5 8.5t-34.5 23t-23.5 34t-8.5 41.5t8.5 41.5t23.5 34.5t34.5 23.5t41.5 8.5t41.5 -8.5t34.5 -23.5t23.5 -34.5t8.5 -41.5z" />
237
+ <glyph unicode="&#x2026;" horiz-adv-x="690" d="M630 45q0 -11 -4.5 -21t-12 -17.5t-17.5 -12t-21 -4.5t-21 4.5t-17.5 12t-12 17.5t-4.5 21q0 23 16 39t39 16t39 -16t16 -39zM400 45q0 -11 -4.5 -21t-12 -17.5t-18 -12t-21.5 -4.5t-21 4.5t-17.5 12t-11.5 17.5t-4 21q0 23 15.5 39t38.5 16t39.5 -16t16.5 -39zM169 45 q0 -11 -4.5 -21t-12 -17.5t-17.5 -12t-21 -4.5t-21 4.5t-17.5 12t-11.5 17.5t-4 21q0 23 15.5 39t38.5 16t39 -16t16 -39z" />
238
+ <glyph unicode="&#x202f;" horiz-adv-x="177" />
239
+ <glyph unicode="&#x2039;" horiz-adv-x="295" d="M237 85q0 -11 -8.5 -20t-20.5 -9q-13 0 -20 9l-118 133q-17 19 -17 44q0 26 17 45l118 130q7 9 20 9q10 0 19.5 -7.5t9.5 -19.5q0 -11 -7 -18l-125 -138l125 -141q7 -9 7 -17z" />
240
+ <glyph unicode="&#x203a;" horiz-adv-x="295" d="M242 242q0 -24 -17 -44l-118 -133q-8 -9 -20 -9q-11 0 -20 8t-9 20q0 11 7 18l125 141l-125 138q-7 7 -7 17t7.5 19t20.5 9q12 0 21 -9l118 -130q17 -20 17 -45z" />
241
+ <glyph unicode="&#x205f;" horiz-adv-x="221" />
242
+ <glyph unicode="&#x20ac;" horiz-adv-x="695" d="M415 678q75 0 130 -27t93 -68q11 -13 11 -29t-11 -28t-28 -12q-8 0 -15.5 3t-12.5 10q-29 35 -74.5 56t-92.5 21q-43 0 -81 -12.5t-69.5 -35t-55 -54.5t-36.5 -71h284q11 0 18 -7.5t7 -19.5q0 -11 -7 -18t-18 -7h-296q-2 -11 -2.5 -22.5t-0.5 -23.5q0 -11 0.5 -22 t2.5 -22h296q11 0 18 -7.5t7 -19.5q0 -11 -7 -18t-18 -7h-284q13 -40 36.5 -72t55 -55t69.5 -35.5t81 -12.5q48 0 91.5 19.5t75.5 56.5q5 6 12.5 9.5t15.5 3.5q17 0 28 -12t11 -29q0 -8 -3 -15t-8 -13q-39 -41 -93.5 -67.5t-129.5 -26.5q-60 0 -114 17.5t-97.5 50t-74 78.5 t-45.5 103h-34q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h24q-1 11 -1.5 22t-0.5 22t0.5 23t1.5 23h-24q-11 0 -18 7.5t-7 19.5q0 11 7 18t18 7h34q15 56 46 101.5t74.5 78t97 50t113.5 17.5z" />
243
+ <glyph unicode="&#x2122;" horiz-adv-x="454" d="M419 454q0 -13 -15 -13q-13 0 -13 13v175l-70 -168q-3 -6 -9 -6t-9 7l-70 167v-175q0 -13 -15 -13q-13 0 -13 13v193q0 8 7 16t18 8q16 0 22 -14l60 -150l60 150q5 14 21 14q11 0 18.5 -6.5t7.5 -17.5v-193zM175 655q0 -6 -3.5 -10t-8.5 -4h-56v-187q0 -13 -15 -13 q-13 0 -13 13v187h-56q-5 0 -8.5 4t-3.5 10q0 5 3.5 8.5t8.5 3.5h140q5 0 8.5 -3.5t3.5 -8.5z" />
244
+ <glyph unicode="&#xe000;" horiz-adv-x="490" d="M0 490h490v-490h-490v490z" />
245
+ <glyph unicode="&#xfb01;" horiz-adv-x="509" d="M395 653q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5t15 36t35 15zM433 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422zM307 643q0 -14 -6.5 -23.5t-20.5 -9.5q-6 0 -14 2.5t-19 2.5 q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9t9 -23t-9 -24t-23 -10h-72v-386q0 -15 -11 -26t-25 -11q-16 0 -27.5 10t-11.5 27v386h-54q-14 0 -23 9t-9 23t8.5 24t23.5 10h54v37q0 37 10 66.5t28.5 49.5t44 30.5t57.5 10.5q10 0 22.5 -1t23.5 -4.5t18 -10t7 -18.5z " />
246
+ <glyph unicode="&#xfb02;" horiz-adv-x="509" d="M433 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-606zM307 643q0 -14 -6.5 -23.5t-20.5 -9.5q-6 0 -14 2.5t-19 2.5q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9t9 -23t-9 -24t-23 -10h-72v-386q0 -15 -11 -26 t-25 -11q-16 0 -27.5 10t-11.5 27v386h-54q-14 0 -23 9t-9 23t8.5 24t23.5 10h54v37q0 37 10 66.5t28.5 49.5t44 30.5t57.5 10.5q10 0 22.5 -1t23.5 -4.5t18 -10t7 -18.5z" />
247
+ <glyph unicode="&#xfb03;" horiz-adv-x="791" d="M678 653q21 0 36 -15t15 -36t-15 -35.5t-36 -14.5q-20 0 -35 14.5t-15 35.5t15 36t35 15zM716 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v422q0 14 11 25t28 11q14 0 25 -11t11 -25v-422zM615 631q0 -13 -9.5 -21.5t-20.5 -8.5q-12 0 -25.5 7t-29.5 7 q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-386q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v386h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v37q0 75 37.5 116t102.5 41q12 0 28.5 -2.5t31.5 -7.5t25.5 -14t10.5 -22z M332 631q0 -13 -9.5 -21.5t-20.5 -8.5q-12 0 -25.5 7t-29.5 7q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-386q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v386h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v37q0 75 37.5 116 t102.5 41q12 0 28.5 -2.5t31.5 -7.5t25.5 -14t10.5 -22z" />
248
+ <glyph unicode="&#xfb04;" horiz-adv-x="791" d="M716 31q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v606q0 14 11 25t28 11q14 0 25 -11t11 -25v-606v0zM615 631q0 -13 -9.5 -21.5t-20.5 -8.5q-12 0 -25.5 7t-29.5 7q-37 0 -56.5 -24.5t-19.5 -70.5v-37h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-386 q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v386h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v37q0 75 37.5 116t102.5 41q12 0 28.5 -2.5t31.5 -7.5t25.5 -14t10.5 -22zM332 631q0 -13 -9.5 -21.5t-20.5 -8.5q-12 0 -25.5 7t-29.5 7q-37 0 -56.5 -24.5t-19.5 -70.5v-37 h72q14 0 23 -9.5t9 -24.5q0 -14 -9 -23t-23 -9h-72v-386q0 -15 -11 -26t-27 -11q-15 0 -26 11t-11 26v386h-54q-14 0 -23 9.5t-9 24.5q0 14 9 23t23 9h54v37q0 75 37.5 116t102.5 41q12 0 28.5 -2.5t31.5 -7.5t25.5 -14t10.5 -22z" />
249
+ </font>
250
+ </defs></svg>