fontastic 0.1.7 → 1.0.0

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 (455) hide show
  1. package/.editorconfig +16 -16
  2. package/.github/FUNDING.yml +3 -12
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +41 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +29 -0
  5. package/.github/dependabot.yml +6 -6
  6. package/.github/pull_request_template.md +21 -21
  7. package/.github/workflows/claude-code-review.yml +45 -0
  8. package/.github/workflows/claude.yml +46 -0
  9. package/.github/workflows/macos.yml +77 -58
  10. package/.github/workflows/release.yml +165 -0
  11. package/.github/workflows/ubuntu.yml +87 -70
  12. package/.github/workflows/windows.yml +81 -64
  13. package/.husky/pre-commit +1 -0
  14. package/.lintstagedrc.json +6 -0
  15. package/.node-version +1 -1
  16. package/.postcssrc.json +5 -0
  17. package/.prettierignore +8 -0
  18. package/.prettierrc +18 -0
  19. package/.vscode/launch.json +42 -45
  20. package/.vscode/tasks.json +48 -48
  21. package/CODE_OF_CONDUCT.md +128 -45
  22. package/HOW_TO.md +39 -0
  23. package/LICENSE.md +7 -0
  24. package/README.md +103 -111
  25. package/angular.json +166 -202
  26. package/app/Application.js +39 -39
  27. package/app/Application.ts +38 -38
  28. package/app/config/alert.ts +31 -31
  29. package/app/config/database.js +194 -202
  30. package/app/config/database.ts +194 -202
  31. package/app/config/index.js +19 -19
  32. package/app/config/index.ts +2 -2
  33. package/app/config/mimes.js +48 -48
  34. package/app/config/mimes.ts +53 -53
  35. package/app/config/system.js +578 -496
  36. package/app/config/system.ts +580 -498
  37. package/app/config/themes.ts +38 -38
  38. package/app/core/AppLogger.js +30 -30
  39. package/app/core/AppLogger.ts +37 -37
  40. package/app/core/ConfigManager.js +129 -113
  41. package/app/core/ConfigManager.ts +150 -137
  42. package/app/core/ConnectionManager.js +93 -82
  43. package/app/core/ConnectionManager.ts +107 -95
  44. package/app/core/FontCatalog.js +32 -50
  45. package/app/core/FontCatalog.ts +20 -42
  46. package/app/core/FontFinder.js +72 -85
  47. package/app/core/FontFinder.ts +75 -96
  48. package/app/core/FontManager.js +128 -164
  49. package/app/core/FontManager.ts +136 -172
  50. package/app/core/FontObject.js +53 -53
  51. package/app/core/FontObject.ts +62 -62
  52. package/app/core/MessageHandler.js +270 -271
  53. package/app/core/MessageHandler.ts +330 -337
  54. package/app/core/SystemManager.js +132 -139
  55. package/app/core/SystemManager.ts +160 -171
  56. package/app/core/menu/Example.ts +279 -279
  57. package/app/core/menu/MenuBuilder.js +43 -44
  58. package/app/core/menu/MenuBuilder.ts +51 -53
  59. package/app/core/menu/templates/DarwinTemplate.js +124 -126
  60. package/app/core/menu/templates/DarwinTemplate.ts +144 -142
  61. package/app/core/menu/templates/SystemTemplate.js +121 -123
  62. package/app/core/menu/templates/SystemTemplate.ts +136 -139
  63. package/app/database/entity/Collection.schema.js +98 -98
  64. package/app/database/entity/Collection.schema.ts +68 -68
  65. package/app/database/entity/Logger.schema.js +49 -49
  66. package/app/database/entity/Logger.schema.ts +26 -26
  67. package/app/database/entity/Store.schema.js +159 -164
  68. package/app/database/entity/Store.schema.ts +110 -116
  69. package/app/database/entity/index.js +19 -19
  70. package/app/database/entity/index.ts +2 -2
  71. package/app/database/repository/Collection.repository.js +277 -180
  72. package/app/database/repository/Collection.repository.ts +291 -190
  73. package/app/database/repository/Logger.repository.js +24 -24
  74. package/app/database/repository/Logger.repository.ts +10 -10
  75. package/app/database/repository/Store.repository.js +324 -327
  76. package/app/database/repository/Store.repository.ts +349 -358
  77. package/app/database/repository/User.repository.js +11 -11
  78. package/app/database/repository/User.repository.ts +8 -8
  79. package/app/database/repository/index.js +19 -19
  80. package/app/database/repository/index.ts +2 -2
  81. package/app/enums/ChannelType.js +62 -61
  82. package/app/enums/ChannelType.ts +67 -65
  83. package/app/enums/StorageType.js +19 -18
  84. package/app/enums/{storageType.ts → StorageType.ts} +15 -14
  85. package/app/enums/index.js +18 -18
  86. package/app/enums/index.ts +2 -2
  87. package/app/helpers/command.js +27 -27
  88. package/app/helpers/command.ts +19 -19
  89. package/app/helpers/random.js +15 -15
  90. package/app/helpers/random.ts +12 -12
  91. package/app/main.js +97 -81
  92. package/app/main.ts +114 -94
  93. package/app/package-lock.json +2240 -2649
  94. package/app/package.json +23 -35
  95. package/app/types/AppAlert.js +2 -2
  96. package/app/types/AppAlert.ts +8 -8
  97. package/app/types/AuthUser.js +6 -6
  98. package/app/types/AuthUser.ts +5 -5
  99. package/app/types/Breadcrumb.js +2 -2
  100. package/app/types/Breadcrumb.ts +4 -4
  101. package/app/types/FontMetrics.ts +7 -0
  102. package/app/types/ImportOptions.js +6 -6
  103. package/app/types/ImportOptions.ts +3 -3
  104. package/app/types/QueryOptions.js +2 -2
  105. package/app/types/QueryOptions.ts +12 -12
  106. package/app/types/SystemConfig.js +2 -2
  107. package/app/types/SystemConfig.ts +127 -132
  108. package/app/types/SystemStats.js +2 -2
  109. package/app/types/SystemStats.ts +6 -7
  110. package/app/types/SystemTheme.js +2 -2
  111. package/app/types/SystemTheme.ts +5 -5
  112. package/app/types/index.js +24 -24
  113. package/app/types/index.ts +9 -8
  114. package/commitlint.config.mjs +3 -0
  115. package/e2e/main.spec.ts +57 -59
  116. package/e2e/playwright.config.ts +20 -19
  117. package/e2e/tsconfig.e2e.json +13 -13
  118. package/electron-builder.json +34 -71
  119. package/eslint.config.mjs +111 -0
  120. package/package.json +122 -123
  121. package/src/app/app.component.html +1 -2
  122. package/src/app/app.component.spec.ts +21 -0
  123. package/src/app/app.component.ts +40 -37
  124. package/src/app/core/core.module.ts +8 -11
  125. package/src/app/core/services/database/database.service.ts +410 -286
  126. package/src/app/core/services/electron/electron.service.spec.ts +12 -12
  127. package/src/app/core/services/electron/electron.service.ts +62 -62
  128. package/src/app/core/services/index.ts +5 -14
  129. package/src/app/core/services/message/message.service.ts +291 -289
  130. package/src/app/core/services/news/news.service.ts +52 -94
  131. package/src/app/core/services/presentation/presentation.service.ts +253 -341
  132. package/src/app/home/home.component.html +7 -0
  133. package/src/app/home/home.component.spec.ts +31 -0
  134. package/src/app/home/home.component.ts +15 -0
  135. package/src/app/layout/aside/aside.component.html +35 -9
  136. package/src/app/layout/aside/aside.component.ts +60 -26
  137. package/src/app/layout/footer/footer.component.html +5 -11
  138. package/src/app/layout/footer/footer.component.ts +13 -32
  139. package/src/app/layout/header/header.component.html +118 -35
  140. package/src/app/layout/header/header.component.ts +52 -229
  141. package/src/app/layout/layout.component.html +32 -14
  142. package/src/app/layout/layout.component.ts +19 -23
  143. package/src/app/layout/main/main.component.html +46 -0
  144. package/src/app/layout/main/main.component.ts +20 -0
  145. package/src/app/layout/navigation/library/library.component.ts +51 -0
  146. package/src/app/layout/navigation/navigation.component.html +126 -142
  147. package/src/app/layout/navigation/navigation.component.ts +372 -302
  148. package/src/app/layout/navigation/stats/stats.component.ts +56 -0
  149. package/src/app/settings/ai-keys/ai-keys.component.html +56 -0
  150. package/src/app/settings/ai-keys/ai-keys.component.ts +44 -0
  151. package/src/app/settings/danger-zone/danger-zone.component.html +22 -0
  152. package/src/app/settings/danger-zone/danger-zone.component.ts +37 -0
  153. package/src/app/settings/logs/logs.component.html +41 -0
  154. package/src/app/settings/logs/logs.component.ts +43 -0
  155. package/src/app/settings/news-api/news-api.component.html +40 -0
  156. package/src/app/settings/news-api/news-api.component.ts +57 -0
  157. package/src/app/settings/pages/general/general.component.html +7 -0
  158. package/src/app/settings/pages/general/general.component.ts +20 -0
  159. package/src/app/settings/pages/logs/logs.component.html +1 -0
  160. package/src/app/settings/pages/logs/logs.component.ts +10 -0
  161. package/src/app/settings/pages/system/system.component.html +1 -0
  162. package/src/app/settings/pages/system/system.component.ts +10 -0
  163. package/src/app/settings/quick-actions/quick-actions.component.html +49 -0
  164. package/src/app/settings/quick-actions/quick-actions.component.ts +40 -0
  165. package/src/app/settings/settings.component.html +47 -0
  166. package/src/app/settings/settings.component.ts +10 -0
  167. package/src/app/settings/system-info/system-info.component.html +21 -0
  168. package/src/app/settings/system-info/system-info.component.ts +42 -0
  169. package/src/app/settings/theme/theme.component.html +15 -0
  170. package/src/app/settings/theme/theme.component.ts +22 -0
  171. package/src/app/shared/components/collapsible-panel/collapsible-panel.component.ts +43 -0
  172. package/src/app/shared/components/context-menu/context-menu.component.ts +67 -0
  173. package/src/app/shared/components/datagrid/datagrid.component.html +96 -0
  174. package/src/app/shared/components/datagrid/datagrid.component.ts +49 -0
  175. package/src/app/shared/components/index.ts +11 -17
  176. package/src/app/shared/components/inspector/inspector.component.html +140 -0
  177. package/src/app/shared/components/inspector/inspector.component.ts +41 -0
  178. package/src/app/shared/components/page-not-found/page-not-found.component.html +1 -3
  179. package/src/app/shared/components/page-not-found/page-not-found.component.spec.ts +22 -0
  180. package/src/app/shared/components/page-not-found/page-not-found.component.ts +14 -12
  181. package/src/app/shared/components/panel/panel.component.html +5 -0
  182. package/src/app/shared/components/panel/panel.component.ts +8 -0
  183. package/src/app/shared/components/preview/preview.component.html +36 -0
  184. package/src/app/shared/components/preview/preview.component.ts +68 -0
  185. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.html +36 -0
  186. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.ts +39 -0
  187. package/src/app/shared/components/search/search.component.html +329 -54
  188. package/src/app/shared/components/search/search.component.ts +221 -77
  189. package/src/app/shared/components/spinner/spinner.component.ts +10 -26
  190. package/src/app/shared/components/toolbar/toolbar.component.html +207 -0
  191. package/src/app/shared/components/toolbar/toolbar.component.ts +99 -0
  192. package/src/app/shared/components/waterfall/waterfall.component.html +119 -0
  193. package/src/app/shared/components/waterfall/waterfall.component.ts +119 -0
  194. package/src/app/shared/directives/autofocus/autofocus.directive.ts +14 -0
  195. package/src/app/shared/directives/index.ts +2 -2
  196. package/src/app/shared/directives/webview/webview.directive.spec.ts +8 -0
  197. package/src/app/shared/directives/webview/webview.directive.ts +9 -8
  198. package/src/app/shared/shared.module.ts +13 -94
  199. package/src/assets/background.jpg +0 -0
  200. package/src/assets/fonts/md/MaterialIcons-Regular.woff2 +0 -0
  201. package/src/assets/fonts/md/MaterialSymbolsOutlined.woff2 +0 -0
  202. package/src/assets/i18n/en.json +12 -12
  203. package/src/assets/icons/electron.bmp +0 -0
  204. package/src/assets/icons/favicon.256x256.png +0 -0
  205. package/src/assets/icons/favicon.512x512.png +0 -0
  206. package/src/assets/icons/favicon.icns +0 -0
  207. package/src/assets/icons/favicon.ico +0 -0
  208. package/src/assets/icons/favicon.png +0 -0
  209. package/src/environments/environment.dev.ts +4 -4
  210. package/src/environments/environment.prod.ts +4 -4
  211. package/src/environments/environment.ts +4 -4
  212. package/src/favicon.ico +0 -0
  213. package/src/index.html +19 -13
  214. package/src/main.ts +65 -15
  215. package/src/styles/base/reset.css +41 -0
  216. package/src/styles/base/variables.css +356 -0
  217. package/src/styles/components/buttons.css +108 -0
  218. package/src/styles/components/cards.css +60 -0
  219. package/src/styles/components/forms.css +70 -0
  220. package/src/styles/components/navigation.css +24 -0
  221. package/src/styles/components/scrollbox.css +50 -0
  222. package/src/styles/components/spinner.css +7 -0
  223. package/src/styles/components/splash.css +47 -0
  224. package/src/styles/components/toolbar.css +92 -0
  225. package/src/styles/fonts/md.css +39 -0
  226. package/src/styles/themes/dashboard.scss +293 -294
  227. package/src/styles/themes/euphoria.scss +284 -283
  228. package/src/styles/themes/mellow.scss +281 -280
  229. package/src/styles/themes/midnight.scss +284 -283
  230. package/src/styles/themes/passion.scss +281 -280
  231. package/src/styles/themes/swiss.scss +284 -283
  232. package/src/styles.css +17 -0
  233. package/src/tsconfig.app.json +11 -20
  234. package/src/tsconfig.spec.json +10 -23
  235. package/src/typings.d.ts +9 -9
  236. package/src/vitest.d.ts +1 -0
  237. package/tsconfig.json +38 -44
  238. package/tsconfig.serve.json +27 -27
  239. package/.eslintrc.json +0 -54
  240. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -29
  241. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  242. package/.github/stale.yml +0 -17
  243. package/CONTRIBUTING.md +0 -72
  244. package/LICENSE +0 -21
  245. package/angular.webpack.js +0 -35
  246. package/app/core/FontInstaller.js +0 -67
  247. package/app/core/FontInstaller.ts +0 -63
  248. package/docs/logo.png +0 -0
  249. package/docs/screenshots/readme.md +0 -7
  250. package/docs/screenshots/screen-grab1.png +0 -0
  251. package/docs/screenshots/screen-grab2.png +0 -0
  252. package/docs/screenshots/screen-grab3.png +0 -0
  253. package/src/app/app-routing.module.ts +0 -15
  254. package/src/app/app.component.scss +0 -0
  255. package/src/app/app.component.spec.ts.dist +0 -33
  256. package/src/app/app.module.ts +0 -63
  257. package/src/app/core/model/AuthUserModel.ts +0 -7
  258. package/src/app/core/model/CustomThemeModel.ts +0 -7
  259. package/src/app/core/model/DbConnectionModel.ts +0 -16
  260. package/src/app/core/model/ImportOptionsModel.ts +0 -5
  261. package/src/app/core/model/LatestNewsModel.ts +0 -7
  262. package/src/app/core/model/SearchFormModel.ts +0 -10
  263. package/src/app/core/model/index.ts +0 -6
  264. package/src/app/core/services/alert/alert.service.spec.ts +0 -22
  265. package/src/app/core/services/alert/alert.service.ts +0 -71
  266. package/src/app/core/services/auth/auth.service.ts +0 -30
  267. package/src/app/core/services/boot/boot.service.ts +0 -33
  268. package/src/app/core/services/breadcrumb/breadcrumb.service.spec.ts +0 -22
  269. package/src/app/core/services/breadcrumb/breadcrumb.service.ts +0 -30
  270. package/src/app/core/services/config/config.service.ts +0 -63
  271. package/src/app/core/services/font/font.service.ts +0 -79
  272. package/src/app/core/services/gravatar/gravatar.service.spec.ts +0 -16
  273. package/src/app/core/services/gravatar/gravatar.service.ts +0 -18
  274. package/src/app/core/services/modal/modal.service.spec.ts +0 -16
  275. package/src/app/core/services/modal/modal.service.ts +0 -34
  276. package/src/app/core/services/utils/utils.service.spec.ts +0 -12
  277. package/src/app/core/services/utils/utils.service.ts +0 -144
  278. package/src/app/layout/aside/aside.component.scss +0 -1
  279. package/src/app/layout/footer/footer.component.scss +0 -27
  280. package/src/app/layout/header/header.component.scss +0 -60
  281. package/src/app/layout/layout.component.scss +0 -119
  282. package/src/app/layout/layout.module.ts +0 -32
  283. package/src/app/layout/layout.service.ts +0 -13
  284. package/src/app/layout/navigation/navigation.component.scss +0 -0
  285. package/src/app/pages/main/grid/grid.component.html +0 -183
  286. package/src/app/pages/main/grid/grid.component.scss +0 -3
  287. package/src/app/pages/main/grid/grid.component.ts +0 -98
  288. package/src/app/pages/main/inspect/inspect.component.html +0 -7
  289. package/src/app/pages/main/inspect/inspect.component.scss +0 -3
  290. package/src/app/pages/main/inspect/inspect.component.ts +0 -66
  291. package/src/app/pages/main/main-routing.module.ts +0 -30
  292. package/src/app/pages/main/main.component.html +0 -6
  293. package/src/app/pages/main/main.component.scss +0 -191
  294. package/src/app/pages/main/main.component.ts +0 -35
  295. package/src/app/pages/main/main.module.ts +0 -28
  296. package/src/app/pages/main/preview/preview.component.html +0 -46
  297. package/src/app/pages/main/preview/preview.component.scss +0 -0
  298. package/src/app/pages/main/preview/preview.component.ts +0 -239
  299. package/src/app/pages/main/toolbar/toolbar.component.html +0 -78
  300. package/src/app/pages/main/toolbar/toolbar.component.scss +0 -3
  301. package/src/app/pages/main/toolbar/toolbar.component.ts +0 -132
  302. package/src/app/shared/components/alert/alert.component.html +0 -9
  303. package/src/app/shared/components/alert/alert.component.scss +0 -0
  304. package/src/app/shared/components/alert/alert.component.ts +0 -37
  305. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.html +0 -14
  306. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.scss +0 -0
  307. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.ts +0 -36
  308. package/src/app/shared/components/button/button.component.html +0 -3
  309. package/src/app/shared/components/button/button.component.scss +0 -2
  310. package/src/app/shared/components/button/button.component.ts +0 -22
  311. package/src/app/shared/components/collection/create-collection/create-collection.component.html +0 -41
  312. package/src/app/shared/components/collection/create-collection/create-collection.component.scss +0 -0
  313. package/src/app/shared/components/collection/create-collection/create-collection.component.ts +0 -68
  314. package/src/app/shared/components/collection/form-collection/form-collection.component.html +0 -1
  315. package/src/app/shared/components/collection/form-collection/form-collection.component.scss +0 -0
  316. package/src/app/shared/components/collection/form-collection/form-collection.component.ts +0 -15
  317. package/src/app/shared/components/collection/update-collection/update-collection.component.html +0 -40
  318. package/src/app/shared/components/collection/update-collection/update-collection.component.scss +0 -0
  319. package/src/app/shared/components/collection/update-collection/update-collection.component.ts +0 -71
  320. package/src/app/shared/components/glyph-list/glyph-list.component.html +0 -40
  321. package/src/app/shared/components/glyph-list/glyph-list.component.scss +0 -1
  322. package/src/app/shared/components/glyph-list/glyph-list.component.ts +0 -165
  323. package/src/app/shared/components/glyph-view/glyph-view.component.html +0 -23
  324. package/src/app/shared/components/glyph-view/glyph-view.component.scss +0 -0
  325. package/src/app/shared/components/glyph-view/glyph-view.component.ts +0 -228
  326. package/src/app/shared/components/loading/loading.component.html +0 -1
  327. package/src/app/shared/components/loading/loading.component.scss +0 -0
  328. package/src/app/shared/components/loading/loading.component.ts +0 -26
  329. package/src/app/shared/components/modal/modal.component.html +0 -31
  330. package/src/app/shared/components/modal/modal.component.scss +0 -0
  331. package/src/app/shared/components/modal/modal.component.ts +0 -51
  332. package/src/app/shared/components/page-not-found/page-not-found.component.scss +0 -0
  333. package/src/app/shared/components/paginator/paginator.component.html +0 -21
  334. package/src/app/shared/components/paginator/paginator.component.scss +0 -3
  335. package/src/app/shared/components/paginator/paginator.component.ts +0 -133
  336. package/src/app/shared/components/pairing/pairing.component.html +0 -20
  337. package/src/app/shared/components/pairing/pairing.component.scss +0 -0
  338. package/src/app/shared/components/pairing/pairing.component.ts +0 -33
  339. package/src/app/shared/components/search/search.component.scss +0 -10
  340. package/src/app/shared/components/settings/database/database.component.html +0 -151
  341. package/src/app/shared/components/settings/database/database.component.scss +0 -0
  342. package/src/app/shared/components/settings/database/database.component.ts +0 -145
  343. package/src/app/shared/components/settings/general/general.component.html +0 -170
  344. package/src/app/shared/components/settings/general/general.component.scss +0 -0
  345. package/src/app/shared/components/settings/general/general.component.ts +0 -150
  346. package/src/app/shared/components/settings/logs/logs.component.html +0 -44
  347. package/src/app/shared/components/settings/logs/logs.component.scss +0 -0
  348. package/src/app/shared/components/settings/logs/logs.component.ts +0 -37
  349. package/src/app/shared/components/settings/news/news.component.html +0 -41
  350. package/src/app/shared/components/settings/news/news.component.scss +0 -0
  351. package/src/app/shared/components/settings/news/news.component.ts +0 -52
  352. package/src/app/shared/components/settings/settings.component.html +0 -46
  353. package/src/app/shared/components/settings/settings.component.scss +0 -0
  354. package/src/app/shared/components/settings/settings.component.ts +0 -23
  355. package/src/app/shared/components/settings/system/system.component.html +0 -30
  356. package/src/app/shared/components/settings/system/system.component.scss +0 -0
  357. package/src/app/shared/components/settings/system/system.component.ts +0 -43
  358. package/src/app/shared/components/settings/theme/theme.component.html +0 -22
  359. package/src/app/shared/components/settings/theme/theme.component.scss +0 -0
  360. package/src/app/shared/components/settings/theme/theme.component.ts +0 -50
  361. package/src/app/shared/components/spinner/spinner.component.html +0 -1
  362. package/src/app/shared/components/spinner/spinner.component.scss +0 -0
  363. package/src/app/shared/components/splash-screen/splash-screen.component.html +0 -5
  364. package/src/app/shared/components/splash-screen/splash-screen.component.scss +0 -31
  365. package/src/app/shared/components/splash-screen/splash-screen.component.ts +0 -17
  366. package/src/app/shared/components/store/store.component.html +0 -22
  367. package/src/app/shared/components/store/store.component.scss +0 -10
  368. package/src/app/shared/components/store/store.component.ts +0 -58
  369. package/src/app/shared/components/tables/tables.component.html +0 -47
  370. package/src/app/shared/components/tables/tables.component.scss +0 -10
  371. package/src/app/shared/components/tables/tables.component.ts +0 -81
  372. package/src/app/shared/components/typescale/typescale.component.html +0 -53
  373. package/src/app/shared/components/typescale/typescale.component.scss +0 -0
  374. package/src/app/shared/components/typescale/typescale.component.ts +0 -168
  375. package/src/app/shared/directives/gravatar/gravatar.directive.ts +0 -29
  376. package/src/app/shared/pipes/installable.pipe.ts +0 -10
  377. package/src/app/shared/pipes/prettybytes.pipe.ts +0 -10
  378. package/src/app/shared/pipes/safehtml.pipe.ts +0 -10
  379. package/src/assets/fonts/fa/fa-brands-400.eot +0 -0
  380. package/src/assets/fonts/fa/fa-brands-400.svg +0 -3535
  381. package/src/assets/fonts/fa/fa-brands-400.ttf +0 -0
  382. package/src/assets/fonts/fa/fa-brands-400.woff +0 -0
  383. package/src/assets/fonts/fa/fa-brands-400.woff2 +0 -0
  384. package/src/assets/fonts/fa/fa-regular-400.eot +0 -0
  385. package/src/assets/fonts/fa/fa-regular-400.svg +0 -803
  386. package/src/assets/fonts/fa/fa-regular-400.ttf +0 -0
  387. package/src/assets/fonts/fa/fa-regular-400.woff +0 -0
  388. package/src/assets/fonts/fa/fa-regular-400.woff2 +0 -0
  389. package/src/assets/fonts/fa/fa-solid-900.eot +0 -0
  390. package/src/assets/fonts/fa/fa-solid-900.svg +0 -4700
  391. package/src/assets/fonts/fa/fa-solid-900.ttf +0 -0
  392. package/src/assets/fonts/fa/fa-solid-900.woff +0 -0
  393. package/src/assets/fonts/fa/fa-solid-900.woff2 +0 -0
  394. package/src/assets/fonts/md/MaterialIcons-Regular.eot +0 -0
  395. package/src/assets/fonts/md/MaterialIcons-Regular.ijmap +0 -1
  396. package/src/assets/fonts/md/MaterialIcons-Regular.svg +0 -2373
  397. package/src/assets/fonts/md/MaterialIcons-Regular.ttf +0 -0
  398. package/src/assets/fonts/md/MaterialIcons-Regular.woff +0 -0
  399. package/src/assets/fonts/md/README.md +0 -9
  400. package/src/assets/fonts/md/codepoints +0 -932
  401. package/src/assets/fonts/md/material-icons.css +0 -36
  402. package/src/assets/fonts/octicon/octicon.eot +0 -0
  403. package/src/assets/fonts/octicon/octicon.svg +0 -378
  404. package/src/assets/fonts/octicon/octicon.ttf +0 -0
  405. package/src/assets/fonts/octicon/octicon.woff +0 -0
  406. package/src/assets/fonts/octicon/octicon.woff2 +0 -0
  407. package/src/assets/fonts/roboto/Roboto-Bold-webfont.eot +0 -0
  408. package/src/assets/fonts/roboto/Roboto-Bold-webfont.svg +0 -607
  409. package/src/assets/fonts/roboto/Roboto-Bold-webfont.ttf +0 -0
  410. package/src/assets/fonts/roboto/Roboto-Bold-webfont.woff +0 -0
  411. package/src/assets/fonts/roboto/Roboto-Medium-webfont.eot +0 -0
  412. package/src/assets/fonts/roboto/Roboto-Medium-webfont.svg +0 -607
  413. package/src/assets/fonts/roboto/Roboto-Medium-webfont.ttf +0 -0
  414. package/src/assets/fonts/roboto/Roboto-Medium-webfont.woff +0 -0
  415. package/src/assets/fonts/roboto/Roboto-Regular-webfont.eot +0 -0
  416. package/src/assets/fonts/roboto/Roboto-Regular-webfont.svg +0 -635
  417. package/src/assets/fonts/roboto/Roboto-Regular-webfont.ttf +0 -0
  418. package/src/assets/fonts/roboto/Roboto-Regular-webfont.woff +0 -0
  419. package/src/assets/icons/android-chrome-192x192.png +0 -0
  420. package/src/assets/icons/android-chrome-512x512.png +0 -0
  421. package/src/assets/icons/apple-touch-icon.png +0 -0
  422. package/src/assets/icons/favicon-16x16.png +0 -0
  423. package/src/assets/icons/favicon-32x32.png +0 -0
  424. package/src/assets/icons/site.webmanifest +0 -1
  425. package/src/assets/images/electron.bmp +0 -0
  426. package/src/bin/activator +0 -0
  427. package/src/bin/activator.exe +0 -0
  428. package/src/environments/environment.web.prod.ts +0 -4
  429. package/src/environments/environment.web.ts +0 -4
  430. package/src/karma.conf.js +0 -50
  431. package/src/polyfills-test.ts +0 -1
  432. package/src/polyfills.ts +0 -53
  433. package/src/styles/base/loading.scss +0 -87
  434. package/src/styles/base/reset.scss +0 -408
  435. package/src/styles/components/alert.scss +0 -54
  436. package/src/styles/components/buttons.scss +0 -93
  437. package/src/styles/components/forms.scss +0 -96
  438. package/src/styles/components/inputs.scss +0 -113
  439. package/src/styles/components/modal.scss +0 -52
  440. package/src/styles/components/paginator.scss +0 -108
  441. package/src/styles/components/scrollbox.scss +0 -71
  442. package/src/styles/components/spinner.scss +0 -11
  443. package/src/styles/components/tables.scss +0 -42
  444. package/src/styles/components/tabs.scss +0 -44
  445. package/src/styles/components/toolbar.scss +0 -130
  446. package/src/styles/fonts/md.scss +0 -54
  447. package/src/styles/fonts/octicons.scss +0 -1351
  448. package/src/styles/fonts/roboto.scss +0 -32
  449. package/src/styles/tools/_functions.scss +0 -5
  450. package/src/styles/tools/_mixins.scss +0 -159
  451. package/src/styles/tools/_placeholders.scss +0 -17
  452. package/src/styles/tools/_variables.scss +0 -67
  453. package/src/styles.scss +0 -37
  454. package/src/test.ts +0 -17
  455. package/tailwind.config.js +0 -67
@@ -1,607 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
4
- <metadata></metadata>
5
- <defs>
6
- <font id="robotomedium" horiz-adv-x="1160" >
7
- <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
- <missing-glyph horiz-adv-x="510" />
9
- <glyph unicode="&#xfb01;" horiz-adv-x="1192" d="M189 0v902h-165v180h165v92q0 195 115 301t322 106q72 0 143 -15.5t163 -44.5l-37 -201q-62 21 -122 34.5t-130 13.5q-109 0 -160 -48.5t-51 -145.5v-92h213v-180h-213v-902h-243zM1047 0h-243v1082h243v-1082z" />
10
- <glyph horiz-adv-x="0" />
11
- <glyph unicode="&#xd;" horiz-adv-x="510" />
12
- <glyph unicode=" " horiz-adv-x="510" />
13
- <glyph unicode="&#x09;" horiz-adv-x="510" />
14
- <glyph unicode="&#xa0;" horiz-adv-x="510" />
15
- <glyph unicode="!" horiz-adv-x="549" d="M397 491h-243v965h243v-965zM397 0h-243v234h243v-234z" />
16
- <glyph unicode="&#x22;" horiz-adv-x="664" d="M280 1287l-102 -249h-112v524h214v-275zM598 1287l-102 -249h-112v524h214v-275z" />
17
- <glyph unicode="#" horiz-adv-x="1250" d="M683 410h-225l-76 -410h-167l76 410h-231v158h261l58 313h-243v159h273l78 416h167l-78 -416h224l78 416h168l-78 -416h208v-159h-238l-58 -313h221v-158h-251l-76 -410h-167zM488 568h225l58 313h-225z" />
18
- <glyph unicode="$" horiz-adv-x="1164" d="M819 380q0 85 -55.5 141t-185.5 102q-211 72 -316.5 173.5t-105.5 276.5q0 166 101 273t274 127v218h160v-220q171 -26 267.5 -146.5t96.5 -319.5h-242q0 125 -56 198t-154 73q-102 0 -153 -54.5t-51 -146.5q0 -86 53.5 -140t192.5 -103q211 -76 314 -176t103 -274 q0 -173 -105 -276t-287 -122v-195h-159v194q-179 19 -294.5 129.5t-111.5 325.5l2 5h236q0 -142 69.5 -203t173.5 -61q111 0 172 54t61 147z" />
19
- <glyph unicode="%" horiz-adv-x="1504" d="M100 1176q0 128 82.5 214.5t225.5 86.5q144 0 226.5 -86t82.5 -215v-77q0 -128 -82.5 -213.5t-224.5 -85.5q-144 0 -227 85.5t-83 213.5v77zM269 1099q0 -64 36.5 -108.5t104.5 -44.5q66 0 101.5 44t35.5 109v77q0 65 -36.5 110t-102.5 45q-67 0 -103 -45t-36 -110v-77z M800 357q0 127 83 213.5t225 86.5q144 0 226.5 -86t82.5 -214v-78q0 -129 -82.5 -214.5t-224.5 -85.5q-144 0 -227 86t-83 214v78zM969 279q0 -64 37.5 -109t103.5 -45q70 0 104 43.5t34 110.5v78q0 64 -36.5 109t-103.5 45t-103 -45t-36 -109v-78zM460 109l-125 72 l711 1138l125 -72z" />
20
- <glyph unicode="&#x26;" horiz-adv-x="1309" d="M62 393q0 120 68 208.5t204 178.5q-73 95 -109 172t-36 157q0 171 103 269.5t278 98.5q159 0 258.5 -95.5t99.5 -230.5q0 -98 -51.5 -174.5t-145.5 -145.5l-100 -72l305 -362q40 63 62.5 138t22.5 159h197q0 -137 -36.5 -252t-110.5 -205l196 -232l-2 -5h-274l-81 95 q-82 -57 -175.5 -86.5t-197.5 -29.5q-217 0 -346 115t-129 299zM544 173q62 0 123 18t116 53l-328 387l-30 -22q-72 -56 -96 -108t-24 -100q0 -100 63 -164t176 -64zM417 1112q0 -48 24.5 -99t72.5 -113l114 76q57 37 76.5 77.5t19.5 89.5q0 54 -42.5 96.5t-111.5 42.5 q-74 0 -113.5 -49t-39.5 -121z" />
21
- <glyph unicode="'" horiz-adv-x="346" d="M280 1311l-102 -283h-112v532h214v-249z" />
22
- <glyph unicode="(" horiz-adv-x="695" d="M128 592q0 394 156.5 670.5t338.5 361.5l6 -1l45 -134q-134 -102 -229.5 -327t-95.5 -568v-20q0 -343 95 -568t230 -334l-45 -128h-6q-183 86 -339 362t-156 670v16z" />
23
- <glyph unicode=")" horiz-adv-x="700" d="M571 576q0 -389 -159.5 -668t-342.5 -364h-6l-46 128q133 102 229 330t96 572v20q0 340 -98.5 568.5t-226.5 332.5l46 129h6q182 -84 342 -364t160 -668v-16z" />
24
- <glyph unicode="*" horiz-adv-x="895" d="M325 972l-298 89l53 169l296 -117l-13 343h174l-15 -350l291 115l53 -171l-303 -88l195 -266l-141 -105l-177 287l-174 -279l-143 102z" />
25
- <glyph unicode="+" horiz-adv-x="1141" d="M686 801h380v-222h-380v-433h-236v433h-382v222h382v405h236v-405z" />
26
- <glyph unicode="," horiz-adv-x="462" d="M363 31l-155 -312h-154l70 321v198h239v-207z" />
27
- <glyph unicode="-" horiz-adv-x="672" d="M596 521h-525v196h525v-196z" />
28
- <glyph unicode="." horiz-adv-x="572" d="M395 0h-242v233h242v-233z" />
29
- <glyph unicode="/" horiz-adv-x="839" d="M225 -125h-223l573 1581h223z" />
30
- <glyph unicode="0" horiz-adv-x="1164" d="M1059 561q0 -284 -128 -433t-348 -149q-221 0 -350 149t-129 433v333q0 283 128 433t349 150q220 0 349 -150t129 -433v-333zM816 931q0 179 -60 265t-175 86t-174.5 -86t-59.5 -265v-405q0 -180 60.5 -266.5t175.5 -86.5t174 86t59 267v405z" />
31
- <glyph unicode="1" horiz-adv-x="1164" d="M718 0h-243v1225h-296v179l539 52v-1456z" />
32
- <glyph unicode="2" horiz-adv-x="1164" d="M1076 0h-967v167l474 517q116 127 160 208.5t44 159.5q0 98 -57 164t-154 66q-128 0 -190 -72t-62 -198h-235l-2 6q-5 194 127 326.5t362 132.5q210 0 332 -116t122 -303q0 -125 -70.5 -239t-218.5 -277l-324 -342l3 -6h656v-194z" />
33
- <glyph unicode="3" horiz-adv-x="1164" d="M390 838h169q118 0 170 58.5t52 165.5q0 105 -56 162.5t-165 57.5q-99 0 -161.5 -56.5t-62.5 -148.5h-234l-2 6q-6 167 124.5 280.5t332.5 113.5q213 0 340 -108t127 -307q0 -93 -57 -180t-162 -135q124 -44 182.5 -134t58.5 -205q0 -200 -137.5 -314.5t-351.5 -114.5 q-202 0 -339.5 107.5t-131.5 297.5l2 6h234q0 -97 65 -157t173 -60q113 0 178 61t65 173q0 123 -59.5 181.5t-184.5 58.5h-169v191z" />
34
- <glyph unicode="4" horiz-adv-x="1164" d="M929 519h184v-196h-184v-323h-242v323h-625l-6 149l623 984h250v-937zM296 519h391v591l-6 2l-20 -43z" />
35
- <glyph unicode="5" horiz-adv-x="1164" d="M156 651l84 805h769v-210h-567l-44 -365q43 32 99.5 52.5t127.5 22.5q205 2 321 -130t116 -361q0 -214 -122 -350t-353 -136q-192 0 -324.5 105.5t-127.5 299.5l2 5l227 8q0 -106 62 -165t161 -59q113 0 172.5 79.5t59.5 210.5q0 132 -61 214.5t-174 82.5 q-100 0 -148.5 -32.5t-70.5 -93.5z" />
36
- <glyph unicode="6" horiz-adv-x="1164" d="M680 1477q78 0 150 -16.5t129 -43.5l-46 -188q-56 24 -109 37.5t-123 13.5q-146 0 -234.5 -112.5t-88.5 -303.5v-7q60 55 139.5 85t174.5 30q195 0 308.5 -136.5t113.5 -347.5q0 -223 -130 -366t-341 -143q-222 0 -364.5 156t-142.5 436v278q0 284 160.5 456t403.5 172z M612 783q-92 0 -156 -32.5t-98 -88.5v-104q0 -185 74.5 -285t190.5 -100q106 0 167 91t61 224q0 131 -64 213t-175 82z" />
37
- <glyph unicode="7" horiz-adv-x="1164" d="M1075 1261q-251 -295 -339 -532t-128 -575l-15 -154h-243l15 154q39 330 156 598.5t319 508.5h-771v195h1006v-195z" />
38
- <glyph unicode="8" horiz-adv-x="1164" d="M1029 1072q0 -110 -60 -195t-163 -130q119 -46 189.5 -138t70.5 -212q0 -203 -134 -310.5t-349 -107.5q-218 0 -352 107.5t-134 310.5q0 120 69.5 212t190.5 139q-104 44 -163 128.5t-59 195.5q0 194 122.5 299.5t323.5 105.5q199 0 323.5 -105.5t124.5 -299.5zM824 409 q0 107 -68.5 174t-174.5 67q-108 0 -174.5 -66.5t-66.5 -174.5q0 -110 66 -173t177 -63q107 0 174 63.5t67 172.5zM786 1063q0 96 -57 157.5t-148 61.5q-94 0 -148.5 -59.5t-54.5 -159.5q0 -99 55.5 -158.5t149.5 -59.5q92 0 147.5 59.5t55.5 158.5z" />
39
- <glyph unicode="9" horiz-adv-x="1164" d="M515 173q130 0 210 96.5t80 281.5v67q-49 -67 -119.5 -101.5t-154.5 -34.5q-208 0 -328.5 131.5t-120.5 360.5q0 218 135 360.5t334 142.5q226 0 361 -148.5t135 -427.5v-341q0 -276 -148.5 -428.5t-383.5 -152.5q-75 0 -155 15t-147 45l32 186q61 -28 125 -40t145 -12z M554 671q91 0 155 36t96 93v130q0 173 -65 262.5t-185 89.5q-98 0 -164 -87.5t-66 -220.5q0 -136 60.5 -219.5t168.5 -83.5z" />
40
- <glyph unicode=":" horiz-adv-x="549" d="M395 0h-242v233h242v-233zM395 876h-242v233h242v-233z" />
41
- <glyph unicode=";" horiz-adv-x="544" d="M396 876h-242v233h242v-233zM414 31l-155 -312h-154l70 321v198h239v-207z" />
42
- <glyph unicode="&#x3c;" horiz-adv-x="1041" d="M322 559l-19 -3v-6l19 -3l578 -218v-243l-837 372v193l837 372v-242z" />
43
- <glyph unicode="=" horiz-adv-x="1166" d="M1007 790h-862v202h862v-202zM1007 366h-862v201h862v-201z" />
44
- <glyph unicode="&#x3e;" horiz-adv-x="1066" d="M128 784v239l864 -372v-193l-864 -372v239l605 226l18 2l1 6l-19 4z" />
45
- <glyph unicode="?" horiz-adv-x="996" d="M340 412q1 143 33 204.5t142 154.5q78 76 124 145.5t46 153.5q0 97 -52.5 150.5t-149.5 53.5q-83 0 -141 -45.5t-58 -134.5h-234l-3 6q-3 178 119.5 277.5t316.5 99.5q210 0 327.5 -107t117.5 -297q0 -127 -73.5 -235.5t-185.5 -198.5q-57 -50 -71.5 -95t-14.5 -132h-243 zM587 0h-248v233h248v-233z" />
46
- <glyph unicode="@" horiz-adv-x="1825" d="M1731 507q-9 -216 -124 -372t-344 -156q-75 0 -129.5 42t-78.5 119q-47 -80 -116 -119.5t-161 -39.5q-133 0 -204.5 119.5t-53.5 315.5q24 256 140.5 411t282.5 155q110 0 177.5 -26t147.5 -80l-3 -4h5l-51 -579q-8 -101 18 -139t69 -38q119 0 190.5 110.5t79.5 280.5 q16 367 -140 572t-484 205q-306 0 -489.5 -221t-198.5 -585q-18 -365 147.5 -575t475.5 -210q87 0 177 20t154 53l38 -130q-67 -42 -170.5 -65.5t-202.5 -23.5q-387 0 -598 249.5t-194 681.5q18 424 252 685t613 261q383 0 587 -246t188 -671zM721 416q-10 -133 20 -202 t99 -69q59 0 109 24.5t89 87.5q0 8 0.5 16t1.5 20l45 515q-23 9 -49 14.5t-54 5.5q-118 0 -180 -102.5t-81 -309.5z" />
47
- <glyph unicode="A" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6z" />
48
- <glyph unicode="B" horiz-adv-x="1312" d="M159 0v1456h484q242 0 378 -99.5t136 -297.5q0 -99 -57 -177t-158 -116q130 -29 200 -125t70 -223q0 -205 -134 -311.5t-370 -106.5h-549zM402 662v-468h306q126 0 194 57.5t68 166.5q0 116 -57 180t-178 64h-333zM402 843h268q113 0 178.5 53.5t65.5 151.5 q0 108 -69 160.5t-202 52.5h-241v-418z" />
49
- <glyph unicode="C" horiz-adv-x="1302" d="M1221 483l2 -6q4 -221 -143.5 -359.5t-399.5 -138.5q-255 0 -414.5 171.5t-159.5 438.5v277q0 266 157.5 438.5t409.5 172.5q258 0 406.5 -135.5t144.5 -364.5l-2 -6h-235q0 147 -79.5 229t-234.5 82q-149 0 -236.5 -118t-87.5 -296v-279q0 -180 89.5 -298t241.5 -118 q151 0 229 81t78 229h234z" />
50
- <glyph unicode="D" horiz-adv-x="1346" d="M159 0v1456h472q277 0 450.5 -173t173.5 -445v-221q0 -273 -173.5 -445t-450.5 -172h-472zM402 1261v-1067h222q181 0 284.5 118t103.5 305v223q0 185 -103.5 303t-284.5 118h-222z" />
51
- <glyph unicode="E" horiz-adv-x="1187" d="M1039 655h-637v-461h739v-194h-982v1456h975v-195h-732v-411h637v-195z" />
52
- <glyph unicode="F" horiz-adv-x="1188" d="M1040 621h-638v-621h-243v1456h983v-195h-740v-445h638v-195z" />
53
- <glyph unicode="G" horiz-adv-x="1383" d="M1244 197q-58 -83 -190.5 -150.5t-340.5 -67.5q-263 0 -433 166.5t-170 430.5v304q0 264 160.5 430.5t414.5 166.5q257 0 399.5 -126.5t145.5 -329.5l-2 -6h-230q-8 120 -85.5 193.5t-224.5 73.5q-151 0 -243.5 -113t-92.5 -287v-306q0 -176 100.5 -289.5t260.5 -113.5 q114 0 185 26.5t103 62.5v296h-289v182h532v-543z" />
54
- <glyph unicode="H" horiz-adv-x="1456" d="M1296 0h-242v621h-652v-621h-243v1456h243v-640h652v640h242v-1456z" />
55
- <glyph unicode="I" horiz-adv-x="589" d="M416 0h-243v1456h243v-1456z" />
56
- <glyph unicode="J" horiz-adv-x="1148" d="M755 1456h243v-1035q0 -204 -130 -323t-334 -119q-219 0 -347 109t-123 319l2 6h235q0 -124 61.5 -182t171.5 -58q96 0 158.5 67t62.5 181v1035z" />
57
- <glyph unicode="K" horiz-adv-x="1320" d="M570 630h-168v-630h-243v1456h243v-617h139l457 617h288l-530 -695l571 -761h-297z" />
58
- <glyph unicode="L" horiz-adv-x="1108" d="M402 194h669v-194h-912v1456h243v-1262z" />
59
- <glyph unicode="M" horiz-adv-x="1794" d="M474 1456l419 -1120h6l420 1120h315v-1456h-243v496l24 631l-6 1l-432 -1128h-163l-430 1125l-6 -1l24 -628v-496h-243v1456h315z" />
60
- <glyph unicode="N" horiz-adv-x="1456" d="M1296 0h-242l-646 1063l-6 -2v-1061h-243v1456h243l646 -1062l6 2v1060h242v-1456z" />
61
- <glyph unicode="O" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264z" />
62
- <glyph unicode="P" horiz-adv-x="1323" d="M402 552v-552h-243v1456h569q241 0 377.5 -124.5t136.5 -327.5q0 -205 -136.5 -328.5t-377.5 -123.5h-326zM402 747h326q135 0 203 72t68 183t-68 185t-203 74h-326v-514z" />
63
- <glyph unicode="Q" horiz-adv-x="1414" d="M1294 597q0 -135 -46 -251t-130 -200l242 -235l-162 -145l-268 256q-54 -22 -114 -32.5t-124 -10.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299 v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264z" />
64
- <glyph unicode="R" horiz-adv-x="1356" d="M402 604v-604h-243v1456h538q244 0 377 -110t133 -314q0 -113 -58.5 -194.5t-170.5 -130.5q123 -39 177 -127.5t54 -217.5v-121q0 -64 16 -125t54 -93v-23h-250q-40 33 -51.5 104t-11.5 139v117q0 112 -64 178t-176 66h-324zM402 799h282q146 0 213 56t67 171 q0 110 -66 172.5t-201 62.5h-295v-462z" />
65
- <glyph unicode="S" horiz-adv-x="1288" d="M948 374q0 91 -67.5 149t-238.5 104q-244 64 -375.5 169.5t-131.5 276.5q0 176 145.5 290t375.5 114q240 0 385.5 -129t140.5 -310l-2 -6h-233q0 112 -76 181.5t-217 69.5q-133 0 -204.5 -58t-71.5 -150q0 -83 77.5 -138t256.5 -104q235 -63 357 -174t122 -283 q0 -182 -145.5 -289.5t-382.5 -107.5q-228 0 -400 120.5t-167 330.5l2 6h234q0 -133 92 -198.5t239 -65.5q135 0 210 54.5t75 147.5z" />
66
- <glyph unicode="T" horiz-adv-x="1185" d="M1154 1261h-440v-1261h-243v1261h-440v195h1123v-195z" />
67
- <glyph unicode="U" horiz-adv-x="1396" d="M1265 1456v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243z" />
68
- <glyph unicode="V" horiz-adv-x="1300" d="M621 381l26 -101h6l25 99l348 1077h259l-520 -1456h-231l-519 1456h259z" />
69
- <glyph unicode="W" horiz-adv-x="1812" d="M512 388v-2l1 5l291 1065h194l294 -1068l1 -7l1 10l230 1065h239l-346 -1456h-221l-291 1045h-6l-292 -1045h-222l-345 1456h239z" />
70
- <glyph unicode="X" horiz-adv-x="1300" d="M650 918l307 538h288l-448 -722l465 -734h-292l-316 547l-316 -547h-288l458 734l-448 722h286z" />
71
- <glyph unicode="Y" horiz-adv-x="1270" d="M634 748l352 708h271l-505 -945v-511h-242v524l-497 932h271z" />
72
- <glyph unicode="Z" horiz-adv-x="1216" d="M377 194h760v-194h-1049v152l731 1109h-725v195h1018v-146z" />
73
- <glyph unicode="[" horiz-adv-x="561" d="M540 1488h-165v-1623h165v-189h-408v2002h408v-190z" />
74
- <glyph unicode="\" horiz-adv-x="855" d="M21 1456h236l608 -1581h-236z" />
75
- <glyph unicode="]" horiz-adv-x="561" d="M12 1678h410v-2002h-410v189h167v1623h-167v190z" />
76
- <glyph unicode="^" horiz-adv-x="875" d="M259 729h-206l299 727h171l298 -727h-205l-165 413l-12 54h-6l-12 -54z" />
77
- <glyph unicode="_" horiz-adv-x="924" d="M920 -191h-917v191h917v-191z" />
78
- <glyph unicode="`" horiz-adv-x="660" d="M535 1212h-196l-259 260l2 6h268z" />
79
- <glyph unicode="a" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5z" />
80
- <glyph unicode="b" d="M1078 505q0 -237 -110.5 -381.5t-311.5 -144.5q-101 0 -175.5 41t-124.5 120l-24 -140h-204v1560h243v-601q50 69 120 106t163 37q203 0 313.5 -158t110.5 -418v-21zM835 526q0 169 -58 273t-184 104q-81 0 -135.5 -36t-86.5 -100v-454q31 -65 86 -100.5t138 -35.5 q126 0 183 88.5t57 239.5v21z" />
81
- <glyph unicode="c" horiz-adv-x="1075" d="M575 173q89 0 150 52.5t61 131.5h220l2 -6q5 -152 -123.5 -262t-309.5 -110q-239 0 -366.5 154t-127.5 390v35q0 235 127.5 389.5t366.5 154.5q195 0 316.5 -113.5t117.5 -288.5l-2 -6h-221q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5t-57 -249.5v-35q0 -153 57 -251.5 t194 -98.5z" />
82
- <glyph unicode="d" d="M83 526q0 259 111 417.5t312 158.5q88 0 157.5 -35.5t120.5 -101.5v595h243v-1560h-204l-24 134q-52 -76 -125 -115.5t-170 -39.5q-199 0 -310 145t-111 381v21zM326 505q0 -150 57.5 -239t182.5 -89q77 0 130.5 33t87.5 94v472q-34 60 -88 93.5t-128 33.5 q-124 0 -183 -104.5t-59 -272.5v-21z" />
83
- <glyph unicode="e" horiz-adv-x="1084" d="M592 -21q-230 0 -366.5 150.5t-136.5 386.5v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM564 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65z" />
84
- <glyph unicode="f" horiz-adv-x="719" d="M207 0v902h-165v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243z" />
85
- <glyph unicode="g" d="M84 526q0 258 113 417t314 159q97 0 170.5 -41.5t124.5 -119.5l24 141h202v-1082q0 -209 -129 -323t-366 -114q-79 0 -170.5 22.5t-165.5 59.5l52 191q60 -31 132.5 -48.5t149.5 -17.5q132 0 193 56.5t61 173.5v111q-51 -65 -120.5 -98.5t-159.5 -33.5q-199 0 -312 145 t-113 381v21zM327 505q0 -149 59.5 -238.5t184.5 -89.5q78 0 131.5 32.5t86.5 93.5v474q-34 59 -87.5 92.5t-128.5 33.5q-125 0 -185.5 -105t-60.5 -272v-21z" />
86
- <glyph unicode="h" d="M368 942q54 76 131.5 118t171.5 42q172 0 268.5 -108.5t96.5 -334.5v-659h-243v661q0 128 -51 185t-153 57q-71 0 -127.5 -29.5t-93.5 -81.5v-792h-243v1560h243v-618z" />
87
- <glyph unicode="i" horiz-adv-x="531" d="M387 0h-243v1082h243v-1082zM387 1347h-243v213h243v-213z" />
88
- <glyph unicode="j" horiz-adv-x="537" d="M398 1082v-1145q0 -179 -93 -276.5t-259 -97.5q-36 0 -65 4t-61 13l14 194q17 -5 42 -8.5t46 -3.5q62 0 97.5 42.5t35.5 132.5v1145h243zM392 1347h-243v213h243v-213z" />
89
- <glyph unicode="k" horiz-adv-x="1072" d="M480 473h-109v-473h-242v1560h242v-892h101l273 414h286l-357 -492l410 -590h-282z" />
90
- <glyph unicode="l" horiz-adv-x="531" d="M387 0h-243v1560h243v-1560z" />
91
- <glyph unicode="m" horiz-adv-x="1781" d="M350 1082l13 -141q53 77 133 119t185 42q106 0 182 -48t114 -144q50 90 132 141t192 51q163 0 257.5 -111.5t94.5 -338.5v-652h-243v653q0 138 -47.5 194t-142.5 56q-78 0 -132 -42t-78 -113q0 -15 1 -26t1 -21v-701h-243v653q0 133 -48.5 191.5t-142.5 58.5 q-74 0 -125.5 -28.5t-81.5 -80.5v-794h-243v1082h222z" />
92
- <glyph unicode="n" d="M348 1082l14 -156q53 83 133.5 129.5t181.5 46.5q169 0 263.5 -102.5t94.5 -319.5v-680h-243v678q0 122 -50.5 173.5t-153.5 51.5q-71 0 -127 -31.5t-92 -86.5v-785h-243v1082h222z" />
93
- <glyph unicode="o" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21z" />
94
- <glyph unicode="p" d="M1076 505q0 -236 -111 -381t-309 -145q-92 0 -163 33t-122 97v-525h-243v1498h205l24 -136q52 76 125.5 116t170.5 40q200 0 311.5 -158.5t111.5 -417.5v-21zM834 526q0 166 -62.5 271.5t-186.5 105.5q-76 0 -129 -32.5t-85 -90.5v-489q32 -57 85 -87.5t131 -30.5 q124 0 185.5 91.5t61.5 240.5v21z" />
95
- <glyph unicode="q" d="M83 526q0 259 111 417.5t312 158.5q94 0 166 -39t123 -112l28 131h197v-1498h-243v518q-50 -61 -118 -92t-155 -31q-199 0 -310 145t-111 381v21zM326 505q0 -150 57.5 -241t182.5 -91q74 0 125.5 29.5t85.5 85.5v504q-34 54 -86 84.5t-123 30.5q-124 0 -183 -106.5 t-59 -274.5v-21z" />
96
- <glyph unicode="r" horiz-adv-x="709" d="M667 863l-104 4q-71 0 -118.5 -30t-73.5 -85v-752h-243v1082h222l16 -157q41 83 105.5 130t148.5 47q22 0 41 -3.5t35 -8.5z" />
97
- <glyph unicode="s" horiz-adv-x="1065" d="M736 294q0 56 -48 93t-179 65q-194 41 -293.5 116.5t-99.5 205.5q0 136 115 232t303 96q198 0 314.5 -97.5t111.5 -241.5l-2 -6h-233q0 67 -51 115t-140 48q-88 0 -134 -39.5t-46 -96.5t43.5 -90.5t176.5 -59.5q204 -42 302.5 -118.5t98.5 -208.5q0 -146 -120.5 -237 t-317.5 -91q-211 0 -333 108t-116 248l2 6h226q4 -94 68 -137t156 -43q94 0 145 36t51 97z" />
98
- <glyph unicode="t" horiz-adv-x="712" d="M430 1345v-263h194v-180h-194v-598q0 -67 29 -95.5t77 -28.5q20 0 39 3.5t36 9.5l26 -178q-31 -17 -74 -26.5t-89 -9.5q-134 0 -210 78.5t-76 246.5v598h-165v180h165v263h242z" />
99
- <glyph unicode="u" d="M802 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212z" />
100
- <glyph unicode="v" horiz-adv-x="1038" d="M504 366l18 -88h6l19 88l215 716h251l-384 -1082h-211l-386 1082h251z" />
101
- <glyph unicode="w" horiz-adv-x="1530" d="M1080 312l6 1l169 769h233l-296 -1082h-199l-230 739l-2 10l-1 -10l-228 -739h-199l-296 1082h233l173 -758l6 -1l225 759h177z" />
102
- <glyph unicode="x" horiz-adv-x="1038" d="M516 711l200 371h279l-340 -535l350 -547h-276l-209 380l-209 -380h-278l350 547l-340 535h276z" />
103
- <glyph unicode="y" horiz-adv-x="1038" d="M487 434l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98l-393 1069h265z" />
104
- <glyph unicode="z" horiz-adv-x="1038" d="M386 194h578v-194h-879v159l546 727h-535v196h842v-154z" />
105
- <glyph unicode="{" horiz-adv-x="687" d="M609 -360q-195 55 -277.5 175t-82.5 291v203q0 104 -47.5 162t-145.5 58v178q98 0 145.5 58t47.5 164v203q0 171 82.5 290.5t277.5 174.5l48 -140q-98 -33 -138.5 -117t-40.5 -208v-203q0 -104 -43 -184.5t-130 -125.5q87 -47 130 -127.5t43 -182.5v-203 q0 -124 40.5 -208t138.5 -117z" />
106
- <glyph unicode="|" horiz-adv-x="514" d="M341 -270h-167v1726h167v-1726z" />
107
- <glyph unicode="}" horiz-adv-x="687" d="M27 -219q97 33 138.5 117t41.5 208v203q0 105 44.5 185t137.5 124q-93 43 -137.5 123.5t-44.5 187.5v203q0 124 -41.5 208t-138.5 117l48 140q194 -55 277 -174.5t83 -290.5v-203q0 -106 47 -164t147 -58v-178q-100 0 -147 -58t-47 -162v-203q0 -171 -83 -291t-277 -175z " />
108
- <glyph unicode="~" horiz-adv-x="1361" d="M1244 750q0 -151 -88 -257t-221 -106q-87 0 -159.5 32.5t-155.5 103.5q-55 46 -99 68t-90 22q-60 0 -102 -51.5t-42 -123.5l-170 22q0 150 86 252.5t221 102.5q86 0 161.5 -33.5t155.5 -101.5q54 -48 97 -69t90 -21q59 0 102 54.5t43 128.5z" />
109
- <glyph unicode="&#xa1;" horiz-adv-x="542" d="M386 -374h-243v964h243v-964zM386 847h-243v235h243v-235z" />
110
- <glyph unicode="&#xa2;" horiz-adv-x="1149" d="M585 173q89 0 150 52.5t61 131.5h222l2 -5q3 -129 -92.5 -231t-240.5 -131v-235h-200v232q-193 31 -294.5 178.5t-101.5 357.5v35q0 208 101.5 356t294.5 180v224h200v-225q154 -29 245 -136.5t88 -257.5l-2 -5h-222q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5 t-57 -249.5v-35q0 -153 57 -251.5t194 -98.5z" />
111
- <glyph unicode="&#xa3;" horiz-adv-x="1205" d="M487 600l5 -114q0 -82 -22.5 -158t-64.5 -134h725v-194h-986v194h10q47 13 70.5 101.5t23.5 182.5l-5 122h-162v195h155l-9 238q0 207 116 325.5t311 118.5q207 0 321 -108.5t110 -286.5l-2 -6h-235q0 105 -54.5 155.5t-139.5 50.5q-86 0 -135 -65.5t-49 -183.5l9 -238 h389v-195h-381z" />
112
- <glyph unicode="&#xa4;" horiz-adv-x="1437" d="M1085 107q-77 -61 -169.5 -94t-192.5 -33q-101 0 -193 32.5t-167 93.5l-129 -132l-141 144l135 137q-49 76 -74.5 165.5t-25.5 187.5q0 101 28 193.5t81 171.5l-144 147l141 144l142 -145q74 55 162 85t185 30q96 0 185 -30.5t164 -86.5l145 148l142 -145l-148 -151 q51 -78 79 -169.5t28 -191.5q0 -97 -25.5 -185.5t-72.5 -163.5l139 -141l-142 -145zM313 608q0 -185 119.5 -314t290.5 -129q170 0 289.5 129t119.5 314q0 184 -119.5 312t-289.5 128q-171 0 -290.5 -128t-119.5 -312z" />
113
- <glyph unicode="&#xa5;" horiz-adv-x="1248" d="M620 816l323 640h271l-397 -714h276v-195h-355v-115h355v-195h-355v-237h-243v237h-357v195h357v115h-357v195h287l-399 714h272z" />
114
- <glyph unicode="&#xa6;" horiz-adv-x="508" d="M136 -270v795h229v-795h-229zM365 698h-229v758h229v-758z" />
115
- <glyph unicode="&#xa7;" horiz-adv-x="1272" d="M1164 455q0 -93 -44.5 -162t-126.5 -111q67 -50 101 -119t34 -166q0 -175 -136.5 -274t-367.5 -99q-226 0 -379 101t-148 319l2 6l233 1q0 -122 85 -177t207 -55t192 49.5t70 126.5t-67 122t-254 101q-242 64 -356.5 157t-114.5 267q0 90 43.5 160t125.5 114 q-67 50 -100 119.5t-33 166.5q0 169 137.5 272t367.5 103q238 0 372 -111.5t129 -312.5l-2 -6h-234q0 101 -70 168t-195 67q-130 0 -196 -50.5t-66 -127.5q0 -86 61 -129t257 -95q244 -66 358.5 -158.5t114.5 -266.5zM601 673q-42 10 -81 22.5t-76 26.5q-55 -21 -81.5 -63.5 t-26.5 -100.5q0 -89 62 -134.5t256 -100.5q53 -16 88 -26.5t67 -21.5q55 22 85 64.5t30 99.5q0 80 -68 128.5t-255 105.5z" />
116
- <glyph unicode="&#xa8;" horiz-adv-x="1054" d="M889 1252h-242v204h242v-204zM405 1252h-241v204h241v-204z" />
117
- <glyph unicode="&#xa9;" horiz-adv-x="1604" d="M1110 596l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254.5 106t-94.5 281v119q0 173 94.5 280t254.5 107q157 0 245.5 -79.5t84.5 -228.5l-2 -6h-148q0 94 -45 136.5t-135 42.5q-94 0 -144.5 -69t-50.5 -182v-120q0 -115 50.5 -183.5t144.5 -68.5q90 0 134.5 41.5 t44.5 137.5h148zM209 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5zM87 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217 t-207 533z" />
118
- <glyph unicode="&#xaa;" horiz-adv-x="913" d="M608 706q-8 21 -13 44.5t-8 49.5q-33 -47 -88.5 -77.5t-133.5 -30.5q-119 0 -184 61t-65 167q0 111 84.5 171t246.5 60h137v51q0 62 -29.5 94.5t-86.5 32.5q-66 0 -102 -26t-36 -73l-165 13l-1 6q-6 98 79 163t225 65q134 0 212.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86 h-177zM408 836q51 0 104.5 29t71.5 64v105h-136q-74 0 -115.5 -32t-41.5 -78q0 -43 29 -65.5t88 -22.5z" />
119
- <glyph unicode="&#xab;" horiz-adv-x="994" d="M306 516l247 -399h-167l-288 390v19l288 390h167zM640 516l247 -399h-167l-288 390v19l288 390h167z" />
120
- <glyph unicode="&#xac;" horiz-adv-x="1133" d="M962 374h-200v260h-635v171h835v-431z" />
121
- <glyph unicode="&#xad;" horiz-adv-x="672" d="M596 521h-525v196h525v-196z" />
122
- <glyph unicode="&#xae;" horiz-adv-x="1604" d="M87 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M653 653v-337h-151v850h281q151 0 238 -66.5t87 -193.5q0 -59 -30.5 -104t-89.5 -76q62 -28 89.5 -82t27.5 -129v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-155q-9 21 -11 61.5t-2 82.5v54q0 71 -33.5 105t-109.5 34h-158zM653 787h143q68 0 115 30.5t47 85.5q0 72 -39 101 t-136 29h-130v-246z" />
123
- <glyph unicode="&#xaf;" horiz-adv-x="987" d="M862 1298h-727v158h727v-158z" />
124
- <glyph unicode="&#xb0;" horiz-adv-x="778" d="M127 1208q0 110 77.5 189.5t186.5 79.5q107 0 183.5 -79.5t76.5 -189.5t-76.5 -187t-183.5 -77q-109 0 -186.5 77t-77.5 187zM266 1208q0 -53 36.5 -88.5t88.5 -35.5q51 0 86.5 35t35.5 89t-35.5 91t-86.5 37q-52 0 -88.5 -37t-36.5 -91z" />
125
- <glyph unicode="&#xb1;" horiz-adv-x="1099" d="M668 906h343v-199h-343v-395h-215v395h-358v199h358v384h215v-384zM961 -23h-835v196h835v-196z" />
126
- <glyph unicode="&#xb2;" horiz-adv-x="865" d="M725 667h-607v145l305 256q64 54 84 89t20 76q0 44 -25.5 72t-79.5 28q-61 0 -93 -30t-32 -78h-181l-2 6q-6 103 80 175.5t231 72.5q139 0 216.5 -65t77.5 -182q0 -81 -48.5 -140t-168.5 -164l-129 -110l2 -6h350v-145z" />
127
- <glyph unicode="&#xb3;" horiz-adv-x="867" d="M417 1139q65 0 95.5 26.5t30.5 74.5q0 39 -32.5 65.5t-94.5 26.5q-53 0 -84.5 -22t-31.5 -56h-181l-2 6q-6 98 80 158t216 60q149 0 235 -59.5t86 -169.5q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -90 -174t-239 -62q-135 0 -227.5 60.5 t-86.5 172.5l2 6h181q0 -43 34.5 -68.5t95.5 -25.5q64 0 102 26t38 71q0 56 -35.5 83.5t-104.5 27.5h-123v131h123z" />
128
- <glyph unicode="&#xb4;" horiz-adv-x="689" d="M311 1478h269l2 -6l-273 -260h-189z" />
129
- <glyph unicode="&#xb5;" horiz-adv-x="1211" d="M388 1082v-620q0 -167 50 -227t147 -60q87 0 142.5 30.5t84.5 90.5v786h243v-1082h-223l-7 86q-45 -53 -104.5 -80t-134.5 -27q-61 0 -110.5 13.5t-87.5 41.5v-450h-242v1498h242z" />
130
- <glyph unicode="&#xb6;" horiz-adv-x="1040" d="M637 0v520h-83q-233 0 -362.5 129.5t-129.5 338.5q0 207 129.5 337.5t362.5 130.5h326v-1456h-243z" />
131
- <glyph unicode="&#xb7;" horiz-adv-x="578" d="M402 594h-242v240h242v-240z" />
132
- <glyph unicode="&#xb8;" horiz-adv-x="528" d="M318 3l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23l32 139h177z" />
133
- <glyph unicode="&#xb9;" horiz-adv-x="565" d="M406 665h-192v639h-127v150l319 23v-812z" />
134
- <glyph unicode="&#xba;" horiz-adv-x="935" d="M119 1142q0 148 94 241.5t252 93.5t252.5 -93.5t94.5 -241.5v-116q0 -149 -94 -241.5t-251 -92.5q-159 0 -253.5 92.5t-94.5 241.5v116zM294 1026q0 -85 44 -136.5t129 -51.5q82 0 126 51.5t44 136.5v116q0 83 -44.5 135t-127.5 52q-84 0 -127.5 -52t-43.5 -135v-116z " />
135
- <glyph unicode="&#xbb;" horiz-adv-x="994" d="M273 950l288 -390v-19l-288 -390h-167l247 399l-247 400h167zM619 950l288 -390v-19l-288 -390h-167l247 399l-247 400h167z" />
136
- <glyph unicode="&#xbc;" horiz-adv-x="1548" d="M495 664h-192v639h-127v150l319 23v-812zM450 117l-125 72l711 1138l125 -72zM1389 290h114v-145h-114v-145h-191v145h-413l-10 116l422 540h192v-511zM977 295l3 -5h218v277l-6 2l-12 -20z" />
137
- <glyph unicode="&#xbd;" horiz-adv-x="1638" d="M463 117l-125 72l711 1138l125 -72zM495 664h-192v639h-127v150l319 23v-812zM1536 0h-607v145l305 256q64 54 84 89t20 76q0 44 -25.5 72t-79.5 28q-61 0 -93 -30t-32 -78h-181l-2 6q-6 103 80 175.5t231 72.5q139 0 216.5 -65t77.5 -182q0 -81 -48.5 -140t-168.5 -164 l-129 -110l2 -6h350v-145z" />
138
- <glyph unicode="&#xbe;" horiz-adv-x="1753" d="M633 117l-125 72l711 1138l125 -72zM1578 290h114v-145h-114v-145h-191v145h-413l-10 116l422 540h192v-511zM1166 295l3 -5h218v277l-6 2l-12 -20zM433 1140q65 0 95.5 26.5t30.5 74.5q0 39 -32.5 65.5t-94.5 26.5q-53 0 -84.5 -22t-31.5 -56h-181l-2 6q-6 98 80 158 t216 60q149 0 235 -59.5t86 -169.5q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -90 -174t-239 -62q-135 0 -227.5 60.5t-86.5 172.5l2 6h181q0 -43 34.5 -68.5t95.5 -25.5q64 0 102 26t38 71q0 56 -35.5 83.5t-104.5 27.5h-123v131h123z" />
139
- <glyph unicode="&#xbf;" horiz-adv-x="1025" d="M684 669q-2 -144 -33.5 -205t-141.5 -153q-80 -79 -125 -147.5t-45 -151.5q0 -97 52 -150.5t151 -53.5q81 0 139 46t60 135h234l3 -6q1 -178 -121.5 -277.5t-314.5 -99.5q-211 0 -328.5 107t-117.5 295q0 127 73 235.5t186 198.5q56 49 71.5 94.5t15.5 132.5h242z M438 1082h248v-233h-248v233z" />
140
- <glyph unicode="&#xc0;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM801 1560h-196l-259 260l2 6h268z" />
141
- <glyph unicode="&#xc1;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM760 1825h269l2 -6l-273 -260h-189z" />
142
- <glyph unicode="&#xc2;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM997 1621v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
143
- <glyph unicode="&#xc3;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM1021 1852q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32 t28 78z" />
144
- <glyph unicode="&#xc4;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM1023 1601h-242v204h242v-204zM539 1601h-241v204h241v-204z" />
145
- <glyph unicode="&#xc5;" horiz-adv-x="1320" d="M948 340h-570l-116 -340h-246l535 1456h230l529 -1456h-247zM448 543h431l-211 622h-6zM450 1737q0 84 61.5 141t150.5 57q87 0 147.5 -57t60.5 -141q0 -85 -60.5 -139.5t-147.5 -54.5q-89 0 -150.5 54.5t-61.5 139.5zM560 1737q0 -43 29.5 -72t72.5 -29q42 0 70 28 t28 73t-28 74.5t-70 30.5q-43 -1 -72.5 -30.5t-29.5 -74.5z" />
146
- <glyph unicode="&#xc6;" horiz-adv-x="1925" d="M1879 0h-898l-15 340h-502l-184 -340h-290l835 1456h992v-197h-646l17 -408h548v-197h-540l20 -458h663v-196zM580 555h377l-27 637l-5 1z" />
147
- <glyph unicode="&#xc7;" horiz-adv-x="1302" d="M1221 483l2 -6q4 -221 -143.5 -359.5t-399.5 -138.5q-255 0 -414.5 171.5t-159.5 438.5v277q0 266 157.5 438.5t409.5 172.5q258 0 406.5 -135.5t144.5 -364.5l-2 -6h-235q0 147 -79.5 229t-234.5 82q-149 0 -236.5 -118t-87.5 -296v-279q0 -180 89.5 -298t241.5 -118 q151 0 229 81t78 229h234zM763 -1l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23l32 139h177z" />
148
- <glyph unicode="&#xc8;" horiz-adv-x="1187" d="M1039 655h-637v-461h739v-194h-982v1456h975v-195h-732v-411h637v-195zM731 1560h-196l-259 260l2 6h268z" />
149
- <glyph unicode="&#xc9;" horiz-adv-x="1187" d="M1039 655h-637v-461h739v-194h-982v1456h975v-195h-732v-411h637v-195zM690 1825h269l2 -6l-273 -260h-189z" />
150
- <glyph unicode="&#xca;" horiz-adv-x="1187" d="M1039 655h-637v-461h739v-194h-982v1456h975v-195h-732v-411h637v-195zM955 1621v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
151
- <glyph unicode="&#xcb;" horiz-adv-x="1187" d="M1039 655h-637v-461h739v-194h-982v1456h975v-195h-732v-411h637v-195zM980 1601h-242v204h242v-204zM496 1601h-241v204h241v-204z" />
152
- <glyph unicode="&#xcc;" horiz-adv-x="589" d="M416 0h-243v1456h243v-1456zM410 1560h-196l-259 260l2 6h268z" />
153
- <glyph unicode="&#xcd;" horiz-adv-x="589" d="M416 0h-243v1456h243v-1456zM367 1825h269l2 -6l-273 -260h-189z" />
154
- <glyph unicode="&#xce;" horiz-adv-x="589" d="M416 0h-243v1456h243v-1456zM634 1621v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
155
- <glyph unicode="&#xcf;" horiz-adv-x="589" d="M416 0h-243v1456h243v-1456zM659 1601h-242v204h242v-204zM175 1601h-241v204h241v-204z" />
156
- <glyph unicode="&#xd0;" horiz-adv-x="1376" d="M189 0v657h-153v170h153v629h472q277 0 450.5 -173t173.5 -445v-221q0 -273 -173.5 -445t-450.5 -172h-472zM691 657h-259v-463h222q181 0 284.5 118t103.5 305v223q0 185 -103.5 303t-284.5 118h-222v-434h259v-170z" />
157
- <glyph unicode="&#xd1;" horiz-adv-x="1456" d="M1296 0h-242l-646 1063l-6 -2v-1061h-243v1456h243l646 -1062l6 2v1060h242v-1456zM1087 1852q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z " />
158
- <glyph unicode="&#xd2;" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264zM813 1581h-196l-259 260l2 6h268z" />
159
- <glyph unicode="&#xd3;" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264zM772 1846h269l2 -6l-273 -260h-189z" />
160
- <glyph unicode="&#xd4;" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264zM1037 1642v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
161
- <glyph unicode="&#xd5;" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264zM1060 1873q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z" />
162
- <glyph unicode="&#xd6;" horiz-adv-x="1398" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262zM1052 861q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264q0 -184 93 -301.5t254 -117.5q167 0 263.5 117 t96.5 302v264zM1062 1622h-242v204h242v-204zM578 1622h-241v204h241v-204z" />
163
- <glyph unicode="&#xd7;" horiz-adv-x="1092" d="M77 364l316 322l-316 322l148 150l315 -322l316 322l148 -150l-316 -322l316 -322l-148 -150l-316 321l-315 -321z" />
164
- <glyph unicode="&#xd8;" horiz-adv-x="1403" d="M1294 597q0 -267 -167.5 -442.5t-434.5 -175.5q-82 0 -155.5 18t-136.5 54l-86 -146h-148l130 221q-93 84 -143 206t-50 265v262q0 266 163.5 442t424.5 176q97 0 182.5 -25.5t158.5 -72.5l82 139h148l-131 -222q78 -84 120.5 -196.5t42.5 -240.5v-262zM345 597 q0 -79 17.5 -146.5t50.5 -114.5l6 -1l504 858q-47 40 -105 62t-127 22q-160 0 -253 -117t-93 -299v-264zM1052 861q0 61 -12 115.5t-33 96.5l-6 1l-495 -842q39 -27 86 -40.5t100 -13.5q167 0 263.5 117t96.5 302v264z" />
165
- <glyph unicode="&#xd9;" horiz-adv-x="1396" d="M1265 1456v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243zM814 1560h-196l-259 260l2 6h268z" />
166
- <glyph unicode="&#xda;" horiz-adv-x="1396" d="M1265 1456v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243zM773 1825h269l2 -6l-273 -260h-189z" />
167
- <glyph unicode="&#xdb;" horiz-adv-x="1396" d="M1265 1456v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243zM1038 1621v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
168
- <glyph unicode="&#xdc;" horiz-adv-x="1396" d="M1265 1456v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243zM1063 1601h-242v204h242v-204zM579 1601h-241v204h241v-204z" />
169
- <glyph unicode="&#xdd;" horiz-adv-x="1270" d="M634 748l352 708h271l-505 -945v-511h-242v524l-497 932h271zM711 1825h269l2 -6l-273 -260h-189z" />
170
- <glyph unicode="&#xde;" horiz-adv-x="1226" d="M391 1456v-280h246q242 0 377.5 -121.5t135.5 -316.5q0 -196 -135.5 -317t-377.5 -121h-246v-300h-243v1456h243zM391 981v-486h246q135 0 202.5 69.5t67.5 171.5q0 104 -67.5 174.5t-202.5 70.5h-246z" />
171
- <glyph unicode="&#xdf;" horiz-adv-x="1255" d="M378 0h-242v1093q0 224 123 349t325 125q170 0 279.5 -91.5t109.5 -264.5q0 -113 -59 -216.5t-59 -165.5q0 -68 162 -210t162 -280q0 -180 -109 -270t-306 -90q-82 0 -166.5 17t-122.5 45l49 197q41 -25 102.5 -45t123.5 -20q93 0 140 41.5t47 112.5q0 76 -162.5 214.5 t-162.5 283.5q0 85 63 190t63 180q0 80 -47.5 128.5t-110.5 48.5q-91 0 -146.5 -74t-55.5 -207v-1091z" />
172
- <glyph unicode="&#xe0;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM664 1238h-196l-259 260l2 6h268z" />
173
- <glyph unicode="&#xe1;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM623 1503h269l2 -6l-273 -260h-189z" />
174
- <glyph unicode="&#xe2;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM888 1299v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
175
- <glyph unicode="&#xe3;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM911 1530q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5 q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z" />
176
- <glyph unicode="&#xe4;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM913 1279h-242v204h242v-204zM429 1279h-241v204h241v-204z" />
177
- <glyph unicode="&#xe5;" horiz-adv-x="1114" d="M779 0q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5q-169 0 -259.5 87t-90.5 239q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5 t29 -120.5h-246zM481 174q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5q0 -62 40.5 -98.5t115.5 -36.5zM339 1415q0 84 61.5 141t150.5 57q87 0 147.5 -57t60.5 -141q0 -85 -60.5 -139.5t-147.5 -54.5q-89 0 -150.5 54.5t-61.5 139.5zM449 1415 q0 -43 29.5 -72t72.5 -29q42 0 70 28t28 73t-28 74.5t-70 30.5q-43 -1 -72.5 -30.5t-29.5 -74.5z" />
178
- <glyph unicode="&#xe6;" horiz-adv-x="1729" d="M1254 -21q-132 0 -234 44.5t-169 127.5q-59 -74 -166 -123t-256 -49q-180 0 -278.5 89.5t-98.5 243.5q0 158 120.5 244t351.5 86h206v71q0 91 -46.5 142.5t-132.5 51.5q-93 0 -146.5 -45t-53.5 -110l-233 18l-2 6q-6 141 115 233.5t322 92.5q107 0 192.5 -33t141.5 -97 q63 63 147 96.5t184 33.5q214 0 332 -131t118 -359v-141h-680l-3 -6q4 -131 74 -211.5t209 -80.5q98 0 161 23t144 69l73 -165q-57 -45 -158 -83t-234 -38zM476 164q67 0 140 36.5t114 85.5v189h-204q-109 0 -170 -49t-61 -118q0 -65 45.5 -104.5t135.5 -39.5zM1218 907 q-104 0 -162 -71.5t-68 -188.5l2 -5h438v30q0 105 -51.5 170t-158.5 65z" />
179
- <glyph unicode="&#xe7;" horiz-adv-x="1075" d="M575 173q89 0 150 52.5t61 131.5h220l2 -6q5 -152 -123.5 -262t-309.5 -110q-239 0 -366.5 154t-127.5 390v35q0 235 127.5 389.5t366.5 154.5q195 0 316.5 -113.5t117.5 -288.5l-2 -6h-221q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5t-57 -249.5v-35q0 -153 57 -251.5 t194 -98.5zM636 -1l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23l32 139h177z" />
180
- <glyph unicode="&#xe8;" horiz-adv-x="1084" d="M592 -21q-230 0 -366.5 150.5t-136.5 386.5v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM564 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65zM666 1239h-196l-259 260l2 6h268z" />
181
- <glyph unicode="&#xe9;" horiz-adv-x="1084" d="M592 -21q-230 0 -366.5 150.5t-136.5 386.5v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM564 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65zM625 1504h269l2 -6l-273 -260h-189z" />
182
- <glyph unicode="&#xea;" horiz-adv-x="1084" d="M592 -21q-230 0 -366.5 150.5t-136.5 386.5v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM564 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65zM890 1300v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
183
- <glyph unicode="&#xeb;" horiz-adv-x="1084" d="M592 -21q-230 0 -366.5 150.5t-136.5 386.5v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM564 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65zM915 1280h-242v204h242v-204zM431 1280h-241v204h241v-204z" />
184
- <glyph unicode="&#xec;" horiz-adv-x="538" d="M386 0h-243v1082h243v-1082zM381 1217h-196l-259 260l2 6h268z" />
185
- <glyph unicode="&#xed;" horiz-adv-x="538" d="M386 0h-243v1082h243v-1082zM338 1482h269l2 -6l-273 -260h-189z" />
186
- <glyph unicode="&#xee;" horiz-adv-x="538" d="M386 0h-243v1082h243v-1082zM605 1278v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
187
- <glyph unicode="&#xef;" horiz-adv-x="538" d="M386 0h-243v1082h243v-1082zM630 1258h-242v204h242v-204zM146 1258h-241v204h241v-204z" />
188
- <glyph unicode="&#xf0;" horiz-adv-x="1210" d="M897 1292q98 -105 151.5 -243t53.5 -301v-207q0 -248 -150 -405t-375 -157q-227 0 -372 140.5t-145 348.5q0 226 136.5 365.5t358.5 139.5q85 0 160.5 -31.5t127.5 -83.5l4 5q-12 94 -53 172.5t-105 138.5l-268 -150l-78 109l219 123v6q-33 17 -71.5 32t-77.5 27l75 196 q84 -19 160 -52.5t142 -79.5l207 116l78 -109zM581 173q125 0 201.5 104t76.5 264v132q-35 48 -107.5 80t-175.5 32q-126 0 -199.5 -90t-73.5 -227q0 -121 75.5 -208t202.5 -87z" />
189
- <glyph unicode="&#xf1;" d="M348 1082l14 -156q53 83 133.5 129.5t181.5 46.5q169 0 263.5 -102.5t94.5 -319.5v-680h-243v678q0 122 -50.5 173.5t-153.5 51.5q-71 0 -127 -31.5t-92 -86.5v-785h-243v1082h222zM938 1530q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5 t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z" />
190
- <glyph unicode="&#xf2;" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM693 1238h-196l-259 260l2 6h268z" />
191
- <glyph unicode="&#xf3;" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM652 1503h269l2 -6l-273 -260h-189z" />
192
- <glyph unicode="&#xf4;" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM917 1299v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
193
- <glyph unicode="&#xf5;" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM940 1530q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z" />
194
- <glyph unicode="&#xf6;" d="M83 551q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397v21zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM942 1279h-242v204h242v-204zM458 1279h-241v204h241v-204z" />
195
- <glyph unicode="&#xf7;" horiz-adv-x="1169" d="M1079 582h-1012v212h1012v-212zM696 985h-243v221h243v-221zM696 170h-243v221h243v-221z" />
196
- <glyph unicode="&#xf8;" horiz-adv-x="1161" d="M83 551q0 242 132.5 396.5t362.5 154.5q53 0 102.5 -9.5t94.5 -26.5l72 146h144l-104 -211q91 -74 140 -190.5t49 -259.5v-21q0 -244 -132.5 -397.5t-363.5 -153.5q-48 0 -93 7.5t-87 21.5l-72 -146h-144l102 207q-99 71 -151 191t-52 270v21zM326 530q0 -78 14.5 -142 t44.5 -104l6 -1l294 600q-24 11 -50.5 17.5t-56.5 6.5q-127 0 -189.5 -100.5t-62.5 -255.5v-21zM834 551q0 68 -13 127t-37 100l-6 1l-289 -590q20 -8 43 -12t48 -4q127 0 190.5 99.5t63.5 257.5v21z" />
197
- <glyph unicode="&#xf9;" d="M802 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212zM692 1217h-196l-259 260l2 6h268z" />
198
- <glyph unicode="&#xfa;" d="M802 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212zM651 1482h269l2 -6l-273 -260h-189z" />
199
- <glyph unicode="&#xfb;" d="M802 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212zM916 1278v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
200
- <glyph unicode="&#xfc;" d="M802 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212zM941 1258h-242v204h242v-204zM457 1258h-241v204h241v-204z" />
201
- <glyph unicode="&#xfd;" horiz-adv-x="1038" d="M487 434l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98l-393 1069h265zM591 1482h269l2 -6l-273 -260h-189z" />
202
- <glyph unicode="&#xfe;" horiz-adv-x="1175" d="M1086 505q0 -236 -111 -381t-309 -145q-92 0 -163 33t-122 97v-525h-243v1976h243v-595q50 66 120.5 101.5t161.5 35.5q200 0 311.5 -158.5t111.5 -417.5v-21zM844 526q0 166 -62.5 271.5t-186.5 105.5q-76 0 -129 -32.5t-85 -90.5v-489q32 -57 85 -87.5t131 -30.5 q124 0 185.5 91.5t61.5 240.5v21z" />
203
- <glyph unicode="&#xff;" horiz-adv-x="1038" d="M487 434l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98l-393 1069h265zM883 1258h-242v204h242v-204zM399 1258h-241v204h241v-204z" />
204
- <glyph unicode="&#x131;" horiz-adv-x="538" d="M386 0h-243v1082h243v-1082z" />
205
- <glyph unicode="&#x152;" horiz-adv-x="1972" d="M1866 0h-895q-92 -10 -156.5 -15.5t-131.5 -5.5q-260 0 -421 165.5t-161 431.5v304q0 265 160.5 431t419.5 166q69 0 140 -6t150 -15h888v-195h-732v-411h637v-195h-637v-461h739v-194zM683 174q51 0 101.5 3.5t99.5 10.5v1080q-53 6 -103.5 10t-99.5 4 q-159 0 -248.5 -102.5t-89.5 -297.5v-306q0 -196 90 -299t250 -103z" />
206
- <glyph unicode="&#x153;" horiz-adv-x="1851" d="M1370 -21q-129 0 -231 49.5t-167 139.5q-65 -91 -164.5 -140t-227.5 -49q-232 0 -364.5 154t-132.5 397v21q0 242 132.5 396.5t362.5 154.5q129 0 229.5 -50.5t165.5 -141.5q64 91 160 141.5t209 50.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211 t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37zM326 530q0 -159 62 -258t192 -99q127 0 190.5 99.5t63.5 257.5v21q0 155 -63.5 255.5t-192.5 100.5q-127 0 -189.5 -100.5t-62.5 -255.5v-21zM1342 907q-90 0 -148 -71.5t-72 -181.5l2 -5h429v25 q0 103 -52.5 168t-158.5 65z" />
207
- <glyph unicode="&#x178;" horiz-adv-x="1270" d="M634 748l352 708h271l-505 -945v-511h-242v524l-497 932h271zM1001 1601h-242v204h242v-204zM517 1601h-241v204h241v-204z" />
208
- <glyph unicode="&#x2c6;" horiz-adv-x="998" d="M828 1276v-24h-195l-143 139l-142 -139h-193v26l264 240h143z" />
209
- <glyph unicode="&#x2da;" horiz-adv-x="690" d="M130 1302q0 84 61.5 141t150.5 57q87 0 147.5 -57t60.5 -141q0 -85 -60.5 -139.5t-147.5 -54.5q-89 0 -150.5 54.5t-61.5 139.5zM240 1302q0 -43 29.5 -72t72.5 -29q42 0 70 28t28 73t-28 74.5t-70 30.5q-43 -1 -72.5 -30.5t-29.5 -74.5z" />
210
- <glyph unicode="&#x2dc;" horiz-adv-x="984" d="M849 1488q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5l-131 35q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78z" />
211
- <glyph unicode="&#x2000;" horiz-adv-x="967" />
212
- <glyph unicode="&#x2001;" horiz-adv-x="1935" />
213
- <glyph unicode="&#x2002;" horiz-adv-x="967" />
214
- <glyph unicode="&#x2003;" horiz-adv-x="1935" />
215
- <glyph unicode="&#x2004;" horiz-adv-x="645" />
216
- <glyph unicode="&#x2005;" horiz-adv-x="483" />
217
- <glyph unicode="&#x2006;" horiz-adv-x="322" />
218
- <glyph unicode="&#x2007;" horiz-adv-x="322" />
219
- <glyph unicode="&#x2008;" horiz-adv-x="241" />
220
- <glyph unicode="&#x2009;" horiz-adv-x="387" />
221
- <glyph unicode="&#x200a;" horiz-adv-x="107" />
222
- <glyph unicode="&#x2010;" horiz-adv-x="672" d="M596 521h-525v196h525v-196z" />
223
- <glyph unicode="&#x2011;" horiz-adv-x="672" d="M596 521h-525v196h525v-196z" />
224
- <glyph unicode="&#x2012;" horiz-adv-x="672" d="M596 521h-525v196h525v-196z" />
225
- <glyph unicode="&#x2013;" horiz-adv-x="1415" d="M1252.89 621h-1085.49v196h1085.49v-196z" />
226
- <glyph unicode="&#x2014;" horiz-adv-x="1665" d="M1508.78 621h-1335.98v196h1335.98v-196z" />
227
- <glyph unicode="&#x2018;" horiz-adv-x="413" d="M66 1203l162 357h119l-60 -358v-187h-221v188z" />
228
- <glyph unicode="&#x2019;" horiz-adv-x="413" d="M350 1366l-162 -350h-119l60 348v196h221v-194z" />
229
- <glyph unicode="&#x201a;" horiz-adv-x="413" d="M347 20l-155 -282h-126l60 265v266h221v-249z" />
230
- <glyph unicode="&#x201c;" horiz-adv-x="746" d="M66 1203l162 357h119l-60 -358v-187h-221v188zM395 1203l162 357h119l-60 -358v-187h-221v188z" />
231
- <glyph unicode="&#x201d;" horiz-adv-x="754" d="M350 1366l-162 -350h-119l60 348v196h221v-194zM687 1366l-162 -350h-119l60 348v196h221v-194z" />
232
- <glyph unicode="&#x201e;" horiz-adv-x="731" d="M340 73l-162 -306h-112l60 295v228h214v-217zM665 73l-162 -306h-112l60 303v220h214v-217z" />
233
- <glyph unicode="&#x2022;" horiz-adv-x="715" d="M136 801q0 94 60 154.5t161 60.5q102 0 162.5 -60t60.5 -155v-77q0 -96 -60 -154.5t-162 -58.5q-101 0 -161.5 59t-60.5 154v77z" />
234
- <glyph unicode="&#x2026;" horiz-adv-x="1446" d="M395 0h-242v233h242v-233zM838 0h-242v233h242v-233zM1258 0h-242v233h242v-233z" />
235
- <glyph unicode="&#x202f;" horiz-adv-x="387" />
236
- <glyph unicode="&#x2039;" horiz-adv-x="626" d="M316 550l247 -399h-167l-288 390v19l288 390h167z" />
237
- <glyph unicode="&#x203a;" horiz-adv-x="617" d="M251 950l288 -390v-19l-288 -390h-167l247 399l-247 400h167z" />
238
- <glyph unicode="&#x2044;" horiz-adv-x="924" d="M170 109l-125 72l711 1138l125 -72z" />
239
- <glyph unicode="&#x205f;" horiz-adv-x="483" />
240
- <glyph unicode="&#x20ac;" horiz-adv-x="1101" d="M924 457h-460v-2q0 -112 77 -197t210 -85q57 0 113 8.5t108 25.5l20 -197q-56 -15 -117.5 -23t-123.5 -8q-237 0 -383.5 141.5t-146.5 334.5v2h-146v195h146v128h-146v195h146v12q0 198 145.5 344t382.5 146q60 0 118 -8t125 -23l-20 -199q-54 16 -110.5 25.5t-112.5 9.5 q-132 0 -208.5 -89.5t-76.5 -203.5v-14h460v-195h-460v-128h460v-195z" />
241
- <glyph unicode="&#x2122;" horiz-adv-x="1289" d="M1012 1233l-6 1l-129 -318h-61l-134 330l-6 -1v-329h-111v540h137l141 -373h6l142 373h131v-540h-110v317zM491 1361h-138v-443h-117v443h-136v95h391v-95z" />
242
- <glyph unicode="&#x2212;" horiz-adv-x="1155" d="M993 621h-835v196h835v-196z" />
243
- <glyph unicode="&#x25fc;" horiz-adv-x="1080" d="M0 1080h1080v-1080h-1080v1080z" />
244
- <glyph unicode="&#xfb02;" horiz-adv-x="1250" d="M207 0v902h-165v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243zM1106 0h-243v1560h243v-1560z" />
245
- <glyph unicode="&#xfb03;" horiz-adv-x="1911" d="M207 0v902h-165v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243zM908 0v902h-165v180h165v92q0 195 115 301t322 106q72 0 143 -15.5t163 -44.5l-37 -201 q-62 21 -122 34.5t-130 13.5q-109 0 -160 -48.5t-51 -145.5v-92h213v-180h-213v-902h-243zM1766 0h-243v1082h243v-1082z" />
246
- <glyph unicode="&#xfb04;" horiz-adv-x="1969" d="M207 0v902h-165v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243zM926 0v902h-165v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188 q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243zM1825 0h-243v1560h243v-1560z" />
247
- <glyph horiz-adv-x="907" d="M691 290h114v-145h-114v-145h-191v145h-413l-10 116l422 540h192v-511zM279 295l3 -5h218v277l-6 2l-12 -20z" />
248
- <glyph horiz-adv-x="870" d="M417 473q65 0 95.5 26.5t30.5 74.5q0 39 -32.5 65.5t-94.5 26.5q-53 0 -84.5 -22t-31.5 -56h-181l-2 6q-6 98 80 158t216 60q149 0 235 -59.5t86 -169.5q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -90 -174t-239 -62q-135 0 -227.5 60.5 t-86.5 172.5l2 6h181q0 -43 34.5 -68.5t95.5 -25.5q64 0 102 26t38 71q0 56 -35.5 83.5t-104.5 27.5h-123v131h123z" />
249
- <glyph horiz-adv-x="853" d="M725 0h-607v145l305 256q64 54 84 89t20 76q0 44 -25.5 72t-79.5 28q-61 0 -93 -30t-32 -78h-181l-2 6q-6 103 80 175.5t231 72.5q139 0 216.5 -65t77.5 -182q0 -81 -48.5 -140t-168.5 -164l-129 -110l2 -6h350v-145z" />
250
- <glyph horiz-adv-x="563" d="M406 0h-192v639h-127v150l319 23v-812z" />
251
- <hkern u1="&#x22;" u2="w" k="-11" />
252
- <hkern u1="&#x27;" u2="w" k="-11" />
253
- <hkern u1="&#x28;" u2="&#x178;" k="-23" />
254
- <hkern u1="&#x28;" u2="&#xdd;" k="-23" />
255
- <hkern u1="&#x28;" u2="Y" k="-23" />
256
- <hkern u1="&#x28;" u2="W" k="-32" />
257
- <hkern u1="&#x28;" u2="V" k="-21" />
258
- <hkern u1="A" u2="w" k="35" />
259
- <hkern u1="A" u2="t" k="18" />
260
- <hkern u1="A" u2="&#x3f;" k="79" />
261
- <hkern u1="C" u2="&#x29;" k="28" />
262
- <hkern u1="D" u2="&#xc6;" k="46" />
263
- <hkern u1="E" u2="w" k="23" />
264
- <hkern u1="F" u2="&#x2026;" k="297" />
265
- <hkern u1="F" u2="&#x201e;" k="297" />
266
- <hkern u1="F" u2="&#x201a;" k="297" />
267
- <hkern u1="F" u2="&#x153;" k="35" />
268
- <hkern u1="F" u2="&#xff;" k="26" />
269
- <hkern u1="F" u2="&#xfd;" k="26" />
270
- <hkern u1="F" u2="&#xfc;" k="23" />
271
- <hkern u1="F" u2="&#xfb;" k="23" />
272
- <hkern u1="F" u2="&#xfa;" k="23" />
273
- <hkern u1="F" u2="&#xf9;" k="23" />
274
- <hkern u1="F" u2="&#xf6;" k="36" />
275
- <hkern u1="F" u2="&#xf5;" k="36" />
276
- <hkern u1="F" u2="&#xf4;" k="36" />
277
- <hkern u1="F" u2="&#xf3;" k="36" />
278
- <hkern u1="F" u2="&#xf2;" k="36" />
279
- <hkern u1="F" u2="&#xeb;" k="35" />
280
- <hkern u1="F" u2="&#xea;" k="35" />
281
- <hkern u1="F" u2="&#xe9;" k="35" />
282
- <hkern u1="F" u2="&#xe8;" k="35" />
283
- <hkern u1="F" u2="&#xe7;" k="35" />
284
- <hkern u1="F" u2="&#xe5;" k="50" />
285
- <hkern u1="F" u2="&#xe4;" k="50" />
286
- <hkern u1="F" u2="&#xe3;" k="50" />
287
- <hkern u1="F" u2="&#xe2;" k="50" />
288
- <hkern u1="F" u2="&#xe1;" k="50" />
289
- <hkern u1="F" u2="&#xe0;" k="50" />
290
- <hkern u1="F" u2="&#xc5;" k="107" />
291
- <hkern u1="F" u2="&#xc4;" k="107" />
292
- <hkern u1="F" u2="&#xc3;" k="107" />
293
- <hkern u1="F" u2="&#xc2;" k="107" />
294
- <hkern u1="F" u2="&#xc1;" k="107" />
295
- <hkern u1="F" u2="&#xc0;" k="107" />
296
- <hkern u1="F" u2="y" k="26" />
297
- <hkern u1="F" u2="v" k="26" />
298
- <hkern u1="F" u2="u" k="23" />
299
- <hkern u1="F" u2="r" k="28" />
300
- <hkern u1="F" u2="q" k="35" />
301
- <hkern u1="F" u2="o" k="36" />
302
- <hkern u1="F" u2="g" k="35" />
303
- <hkern u1="F" u2="e" k="35" />
304
- <hkern u1="F" u2="d" k="35" />
305
- <hkern u1="F" u2="c" k="35" />
306
- <hkern u1="F" u2="a" k="50" />
307
- <hkern u1="F" u2="T" k="-20" />
308
- <hkern u1="F" u2="A" k="107" />
309
- <hkern u1="F" u2="&#x3a;" k="297" />
310
- <hkern u1="F" u2="&#x2e;" k="297" />
311
- <hkern u1="F" u2="&#x2c;" k="297" />
312
- <hkern u1="K" u2="w" k="68" />
313
- <hkern u1="L" u2="w" k="76" />
314
- <hkern u1="O" u2="&#xc6;" k="46" />
315
- <hkern u1="P" u2="&#xc6;" k="235" />
316
- <hkern u1="P" u2="t" k="-15" />
317
- <hkern u1="Q" u2="&#x178;" k="51" />
318
- <hkern u1="Q" u2="&#xdd;" k="51" />
319
- <hkern u1="Q" u2="Y" k="51" />
320
- <hkern u1="Q" u2="W" k="21" />
321
- <hkern u1="Q" u2="V" k="30" />
322
- <hkern u1="Q" u2="T" k="35" />
323
- <hkern u1="R" u2="&#x178;" k="52" />
324
- <hkern u1="R" u2="&#xdd;" k="52" />
325
- <hkern u1="R" u2="Y" k="52" />
326
- <hkern u1="R" u2="V" k="20" />
327
- <hkern u1="R" u2="T" k="41" />
328
- <hkern u1="T" u2="&#xf8;" k="103" />
329
- <hkern u1="T" u2="&#xe6;" k="91" />
330
- <hkern u1="T" u2="&#xc6;" k="192" />
331
- <hkern u1="T" u2="&#xbb;" k="158" />
332
- <hkern u1="T" u2="&#xab;" k="160" />
333
- <hkern u1="T" u2="w" k="50" />
334
- <hkern u1="T" u2="r" k="70" />
335
- <hkern u1="V" u2="&#x7d;" k="-20" />
336
- <hkern u1="V" u2="r" k="32" />
337
- <hkern u1="V" u2="]" k="-18" />
338
- <hkern u1="V" u2="&#x29;" k="-21" />
339
- <hkern u1="W" u2="&#x7d;" k="-15" />
340
- <hkern u1="W" u2="r" k="22" />
341
- <hkern u1="W" u2="]" k="-13" />
342
- <hkern u1="W" u2="&#x29;" k="-16" />
343
- <hkern u1="Y" u2="&#x2022;" k="73" />
344
- <hkern u1="Y" u2="&#xf8;" k="76" />
345
- <hkern u1="Y" u2="&#xe6;" k="75" />
346
- <hkern u1="Y" u2="&#xc6;" k="114" />
347
- <hkern u1="Y" u2="&#xbb;" k="55" />
348
- <hkern u1="Y" u2="&#xab;" k="99" />
349
- <hkern u1="Y" u2="&#x7d;" k="-20" />
350
- <hkern u1="Y" u2="t" k="27" />
351
- <hkern u1="Y" u2="r" k="50" />
352
- <hkern u1="Y" u2="f" k="30" />
353
- <hkern u1="Y" u2="]" k="-19" />
354
- <hkern u1="Y" u2="&#x2a;" k="67" />
355
- <hkern u1="Y" u2="&#x29;" k="-21" />
356
- <hkern u1="Y" u2="&#x26;" k="42" />
357
- <hkern u1="Z" u2="w" k="29" />
358
- <hkern u1="[" u2="&#xdc;" k="19" />
359
- <hkern u1="[" u2="&#xdb;" k="19" />
360
- <hkern u1="[" u2="&#xda;" k="19" />
361
- <hkern u1="[" u2="&#xd9;" k="19" />
362
- <hkern u1="[" u2="U" k="19" />
363
- <hkern u1="[" u2="J" k="19" />
364
- <hkern u1="f" u2="&#x201d;" k="-24" />
365
- <hkern u1="f" u2="&#x201c;" k="-24" />
366
- <hkern u1="f" u2="&#x2019;" k="-24" />
367
- <hkern u1="f" u2="&#x2018;" k="-24" />
368
- <hkern u1="f" u2="&#x7d;" k="-27" />
369
- <hkern u1="f" u2="]" k="-40" />
370
- <hkern u1="f" u2="&#x29;" k="-35" />
371
- <hkern u1="f" u2="&#x27;" k="-24" />
372
- <hkern u1="f" u2="&#x22;" k="-24" />
373
- <hkern u1="k" u2="&#x153;" k="21" />
374
- <hkern u1="k" u2="&#xeb;" k="21" />
375
- <hkern u1="k" u2="&#xea;" k="21" />
376
- <hkern u1="k" u2="&#xe9;" k="21" />
377
- <hkern u1="k" u2="&#xe8;" k="21" />
378
- <hkern u1="k" u2="&#xe7;" k="21" />
379
- <hkern u1="k" u2="q" k="21" />
380
- <hkern u1="k" u2="g" k="21" />
381
- <hkern u1="k" u2="e" k="21" />
382
- <hkern u1="k" u2="d" k="21" />
383
- <hkern u1="k" u2="c" k="21" />
384
- <hkern u1="r" u2="w" k="-21" />
385
- <hkern u1="r" u2="t" k="-21" />
386
- <hkern u1="r" u2="f" k="-19" />
387
- <hkern u1="v" u2="f" k="-14" />
388
- <hkern u1="w" u2="&#x2026;" k="99" />
389
- <hkern u1="w" u2="&#x201e;" k="99" />
390
- <hkern u1="w" u2="&#x201a;" k="99" />
391
- <hkern u1="w" u2="&#x3a;" k="99" />
392
- <hkern u1="w" u2="&#x2e;" k="99" />
393
- <hkern u1="w" u2="&#x2c;" k="99" />
394
- <hkern u1="y" u2="f" k="-14" />
395
- <hkern u1="&#x7b;" u2="&#xdc;" k="21" />
396
- <hkern u1="&#x7b;" u2="&#xdb;" k="21" />
397
- <hkern u1="&#x7b;" u2="&#xda;" k="21" />
398
- <hkern u1="&#x7b;" u2="&#xd9;" k="21" />
399
- <hkern u1="&#x7b;" u2="U" k="21" />
400
- <hkern u1="&#x7b;" u2="J" k="21" />
401
- <hkern u1="&#xc0;" u2="w" k="35" />
402
- <hkern u1="&#xc0;" u2="t" k="18" />
403
- <hkern u1="&#xc0;" u2="&#x3f;" k="79" />
404
- <hkern u1="&#xc1;" u2="w" k="35" />
405
- <hkern u1="&#xc1;" u2="t" k="18" />
406
- <hkern u1="&#xc1;" u2="&#x3f;" k="79" />
407
- <hkern u1="&#xc2;" u2="w" k="35" />
408
- <hkern u1="&#xc2;" u2="t" k="18" />
409
- <hkern u1="&#xc2;" u2="&#x3f;" k="79" />
410
- <hkern u1="&#xc3;" u2="w" k="35" />
411
- <hkern u1="&#xc3;" u2="t" k="18" />
412
- <hkern u1="&#xc3;" u2="&#x3f;" k="79" />
413
- <hkern u1="&#xc4;" u2="w" k="35" />
414
- <hkern u1="&#xc4;" u2="t" k="18" />
415
- <hkern u1="&#xc4;" u2="&#x3f;" k="79" />
416
- <hkern u1="&#xc5;" u2="w" k="35" />
417
- <hkern u1="&#xc5;" u2="t" k="18" />
418
- <hkern u1="&#xc5;" u2="&#x3f;" k="79" />
419
- <hkern u1="&#xc7;" u2="&#x29;" k="28" />
420
- <hkern u1="&#xc8;" u2="w" k="23" />
421
- <hkern u1="&#xc9;" u2="w" k="23" />
422
- <hkern u1="&#xca;" u2="w" k="23" />
423
- <hkern u1="&#xcb;" u2="w" k="23" />
424
- <hkern u1="&#xd0;" u2="&#xc6;" k="46" />
425
- <hkern u1="&#xd2;" u2="&#xc6;" k="46" />
426
- <hkern u1="&#xd3;" u2="&#xc6;" k="46" />
427
- <hkern u1="&#xd4;" u2="&#xc6;" k="46" />
428
- <hkern u1="&#xd5;" u2="&#xc6;" k="46" />
429
- <hkern u1="&#xd6;" u2="&#xc6;" k="46" />
430
- <hkern u1="&#xdd;" u2="&#x2022;" k="73" />
431
- <hkern u1="&#xdd;" u2="&#xf8;" k="76" />
432
- <hkern u1="&#xdd;" u2="&#xe6;" k="75" />
433
- <hkern u1="&#xdd;" u2="&#xc6;" k="114" />
434
- <hkern u1="&#xdd;" u2="&#xbb;" k="55" />
435
- <hkern u1="&#xdd;" u2="&#xab;" k="99" />
436
- <hkern u1="&#xdd;" u2="&#x7d;" k="-20" />
437
- <hkern u1="&#xdd;" u2="t" k="27" />
438
- <hkern u1="&#xdd;" u2="r" k="50" />
439
- <hkern u1="&#xdd;" u2="f" k="30" />
440
- <hkern u1="&#xdd;" u2="]" k="-19" />
441
- <hkern u1="&#xdd;" u2="&#x2a;" k="67" />
442
- <hkern u1="&#xdd;" u2="&#x29;" k="-21" />
443
- <hkern u1="&#xdd;" u2="&#x26;" k="42" />
444
- <hkern u1="&#xfd;" u2="f" k="-14" />
445
- <hkern u1="&#xff;" u2="f" k="-14" />
446
- <hkern u1="&#x178;" u2="&#x2022;" k="73" />
447
- <hkern u1="&#x178;" u2="&#xf8;" k="76" />
448
- <hkern u1="&#x178;" u2="&#xe6;" k="75" />
449
- <hkern u1="&#x178;" u2="&#xc6;" k="114" />
450
- <hkern u1="&#x178;" u2="&#xbb;" k="55" />
451
- <hkern u1="&#x178;" u2="&#xab;" k="99" />
452
- <hkern u1="&#x178;" u2="&#x7d;" k="-20" />
453
- <hkern u1="&#x178;" u2="t" k="27" />
454
- <hkern u1="&#x178;" u2="r" k="50" />
455
- <hkern u1="&#x178;" u2="f" k="30" />
456
- <hkern u1="&#x178;" u2="]" k="-19" />
457
- <hkern u1="&#x178;" u2="&#x2a;" k="67" />
458
- <hkern u1="&#x178;" u2="&#x29;" k="-21" />
459
- <hkern u1="&#x178;" u2="&#x26;" k="42" />
460
- <hkern u1="&#x2018;" u2="w" k="-11" />
461
- <hkern u1="&#x2019;" u2="w" k="-11" />
462
- <hkern u1="&#x201c;" u2="w" k="-11" />
463
- <hkern u1="&#x201d;" u2="w" k="-11" />
464
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="40" />
465
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="145" />
466
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="64" />
467
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="74" />
468
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="m,n,p,ntilde" k="21" />
469
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="89" />
470
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="s" k="89" />
471
- <hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
472
- <hkern g1="B" g2="T" k="29" />
473
- <hkern g1="B" g2="V" k="26" />
474
- <hkern g1="B" g2="Y,Yacute,Ydieresis" k="90" />
475
- <hkern g1="C,Ccedilla" g2="T" k="31" />
476
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
477
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="29" />
478
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="23" />
479
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="46" />
480
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="106" />
481
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="23" />
482
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="24" />
483
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
484
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
485
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
486
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="18" />
487
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="28" />
488
- <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="23" />
489
- <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="28" />
490
- <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="29" />
491
- <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="24" />
492
- <hkern g1="K" g2="v,y,yacute,ydieresis" k="43" />
493
- <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="166" />
494
- <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="43" />
495
- <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="276" />
496
- <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-20" />
497
- <hkern g1="L" g2="T" k="208" />
498
- <hkern g1="L" g2="V" k="210" />
499
- <hkern g1="L" g2="Y,Yacute,Ydieresis" k="273" />
500
- <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="15" />
501
- <hkern g1="L" g2="v,y,yacute,ydieresis" k="131" />
502
- <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
503
- <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="26" />
504
- <hkern g1="L" g2="W" k="104" />
505
- <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="173" />
506
- <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
507
- <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="14" />
508
- <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="14" />
509
- <hkern g1="P" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="393" />
510
- <hkern g1="P" g2="X" k="63" />
511
- <hkern g1="P" g2="Z" k="37" />
512
- <hkern g1="P" g2="v,y,yacute,ydieresis" k="-16" />
513
- <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="105" />
514
- <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="89" />
515
- <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="96" />
516
- <hkern g1="T" g2="m,n,p,ntilde" k="86" />
517
- <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="85" />
518
- <hkern g1="T" g2="s" k="82" />
519
- <hkern g1="T" g2="T" k="-17" />
520
- <hkern g1="T" g2="V" k="-17" />
521
- <hkern g1="T" g2="Y,Yacute,Ydieresis" k="-17" />
522
- <hkern g1="T" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="232" />
523
- <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="70" />
524
- <hkern g1="T" g2="v,y,yacute,ydieresis" k="88" />
525
- <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="238" />
526
- <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="30" />
527
- <hkern g1="T" g2="W" k="-16" />
528
- <hkern g1="T" g2="S" k="17" />
529
- <hkern g1="T" g2="x" k="83" />
530
- <hkern g1="T" g2="z" k="65" />
531
- <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="105" />
532
- <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="49" />
533
- <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="47" />
534
- <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="49" />
535
- <hkern g1="V" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="215" />
536
- <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="30" />
537
- <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
538
- <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="118" />
539
- <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="21" />
540
- <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="56" />
541
- <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="35" />
542
- <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="33" />
543
- <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="33" />
544
- <hkern g1="W" g2="T" k="-15" />
545
- <hkern g1="W" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="155" />
546
- <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
547
- <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="79" />
548
- <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="28" />
549
- <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="26" />
550
- <hkern g1="X" g2="V" k="-15" />
551
- <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="22" />
552
- <hkern g1="X" g2="v,y,yacute,ydieresis" k="40" />
553
- <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="170" />
554
- <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="30" />
555
- <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="154" />
556
- <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="78" />
557
- <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="95" />
558
- <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="57" />
559
- <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="102" />
560
- <hkern g1="Y,Yacute,Ydieresis" g2="s" k="87" />
561
- <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-18" />
562
- <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-19" />
563
- <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-19" />
564
- <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="238" />
565
- <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="56" />
566
- <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="21" />
567
- <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="142" />
568
- <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
569
- <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="79" />
570
- <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-18" />
571
- <hkern g1="Y,Yacute,Ydieresis" g2="S" k="17" />
572
- <hkern g1="Y,Yacute,Ydieresis" g2="x" k="28" />
573
- <hkern g1="Y,Yacute,Ydieresis" g2="z" k="35" />
574
- <hkern g1="Y,Yacute,Ydieresis" g2="J" k="125" />
575
- <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-14" />
576
- <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="22" />
577
- <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="22" />
578
- <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
579
- <hkern g1="Z" g2="v,y,yacute,ydieresis" k="29" />
580
- <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
581
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="32" />
582
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="16" />
583
- <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="38" />
584
- <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
585
- <hkern g1="b,p,thorn" g2="x" k="16" />
586
- <hkern g1="b,p,thorn" g2="z" k="16" />
587
- <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="25" />
588
- <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="25" />
589
- <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="14" />
590
- <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="34" />
591
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="39" />
592
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="16" />
593
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="26" />
594
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="17" />
595
- <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-17" />
596
- <hkern g1="r" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="160" />
597
- <hkern g1="r" g2="v,y,yacute,ydieresis" k="-22" />
598
- <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="16" />
599
- <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="14" />
600
- <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
601
- <hkern g1="v,y,yacute,ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="154" />
602
- <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
603
- <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="34" />
604
- <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="17" />
605
- <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="17" />
606
- </font>
607
- </defs></svg>