redhat_access 2.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 (218) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +24 -0
  3. data/LICENSE.txt +620 -0
  4. data/README.rdoc +7 -0
  5. data/Rakefile +131 -0
  6. data/app/assets/javascripts/insights/app.module.js +64 -0
  7. data/app/assets/javascripts/insights/application.js +18 -0
  8. data/app/assets/javascripts/insights/configuration.controller.js +66 -0
  9. data/app/assets/javascripts/insights/configuration.service.js +28 -0
  10. data/app/assets/javascripts/insights/views/configuration.html +85 -0
  11. data/app/assets/javascripts/insights/views/error.html +13 -0
  12. data/app/assets/javascripts/insights/views/help.html +16 -0
  13. data/app/assets/javascripts/redhat_access/analytics_dashboard.js +2 -0
  14. data/app/assets/javascripts/redhat_access/application.js +15 -0
  15. data/app/assets/javascripts/redhat_access/redhat_access.module.js +126 -0
  16. data/app/assets/stylesheets/insights/application.css +14 -0
  17. data/app/assets/stylesheets/insights/insights.css +21 -0
  18. data/app/assets/stylesheets/redhat_access/application.css +14 -0
  19. data/app/assets/stylesheets/redhat_access/telemetry_configuration.css +4 -0
  20. data/app/controllers/redhat_access/analytics_dashboard_controller.rb +12 -0
  21. data/app/controllers/redhat_access/api/api_controller.rb +24 -0
  22. data/app/controllers/redhat_access/api/attachments_controller.rb +40 -0
  23. data/app/controllers/redhat_access/api/logs_controller.rb +49 -0
  24. data/app/controllers/redhat_access/api/machine_telemetry_api_controller.rb +112 -0
  25. data/app/controllers/redhat_access/api/strata_proxy_controller.rb +81 -0
  26. data/app/controllers/redhat_access/api/telemetry_api_controller.rb +179 -0
  27. data/app/controllers/redhat_access/application_controller.rb +2 -0
  28. data/app/controllers/redhat_access/cases_controller.rb +14 -0
  29. data/app/controllers/redhat_access/configuration_controller.rb +21 -0
  30. data/app/controllers/redhat_access/log_viewer_controller.rb +9 -0
  31. data/app/controllers/redhat_access/redhat_access_controller.rb +8 -0
  32. data/app/controllers/redhat_access/search_controller.rb +9 -0
  33. data/app/controllers/redhat_access/strata_credentials_controller.rb +48 -0
  34. data/app/controllers/redhat_access/telemetry_configurations_controller.rb +38 -0
  35. data/app/controllers/redhat_access/telemetry_controller.rb +6 -0
  36. data/app/helpers/redhat_access/analytics_dashboard_helper.rb +13 -0
  37. data/app/helpers/redhat_access/application_helper.rb +4 -0
  38. data/app/helpers/redhat_access/attachments_helper.rb +4 -0
  39. data/app/helpers/redhat_access/cases_helper.rb +4 -0
  40. data/app/helpers/redhat_access/log_viewer_helper.rb +4 -0
  41. data/app/helpers/redhat_access/logs_helper.rb +4 -0
  42. data/app/helpers/redhat_access/redhat_access_helper.rb +4 -0
  43. data/app/helpers/redhat_access/search_helper.rb +4 -0
  44. data/app/helpers/redhat_access/telemetry_configuration_helper.rb +4 -0
  45. data/app/models/redhat_access/concerns/organization_extensions.rb +10 -0
  46. data/app/models/redhat_access/telemetry_configuration.rb +11 -0
  47. data/app/models/redhat_access/telemetry_proxy_credentials.rb +10 -0
  48. data/app/services/redhat_access/authentication/client_authentication.rb +80 -0
  49. data/app/services/redhat_access/telemetry/look_ups.rb +233 -0
  50. data/app/services/redhat_access/telemetry/portal_client.rb +39 -0
  51. data/app/views/redhat_access/analytics_dashboard/configuration.html.erb +85 -0
  52. data/app/views/redhat_access/analytics_dashboard/error.html.erb +13 -0
  53. data/app/views/redhat_access/analytics_dashboard/help.html.erb +16 -0
  54. data/app/views/redhat_access/analytics_dashboard/index.html.erb +69 -0
  55. data/app/views/redhat_access/analytics_dashboard/welcome.html.erb +8 -0
  56. data/app/views/redhat_access/redhat_access/index.html.erb +34 -0
  57. data/ca/rh_cert-api_chain.pem +74 -0
  58. data/config/config.yml.example +15 -0
  59. data/config/environments/development.rb +5 -0
  60. data/config/initializers/load_config.rb +5 -0
  61. data/config/mount_engine.rb +3 -0
  62. data/config/routes.rb +36 -0
  63. data/db/migrate/20141204161152_create_redhat_access_telemetry_proxy_credentials.rb +11 -0
  64. data/db/migrate/20150319153744_create_redhat_access_telemetry_configurations.rb +13 -0
  65. data/db/migrate/20160425175501_add_email_to_telemetry_configurations.rb +5 -0
  66. data/db/seeds.d/200-update-insights-roles.rb +11 -0
  67. data/lib/redhat_access/configuration.rb +8 -0
  68. data/lib/redhat_access/engine.rb +225 -0
  69. data/lib/redhat_access/sos_reports/generator.rb +58 -0
  70. data/lib/redhat_access/strata/client.rb +39 -0
  71. data/lib/redhat_access/version.rb +3 -0
  72. data/lib/redhat_access.rb +5 -0
  73. data/lib/tasks/redhat_access_tasks.rake +41 -0
  74. data/locale/Makefile +62 -0
  75. data/locale/de/LC_MESSAGES/redhat_access.mo +0 -0
  76. data/locale/de/redhat_access.po +589 -0
  77. data/locale/es/LC_MESSAGES/redhat_access.mo +0 -0
  78. data/locale/es/redhat_access.po +589 -0
  79. data/locale/fr/LC_MESSAGES/redhat_access.mo +0 -0
  80. data/locale/fr/redhat_access.po +593 -0
  81. data/locale/gemspec.rb +2 -0
  82. data/locale/it/LC_MESSAGES/redhat_access.mo +0 -0
  83. data/locale/it/redhat_access.po +589 -0
  84. data/locale/ja/LC_MESSAGES/redhat_access.mo +0 -0
  85. data/locale/ja/redhat_access.po +569 -0
  86. data/locale/ko/LC_MESSAGES/redhat_access.mo +0 -0
  87. data/locale/ko/redhat_access.po +570 -0
  88. data/locale/pt/LC_MESSAGES/redhat_access.mo +0 -0
  89. data/locale/pt/redhat_access.po +588 -0
  90. data/locale/redhat_access.pot +34 -0
  91. data/locale/ru/LC_MESSAGES/redhat_access.mo +0 -0
  92. data/locale/ru/redhat_access.po +580 -0
  93. data/locale/zh/LC_MESSAGES/redhat_access.mo +0 -0
  94. data/locale/zh/redhat_access.po +561 -0
  95. data/redhat_access.gemspec +30 -0
  96. data/script/rails +8 -0
  97. data/script/sos_reports/foreman_sosreport.pam +9 -0
  98. data/script/sos_reports/foreman_sosreport_console.apps +3 -0
  99. data/script/sos_reports/foreman_sosreport_wrapper.py +65 -0
  100. data/test/dummy/README.rdoc +261 -0
  101. data/test/dummy/Rakefile +7 -0
  102. data/test/dummy/app/assets/javascripts/application.js +15 -0
  103. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  104. data/test/dummy/app/controllers/application_controller.rb +3 -0
  105. data/test/dummy/app/helpers/application_helper.rb +2 -0
  106. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  107. data/test/dummy/config/application.rb +59 -0
  108. data/test/dummy/config/boot.rb +10 -0
  109. data/test/dummy/config/database.yml +25 -0
  110. data/test/dummy/config/environment.rb +5 -0
  111. data/test/dummy/config/environments/development.rb +37 -0
  112. data/test/dummy/config/environments/production.rb +67 -0
  113. data/test/dummy/config/environments/test.rb +37 -0
  114. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  115. data/test/dummy/config/initializers/inflections.rb +15 -0
  116. data/test/dummy/config/initializers/mime_types.rb +5 -0
  117. data/test/dummy/config/initializers/secret_token.rb +7 -0
  118. data/test/dummy/config/initializers/session_store.rb +8 -0
  119. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  120. data/test/dummy/config/locales/en.yml +5 -0
  121. data/test/dummy/config/routes.rb +4 -0
  122. data/test/dummy/config.ru +4 -0
  123. data/test/dummy/public/404.html +26 -0
  124. data/test/dummy/public/422.html +26 -0
  125. data/test/dummy/public/500.html +25 -0
  126. data/test/dummy/public/favicon.ico +0 -0
  127. data/test/dummy/script/rails +6 -0
  128. data/test/fixtures/redhat_access/telemetry_configurations.yml +11 -0
  129. data/test/fixtures/redhat_access/telemetry_proxy_credentials.yml +11 -0
  130. data/test/functional/redhat_access/analytics_dashboard_controller_test.rb +11 -0
  131. data/test/functional/redhat_access/attachments_controller_test.rb +11 -0
  132. data/test/functional/redhat_access/cases_controller_test.rb +16 -0
  133. data/test/functional/redhat_access/configuration_controller_test.rb +11 -0
  134. data/test/functional/redhat_access/log_viewer_controller_test.rb +11 -0
  135. data/test/functional/redhat_access/logs_controller_test.rb +9 -0
  136. data/test/functional/redhat_access/redhat_access_controller_test.rb +11 -0
  137. data/test/functional/redhat_access/search_controller_test.rb +11 -0
  138. data/test/functional/redhat_access/telemetry_configuration_controller_test.rb +26 -0
  139. data/test/integration/navigation_test.rb +10 -0
  140. data/test/models/redhat_access/telemetry_proxy_credentials_test.rb +9 -0
  141. data/test/redhat_access_test.rb +7 -0
  142. data/test/sos-report-test.rb +32 -0
  143. data/test/test_helper.rb +15 -0
  144. data/test/unit/helpers/redhat_access/analytics_dashboard_helper_test.rb +6 -0
  145. data/test/unit/helpers/redhat_access/attachments_helper_test.rb +6 -0
  146. data/test/unit/helpers/redhat_access/cases_helper_test.rb +6 -0
  147. data/test/unit/helpers/redhat_access/log_viewer_helper_test.rb +6 -0
  148. data/test/unit/helpers/redhat_access/logs_helper_test.rb +6 -0
  149. data/test/unit/helpers/redhat_access/redhat_access_helper_test.rb +6 -0
  150. data/test/unit/helpers/redhat_access/search_helper_test.rb +6 -0
  151. data/test/unit/helpers/redhat_access/telemetry_configuration_helper_test.rb +6 -0
  152. data/test/unit/redhat_access/telemetry_configuration_test.rb +9 -0
  153. data/vendor/assets/fonts/fonts/FontAwesome.otf +0 -0
  154. data/vendor/assets/fonts/fonts/fontawesome-webfont.eot +0 -0
  155. data/vendor/assets/fonts/fonts/fontawesome-webfont.svg +655 -0
  156. data/vendor/assets/fonts/fonts/fontawesome-webfont.ttf +0 -0
  157. data/vendor/assets/fonts/fonts/fontawesome-webfont.woff +0 -0
  158. data/vendor/assets/fonts/fonts/icomoon.eot +0 -0
  159. data/vendor/assets/fonts/fonts/icomoon.svg +22 -0
  160. data/vendor/assets/fonts/fonts/icomoon.ttf +0 -0
  161. data/vendor/assets/fonts/fonts/icomoon.woff +0 -0
  162. data/vendor/assets/fonts/fonts/overpass_bold-web.eot +0 -0
  163. data/vendor/assets/fonts/fonts/overpass_bold-web.svg +454 -0
  164. data/vendor/assets/fonts/fonts/overpass_bold-web.ttf +0 -0
  165. data/vendor/assets/fonts/fonts/overpass_bold-web.woff +0 -0
  166. data/vendor/assets/fonts/fonts/overpass_light-webfont.eot +0 -0
  167. data/vendor/assets/fonts/fonts/overpass_light-webfont.svg +2105 -0
  168. data/vendor/assets/fonts/fonts/overpass_light-webfont.ttf +0 -0
  169. data/vendor/assets/fonts/fonts/overpass_light-webfont.woff +0 -0
  170. data/vendor/assets/fonts/fonts/overpass_regular-web.eot +0 -0
  171. data/vendor/assets/fonts/fonts/overpass_regular-web.svg +454 -0
  172. data/vendor/assets/fonts/fonts/overpass_regular-web.ttf +0 -0
  173. data/vendor/assets/fonts/fonts/overpass_regular-web.woff +0 -0
  174. data/vendor/assets/fonts/fonts/portalicons.eot +0 -0
  175. data/vendor/assets/fonts/fonts/portalicons.svg +145 -0
  176. data/vendor/assets/fonts/fonts/portalicons.ttf +0 -0
  177. data/vendor/assets/fonts/fonts/portalicons.woff +0 -0
  178. data/vendor/assets/images/images/Icon_RH_Document_Blueprint_RGB_Button.png +0 -0
  179. data/vendor/assets/images/images/Icon_RH_Misc_Lifestyle_RGB_Button.png +0 -0
  180. data/vendor/assets/images/images/Icon_RH_Software_Data_CMYK_Button.png +0 -0
  181. data/vendor/assets/images/images/Icon_RH_Software_Transfer-Upload_CMYK_Button.png +0 -0
  182. data/vendor/assets/images/images/bg1.jpg +0 -0
  183. data/vendor/assets/images/images/bg_body.jpg +0 -0
  184. data/vendor/assets/images/images/bg_chart-shadow.png +0 -0
  185. data/vendor/assets/images/images/bg_dount-hole-na.png +0 -0
  186. data/vendor/assets/images/images/bg_glow.jpg +0 -0
  187. data/vendor/assets/images/images/bg_pattern.png +0 -0
  188. data/vendor/assets/images/images/i_chart.png +0 -0
  189. data/vendor/assets/images/images/img-insights-connection-sat.png +0 -0
  190. data/vendor/assets/images/images/img-insights-connection.png +0 -0
  191. data/vendor/assets/images/images/img-sat5-step2-admin.png +0 -0
  192. data/vendor/assets/images/images/img-sat5-step3-completed.png +0 -0
  193. data/vendor/assets/images/images/img-sat5-step3-pending.png +0 -0
  194. data/vendor/assets/images/images/img-sat5-step3-setup.png +0 -0
  195. data/vendor/assets/images/images/img-sat5-step5-overview.png +0 -0
  196. data/vendor/assets/images/images/img-sat5-step5-reports.png +0 -0
  197. data/vendor/assets/images/images/img-sat5-step5-systems.png +0 -0
  198. data/vendor/assets/images/images/img-sat6-step2.jpg +0 -0
  199. data/vendor/assets/images/images/img-sat6-step3.jpg +0 -0
  200. data/vendor/assets/images/images/img-sat6-step3.png +0 -0
  201. data/vendor/assets/images/images/img-sat6-step4.jpg +0 -0
  202. data/vendor/assets/images/images/img-sat6-step5a.jpg +0 -0
  203. data/vendor/assets/images/images/img-sat6-step5b.jpg +0 -0
  204. data/vendor/assets/images/images/img-sat6-step5c.jpg +0 -0
  205. data/vendor/assets/images/images/img-sat6-step5d.jpg +0 -0
  206. data/vendor/assets/images/images/keynote-snap.jpg +0 -0
  207. data/vendor/assets/images/images/keynote-snap.png +0 -0
  208. data/vendor/assets/images/images/splash-gettingstarted.jpg +0 -0
  209. data/vendor/assets/images/images/splash-learnmore.jpg +0 -0
  210. data/vendor/assets/images/images/splash-security.jpg +0 -0
  211. data/vendor/assets/javascripts/angular/angular.js +20131 -0
  212. data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui-deps.js +14103 -0
  213. data/vendor/assets/javascripts/redhat_access/redhat_access_angular_ui.js +7854 -0
  214. data/vendor/assets/javascripts/telemetry/insights.js +39 -0
  215. data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui-deps.css +11 -0
  216. data/vendor/assets/stylesheets/redhat_access/redhat_access_angular_ui.css +1 -0
  217. data/vendor/assets/stylesheets/telemetry/sat6.css +18 -0
  218. metadata +341 -0
@@ -0,0 +1,2105 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="overpasslight" horiz-adv-x="1290" >
7
+ <font-face units-per-em="2048" ascent="1536" descent="-512" />
8
+ <missing-glyph horiz-adv-x="471" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1138" d="M20 918v129h168v178q0 63 18.5 108t49.5 73t70 40t80 12q59 0 101 -15.5t77 -33.5v-125q-33 16 -69 28.5t-81 12.5q-37 0 -58.5 -11t-30.5 -28.5t-11 -40t-2 -43.5v-155h252v-129h-252v-918h-144v918h-168zM817 1356q0 41 26.5 69.5t67.5 28.5t68 -28.5t27 -69.5 t-27 -67.5t-68 -26.5t-67.5 26.5t-26.5 67.5zM840 0v1047h143v-1047h-143z" />
10
+ <glyph unicode="&#xfb02;" horiz-adv-x="1146" d="M20 918v129h168v178q0 63 18.5 108t49.5 73t70 40t80 12q59 0 101 -15.5t77 -33.5v-125q-33 16 -69 28.5t-81 12.5q-37 0 -58.5 -11t-30.5 -28.5t-11 -40t-2 -43.5v-155h252v-129h-252v-918h-144v918h-168zM840 0v1409l143 70v-1479h-143z" />
11
+ <glyph horiz-adv-x="2048" />
12
+ <glyph horiz-adv-x="2048" />
13
+ <glyph unicode="&#xd;" horiz-adv-x="2048" />
14
+ <glyph unicode=" " horiz-adv-x="471" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="471" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="471" />
17
+ <glyph unicode="!" horiz-adv-x="491" d="M117 100q0 49 36.5 89t92.5 40q55 0 92 -39.5t37 -89.5q0 -49 -37 -89t-92 -40t-92 40t-37 89zM176 1014v444h148v-444l-64 -619h-22z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="727" d="M92 1434h178l-37 -547h-108zM455 1434h180l-37 -547h-109z" />
19
+ <glyph unicode="#" horiz-adv-x="1341" d="M86 418l25 129h245l62 364h-242l21 125h233l86 398h119l-64 -398h289l62 398h141l-62 -398h254l-20 -125h-250l-61 -364h241l-20 -129h-238l-65 -418h-140l64 418h-289l-65 -418h-138l66 418h-254zM494 547h288l62 364h-289z" />
20
+ <glyph unicode="$" horiz-adv-x="1150" d="M102 266l136 49q43 -94 132 -150t212 -56q141 0 221 65.5t80 194.5q0 63 -27 115.5t-72 92t-102 70.5t-121 55q-76 29 -150.5 65t-135 85t-97.5 115.5t-37 156.5q0 61 23.5 117.5t70 100.5t113 74t152.5 38v162h145v-164q125 -16 208 -75.5t110 -145.5l-134 -45 q-27 57 -95 98t-177 41q-127 0 -196.5 -53t-69.5 -146q0 -55 27.5 -98t72.5 -76.5t104.5 -60.5t122.5 -51q74 -29 148 -67t133 -93t96 -130t37 -177q0 -88 -28.5 -158t-79 -119t-122 -78.5t-157.5 -37.5v-181h-145v183q-152 18 -255.5 99t-142.5 185z" />
21
+ <glyph unicode="%" horiz-adv-x="1759" d="M90 1094q0 57 16.5 121.5t55.5 117.5t99.5 89t150.5 36q88 0 149.5 -32.5t99 -85t55 -117t17.5 -129.5q0 -59 -16.5 -124t-54 -118t-99 -88t-151.5 -35q-88 0 -149.5 33t-99.5 85t-55.5 116.5t-17.5 130.5zM223 1094q0 -106 45.5 -176t143.5 -70q47 0 82.5 19.5t59.5 53 t35 78.5t11 95q0 111 -47 178t-141 67q-49 0 -85 -19.5t-58.5 -53t-34 -78.5t-11.5 -94zM315 -25l979 1483h148l-979 -1483h-148zM1024 340q0 57 16.5 121.5t55.5 118t99 89.5t151 36q88 0 149 -33t99 -85t55.5 -116.5t17.5 -130.5q0 -59 -16.5 -123.5t-54 -118t-99 -88.5 t-151.5 -35q-88 0 -149.5 33t-99.5 85t-55.5 116.5t-17.5 130.5zM1157 340q0 -106 45.5 -176t143.5 -70q47 0 82.5 19.5t59 53.5t35 79t11.5 94q0 111 -47 178.5t-141 67.5q-49 0 -85 -19.5t-58.5 -53.5t-34 -79t-11.5 -94z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="1275" d="M66 360q0 78 24.5 140.5t70.5 117t108.5 100.5t140.5 89q-47 57 -81 104t-56.5 88t-33 79t-10.5 79q0 70 27 126t72 95t106.5 59.5t132.5 20.5q70 0 129.5 -22.5t102.5 -63.5t67.5 -96t24.5 -123q0 -115 -76 -202t-207 -167l312 -372q35 72 52 137t21 104h135 q-6 -72 -29.5 -161t-84.5 -191l252 -301h-179l-157 186q-96 -104 -219 -157.5t-246 -53.5q-90 0 -164 28t-126 78t-80.5 120.5t-28.5 158.5zM201 373q0 -123 82 -196t211 -73q88 0 180 49.5t166 139.5l-353 420q-141 -86 -213.5 -164t-72.5 -176zM365 1155q0 -55 44 -119.5 t123 -161.5q223 131 224 265q0 90 -57.5 141t-139.5 51q-88 0 -141 -48t-53 -128z" />
23
+ <glyph unicode="'" horiz-adv-x="362" d="M92 1434h178l-37 -547h-108z" />
24
+ <glyph unicode="(" horiz-adv-x="634" d="M143 582q0 162 23.5 297t61.5 242.5t87.5 191.5t100.5 145h137q-27 -33 -72 -109.5t-89 -189t-75.5 -259t-31.5 -318.5q0 -176 29.5 -317.5t70.5 -249t82 -178t63 -103.5h-137q-47 61 -92 140t-80 182.5t-56.5 232.5t-21.5 293z" />
25
+ <glyph unicode=")" horiz-adv-x="634" d="M82 1458h137q51 -61 100.5 -145t87 -191.5t61.5 -243t24 -296.5q0 -164 -21.5 -293t-56.5 -232.5t-80 -182.5t-92 -140h-138q23 33 64 103.5t82 178t70.5 249t29.5 317.5q0 172 -31.5 318.5t-75.5 259t-89 189t-72 109.5z" />
26
+ <glyph unicode="*" horiz-adv-x="1034" d="M88 1079l47 135l199 -65l145 -100l-33 170v229h142v-229l-37 -170l145 100l203 65l47 -135l-213 -69l-158 -11l127 -114l129 -180l-112 -89l-139 189l-66 164l-63 -164l-136 -189l-114 89l131 180l119 114l-154 11z" />
27
+ <glyph unicode="+" d="M164 631v139h405v414h148v-414h409v-139h-409v-410h-148v410h-405z" />
28
+ <glyph unicode="," horiz-adv-x="401" d="M72 88q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q14 12 31.5 34t33 52.5t26.5 69.5t11 84q-66 0 -107.5 36t-41.5 91z" />
29
+ <glyph unicode="-" horiz-adv-x="763" d="M154 541v139h456v-139h-456z" />
30
+ <glyph unicode="." horiz-adv-x="401" d="M72 100q0 49 36.5 89t92.5 40q55 0 92 -39.5t37 -89.5q0 -49 -37 -89t-92 -40t-92 40t-37 89z" />
31
+ <glyph unicode="/" horiz-adv-x="933" d="M-31 -266l805 1724h139l-804 -1724h-140z" />
32
+ <glyph unicode="0" horiz-adv-x="1208" d="M113 717q0 74 8 159t29.5 166.5t57.5 157.5t91 133.5t130 91t175 33.5q141 0 235.5 -66.5t151 -173t81 -238.5t24.5 -263q0 -76 -9.5 -160t-31 -167t-57 -157.5t-91 -132t-130.5 -91.5t-173 -34q-141 0 -235.5 65.5t-150.5 171t-80.5 238t-24.5 267.5zM262 717 q0 -113 14.5 -222.5t53.5 -196.5t105.5 -140.5t168.5 -53.5q106 0 173 58.5t104 148.5t49 198.5t12 207.5q0 111 -14.5 220.5t-53 196.5t-104 141t-166.5 54q-109 0 -175.5 -59.5t-103 -149.5t-50 -197.5t-13.5 -205.5z" />
33
+ <glyph unicode="1" horiz-adv-x="622" d="M51 1174v81q109 0 184.5 38t110.5 141h92v-1434h-143v1174h-244z" />
34
+ <glyph unicode="2" horiz-adv-x="1167" d="M115 0v39q2 143 60 247.5t145.5 183.5t186.5 143.5t185 129t143.5 138t57.5 174.5q0 117 -81 195.5t-230 78.5q-145 0 -219 -64.5t-101 -166.5l-127 57q16 63 55 118.5t98.5 96.5t136.5 64.5t169 23.5q213 0 330.5 -109.5t117.5 -293.5q0 -119 -52 -205t-133 -154.5 t-176 -127t-182 -121t-152.5 -137t-84.5 -173.5h793v-137h-940z" />
35
+ <glyph unicode="3" horiz-adv-x="1146" d="M72 311l133 56q53 -133 134 -195.5t208 -62.5q68 0 129 17t107 52t73 87t27 124q0 133 -82 212t-238 79h-96v131h76q129 0 205.5 70.5t76.5 189.5q0 59 -21.5 106.5t-58 80t-85 50t-99.5 17.5q-68 0 -120 -20.5t-91 -53t-64.5 -71.5t-41.5 -76l-133 51q23 57 60.5 111.5 t92.5 97.5t128 68.5t163 25.5q88 0 165 -26.5t134 -73.5t89 -115.5t32 -150.5q0 -96 -48 -181.5t-134 -132.5q113 -45 177 -144t64 -241q0 -90 -39 -166.5t-106.5 -132t-155.5 -87.5t-186 -32q-104 0 -182 26t-134.5 72t-94.5 106.5t-64 131.5z" />
36
+ <glyph unicode="4" horiz-adv-x="1140" d="M31 387v76l753 971h86v-924h217v-123h-217v-387h-143v387h-696zM217 510h510v676z" />
37
+ <glyph unicode="5" horiz-adv-x="1224" d="M113 158l84 104q35 -35 73.5 -64.5t84.5 -52t102.5 -35t128.5 -12.5q80 0 148.5 29t118.5 76t79 110.5t29 132.5q0 70 -24 133.5t-66 109.5t-101 74t-131 28q-66 0 -120 -13.5t-98 -33t-77 -44t-53 -47.5l-121 37l117 744h729v-129h-615l-82 -500q66 59 153 90t177 31 q94 0 179 -34t147.5 -94.5t99.5 -145.5t37 -187q0 -90 -35 -178t-101.5 -157t-163.5 -112t-220 -43q-86 0 -162 16.5t-137.5 42t-107.5 58.5t-72 66z" />
38
+ <glyph unicode="6" horiz-adv-x="1138" d="M92 530q0 154 56.5 302.5t154.5 274.5t232.5 219t289.5 132v-112q-102 -31 -195 -92.5t-168 -141.5t-126 -171t-68 -183q53 63 138.5 97t195.5 34q88 0 166 -38t135.5 -99.5t90 -140.5t32.5 -160q0 -100 -37 -187.5t-99.5 -151t-145.5 -100.5t-177 -37q-117 0 -206 43 t-149 118t-90 176.5t-30 217.5zM233 430q0 -70 26 -129t70 -103t103.5 -69t128.5 -25q74 0 134.5 25t103.5 69t66.5 103t23.5 129q0 72 -22.5 133.5t-65.5 105.5t-103.5 68.5t-136.5 24.5q-72 0 -132 -24.5t-103 -68.5t-68 -105.5t-25 -133.5z" />
39
+ <glyph unicode="7" horiz-adv-x="960" d="M51 1311v123h858v-95q-150 -172 -239.5 -353t-139 -356t-65.5 -337t-16 -293h-144q2 168 21.5 332t69.5 325.5t134 324.5t215 329h-694z" />
40
+ <glyph unicode="8" horiz-adv-x="1163" d="M113 403q0 63 18.5 125t50 114t77.5 91t101 60q-43 18 -76.5 51t-57 72.5t-36 83.5t-12.5 87q0 74 31 141.5t84 119t128 81t161 29.5t160.5 -29.5t128 -81t84 -119t30.5 -141.5q0 -43 -13.5 -87t-39 -83.5t-62 -72.5t-82.5 -51q57 -23 105.5 -62t83.5 -90t54.5 -112.5 t19.5 -125.5q0 -90 -35 -168.5t-98.5 -136t-149.5 -90.5t-186 -33q-102 0 -187.5 33t-149 90.5t-98 136t-34.5 168.5zM262 424q0 -76 24.5 -135.5t67.5 -100.5t101.5 -62.5t126.5 -21.5t126 21.5t101 62.5t67.5 100.5t24.5 135.5q0 63 -22.5 120.5t-64.5 101.5t-101.5 69.5 t-130.5 25.5q-72 0 -131.5 -25.5t-101.5 -69.5t-64.5 -101.5t-22.5 -120.5zM324 1069q0 -102 69.5 -167.5t188.5 -65.5t188.5 65.5t69.5 167.5q0 121 -74 190.5t-184 69.5q-111 0 -184.5 -69.5t-73.5 -190.5z" />
41
+ <glyph unicode="9" horiz-adv-x="1138" d="M92 983q0 100 37 187t101.5 150.5t150.5 100.5t186 37q117 0 203 -43t142.5 -117.5t85 -176t28.5 -218.5q0 -154 -52 -303t-145.5 -275t-222.5 -218.5t-284 -131.5v113q104 31 194 93.5t161 144.5t117 176t58 186q-53 -68 -140 -103.5t-200 -35.5q-88 0 -165 34.5 t-133 95t-89 139.5t-33 165zM229 999q0 -72 22.5 -133t65.5 -106t103.5 -70.5t136.5 -25.5q72 0 132.5 25.5t103.5 70.5t67.5 106.5t24.5 132.5q0 70 -25.5 129.5t-70 104.5t-103.5 70.5t-129 25.5q-74 0 -134.5 -25.5t-103.5 -70.5t-66.5 -104.5t-23.5 -129.5z" />
42
+ <glyph unicode=":" horiz-adv-x="401" d="M72 100q0 49 36.5 89t92.5 40q55 0 92 -39.5t37 -89.5q0 -49 -37 -89t-92 -40t-92 40t-37 89zM72 860q0 49 36.5 89t92.5 40q55 0 92 -40t37 -89t-37 -89t-92 -40t-92 40t-37 89z" />
43
+ <glyph unicode=";" horiz-adv-x="401" d="M72 88q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q29 25 60.5 87.5t31.5 154.5q-57 0 -98 35t-41 90zM72 860q0 49 36.5 89t92.5 40q55 0 92 -40t37 -89t-37 -89t-92 -40t-92 40t-37 89z" />
44
+ <glyph unicode="&#x3c;" d="M164 633v135l962 389v-137l-804 -318l804 -317v-139z" />
45
+ <glyph unicode="=" d="M164 469v137h962v-137h-962zM164 795v137h962v-137h-962z" />
46
+ <glyph unicode="&#x3e;" d="M164 246v135l805 321l-805 318v137l962 -389v-135z" />
47
+ <glyph unicode="?" horiz-adv-x="1015" d="M41 999q0 102 35 187.5t97.5 146t149.5 93t189 32.5q104 0 185 -29.5t135.5 -81t83 -120t28.5 -146.5q0 -92 -28.5 -154.5t-71.5 -109.5t-92.5 -88t-92.5 -87t-71.5 -106.5t-28.5 -146.5h-147q0 100 28.5 171t71.5 123t92 94t92 86t72 96.5t29 125.5q0 98 -73 169 t-212 71q-154 0 -240 -85t-86 -241h-145zM352 100q0 49 37 89t92 40t92 -39.5t37 -89.5q0 -49 -37 -89t-92 -40t-92 40t-37 89z" />
48
+ <glyph unicode="@" horiz-adv-x="1574" d="M72 686q0 170 61.5 312.5t164.5 245t239.5 158.5t287.5 56q150 0 275 -44t214 -125t139 -193.5t50 -249.5q0 -113 -26.5 -208t-71.5 -163.5t-106.5 -107.5t-131.5 -39q-86 0 -134 42t-62 113q-41 -76 -110.5 -125t-149.5 -49q-63 0 -118.5 26.5t-95.5 73t-62.5 111 t-22.5 139.5q0 74 25.5 150t74.5 137.5t119.5 99t159.5 37.5q39 0 76.5 -13t69.5 -38.5t54.5 -62.5t30.5 -82l29 170h129l-82 -475q-2 -10 -2 -19.5v-17.5q0 -49 24.5 -77t67.5 -28t77.5 31t60.5 86t40 131t14 166q0 119 -43 208t-117.5 148.5t-175 90t-213.5 30.5 q-147 0 -262.5 -49t-195.5 -135t-123 -205t-43 -258q0 -121 40 -226.5t114.5 -184t184 -125t249.5 -46.5q74 0 155.5 10.5t136.5 28.5l-30 -135q-55 -16 -126 -23.5t-145 -7.5q-147 0 -278 47.5t-227.5 138.5t-152.5 223t-56 302zM559 657q0 -104 50 -163.5t134 -59.5 q51 0 94.5 23.5t74 65.5t48 96.5t17.5 115.5q0 102 -53 162.5t-125 60.5q-57 0 -101.5 -24.5t-75 -65.5t-47 -95t-16.5 -116z" />
49
+ <glyph unicode="A" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM410 498h473l-238 690z" />
50
+ <glyph unicode="B" horiz-adv-x="1261" d="M184 0v1434h475q125 0 210 -33t135.5 -85t72 -120t21.5 -137q0 -111 -61.5 -187.5t-164.5 -115.5q117 -29 197 -118t80 -237q0 -74 -21.5 -145.5t-75 -127.5t-141.5 -92t-219 -36h-508zM328 129h389q88 0 146.5 22.5t92 58.5t47 83t13.5 96q0 57 -16.5 109.5t-57.5 93.5 t-111.5 65.5t-181.5 24.5h-321v-553zM328 807h297q170 0 255 69.5t85 186.5q0 43 -12.5 87t-44 78t-89 55.5t-147.5 21.5h-344v-498z" />
51
+ <glyph unicode="C" horiz-adv-x="1257" d="M113 717q0 147 34.5 281.5t107.5 236.5t184.5 162.5t267.5 60.5q96 0 166.5 -19.5t122 -52t87 -74.5t62.5 -85l-127 -74q-25 35 -52.5 66.5t-64.5 56t-85 39t-109 14.5q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5q0 -119 25.5 -229.5t79 -195.5t138.5 -136.5 t202 -51.5q129 0 205.5 50.5t125.5 132.5l127 -49q-25 -49 -64.5 -96.5t-96 -84.5t-131 -59.5t-166.5 -22.5q-160 0 -272.5 63.5t-184.5 167t-104.5 236.5t-32.5 275z" />
52
+ <glyph unicode="D" horiz-adv-x="1327" d="M184 0v1434h381q182 0 306 -62.5t201 -164t109.5 -229.5t32.5 -261q0 -123 -29.5 -251t-105 -231.5t-202.5 -169t-320 -65.5h-373zM328 129h239q143 0 239.5 52t154 137t81 189.5t23.5 209.5q0 111 -26.5 217t-84 188t-147.5 132.5t-217 50.5h-262v-1176z" />
53
+ <glyph unicode="E" horiz-adv-x="1159" d="M184 0v1434h817v-138h-673v-487h454v-135h-454v-537h719v-137h-863z" />
54
+ <glyph unicode="F" horiz-adv-x="1093" d="M184 0v1434h838v-138h-694v-487h469v-135h-469v-674h-144z" />
55
+ <glyph unicode="G" horiz-adv-x="1341" d="M113 717q0 147 34.5 281.5t107.5 236.5t184.5 162.5t267.5 60.5q96 0 166.5 -19.5t122 -52t87 -74.5t62.5 -85l-127 -74q-25 35 -52.5 66.5t-64.5 56t-85 39t-109 14.5q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5q0 -119 25.5 -229.5t79 -195.5t138.5 -136.5 t202 -51.5q158 0 249 96.5t91 260.5v86h-265v127h416v-158q0 -133 -38 -233.5t-104.5 -169t-155.5 -103.5t-193 -35q-160 0 -272.5 63.5t-184.5 167t-104.5 236.5t-32.5 275z" />
56
+ <glyph unicode="H" horiz-adv-x="1355" d="M184 0v1434h144v-621h700v621h143v-1434h-143v678h-700v-678h-144z" />
57
+ <glyph unicode="I" horiz-adv-x="512" d="M184 0v1434h144v-1434h-144z" />
58
+ <glyph unicode="J" horiz-adv-x="1036" d="M51 219l113 62q23 -43 43 -76t48 -55.5t69 -34t106 -11.5q49 0 99.5 13.5t90 49.5t64.5 96.5t25 154.5v1016h143v-973q0 -147 -41 -241.5t-103.5 -149t-138 -75t-145.5 -20.5q-156 0 -241 64.5t-132 179.5z" />
59
+ <glyph unicode="K" horiz-adv-x="1255" d="M184 0v1434h144v-713l567 713h156l-392 -488l515 -946h-162l-451 825l-233 -290v-535h-144z" />
60
+ <glyph unicode="L" horiz-adv-x="1089" d="M184 0v1434h144v-1297h710v-137h-854z" />
61
+ <glyph unicode="M" horiz-adv-x="1581" d="M184 0v1434h123l479 -1117l486 1117h125v-1434h-144v1061l-479 -1086l-446 1080v-1055h-144z" />
62
+ <glyph unicode="N" horiz-adv-x="1382" d="M184 0v1434h146l725 -1182v1182h143v-1434h-145l-725 1165v-1165h-144z" />
63
+ <glyph unicode="O" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5z" />
64
+ <glyph unicode="P" horiz-adv-x="1212" d="M184 0v1434h525q129 0 215 -37t139 -96.5t75.5 -135t22.5 -153.5q0 -72 -24.5 -146.5t-77.5 -135t-140.5 -99.5t-209.5 -39h-381v-592h-144zM328 721h393q84 0 142.5 26.5t94 67.5t51 93.5t15.5 103.5q0 47 -13.5 98t-48 94t-93 72t-148.5 29h-393v-584z" />
65
+ <glyph unicode="Q" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265q0 -84 -11 -168t-36.5 -162t-66.5 -147.5t-99 -122.5l119 -176l-98 -74l-119 176q-59 -33 -127.5 -50.5t-154.5 -17.5q-166 0 -280 65.5t-183.5 172t-100 239 t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5q117 0 204 54l-96 143l103 74l90 -135q78 92 110.5 220t32.5 257q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5z" />
66
+ <glyph unicode="R" horiz-adv-x="1286" d="M184 0v1434h527q127 0 212 -35t136 -90.5t72.5 -126t21.5 -142.5q0 -66 -18.5 -129t-60.5 -117.5t-109.5 -93t-165.5 -53.5l317 -647h-158l-307 641h-323v-641h-144zM328 770h387q84 0 141 23.5t93 60.5t51.5 84t15.5 96q0 43 -14.5 90t-48 87t-92 67t-146.5 27h-387 v-535z" />
67
+ <glyph unicode="S" horiz-adv-x="1155" d="M102 266l136 49q43 -94 132 -150t212 -56q141 0 221 65.5t80 194.5q0 63 -27 115.5t-72 92t-102 70.5t-121 55q-76 29 -150.5 65t-135 85t-97.5 115.5t-37 156.5q0 68 29 129.5t83 106.5t132 71.5t178 26.5q158 0 264.5 -64.5t135.5 -162.5l-134 -45q-27 57 -95 98 t-177 41q-127 0 -196.5 -53t-69.5 -146q0 -55 27.5 -98t72.5 -76.5t104.5 -60.5t122.5 -51q74 -29 148 -67t133 -93t96 -130t37 -177q0 -96 -33.5 -170t-93 -124t-143.5 -77t-182 -27q-90 0 -168 24t-139.5 63.5t-105.5 92t-65 111.5z" />
68
+ <glyph unicode="T" horiz-adv-x="1116" d="M92 1296v138h932v-138h-395v-1296h-144v1296h-393z" />
69
+ <glyph unicode="U" horiz-adv-x="1331" d="M174 532v902h143v-902q0 -129 29 -211.5t77 -131t110.5 -67t132.5 -18.5t132 18.5t110 67t77 131t29 211.5v902h143v-902q0 -150 -33.5 -255t-97 -172.5t-154.5 -98.5t-206 -31t-206 31t-154.5 98.5t-97.5 173t-34 254.5z" />
70
+ <glyph unicode="V" horiz-adv-x="1249" d="M82 1434h151l400 -1198l381 1198h153l-489 -1434h-105z" />
71
+ <glyph unicode="W" horiz-adv-x="1632" d="M82 1434h151l199 -1125l322 1125h106l309 -1100l232 1100h149l-311 -1434h-90l-344 1151l-348 -1151h-99z" />
72
+ <glyph unicode="X" horiz-adv-x="1089" d="M59 0l412 739l-381 695h156l301 -553l295 553h149l-379 -672l420 -762h-153l-342 623l-326 -623h-152z" />
73
+ <glyph unicode="Y" horiz-adv-x="1200" d="M61 1434h158l381 -738l391 738h148l-465 -865v-569h-144v563z" />
74
+ <glyph unicode="Z" horiz-adv-x="1243" d="M113 0v100l835 1198h-788v136h970v-105l-825 -1194h825v-135h-1017z" />
75
+ <glyph unicode="[" horiz-adv-x="714" d="M205 -266v1724h428v-129h-285v-1466h285v-129h-428z" />
76
+ <glyph unicode="\" horiz-adv-x="933" d="M-31 1458h140l804 -1724h-139z" />
77
+ <glyph unicode="]" horiz-adv-x="714" d="M82 -137h285v1466h-285v129h428v-1724h-428v129z" />
78
+ <glyph unicode="^" d="M174 741l391 717h156l395 -717h-147l-324 539l-323 -539h-148z" />
79
+ <glyph unicode="_" horiz-adv-x="1024" d="M-10 -205h1044v-157h-1044v157z" />
80
+ <glyph unicode="`" horiz-adv-x="624" d="M-16 1499h219l291 -319h-146z" />
81
+ <glyph unicode="a" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98z" />
82
+ <glyph unicode="b" horiz-adv-x="1089" d="M154 0v1407l143 72v-535q51 55 126 91t152 36q98 0 178.5 -37t136.5 -107.5t87 -172t31 -230.5q0 -268 -110.5 -408.5t-309.5 -140.5q-55 0 -98.5 10.5t-77 28t-62 38t-53.5 42.5v-94h-143zM297 268q43 -74 116.5 -119t151.5 -45q147 0 220 113t73 307q0 203 -72.5 310.5 t-220.5 107.5q-49 0 -91 -15.5t-77 -39t-60.5 -52t-39.5 -53.5v-514z" />
83
+ <glyph unicode="c" horiz-adv-x="923" d="M82 522q0 260 113.5 404.5t316.5 144.5q117 0 205 -56.5t131 -162.5l-131 -51q-25 59 -75 100t-136 41q-74 0 -125 -29.5t-85 -84t-49.5 -132.5t-15.5 -174q0 -199 65.5 -308.5t205.5 -109.5q86 0 145.5 43t85.5 117l129 -49q-37 -111 -134 -175.5t-232 -64.5 q-190 0 -302 142.5t-112 404.5z" />
84
+ <glyph unicode="d" horiz-adv-x="1089" d="M82 524q0 260 115.5 403.5t316.5 143.5q98 0 164.5 -29.5t114.5 -68.5v434l143 72v-1479h-143v90q-47 -47 -114 -81t-165 -34q-100 0 -180 39t-136.5 111t-86 173t-29.5 226zM231 524q0 -88 20.5 -164.5t59.5 -133t94 -89.5t125 -33q78 0 149 43t114 121v523 q-16 27 -41 53t-56.5 47.5t-73.5 36t-92 14.5q-145 0 -222 -107.5t-77 -310.5z" />
85
+ <glyph unicode="e" horiz-adv-x="1021" d="M82 524q0 131 34 232.5t93 171t143 106.5t185 37q84 0 158.5 -29.5t132 -91t90 -158t32.5 -227.5v-40.5t-4 -59.5h-713q18 -160 96.5 -258t213.5 -98q57 0 116.5 18t118.5 63l78 -96q-61 -51 -144 -85t-175 -34q-106 0 -190.5 44t-143 120t-90 175.5t-31.5 209.5z M229 594h576q0 106 -26.5 174t-66.5 106.5t-87 53t-88 14.5q-127 0 -212 -84t-96 -264z" />
86
+ <glyph unicode="f" horiz-adv-x="604" d="M20 918v129h168v178q0 63 18.5 108t49.5 73t70 40t80 12q59 0 101 -15.5t77 -33.5v-125q-33 16 -69 28.5t-81 12.5q-37 0 -58.5 -11t-30.5 -28.5t-11 -40t-2 -43.5v-155h252v-129h-252v-918h-144v918h-168z" />
87
+ <glyph unicode="g" horiz-adv-x="1093" d="M82 524q0 129 31.5 230.5t90 172t138.5 107.5t176 37q59 0 105.5 -13.5t80 -32.5t57 -40.5t36.5 -36.5v99h143v-1031q0 -129 -41 -214t-108.5 -137t-156.5 -74.5t-185 -26.5l-66 112q127 6 208 32t127 64t62.5 86t16.5 101v160q-45 -66 -112 -105t-175 -39q-84 0 -162 35 t-137 103.5t-94 171t-35 239.5zM231 524q0 -100 24 -178t65.5 -132t98 -82t124.5 -28q66 0 138.5 46.5t115.5 128.5v503q-23 39 -54.5 69t-66.5 50.5t-70 30.5t-63 10q-156 0 -234 -107.5t-78 -310.5z" />
88
+ <glyph unicode="h" horiz-adv-x="1085" d="M154 0v1411l143 68v-549q47 72 116.5 106.5t153.5 34.5q193 0 284 -115.5t91 -375.5v-580h-143v639q0 166 -70 234.5t-174 68.5q-55 0 -102 -14.5t-82 -49t-54.5 -92t-19.5 -143.5v-643h-143z" />
89
+ <glyph unicode="i" horiz-adv-x="454" d="M133 1356q0 41 26.5 69.5t67.5 28.5t68 -28.5t27 -69.5t-27 -67.5t-68 -26.5t-67.5 26.5t-26.5 67.5zM156 0v1047h143v-1047h-143z" />
90
+ <glyph unicode="j" horiz-adv-x="466" d="M-92 -324q74 6 123 24.5t76.5 45.5t39 60.5t11.5 70.5v1170h143v-1113q0 -104 -28.5 -173.5t-74.5 -111.5t-104.5 -61.5t-120.5 -23.5zM135 1356q0 41 26.5 69.5t67.5 28.5t68 -28.5t27 -69.5t-27 -67.5t-68 -26.5t-67.5 26.5t-26.5 67.5z" />
91
+ <glyph unicode="k" horiz-adv-x="985" d="M154 0v1409l143 70v-840l377 408h160l-263 -279l404 -768h-172l-332 664l-174 -187v-477h-143z" />
92
+ <glyph unicode="l" horiz-adv-x="471" d="M164 0v1409l143 70v-1479h-143z" />
93
+ <glyph unicode="m" horiz-adv-x="1665" d="M154 0v1047h143v-103q109 127 285 127q84 0 160.5 -42t121.5 -118q43 66 120 113t179 47q76 0 141.5 -26.5t113.5 -74.5t76 -118t28 -156v-696h-144v641q0 49 -8 102.5t-31.5 97.5t-68.5 72.5t-119 28.5q-59 0 -104.5 -24.5t-76 -65.5t-46 -95.5t-15.5 -115.5v-641h-143 v641q0 49 -8 102.5t-32 97.5t-69 72.5t-118 28.5q-61 0 -106.5 -21.5t-75 -60.5t-45 -90t-15.5 -113v-657h-143z" />
94
+ <glyph unicode="n" horiz-adv-x="1085" d="M154 0v1047h143v-115q49 72 117.5 105.5t152.5 33.5q193 0 284 -115.5t91 -375.5v-580h-143v639q0 166 -70 234.5t-174 68.5q-55 0 -102 -14.5t-82 -49t-54.5 -92t-19.5 -143.5v-643h-143z" />
95
+ <glyph unicode="o" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM231 522q0 -197 76 -307.5t223 -110.5q143 0 221 111t78 309 q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5z" />
96
+ <glyph unicode="p" horiz-adv-x="1097" d="M154 -416v1463h143v-95q51 47 115.5 83t171.5 36q100 0 180 -39t136 -110.5t86 -173t30 -224.5q0 -131 -32 -233.5t-89 -172t-137 -106.5t-174 -37q-111 0 -176.5 39t-110.5 92v-450zM297 266q53 -70 118.5 -116t151.5 -46q143 0 221 107.5t78 312.5q0 193 -78.5 305.5 t-220.5 112.5q-86 0 -156.5 -42t-113.5 -120v-514z" />
97
+ <glyph unicode="q" horiz-adv-x="1093" d="M82 522q0 123 28.5 224.5t83 174t132 111.5t178.5 39q51 0 94 -11t78 -27.5t64.5 -38t56.5 -42.5v95h143v-1391l-143 -66v516q-53 -59 -117 -95t-162 -36q-201 0 -318.5 142.5t-117.5 404.5zM231 522q0 -205 75 -311.5t218 -106.5q49 0 90 16.5t75 41t60.5 54.5t47.5 54 v510q-47 86 -121 124t-152 38q-70 0 -124 -32.5t-92 -90t-57.5 -133.5t-19.5 -164z" />
98
+ <glyph unicode="r" horiz-adv-x="729" d="M154 0v1047h143v-148q57 86 133 129t148 43q78 0 131 -43l-23 -139q-20 12 -52 25.5t-83 13.5q-35 0 -79 -16.5t-83 -55.5t-65.5 -103.5t-26.5 -160.5v-592h-143z" />
99
+ <glyph unicode="s" horiz-adv-x="886" d="M88 158l100 88q47 -57 119 -100.5t154 -43.5q86 0 145.5 39t59.5 113q0 47 -22.5 83t-59.5 62.5t-84 48t-94 39.5q-61 25 -119 53.5t-101 65.5t-68.5 85t-25.5 114q0 59 25.5 108.5t69.5 84t106.5 54t136.5 19.5q106 0 191.5 -42t148.5 -118l-94 -80q-41 41 -102.5 77 t-147.5 36q-92 0 -145.5 -37t-53.5 -100q0 -41 20.5 -69.5t53.5 -52t76 -42t90 -37.5q57 -23 117.5 -50.5t107.5 -66t78 -93t31 -134.5q0 -131 -94.5 -209t-257.5 -78q-106 0 -200.5 52.5t-160.5 130.5z" />
100
+ <glyph unicode="t" horiz-adv-x="694" d="M31 918v129h178v360l143 72v-432h266v-129h-266v-642q0 -35 3 -64.5t15.5 -52t35 -35.5t59.5 -13q53 0 91 20.5t67 40.5l-17 -149q-41 -23 -86 -35.5t-104 -12.5q-113 0 -160 69t-47 171v703h-178z" />
101
+ <glyph unicode="u" horiz-adv-x="1085" d="M143 463v584h144v-639q0 -164 68.5 -234t172.5 -70q55 0 102.5 14.5t83.5 49.5t55 92t19 143v644h144v-1047h-144v100q-55 -72 -116.5 -98.5t-143.5 -26.5q-203 0 -294 115t-91 373z" />
102
+ <glyph unicode="v" horiz-adv-x="968" d="M51 1047h148l290 -818l285 818h144l-383 -1047h-101z" />
103
+ <glyph unicode="w" horiz-adv-x="1380" d="M51 1047h144l196 -863l250 863h98l254 -873l193 873h143l-258 -1047h-129l-254 768l-248 -768h-131z" />
104
+ <glyph unicode="x" horiz-adv-x="966" d="M51 0l352 537l-327 510h164l258 -400l237 400h152l-322 -504l350 -543h-163l-277 428l-270 -428h-154z" />
105
+ <glyph unicode="y" horiz-adv-x="985" d="M31 1047h145l299 -844l305 844h154l-535 -1444h-141l156 430z" />
106
+ <glyph unicode="z" horiz-adv-x="960" d="M113 0v88l534 830h-493v129h684v-86l-539 -832h537v-129h-723z" />
107
+ <glyph unicode="{" horiz-adv-x="712" d="M102 539v116h9q72 0 113.5 61.5t41.5 166.5v102q0 236 106.5 352.5t278.5 120.5v-121q-121 -4 -179 -85t-58 -228v-115q0 -90 -15.5 -148.5t-44 -92t-69.5 -49t-95 -19.5v-8q53 -4 94.5 -16.5t70 -46t44 -92t15.5 -154.5v-115q0 -147 58 -228t179 -85v-121 q-172 4 -278.5 120.5t-106.5 352.5v104q0 100 -42 164t-113 64h-9z" />
108
+ <glyph unicode="|" horiz-adv-x="491" d="M174 -420v2069h143v-2069h-143z" />
109
+ <glyph unicode="}" horiz-adv-x="712" d="M61 -145q121 4 179.5 84.5t58.5 228.5v115q0 90 15.5 148t44 92t69.5 49.5t94 19.5v8q-53 4 -94 16.5t-69.5 46t-44 92t-15.5 154.5v115q0 147 -58.5 228t-179.5 85v121q172 -4 278.5 -120.5t106.5 -352.5v-104q0 -100 42 -164t114 -64h8v-116h-8q-72 0 -114 -61.5 t-42 -166.5v-102q0 -236 -106.5 -352.5t-278.5 -120.5v121z" />
110
+ <glyph unicode="~" d="M168 567q0 51 13.5 99.5t44 85t78.5 59.5t118 23q66 0 127 -20.5t118.5 -44.5t110.5 -44t103 -20q68 0 111.5 35.5t47.5 93.5h82q0 -53 -14 -101.5t-45 -85.5t-79 -58.5t-116 -21.5q-63 0 -123.5 20.5t-117 44t-111.5 44t-106 20.5q-68 0 -112 -34.5t-48 -94.5h-82z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="481" d="M117 942q0 49 37 89t92 40t92 -40t37 -89t-37 -89t-92 -40t-92 40t-37 89zM168 29l63 618h23l61 -618v-439h-147v439z" />
112
+ <glyph unicode="&#xa2;" horiz-adv-x="985" d="M102 717q0 229 89.5 365.5t248.5 170.5v205h142v-198q106 -10 181 -61.5t114 -158.5l-140 -53q-23 59 -72 97t-122 38q-147 0 -219 -106.5t-72 -298.5q0 -195 69.5 -301.5t210.5 -106.5q78 0 134.5 42t78.5 116l138 -49q-68 -229 -301 -248v-195h-142v199 q-158 33 -248 172t-90 371z" />
113
+ <glyph unicode="&#xa3;" horiz-adv-x="1175" d="M154 614v117h165q-16 33 -34.5 64.5t-32.5 68.5t-23.5 85t-9.5 114q0 76 27.5 147.5t84 127t143.5 88t206 32.5q135 0 231.5 -37t173.5 -96l-55 -131q-23 18 -52.5 39.5t-71.5 41t-97 33t-129 13.5q-80 0 -138.5 -23.5t-95 -60.5t-54 -83t-17.5 -93q0 -59 14 -106.5 t32.5 -87.5t36 -72.5t23.5 -63.5h336v-117h-309v-22q0 -262 -217 -459h823v-133h-950v162q55 25 92 76t58.5 111.5t29.5 124t8 112.5v28h-198z" />
114
+ <glyph unicode="&#xa4;" horiz-adv-x="1239" d="M74 246l139 139q-39 59 -57.5 134t-18.5 163q0 86 17.5 159.5t56.5 139.5l-137 137l102 107l135 -133q59 45 137 71.5t170 26.5t169 -25.5t137 -70.5l133 131l108 -113l-133 -133q72 -125 72 -297q0 -180 -80 -303l141 -139l-102 -105l-137 137q-122 -96 -308 -96 q-184 0 -303 94l-133 -135zM283 682q0 -80 24.5 -147.5t68.5 -116.5t105 -77t137 -28t139.5 28t107.5 77t68.5 116.5t24.5 147.5t-24.5 147.5t-68.5 116.5t-107.5 78t-139.5 29t-137 -29t-105 -78t-68.5 -116.5t-24.5 -147.5z" />
115
+ <glyph unicode="&#xa5;" horiz-adv-x="1081" d="M31 1434h159l349 -664l364 664h148l-445 -801h318v-123h-312v-135h312v-123h-312v-252h-143v252h-336v123h336v135h-336v123h340z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="491" d="M174 -246v666h143v-666h-143zM174 805v670h143v-670h-143z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="1050" d="M102 -70l109 97q14 -18 41 -41t65.5 -43.5t91 -34.5t117.5 -14q123 0 198 39.5t75 144.5q0 61 -40 105t-98.5 76t-124 55.5t-118.5 45.5q-59 25 -111.5 50.5t-92.5 59.5t-63.5 78t-23.5 109q0 84 44 141.5t110 80.5q-74 41 -114 113.5t-40 170.5q0 70 31.5 125t85 93 t124 57.5t150.5 19.5q78 0 140.5 -15.5t110.5 -39t82 -52t56 -55.5l-110 -88q-16 16 -39 35t-55.5 35t-77.5 26.5t-107 10.5q-111 0 -174 -40t-63 -122q0 -45 26.5 -79t72.5 -61.5t109.5 -53t135.5 -52.5q63 -25 121.5 -50.5t103.5 -63t71.5 -91t26.5 -131.5 q0 -76 -30.5 -131t-98.5 -86q70 -51 99.5 -117.5t29.5 -152.5q0 -160 -111.5 -245t-304.5 -85q-78 0 -146.5 15.5t-123.5 40t-95 56.5t-65 64zM281 657q0 -49 36.5 -82.5t95 -59.5t130 -48.5t143.5 -48.5q53 23 83 57.5t30 89.5q0 47 -28 82t-75 62.5t-109.5 51t-133.5 48.5 q-80 -12 -126 -52t-46 -100z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="624" d="M49 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM389 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="1728" d="M123 717q0 158 56.5 293t156.5 235.5t235.5 156.5t292.5 56q158 0 293 -56t235.5 -156.5t157 -236t56.5 -292.5q0 -158 -56.5 -293t-157 -235.5t-235.5 -157t-293 -56.5t-293 56.5t-235 157t-156.5 235.5t-56.5 293zM240 717q0 -135 47 -250t131 -200t197.5 -133 t248.5 -48t249 48t197 133t129 200t46 250t-46 249.5t-129 198.5t-197 132.5t-249 48.5t-248.5 -48.5t-197.5 -132.5t-131 -198.5t-47 -249.5zM504 727q0 205 101.5 326t287.5 121q111 0 187.5 -59.5t115.5 -166.5l-129 -53q-20 59 -67.5 102t-125.5 43q-68 0 -112.5 -21.5 t-70 -62.5t-37 -98t-11.5 -131q0 -160 50 -237.5t188 -77.5q72 0 129 36.5t75 129.5l117 -48q-35 -121 -120.5 -184t-204.5 -63q-174 0 -273.5 113.5t-99.5 330.5z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="884" d="M72 852q0 74 30.5 127t79.5 89t109.5 53.5t120.5 17.5q51 0 112.5 -13.5t108.5 -33.5v28q0 121 -48 166t-159 45q-78 0 -137.5 -20.5t-100.5 -53.5l-36 121q47 35 121.5 57.5t172.5 22.5q55 0 112.5 -9t106 -42t78 -96.5t29.5 -169.5v-561h-139v61q-20 -16 -49 -30.5 t-62 -26t-67.5 -18.5t-67.5 -7q-139 0 -227 74t-88 219zM219 852q0 -80 50 -126t134 -46q61 0 127 29.5t103 64.5v189q-43 23 -102.5 38t-104.5 15q-39 0 -76 -9.5t-66.5 -29t-47 -51t-17.5 -74.5z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="974" d="M61 524l312 523h159l-311 -523l311 -524h-159zM469 524l311 523h164l-311 -523l311 -524h-164z" />
122
+ <glyph unicode="&#xac;" d="M164 811v137h962v-588h-147v451h-815z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="763" d="M154 541v139h456v-139h-456z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="1728" d="M123 717q0 158 56.5 293t156.5 235.5t235.5 156.5t292.5 56q158 0 293 -56t235.5 -156.5t157 -236t56.5 -292.5q0 -158 -56.5 -293t-157 -235.5t-235.5 -157t-293 -56.5t-293 56.5t-235 157t-156.5 235.5t-56.5 293zM240 717q0 -135 47 -250t131 -200t197.5 -133 t248.5 -48t249 48t197 133t129 200t46 250t-46 249.5t-129 198.5t-197 132.5t-249 48.5t-248.5 -48.5t-197.5 -132.5t-131 -198.5t-47 -249.5zM553 281v866h424q63 0 109.5 -24.5t74 -61.5t40.5 -81t13 -83q0 -92 -56 -169t-159 -93l209 -354h-147l-195 352h-180v-352h-133z M686 748h295q47 0 75.5 43t28.5 102q0 20 -6 44t-19 43t-32.5 31.5t-46.5 12.5h-295v-276z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="624" d="M-23 1247v125h676v-125h-676z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="794" d="M51 1264q0 74 26.5 136t74 107t111 71t136.5 26q72 0 135.5 -26t109.5 -71t72.5 -107.5t26.5 -135.5q0 -74 -26.5 -136.5t-72.5 -108.5t-109.5 -71.5t-135.5 -25.5q-74 0 -137 25.5t-110.5 71.5t-74 108.5t-26.5 136.5zM203 1264q0 -86 57 -143.5t139 -57.5 q84 0 137.5 57.5t53.5 143.5q0 92 -53.5 147t-137.5 55q-82 0 -139 -55t-57 -147z" />
127
+ <glyph unicode="&#xb1;" d="M164 0v137h962v-137h-962zM164 764v137h405v344h148v-344h409v-137h-409v-344h-148v344h-405z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="696" d="M51 909q0 82 21.5 140.5t61.5 105.5t95.5 87t122.5 85q66 43 103 90t37 127q0 20 -8.5 45t-28 46.5t-50 34.5t-75.5 13q-141 0 -172 -143l-105 43q23 88 95.5 146.5t197.5 58.5q117 0 194.5 -67.5t77.5 -186.5q0 -111 -59 -181.5t-180 -144.5q-80 -49 -126 -92t-69 -98 h432v-109h-565z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="690" d="M39 1100l113 47q31 -74 80 -115t118 -41q78 0 120 42t42 108q0 59 -38 108t-105 49h-70v103h45q72 0 102.5 44t30.5 99q0 53 -33.5 97.5t-105.5 44.5q-59 0 -104.5 -38t-69.5 -94l-109 37q35 84 112 140.5t179 56.5q115 0 188.5 -60.5t73.5 -171.5q0 -55 -30.5 -109 t-85.5 -79q66 -23 108.5 -76t42.5 -135q0 -129 -82 -198.5t-211 -69.5q-117 0 -194.5 58.5t-116.5 152.5z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="624" d="M131 1180l291 319h219l-365 -319h-145z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="1095" d="M154 -410v1457h143v-639q0 -96 16.5 -155.5t48 -92.5t76.5 -44.5t103 -11.5q55 0 102 14.5t82 49.5t54.5 92t19.5 143v644h143v-1047h-143v104q-78 -80 -153 -104.5t-134 -24.5q-74 0 -123 26t-92 99v-440z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="1234" d="M41 1006q0 80 23.5 156.5t79 137t144.5 97.5t220 37h563v-1643l-145 -65v1564h-209v-1634l-146 -66v979q-152 0 -253 40t-162.5 103.5t-88 141.5t-26.5 152z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="401" d="M72 715q0 49 36.5 89t92.5 40q55 0 92 -40t37 -89t-37 -89t-92 -40t-92 40t-37 89z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="624" d="M143 -422l95 62q12 -16 28.5 -18.5t44.5 -2.5q43 0 76 29.5t33 75.5q0 39 -39 68.5t-86 29.5q-51 0 -74 -10l-24 30l139 178h84l-80 -133q59 0 100 -14t66.5 -37.5t37 -53.5t11.5 -61q0 -90 -66.5 -145t-164.5 -55q-59 0 -104.5 15t-76.5 42z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="348" d="M20 1573v88q57 0 88 30.5t48 82.5h84v-865h-123v664h-97z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="899" d="M61 1008q0 213 104.5 331.5t283.5 118.5q180 0 284.5 -118.5t104.5 -331.5q0 -217 -104.5 -334t-284.5 -117q-178 0 -283 117t-105 334zM205 1008q0 -154 65.5 -236t178.5 -82q123 0 184 82t61 236t-61.5 235.5t-183.5 81.5q-113 0 -178.5 -82t-65.5 -235z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="974" d="M31 0l311 524l-311 523h159l312 -523l-312 -524h-159zM438 0l312 524l-312 523h164l311 -523l-311 -524h-164z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="1318" d="M-2 -25l979 1483h141l-979 -1483h-141zM40 1243v88q57 0 88 31t48 82h86v-864h-125v663h-97zM608 221v62l459 583h96v-532h107v-113h-107v-221h-125v221h-430zM774 334h264v352z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="1419" d="M-2 -25l979 1483h141l-979 -1483h-141zM40 1243v88q57 0 88 31t48 82h86v-864h-125v663h-97zM774 0q0 82 21.5 140.5t61.5 105.5t95.5 87t122.5 85q66 43 103 90t37 127q0 20 -8.5 46t-28 46.5t-50 34.5t-75.5 14q-141 0 -172 -145l-105 43q23 88 95.5 146.5t197.5 58.5 q117 0 194.5 -68t77.5 -186q0 -111 -59 -181.5t-180 -144.5q-80 -49 -126 -90t-69 -96h432v-113h-565z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="1613" d="M41 766l113 47q31 -74 80 -115t118 -41q78 0 120 43t42 109q0 29 -10 57.5t-28.5 51t-45.5 37t-59 14.5h-70v102h45q72 0 102.5 44t30.5 99q0 53 -33.5 97.5t-105.5 44.5q-59 0 -104.5 -38t-69.5 -93l-109 37q35 84 112 140t179 56q115 0 188.5 -60.5t73.5 -170.5 q0 -55 -30.5 -109.5t-85.5 -79.5q66 -23 108.5 -77t42.5 -136q0 -129 -82 -199.5t-211 -70.5q-117 0 -194.5 58.5t-116.5 152.5zM291 -25l979 1483h141l-979 -1483h-141zM901 221v62l459 583h96v-532h107v-113h-107v-221h-125v221h-430zM1067 334h264v352z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="1015" d="M72 -18q0 82 28.5 140t70.5 105t92 87t93 87.5t72 107.5t29 146h145q0 -100 -28.5 -167.5t-71.5 -116.5t-92.5 -87t-92.5 -79t-71.5 -93.5t-28.5 -129.5q0 -115 72.5 -189t210.5 -74q156 0 241.5 86t85.5 240h148q0 -102 -35 -186t-98.5 -143.5t-150.5 -92.5t-191 -33 t-184 30t-134.5 82t-82 124t-27.5 156zM408 940q0 49 35.5 90t91.5 41q27 0 51 -11t42.5 -29.5t30 -42t11.5 -48.5q0 -51 -41 -88t-94 -37q-55 0 -91 37t-36 88z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM349 1888h219l291 -319h-146zM410 498h473l-238 690z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM410 498h473l-238 690zM424 1569l291 319h219l-365 -319h-145z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM275 1569l288 319h164l289 -319h-133l-238 206l-237 -206h-133zM410 498h473l-238 690z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM295 1630q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80z M410 498h473l-238 690z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="1294" d="M92 0l498 1434h110l502 -1434h-145l-131 371h-559l-125 -371h-150zM379 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM410 498h473l-238 690zM719 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5 t-27.5 68.5z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="1294" d="M92 0l459 1321q-57 29 -95 84t-38 127q0 47 18.5 89t50 72.5t74.5 48t90 17.5t90 -17.5t75 -48t51.5 -72.5t19.5 -89q0 -72 -41 -129t-105 -86l461 -1317h-145l-131 371h-559l-125 -371h-150zM410 498h473l-238 690zM539 1532q0 -53 32.5 -89t79.5 -36q49 0 82 36t33 89 t-33 87t-82 34q-47 0 -79.5 -34t-32.5 -87z" />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="1697" d="M-63 0l833 1434h770v-138h-557v-487h379v-135h-379v-537h602v-137h-745v371h-531l-211 -371h-161zM381 498h459v813z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="1257" d="M113 717q0 147 34.5 281.5t107.5 236.5t184.5 162.5t267.5 60.5q96 0 166.5 -19.5t122 -52t87 -74.5t62.5 -85l-127 -74q-25 35 -52.5 66.5t-64.5 56t-85 40t-109 15.5q-123 0 -208 -56t-137.5 -144.5t-76 -198t-23.5 -215.5q0 -119 25.5 -229.5t79 -195.5t138.5 -136.5 t202 -51.5q129 0 205.5 50.5t125.5 132.5l127 -49q-25 -47 -61.5 -92.5t-88.5 -81t-120 -59t-152 -28.5l-53 -90q59 0 100 -14t67 -37.5t37 -53.5t11 -61q0 -90 -66.5 -145t-164.5 -55q-59 0 -104.5 15t-75.5 42l94 62q12 -16 28.5 -18.5t45.5 -2.5q43 0 75.5 29.5 t32.5 75.5q0 39 -39 68.5t-86 29.5q-51 0 -74 -10l-24 30l106 135q-145 10 -247.5 77t-168 169.5t-95 230.5t-29.5 263z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="1159" d="M184 0v1434h817v-138h-673v-487h454v-135h-454v-537h719v-137h-863zM209 1888h219l291 -319h-146z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="1159" d="M184 0v1434h817v-138h-673v-487h454v-135h-454v-537h719v-137h-863zM381 1569l291 319h219l-365 -319h-145z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="1159" d="M184 0v1434h817v-138h-673v-487h454v-135h-454v-537h719v-137h-863zM224 1569l288 319h164l289 -319h-133l-238 206l-237 -206h-133z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="1159" d="M184 0v1434h817v-138h-673v-487h454v-135h-454v-537h719v-137h-863zM274 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM614 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="512" d="M-34 1888h219l291 -319h-146zM184 0v1434h144v-1434h-144z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="512" d="M31 1569l291 319h219l-365 -319h-145zM184 0v1434h144v-1434h-144z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="512" d="M-114 1569l288 319h164l289 -319h-133l-238 206l-237 -206h-133zM184 0v1434h144v-1434h-144z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="512" d="M-10 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM184 0v1434h144v-1434h-144zM330 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="1327" d="M41 651v127h143v656h381q182 0 306 -62.5t201 -164t109.5 -229.5t32.5 -261q0 -123 -29.5 -251t-105 -231.5t-202.5 -169t-320 -65.5h-373v651h-143zM328 129h239q143 0 239.5 52t154 137t81 189.5t23.5 209.5q0 111 -26.5 217t-84 188t-147.5 132.5t-217 50.5h-262v-527 h317v-127h-317v-522z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="1382" d="M184 0v1434h146l725 -1182v1182h143v-1434h-145l-725 1165v-1165h-144zM340 1630q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5 h-80z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM400 1888h219l291 -319h-146z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM526 1569l291 319h219l-365 -319h-145z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM361 1569l288 319h164l289 -319h-133l-238 206l-237 -206h-133z" />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM356 1630q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167 t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5t279.5 -65.5t183 -172t100 -238.5t30.5 -265t-30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-166 0 -280 65.5t-183.5 172t-100 239t-30.5 265.5zM262 717q0 -117 23.5 -227.5t76 -195.5t137.5 -137.5t208 -52.5 t207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 117 -23.5 227.5t-76 195.5t-137.5 137t-207 52q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM440 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM780 1726q0 41 27.5 69 t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
165
+ <glyph unicode="&#xd7;" d="M190 350l357 355l-354 348l100 98l350 -350l350 352l103 -104l-353 -349l351 -354l-97 -96l-350 350l-350 -352z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="1413" d="M113 717q0 133 30.5 265t100 238.5t183.5 172t280 65.5q109 0 193.5 -29.5t150.5 -80.5l73 110h152l-133 -201q86 -109 121.5 -252t35.5 -288q0 -133 -30.5 -265.5t-100 -239t-183.5 -172t-279 -65.5q-111 0 -197 30t-152 81l-73 -111h-148l133 201q-86 109 -121.5 251 t-35.5 290zM262 717q0 -115 21.5 -221.5t70.5 -192.5l621 930q-51 45 -116.5 70.5t-151.5 25.5q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5zM436 201q49 -45 117 -71t154 -26q123 0 207.5 55.5t137 143.5t76 197.5t23.5 216.5q0 115 -21.5 221t-72.5 192z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="1331" d="M174 532v902h143v-902q0 -129 29 -211.5t77 -131t110.5 -67t132.5 -18.5t132 18.5t110 67t77 131t29 211.5v902h143v-902q0 -150 -33.5 -255t-97 -172.5t-154.5 -98.5t-206 -31t-206 31t-154.5 98.5t-97.5 173t-34 254.5zM375 1888h219l291 -319h-146z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="1331" d="M174 532v902h143v-902q0 -129 29 -211.5t77 -131t110.5 -67t132.5 -18.5t132 18.5t110 67t77 131t29 211.5v902h143v-902q0 -150 -33.5 -255t-97 -172.5t-154.5 -98.5t-206 -31t-206 31t-154.5 98.5t-97.5 173t-34 254.5zM481 1569l291 319h219l-365 -319h-145z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="1331" d="M174 532v902h143v-902q0 -129 29 -211.5t77 -131t110.5 -67t132.5 -18.5t132 18.5t110 67t77 131t29 211.5v902h143v-902q0 -150 -33.5 -255t-97 -172.5t-154.5 -98.5t-206 -31t-206 31t-154.5 98.5t-97.5 173t-34 254.5zM295 1569l288 319h164l289 -319h-133l-238 206 l-237 -206h-133z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="1331" d="M174 532v902h143v-902q0 -129 29 -211.5t77 -131t110.5 -67t132.5 -18.5t132 18.5t110 67t77 131t29 211.5v902h143v-902q0 -150 -33.5 -255t-97 -172.5t-154.5 -98.5t-206 -31t-206 31t-154.5 98.5t-97.5 173t-34 254.5zM399 1726q0 41 27.5 69t68.5 28t69 -28t28 -69 t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM739 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="1200" d="M61 1434h158l381 -738l391 738h148l-465 -865v-569h-144v563zM414 1569l291 319h219l-365 -319h-145z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="1212" d="M184 0v1434h144v-285h381q129 0 215 -36t139 -95.5t75.5 -135t22.5 -155.5q0 -72 -24.5 -146.5t-77.5 -135t-139 -99.5t-211 -39h-381v-307h-144zM328 436h393q84 0 142.5 26.5t94 67.5t51 93.5t15.5 103.5q0 45 -13.5 96t-48 95.5t-93 73t-148.5 28.5h-393v-584z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="1097" d="M133 -416v1395q0 131 36 222t93 148.5t130 83t145 25.5q90 0 164.5 -26.5t128 -75.5t83 -119t29.5 -154q0 -98 -46 -180t-148 -115q133 -47 200.5 -142t67.5 -218q0 -102 -33 -186t-90 -143.5t-136 -91.5t-171 -32q-47 0 -90 9.5t-72 23.5l68 111q39 -15 98 -15 q47 0 96 18.5t89 56.5t65.5 97.5t25.5 143.5q0 55 -17.5 107.5t-56 94.5t-103 66.5t-157.5 24.5h-8v129h8q117 0 189 54t72 181q0 117 -63.5 184.5t-190.5 67.5q-53 0 -101.5 -19.5t-84.5 -61.5t-56.5 -106.5t-20.5 -156.5v-1327z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98zM234 1499h219l291 -319h-146z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98zM340 1180l291 319h219l-365 -319h-145 z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM172 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5 t-83 -41t-57.5 -68.5t-21.5 -98z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM192 1241q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80 zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98zM276 1337q0 41 27.5 69t68.5 28 t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM616 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="1001" d="M92 330q0 90 32 155.5t84 107.5t121.5 62.5t143.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 80 -19.5 129t-51.5 78t-74 39t-85 10q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 160.5 78t206.5 37q55 0 116.5 -15.5t112.5 -55t85 -110.5t34 -181v-709 h-133v102q-63 -57 -142 -92t-165 -35q-158 0 -257.5 89.5t-99.5 265.5zM225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98zM307 1411q0 47 18.5 89t51 73 t75.5 48.5t90 17.5t90.5 -17.5t75 -48.5t51 -73t19.5 -89t-19.5 -90t-51 -74.5t-75 -50t-90.5 -18.5t-90 18.5t-75.5 50t-51 74.5t-18.5 90zM428 1411q0 -55 33.5 -91t80.5 -36q49 0 82 36t33 91t-32.5 88t-82.5 33q-47 0 -80.5 -32.5t-33.5 -88.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="1677" d="M92 330q0 88 31 153.5t83 108.5t120.5 63.5t146.5 20.5q66 0 135.5 -16.5t147.5 -57.5v88q0 139 -60.5 197.5t-169.5 58.5q-39 0 -82 -10t-84 -26.5t-78.5 -36t-66.5 -39.5l-41 122q63 41 161.5 78t205.5 37q113 0 189.5 -43t115.5 -119q72 90 163 126t181 36 q92 0 169 -32.5t131 -96t85 -159t31 -218.5v-40.5t-4 -59.5h-713q20 -174 102 -265t205 -91q57 0 117.5 18t120.5 63l77 -96q-55 -45 -137 -82t-184 -37q-119 0 -213 57.5t-152 153.5q-37 -55 -83 -95t-96 -65.5t-101 -38t-96 -12.5q-158 0 -257.5 89.5t-99.5 265.5z M225 330q0 -104 61.5 -167t176.5 -63q47 0 90 14.5t80 37t67.5 52t55.5 58.5v203q-51 35 -126 60.5t-143 25.5q-53 0 -100 -13.5t-83 -41t-57.5 -68.5t-21.5 -98zM885 594h575q0 106 -26.5 174t-67.5 106.5t-88 53t-86 14.5q-127 0 -212 -84t-95 -264z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="923" d="M82 522q0 260 113.5 404.5t316.5 144.5q117 0 205 -56.5t131 -162.5l-131 -51q-25 59 -75 100t-136 41q-74 0 -125 -29.5t-85 -84t-49.5 -132.5t-15.5 -174q0 -199 65.5 -308.5t205.5 -109.5q86 0 145.5 43t85.5 117l129 -49q-33 -98 -111.5 -158.5t-189.5 -76.5l-55 -93 q59 0 100 -14t65.5 -37.5t35 -53.5t10.5 -61q0 -90 -65 -145t-163 -55q-59 0 -104 15t-76 42l94 62q12 -16 29 -18.5t45 -2.5q43 0 77 29.5t34 75.5q0 39 -40 68.5t-87 29.5q-51 0 -74 -10l-25 30l105 135q-178 10 -281.5 150.5t-103.5 394.5z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="1021" d="M82 524q0 131 34 232.5t93 171t143 106.5t185 37q84 0 158.5 -29.5t132 -91t90 -158t32.5 -227.5v-40.5t-4 -59.5h-713q18 -160 96.5 -258t213.5 -98q57 0 116.5 18t118.5 63l78 -96q-61 -51 -144 -85t-175 -34q-106 0 -190.5 44t-143 120t-90 175.5t-31.5 209.5z M229 594h576q0 106 -26.5 174t-66.5 106.5t-87 53t-88 14.5q-127 0 -212 -84t-96 -264zM232 1499h219l291 -319h-146z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="1021" d="M82 524q0 131 34 232.5t93 171t143 106.5t185 37q84 0 158.5 -29.5t132 -91t90 -158t32.5 -227.5v-40.5t-4 -59.5h-713q18 -160 96.5 -258t213.5 -98q57 0 116.5 18t118.5 63l78 -96q-61 -51 -144 -85t-175 -34q-106 0 -190.5 44t-143 120t-90 175.5t-31.5 209.5z M229 594h576q0 106 -26.5 174t-66.5 106.5t-87 53t-88 14.5q-127 0 -212 -84t-96 -264zM315 1180l291 319h219l-365 -319h-145z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="1021" d="M82 524q0 131 34 232.5t93 171t143 106.5t185 37q84 0 158.5 -29.5t132 -91t90 -158t32.5 -227.5v-40.5t-4 -59.5h-713q18 -160 96.5 -258t213.5 -98q57 0 116.5 18t118.5 63l78 -96q-61 -51 -144 -85t-175 -34q-106 0 -190.5 44t-143 120t-90 175.5t-31.5 209.5z M166 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133zM229 594h576q0 106 -26.5 174t-66.5 106.5t-87 53t-88 14.5q-127 0 -212 -84t-96 -264z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="1021" d="M82 524q0 131 34 232.5t93 171t143 106.5t185 37q84 0 158.5 -29.5t132 -91t90 -158t32.5 -227.5v-40.5t-4 -59.5h-713q18 -160 96.5 -258t213.5 -98q57 0 116.5 18t118.5 63l78 -96q-61 -51 -144 -85t-175 -34q-106 0 -190.5 44t-143 120t-90 175.5t-31.5 209.5z M229 594h576q0 106 -26.5 174t-66.5 106.5t-87 53t-88 14.5q-127 0 -212 -84t-96 -264zM270 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM610 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5 t-27.5 68.5z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="454" d="M-73 1499h219l291 -319h-146zM156 0v1047h143v-1047h-143z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="454" d="M25 1180l291 319h219l-365 -319h-145zM156 0v1047h143v-1047h-143z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="454" d="M-141 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133zM156 0v1047h143v-1047h-143z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="454" d="M-37 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM156 0v1047h143v-1047h-143zM303 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
190
+ <glyph unicode="&#xf0;" horiz-adv-x="1060" d="M82 453q0 109 34 197.5t94 151t142 97.5t178 35q63 0 112.5 -15.5t86.5 -41t62.5 -57.5t42.5 -64q-16 135 -78 257t-172 208l-135 -144l-68 70l119 129q-53 29 -118 48t-138 26v108q88 -8 176 -31.5t160 -64.5l116 127l72 -72l-104 -110q141 -111 228 -298.5t87 -457.5 q0 -272 -115.5 -424t-333.5 -152q-102 0 -185 36t-141.5 99.5t-90 151.5t-31.5 191zM231 453q0 -74 24 -138.5t64.5 -110.5t95 -73t115.5 -27t116.5 27t95.5 73t63.5 109.5t23.5 137.5t-22.5 139t-62 112.5t-95.5 75t-119 27.5q-61 0 -116.5 -26.5t-95 -73t-63.5 -112 t-24 -140.5z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="1085" d="M154 0v1047h143v-115q49 72 117.5 105.5t152.5 33.5q193 0 284 -115.5t91 -375.5v-580h-143v639q0 166 -70 234.5t-174 68.5q-55 0 -102 -14.5t-82 -49t-54.5 -92t-19.5 -143.5v-643h-143zM209 1241q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5 q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80z" />
192
+ <glyph unicode="&#xf2;" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM228 1499h219l291 -319h-146zM231 522q0 -197 76 -307.5 t223 -110.5q143 0 221 111t78 309q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5z" />
193
+ <glyph unicode="&#xf3;" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM231 522q0 -197 76 -307.5t223 -110.5q143 0 221 111t78 309 q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5zM330 1180l291 319h219l-365 -319h-145z" />
194
+ <glyph unicode="&#xf4;" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM160 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133z M231 522q0 -197 76 -307.5t223 -110.5q143 0 221 111t78 309q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5z" />
195
+ <glyph unicode="&#xf5;" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM180 1241q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36 t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80zM231 522q0 -197 76 -307.5t223 -110.5q143 0 221 111t78 309q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5z" />
196
+ <glyph unicode="&#xf6;" horiz-adv-x="1060" d="M82 522q0 129 32.5 230.5t91 172t141.5 108.5t183 38t183.5 -37t141.5 -106.5t91 -171t33 -232.5q0 -129 -33 -231.5t-91 -173t-141 -107.5t-184 -37q-100 0 -183 37t-141.5 106.5t-91 171t-32.5 232.5zM231 522q0 -197 76 -307.5t223 -110.5q143 0 221 111t78 309 q0 197 -75.5 307.5t-223.5 110.5q-147 0 -223 -107.5t-76 -312.5zM264 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM604 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
197
+ <glyph unicode="&#xf7;" d="M164 631v139h962v-139h-962zM541 274q0 41 27.5 71t70.5 30q45 0 74.5 -30t29.5 -71t-29.5 -67.5t-74.5 -26.5q-43 0 -70.5 26.5t-27.5 67.5zM541 1124q0 39 27.5 70t70.5 31q45 0 74.5 -31t29.5 -70q0 -41 -29.5 -69.5t-74.5 -28.5q-43 0 -70.5 28.5t-27.5 69.5z" />
198
+ <glyph unicode="&#xf8;" horiz-adv-x="1060" d="M82 -25l111 160q-111 141 -111 387q0 129 32.5 230.5t92 172t142.5 108.5t183 38q145 0 254 -78l56 78h135l-109 -158q53 -70 82 -168t29 -221q0 -129 -32 -231.5t-90 -173t-141 -107.5t-184 -37q-154 0 -260 80l-57 -80h-133zM231 522q0 -160 50 -260l428 619 q-74 61 -177 61q-147 0 -224 -107.5t-77 -312.5zM350 168q73 -64 182 -64q143 0 220 111t77 309q0 156 -51 262z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="1085" d="M143 463v584h144v-639q0 -164 68.5 -234t172.5 -70q55 0 102.5 14.5t83.5 49.5t55 92t19 143v644h144v-1047h-144v100q-55 -72 -116.5 -98.5t-143.5 -26.5q-203 0 -294 115t-91 373zM244 1499h219l291 -319h-146z" />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="1085" d="M143 463v584h144v-639q0 -164 68.5 -234t172.5 -70q55 0 102.5 14.5t83.5 49.5t55 92t19 143v644h144v-1047h-144v100q-55 -72 -116.5 -98.5t-143.5 -26.5q-203 0 -294 115t-91 373zM309 1180l291 319h219l-365 -319h-145z" />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="1085" d="M143 463v584h144v-639q0 -164 68.5 -234t172.5 -70q55 0 102.5 14.5t83.5 49.5t55 92t19 143v644h144v-1047h-144v100q-55 -72 -116.5 -98.5t-143.5 -26.5q-203 0 -294 115t-91 373zM160 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="1085" d="M143 463v584h144v-639q0 -164 68.5 -234t172.5 -70q55 0 102.5 14.5t83.5 49.5t55 92t19 143v644h144v-1047h-144v100q-55 -72 -116.5 -98.5t-143.5 -26.5q-203 0 -294 115t-91 373zM264 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5 t-27.5 68.5zM604 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="985" d="M31 1047h145l299 -844l305 844h154l-535 -1444h-141l156 430zM227 1180l291 319h219l-365 -319h-145z" />
204
+ <glyph unicode="&#xfe;" horiz-adv-x="1097" d="M154 -416v1805l143 69v-506q53 47 116.5 83t170.5 36q100 0 180 -39t136 -110.5t86 -173t30 -224.5q0 -131 -32 -232.5t-89 -172t-137 -107.5t-174 -37q-111 0 -176.5 39t-110.5 92v-450zM297 266q53 -70 118.5 -116t151.5 -46q145 0 222 110t77 310q0 193 -79.5 305.5 t-219.5 112.5q-86 0 -156.5 -42t-113.5 -120v-514z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="985" d="M31 1047h145l299 -844l305 844h154l-535 -1444h-141l156 430zM209 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM549 1337q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
206
+ <glyph unicode="&#x152;" horiz-adv-x="1800" d="M113 717q0 135 30.5 268t101 237.5t183.5 170t279 65.5q55 0 98 -6t84 -18h753v-138h-557v-487h379v-135h-379v-537h603v-137h-797q-84 -25 -184 -25q-166 0 -280 65.5t-183.5 171t-100 238t-30.5 267.5zM262 717q0 -119 23.5 -229.5t76 -195.5t137.5 -136.5t208 -51.5 q70 0 127 18.5t108 51.5v1086q-100 70 -235 69q-123 0 -208 -55t-137.5 -143.5t-76 -198t-23.5 -215.5z" />
207
+ <glyph unicode="&#x153;" horiz-adv-x="1769" d="M82 522q0 129 31.5 230.5t91 172t142.5 108.5t185 38q133 0 224.5 -57.5t150.5 -159.5q59 109 156.5 163t218.5 54q84 0 160 -29.5t132 -91t90 -158t34 -227.5v-40.5t-4 -59.5h-713q18 -160 96 -258t211 -98q59 0 118.5 18t119.5 63l78 -96q-59 -49 -143.5 -84 t-178.5 -35q-129 0 -222 63.5t-149 166.5q-55 -104 -149 -167t-230 -63q-205 0 -327.5 142.5t-122.5 404.5zM231 522q0 -197 77 -307.5t224 -110.5q141 0 219 111t78 309q0 197 -75.5 307.5t-221.5 110.5q-147 0 -224 -107.5t-77 -312.5zM977 594h575q0 106 -26.5 174 t-66.5 106.5t-87 53t-90 14.5q-125 0 -210 -84t-95 -264z" />
208
+ <glyph unicode="&#x178;" horiz-adv-x="1200" d="M61 1434h158l381 -738l391 738h148l-465 -865v-569h-144v563zM334 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5zM674 1726q0 41 27.5 69t68.5 28t69 -28t28 -69t-28 -68.5t-69 -27.5t-68.5 27.5t-27.5 68.5z" />
209
+ <glyph unicode="&#x2c6;" horiz-adv-x="624" d="M-55 1180l288 319h164l289 -319h-133l-238 206l-237 -206h-133z" />
210
+ <glyph unicode="&#x2dc;" horiz-adv-x="624" d="M-39 1241q0 109 46 167t145 58q55 0 100 -16t85 -35.5t77 -36t75 -16.5q39 0 66 24.5t31 71.5h78q0 -109 -45.5 -167t-143.5 -58q-55 0 -100 16.5t-85 35t-77 34.5t-76 16t-65.5 -23.5t-30.5 -70.5h-80z" />
211
+ <glyph unicode="&#x2000;" horiz-adv-x="944" />
212
+ <glyph unicode="&#x2001;" horiz-adv-x="1888" />
213
+ <glyph unicode="&#x2002;" horiz-adv-x="944" />
214
+ <glyph unicode="&#x2003;" horiz-adv-x="1888" />
215
+ <glyph unicode="&#x2004;" horiz-adv-x="629" />
216
+ <glyph unicode="&#x2005;" horiz-adv-x="472" />
217
+ <glyph unicode="&#x2006;" horiz-adv-x="314" />
218
+ <glyph unicode="&#x2007;" horiz-adv-x="314" />
219
+ <glyph unicode="&#x2008;" horiz-adv-x="236" />
220
+ <glyph unicode="&#x2009;" horiz-adv-x="377" />
221
+ <glyph unicode="&#x200a;" horiz-adv-x="104" />
222
+ <glyph unicode="&#x2010;" horiz-adv-x="763" d="M154 541v139h456v-139h-456z" />
223
+ <glyph unicode="&#x2011;" horiz-adv-x="763" d="M154 541v139h456v-139h-456z" />
224
+ <glyph unicode="&#x2012;" horiz-adv-x="763" d="M154 541v139h456v-139h-456z" />
225
+ <glyph unicode="&#x2013;" horiz-adv-x="1013" d="M102 526v123h809v-123h-809z" />
226
+ <glyph unicode="&#x2014;" horiz-adv-x="1177" d="M-10 526v123h1198v-123h-1198z" />
227
+ <glyph unicode="&#x2018;" horiz-adv-x="401" d="M57 1118q0 117 53.5 204t133.5 136l39 -10q-14 -12 -32 -33.5t-33 -52.5t-26.5 -70t-11.5 -84q66 0 108 -35.5t42 -91.5q0 -63 -37 -99t-88 -36q-27 0 -53.5 10.5t-47 31t-34 53t-13.5 77.5z" />
228
+ <glyph unicode="&#x2019;" horiz-adv-x="401" d="M72 1323q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q14 12 31.5 34t33 52.5t26.5 69.5t11 84q-66 0 -107.5 36t-41.5 91z" />
229
+ <glyph unicode="&#x201a;" horiz-adv-x="401" d="M72 88q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q14 12 31.5 34t33 52.5t26.5 69.5t11 84q-66 0 -107.5 36t-41.5 91z" />
230
+ <glyph unicode="&#x201c;" horiz-adv-x="802" d="M57 1118q0 117 53.5 204t133.5 136l39 -10q-14 -12 -32 -33.5t-33 -52.5t-26.5 -70t-11.5 -84q66 0 108 -35.5t42 -91.5q0 -63 -37 -99t-88 -36q-27 0 -53.5 10.5t-47 31t-34 53t-13.5 77.5zM459 1118q0 117 53 204t133 136l39 -10q-14 -12 -31.5 -33.5t-33 -52.5 t-26.5 -70t-11 -84q66 0 107.5 -35.5t41.5 -91.5q0 -63 -37 -99t-88 -36q-27 0 -53.5 10.5t-47 31t-33.5 53t-13 77.5z" />
231
+ <glyph unicode="&#x201d;" horiz-adv-x="802" d="M72 1323q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q14 12 31.5 34t33 52.5t26.5 69.5t11 84q-66 0 -107.5 36t-41.5 91zM473 1323q0 63 37 99t88 36q27 0 53.5 -10t47 -30.5t33.5 -53.5t13 -78q0 -117 -53 -204 t-133 -136l-39 10q14 12 31.5 34t33 52.5t27 69.5t11.5 84q-66 0 -108 36t-42 91z" />
232
+ <glyph unicode="&#x201e;" horiz-adv-x="802" d="M72 88q0 63 36.5 99t88.5 36q27 0 53 -10t46.5 -30.5t34 -53.5t13.5 -78q0 -117 -53 -204t-133 -136l-39 10q14 12 31.5 34t33 52.5t26.5 69.5t11 84q-66 0 -107.5 36t-41.5 91zM473 88q0 63 37 99t88 36q27 0 53.5 -10t47 -30.5t33.5 -53.5t13 -78q0 -117 -53 -204 t-133 -136l-39 10q14 12 31.5 34t33 52.5t27 69.5t11.5 84q-66 0 -108 36t-42 91z" />
233
+ <glyph unicode="&#x2022;" horiz-adv-x="790" d="M123 717q0 55 20.5 103t56.5 84t85 56.5t108 20.5q57 0 107.5 -20.5t87.5 -56.5t58.5 -84t21.5 -103t-21.5 -102.5t-58.5 -82t-87.5 -55t-107.5 -20.5q-59 0 -108 20.5t-85 55t-56.5 82t-20.5 102.5z" />
234
+ <glyph unicode="&#x2026;" horiz-adv-x="1617" d="M184 53q0 35 23.5 59.5t58.5 24.5q37 0 62.5 -24.5t25.5 -59.5q0 -31 -25.5 -54.5t-62.5 -23.5q-35 0 -58.5 24t-23.5 54zM723 53q0 35 24.5 59.5t59.5 24.5q37 0 62.5 -24.5t25.5 -59.5q0 -31 -25.5 -54.5t-62.5 -23.5q-35 0 -59.5 24t-24.5 54zM1264 53q0 35 23.5 59.5 t58.5 24.5q37 0 62.5 -24.5t25.5 -59.5q0 -31 -25.5 -54.5t-62.5 -23.5q-35 0 -58.5 24t-23.5 54z" />
235
+ <glyph unicode="&#x202f;" horiz-adv-x="377" />
236
+ <glyph unicode="&#x2039;" horiz-adv-x="563" d="M61 524l312 523h159l-311 -523l311 -524h-159z" />
237
+ <glyph unicode="&#x203a;" horiz-adv-x="563" d="M31 0l311 524l-311 523h159l312 -523l-312 -524h-159z" />
238
+ <glyph unicode="&#x205f;" horiz-adv-x="472" />
239
+ <glyph unicode="&#x20ac;" horiz-adv-x="1329" d="M57 475l56 119h77q-4 29 -4 58.5v60.5v49t2 49h-131l56 119h92q18 104 58 199.5t105.5 168t157.5 116.5t217 44q94 0 179.5 -24.5t156.5 -71.5l-55 -131q-51 43 -123 68.5t-162 25.5t-155.5 -32.5t-110.5 -87t-71.5 -126t-41.5 -149.5h539l-49 -119h-506q-4 -35 -4 -68.5 v-64.5v-41t4 -43h416l-49 -119h-349q14 -70 43 -136.5t72 -117.5t102.5 -81.5t137.5 -30.5q100 0 174 40.5t123 106.5l114 -72q-25 -39 -62.5 -75.5t-88.5 -66.5t-115.5 -48.5t-140.5 -18.5q-121 0 -210 38t-151.5 105.5t-99.5 159t-55 197.5h-148z" />
240
+ <glyph unicode="&#x2122;" horiz-adv-x="1548" d="M41 1327v107h584v-107h-234v-758h-115v758h-235zM709 569v865h92l256 -617l256 617h92v-865h-115v510l-231 -542l-236 546v-514h-114z" />
241
+ <glyph unicode="&#x25fc;" horiz-adv-x="1044" d="M0 0v1044h1044v-1044h-1044z" />
242
+ <hkern u1="&#x20;" u2="&#x178;" k="82" />
243
+ <hkern u1="&#x20;" u2="&#xdd;" k="82" />
244
+ <hkern u1="&#x20;" u2="&#xc5;" k="82" />
245
+ <hkern u1="&#x20;" u2="&#xc4;" k="82" />
246
+ <hkern u1="&#x20;" u2="&#xc3;" k="82" />
247
+ <hkern u1="&#x20;" u2="&#xc2;" k="82" />
248
+ <hkern u1="&#x20;" u2="&#xc1;" k="82" />
249
+ <hkern u1="&#x20;" u2="&#xc0;" k="82" />
250
+ <hkern u1="&#x20;" u2="Y" k="82" />
251
+ <hkern u1="&#x20;" u2="W" k="41" />
252
+ <hkern u1="&#x20;" u2="V" k="82" />
253
+ <hkern u1="&#x20;" u2="T" k="82" />
254
+ <hkern u1="&#x20;" u2="A" k="82" />
255
+ <hkern u1="&#x22;" u2="J" k="164" />
256
+ <hkern u1="&#x26;" u2="&#x178;" k="236" />
257
+ <hkern u1="&#x26;" u2="&#xff;" k="102" />
258
+ <hkern u1="&#x26;" u2="&#xfd;" k="102" />
259
+ <hkern u1="&#x26;" u2="&#xfa;" k="51" />
260
+ <hkern u1="&#x26;" u2="&#xdd;" k="236" />
261
+ <hkern u1="&#x26;" u2="y" k="102" />
262
+ <hkern u1="&#x26;" u2="w" k="61" />
263
+ <hkern u1="&#x26;" u2="v" k="102" />
264
+ <hkern u1="&#x26;" u2="u" k="51" />
265
+ <hkern u1="&#x26;" u2="Y" k="236" />
266
+ <hkern u1="&#x26;" u2="X" k="41" />
267
+ <hkern u1="&#x26;" u2="V" k="236" />
268
+ <hkern u1="&#x26;" u2="T" k="205" />
269
+ <hkern u1="&#x26;" u2="S" k="31" />
270
+ <hkern u1="&#x26;" u2="J" k="20" />
271
+ <hkern u1="&#x27;" u2="J" k="164" />
272
+ <hkern u1="&#x28;" u2="&#xc5;" k="41" />
273
+ <hkern u1="&#x28;" u2="&#xc4;" k="41" />
274
+ <hkern u1="&#x28;" u2="&#xc3;" k="41" />
275
+ <hkern u1="&#x28;" u2="&#xc2;" k="41" />
276
+ <hkern u1="&#x28;" u2="&#xc1;" k="41" />
277
+ <hkern u1="&#x28;" u2="&#xc0;" k="41" />
278
+ <hkern u1="&#x28;" u2="j" k="-123" />
279
+ <hkern u1="&#x28;" u2="J" k="82" />
280
+ <hkern u1="&#x28;" u2="A" k="41" />
281
+ <hkern u1="&#x2a;" u2="&#x153;" k="102" />
282
+ <hkern u1="&#x2a;" u2="&#xf8;" k="102" />
283
+ <hkern u1="&#x2a;" u2="&#xf3;" k="102" />
284
+ <hkern u1="&#x2a;" u2="&#xc5;" k="184" />
285
+ <hkern u1="&#x2a;" u2="&#xc4;" k="184" />
286
+ <hkern u1="&#x2a;" u2="&#xc3;" k="184" />
287
+ <hkern u1="&#x2a;" u2="&#xc2;" k="184" />
288
+ <hkern u1="&#x2a;" u2="&#xc1;" k="184" />
289
+ <hkern u1="&#x2a;" u2="&#xc0;" k="184" />
290
+ <hkern u1="&#x2a;" u2="s" k="51" />
291
+ <hkern u1="&#x2a;" u2="q" k="102" />
292
+ <hkern u1="&#x2a;" u2="o" k="102" />
293
+ <hkern u1="&#x2a;" u2="g" k="102" />
294
+ <hkern u1="&#x2a;" u2="e" k="102" />
295
+ <hkern u1="&#x2a;" u2="d" k="102" />
296
+ <hkern u1="&#x2a;" u2="c" k="102" />
297
+ <hkern u1="&#x2a;" u2="J" k="297" />
298
+ <hkern u1="&#x2a;" u2="A" k="184" />
299
+ <hkern u1="&#x2d;" u2="X" k="61" />
300
+ <hkern u1="&#x2f;" u2="&#x178;" k="-20" />
301
+ <hkern u1="&#x2f;" u2="&#x153;" k="102" />
302
+ <hkern u1="&#x2f;" u2="&#xfe;" k="20" />
303
+ <hkern u1="&#x2f;" u2="&#xfa;" k="61" />
304
+ <hkern u1="&#x2f;" u2="&#xf8;" k="102" />
305
+ <hkern u1="&#x2f;" u2="&#xf3;" k="102" />
306
+ <hkern u1="&#x2f;" u2="&#xf1;" k="82" />
307
+ <hkern u1="&#x2f;" u2="&#xed;" k="20" />
308
+ <hkern u1="&#x2f;" u2="&#xe6;" k="123" />
309
+ <hkern u1="&#x2f;" u2="&#xe1;" k="123" />
310
+ <hkern u1="&#x2f;" u2="&#xdf;" k="20" />
311
+ <hkern u1="&#x2f;" u2="&#xdd;" k="-20" />
312
+ <hkern u1="&#x2f;" u2="&#xc5;" k="164" />
313
+ <hkern u1="&#x2f;" u2="&#xc4;" k="164" />
314
+ <hkern u1="&#x2f;" u2="&#xc3;" k="164" />
315
+ <hkern u1="&#x2f;" u2="&#xc2;" k="164" />
316
+ <hkern u1="&#x2f;" u2="&#xc1;" k="164" />
317
+ <hkern u1="&#x2f;" u2="&#xc0;" k="164" />
318
+ <hkern u1="&#x2f;" u2="&#xb5;" k="82" />
319
+ <hkern u1="&#x2f;" u2="&#x7c;" k="20" />
320
+ <hkern u1="&#x2f;" u2="z" k="102" />
321
+ <hkern u1="&#x2f;" u2="x" k="82" />
322
+ <hkern u1="&#x2f;" u2="u" k="61" />
323
+ <hkern u1="&#x2f;" u2="s" k="102" />
324
+ <hkern u1="&#x2f;" u2="r" k="82" />
325
+ <hkern u1="&#x2f;" u2="q" k="102" />
326
+ <hkern u1="&#x2f;" u2="p" k="82" />
327
+ <hkern u1="&#x2f;" u2="o" k="102" />
328
+ <hkern u1="&#x2f;" u2="n" k="82" />
329
+ <hkern u1="&#x2f;" u2="m" k="82" />
330
+ <hkern u1="&#x2f;" u2="l" k="20" />
331
+ <hkern u1="&#x2f;" u2="k" k="20" />
332
+ <hkern u1="&#x2f;" u2="i" k="20" />
333
+ <hkern u1="&#x2f;" u2="h" k="20" />
334
+ <hkern u1="&#x2f;" u2="g" k="102" />
335
+ <hkern u1="&#x2f;" u2="e" k="102" />
336
+ <hkern u1="&#x2f;" u2="d" k="102" />
337
+ <hkern u1="&#x2f;" u2="c" k="102" />
338
+ <hkern u1="&#x2f;" u2="b" k="20" />
339
+ <hkern u1="&#x2f;" u2="a" k="123" />
340
+ <hkern u1="&#x2f;" u2="[" k="20" />
341
+ <hkern u1="&#x2f;" u2="Y" k="-20" />
342
+ <hkern u1="&#x2f;" u2="X" k="51" />
343
+ <hkern u1="&#x2f;" u2="W" k="-20" />
344
+ <hkern u1="&#x2f;" u2="V" k="-20" />
345
+ <hkern u1="&#x2f;" u2="T" k="-41" />
346
+ <hkern u1="&#x2f;" u2="S" k="41" />
347
+ <hkern u1="&#x2f;" u2="J" k="266" />
348
+ <hkern u1="&#x2f;" u2="A" k="164" />
349
+ <hkern u1="&#x30;" u2="&#x178;" k="102" />
350
+ <hkern u1="&#x30;" u2="&#xdd;" k="102" />
351
+ <hkern u1="&#x30;" u2="&#xc5;" k="61" />
352
+ <hkern u1="&#x30;" u2="&#xc4;" k="61" />
353
+ <hkern u1="&#x30;" u2="&#xc3;" k="61" />
354
+ <hkern u1="&#x30;" u2="&#xc2;" k="61" />
355
+ <hkern u1="&#x30;" u2="&#xc1;" k="61" />
356
+ <hkern u1="&#x30;" u2="&#xc0;" k="61" />
357
+ <hkern u1="&#x30;" u2="w" k="20" />
358
+ <hkern u1="&#x30;" u2="s" k="41" />
359
+ <hkern u1="&#x30;" u2="Y" k="102" />
360
+ <hkern u1="&#x30;" u2="X" k="61" />
361
+ <hkern u1="&#x30;" u2="W" k="41" />
362
+ <hkern u1="&#x30;" u2="V" k="102" />
363
+ <hkern u1="&#x30;" u2="T" k="61" />
364
+ <hkern u1="&#x30;" u2="A" k="61" />
365
+ <hkern u1="&#x31;" u2="&#x178;" k="102" />
366
+ <hkern u1="&#x31;" u2="&#xff;" k="41" />
367
+ <hkern u1="&#x31;" u2="&#xfd;" k="41" />
368
+ <hkern u1="&#x31;" u2="&#xe6;" k="61" />
369
+ <hkern u1="&#x31;" u2="&#xe1;" k="61" />
370
+ <hkern u1="&#x31;" u2="&#xdd;" k="102" />
371
+ <hkern u1="&#x31;" u2="&#xc5;" k="61" />
372
+ <hkern u1="&#x31;" u2="&#xc4;" k="61" />
373
+ <hkern u1="&#x31;" u2="&#xc3;" k="61" />
374
+ <hkern u1="&#x31;" u2="&#xc2;" k="61" />
375
+ <hkern u1="&#x31;" u2="&#xc1;" k="61" />
376
+ <hkern u1="&#x31;" u2="&#xc0;" k="61" />
377
+ <hkern u1="&#x31;" u2="y" k="41" />
378
+ <hkern u1="&#x31;" u2="v" k="41" />
379
+ <hkern u1="&#x31;" u2="s" k="41" />
380
+ <hkern u1="&#x31;" u2="a" k="61" />
381
+ <hkern u1="&#x31;" u2="Z" k="61" />
382
+ <hkern u1="&#x31;" u2="Y" k="102" />
383
+ <hkern u1="&#x31;" u2="X" k="61" />
384
+ <hkern u1="&#x31;" u2="W" k="41" />
385
+ <hkern u1="&#x31;" u2="V" k="102" />
386
+ <hkern u1="&#x31;" u2="A" k="61" />
387
+ <hkern u1="&#x31;" u2="&#x34;" k="41" />
388
+ <hkern u1="&#x32;" u2="&#x178;" k="41" />
389
+ <hkern u1="&#x32;" u2="&#xdd;" k="41" />
390
+ <hkern u1="&#x32;" u2="Y" k="41" />
391
+ <hkern u1="&#x32;" u2="X" k="20" />
392
+ <hkern u1="&#x32;" u2="W" k="20" />
393
+ <hkern u1="&#x32;" u2="V" k="41" />
394
+ <hkern u1="&#x32;" u2="&#x34;" k="20" />
395
+ <hkern u1="&#x33;" u2="&#x178;" k="61" />
396
+ <hkern u1="&#x33;" u2="&#xff;" k="20" />
397
+ <hkern u1="&#x33;" u2="&#xfd;" k="20" />
398
+ <hkern u1="&#x33;" u2="&#xdd;" k="61" />
399
+ <hkern u1="&#x33;" u2="&#xc5;" k="20" />
400
+ <hkern u1="&#x33;" u2="&#xc4;" k="20" />
401
+ <hkern u1="&#x33;" u2="&#xc3;" k="20" />
402
+ <hkern u1="&#x33;" u2="&#xc2;" k="20" />
403
+ <hkern u1="&#x33;" u2="&#xc1;" k="20" />
404
+ <hkern u1="&#x33;" u2="&#xc0;" k="20" />
405
+ <hkern u1="&#x33;" u2="y" k="20" />
406
+ <hkern u1="&#x33;" u2="v" k="20" />
407
+ <hkern u1="&#x33;" u2="Z" k="20" />
408
+ <hkern u1="&#x33;" u2="Y" k="61" />
409
+ <hkern u1="&#x33;" u2="X" k="51" />
410
+ <hkern u1="&#x33;" u2="W" k="41" />
411
+ <hkern u1="&#x33;" u2="V" k="61" />
412
+ <hkern u1="&#x33;" u2="A" k="20" />
413
+ <hkern u1="&#x33;" u2="&#x39;" k="31" />
414
+ <hkern u1="&#x33;" u2="&#x37;" k="20" />
415
+ <hkern u1="&#x34;" u2="&#x178;" k="102" />
416
+ <hkern u1="&#x34;" u2="&#xff;" k="41" />
417
+ <hkern u1="&#x34;" u2="&#xfd;" k="41" />
418
+ <hkern u1="&#x34;" u2="&#xdd;" k="102" />
419
+ <hkern u1="&#x34;" u2="y" k="41" />
420
+ <hkern u1="&#x34;" u2="w" k="20" />
421
+ <hkern u1="&#x34;" u2="v" k="41" />
422
+ <hkern u1="&#x34;" u2="s" k="20" />
423
+ <hkern u1="&#x34;" u2="Y" k="102" />
424
+ <hkern u1="&#x34;" u2="X" k="41" />
425
+ <hkern u1="&#x34;" u2="W" k="51" />
426
+ <hkern u1="&#x34;" u2="V" k="102" />
427
+ <hkern u1="&#x34;" u2="T" k="61" />
428
+ <hkern u1="&#x34;" u2="&#x39;" k="31" />
429
+ <hkern u1="&#x34;" u2="&#x37;" k="20" />
430
+ <hkern u1="&#x35;" u2="&#x178;" k="41" />
431
+ <hkern u1="&#x35;" u2="&#xff;" k="41" />
432
+ <hkern u1="&#x35;" u2="&#xfd;" k="41" />
433
+ <hkern u1="&#x35;" u2="&#xdd;" k="41" />
434
+ <hkern u1="&#x35;" u2="&#xc5;" k="41" />
435
+ <hkern u1="&#x35;" u2="&#xc4;" k="41" />
436
+ <hkern u1="&#x35;" u2="&#xc3;" k="41" />
437
+ <hkern u1="&#x35;" u2="&#xc2;" k="41" />
438
+ <hkern u1="&#x35;" u2="&#xc1;" k="41" />
439
+ <hkern u1="&#x35;" u2="&#xc0;" k="41" />
440
+ <hkern u1="&#x35;" u2="y" k="41" />
441
+ <hkern u1="&#x35;" u2="w" k="20" />
442
+ <hkern u1="&#x35;" u2="v" k="41" />
443
+ <hkern u1="&#x35;" u2="Z" k="20" />
444
+ <hkern u1="&#x35;" u2="Y" k="41" />
445
+ <hkern u1="&#x35;" u2="X" k="20" />
446
+ <hkern u1="&#x35;" u2="V" k="41" />
447
+ <hkern u1="&#x35;" u2="A" k="41" />
448
+ <hkern u1="&#x35;" u2="&#x39;" k="20" />
449
+ <hkern u1="&#x35;" u2="&#x37;" k="20" />
450
+ <hkern u1="&#x35;" u2="&#x32;" k="10" />
451
+ <hkern u1="&#x36;" u2="&#x178;" k="102" />
452
+ <hkern u1="&#x36;" u2="&#xff;" k="41" />
453
+ <hkern u1="&#x36;" u2="&#xfd;" k="41" />
454
+ <hkern u1="&#x36;" u2="&#xdd;" k="102" />
455
+ <hkern u1="&#x36;" u2="&#xc5;" k="41" />
456
+ <hkern u1="&#x36;" u2="&#xc4;" k="41" />
457
+ <hkern u1="&#x36;" u2="&#xc3;" k="41" />
458
+ <hkern u1="&#x36;" u2="&#xc2;" k="41" />
459
+ <hkern u1="&#x36;" u2="&#xc1;" k="41" />
460
+ <hkern u1="&#x36;" u2="&#xc0;" k="41" />
461
+ <hkern u1="&#x36;" u2="y" k="41" />
462
+ <hkern u1="&#x36;" u2="w" k="20" />
463
+ <hkern u1="&#x36;" u2="v" k="41" />
464
+ <hkern u1="&#x36;" u2="Z" k="20" />
465
+ <hkern u1="&#x36;" u2="Y" k="102" />
466
+ <hkern u1="&#x36;" u2="X" k="61" />
467
+ <hkern u1="&#x36;" u2="W" k="41" />
468
+ <hkern u1="&#x36;" u2="V" k="102" />
469
+ <hkern u1="&#x36;" u2="T" k="82" />
470
+ <hkern u1="&#x36;" u2="A" k="41" />
471
+ <hkern u1="&#x36;" u2="&#x39;" k="72" />
472
+ <hkern u1="&#x36;" u2="&#x37;" k="41" />
473
+ <hkern u1="&#x37;" u2="&#x153;" k="102" />
474
+ <hkern u1="&#x37;" u2="&#xff;" k="41" />
475
+ <hkern u1="&#x37;" u2="&#xfd;" k="41" />
476
+ <hkern u1="&#x37;" u2="&#xfa;" k="72" />
477
+ <hkern u1="&#x37;" u2="&#xf8;" k="102" />
478
+ <hkern u1="&#x37;" u2="&#xf3;" k="102" />
479
+ <hkern u1="&#x37;" u2="&#xf1;" k="41" />
480
+ <hkern u1="&#x37;" u2="&#xe6;" k="61" />
481
+ <hkern u1="&#x37;" u2="&#xe1;" k="61" />
482
+ <hkern u1="&#x37;" u2="&#xc5;" k="123" />
483
+ <hkern u1="&#x37;" u2="&#xc4;" k="123" />
484
+ <hkern u1="&#x37;" u2="&#xc3;" k="123" />
485
+ <hkern u1="&#x37;" u2="&#xc2;" k="123" />
486
+ <hkern u1="&#x37;" u2="&#xc1;" k="123" />
487
+ <hkern u1="&#x37;" u2="&#xc0;" k="123" />
488
+ <hkern u1="&#x37;" u2="&#xb5;" k="41" />
489
+ <hkern u1="&#x37;" u2="y" k="41" />
490
+ <hkern u1="&#x37;" u2="w" k="41" />
491
+ <hkern u1="&#x37;" u2="v" k="41" />
492
+ <hkern u1="&#x37;" u2="u" k="72" />
493
+ <hkern u1="&#x37;" u2="s" k="61" />
494
+ <hkern u1="&#x37;" u2="r" k="41" />
495
+ <hkern u1="&#x37;" u2="q" k="102" />
496
+ <hkern u1="&#x37;" u2="p" k="41" />
497
+ <hkern u1="&#x37;" u2="o" k="102" />
498
+ <hkern u1="&#x37;" u2="n" k="41" />
499
+ <hkern u1="&#x37;" u2="m" k="41" />
500
+ <hkern u1="&#x37;" u2="g" k="102" />
501
+ <hkern u1="&#x37;" u2="e" k="102" />
502
+ <hkern u1="&#x37;" u2="d" k="102" />
503
+ <hkern u1="&#x37;" u2="c" k="102" />
504
+ <hkern u1="&#x37;" u2="a" k="61" />
505
+ <hkern u1="&#x37;" u2="X" k="20" />
506
+ <hkern u1="&#x37;" u2="W" k="10" />
507
+ <hkern u1="&#x37;" u2="S" k="20" />
508
+ <hkern u1="&#x37;" u2="A" k="123" />
509
+ <hkern u1="&#x37;" u2="&#x37;" k="-72" />
510
+ <hkern u1="&#x37;" u2="&#x36;" k="61" />
511
+ <hkern u1="&#x37;" u2="&#x34;" k="143" />
512
+ <hkern u1="&#x38;" u2="&#x178;" k="82" />
513
+ <hkern u1="&#x38;" u2="&#xff;" k="20" />
514
+ <hkern u1="&#x38;" u2="&#xfd;" k="20" />
515
+ <hkern u1="&#x38;" u2="&#xdd;" k="82" />
516
+ <hkern u1="&#x38;" u2="&#xc5;" k="20" />
517
+ <hkern u1="&#x38;" u2="&#xc4;" k="20" />
518
+ <hkern u1="&#x38;" u2="&#xc3;" k="20" />
519
+ <hkern u1="&#x38;" u2="&#xc2;" k="20" />
520
+ <hkern u1="&#x38;" u2="&#xc1;" k="20" />
521
+ <hkern u1="&#x38;" u2="&#xc0;" k="20" />
522
+ <hkern u1="&#x38;" u2="y" k="20" />
523
+ <hkern u1="&#x38;" u2="w" k="20" />
524
+ <hkern u1="&#x38;" u2="v" k="20" />
525
+ <hkern u1="&#x38;" u2="Z" k="20" />
526
+ <hkern u1="&#x38;" u2="Y" k="82" />
527
+ <hkern u1="&#x38;" u2="X" k="41" />
528
+ <hkern u1="&#x38;" u2="W" k="20" />
529
+ <hkern u1="&#x38;" u2="V" k="82" />
530
+ <hkern u1="&#x38;" u2="T" k="61" />
531
+ <hkern u1="&#x38;" u2="A" k="20" />
532
+ <hkern u1="&#x38;" u2="&#x37;" k="20" />
533
+ <hkern u1="&#x39;" u2="&#x178;" k="102" />
534
+ <hkern u1="&#x39;" u2="&#xdd;" k="102" />
535
+ <hkern u1="&#x39;" u2="&#xc5;" k="82" />
536
+ <hkern u1="&#x39;" u2="&#xc4;" k="82" />
537
+ <hkern u1="&#x39;" u2="&#xc3;" k="82" />
538
+ <hkern u1="&#x39;" u2="&#xc2;" k="82" />
539
+ <hkern u1="&#x39;" u2="&#xc1;" k="82" />
540
+ <hkern u1="&#x39;" u2="&#xc0;" k="82" />
541
+ <hkern u1="&#x39;" u2="w" k="20" />
542
+ <hkern u1="&#x39;" u2="s" k="41" />
543
+ <hkern u1="&#x39;" u2="Z" k="20" />
544
+ <hkern u1="&#x39;" u2="Y" k="102" />
545
+ <hkern u1="&#x39;" u2="X" k="61" />
546
+ <hkern u1="&#x39;" u2="W" k="41" />
547
+ <hkern u1="&#x39;" u2="V" k="102" />
548
+ <hkern u1="&#x39;" u2="T" k="20" />
549
+ <hkern u1="&#x39;" u2="A" k="82" />
550
+ <hkern u1="&#x40;" u2="&#x153;" k="72" />
551
+ <hkern u1="&#x40;" u2="&#xfa;" k="31" />
552
+ <hkern u1="&#x40;" u2="&#xf8;" k="72" />
553
+ <hkern u1="&#x40;" u2="&#xf3;" k="72" />
554
+ <hkern u1="&#x40;" u2="&#xdc;" k="20" />
555
+ <hkern u1="&#x40;" u2="&#xdb;" k="20" />
556
+ <hkern u1="&#x40;" u2="&#xda;" k="20" />
557
+ <hkern u1="&#x40;" u2="&#xd9;" k="20" />
558
+ <hkern u1="&#x40;" u2="&#xc5;" k="143" />
559
+ <hkern u1="&#x40;" u2="&#xc4;" k="143" />
560
+ <hkern u1="&#x40;" u2="&#xc3;" k="143" />
561
+ <hkern u1="&#x40;" u2="&#xc2;" k="143" />
562
+ <hkern u1="&#x40;" u2="&#xc1;" k="143" />
563
+ <hkern u1="&#x40;" u2="&#xc0;" k="143" />
564
+ <hkern u1="&#x40;" u2="w" k="20" />
565
+ <hkern u1="&#x40;" u2="u" k="31" />
566
+ <hkern u1="&#x40;" u2="q" k="72" />
567
+ <hkern u1="&#x40;" u2="o" k="72" />
568
+ <hkern u1="&#x40;" u2="g" k="72" />
569
+ <hkern u1="&#x40;" u2="e" k="72" />
570
+ <hkern u1="&#x40;" u2="d" k="72" />
571
+ <hkern u1="&#x40;" u2="c" k="72" />
572
+ <hkern u1="&#x40;" u2="Z" k="72" />
573
+ <hkern u1="&#x40;" u2="X" k="102" />
574
+ <hkern u1="&#x40;" u2="U" k="20" />
575
+ <hkern u1="&#x40;" u2="T" k="113" />
576
+ <hkern u1="&#x40;" u2="S" k="41" />
577
+ <hkern u1="&#x40;" u2="J" k="102" />
578
+ <hkern u1="&#x40;" u2="A" k="143" />
579
+ <hkern u1="A" u2="&#x2122;" k="154" />
580
+ <hkern u1="A" u2="\" k="164" />
581
+ <hkern u1="A" u2="X" k="31" />
582
+ <hkern u1="A" u2="J" k="-20" />
583
+ <hkern u1="A" u2="&#x40;" k="92" />
584
+ <hkern u1="A" u2="&#x39;" k="61" />
585
+ <hkern u1="A" u2="&#x38;" k="20" />
586
+ <hkern u1="A" u2="&#x37;" k="123" />
587
+ <hkern u1="A" u2="&#x36;" k="41" />
588
+ <hkern u1="A" u2="&#x35;" k="20" />
589
+ <hkern u1="A" u2="&#x31;" k="20" />
590
+ <hkern u1="A" u2="&#x30;" k="61" />
591
+ <hkern u1="A" u2="&#x2a;" k="184" />
592
+ <hkern u1="A" u2="&#x29;" k="41" />
593
+ <hkern u1="A" u2="&#x26;" k="31" />
594
+ <hkern u1="A" u2="&#x20;" k="82" />
595
+ <hkern u1="B" u2="&#x2122;" k="31" />
596
+ <hkern u1="B" u2="&#x201e;" k="20" />
597
+ <hkern u1="B" u2="&#x201a;" k="20" />
598
+ <hkern u1="B" u2="&#x178;" k="102" />
599
+ <hkern u1="B" u2="&#x152;" k="20" />
600
+ <hkern u1="B" u2="&#xdd;" k="102" />
601
+ <hkern u1="B" u2="&#xd8;" k="20" />
602
+ <hkern u1="B" u2="&#xd6;" k="20" />
603
+ <hkern u1="B" u2="&#xd5;" k="20" />
604
+ <hkern u1="B" u2="&#xd4;" k="20" />
605
+ <hkern u1="B" u2="&#xd3;" k="20" />
606
+ <hkern u1="B" u2="&#xd2;" k="20" />
607
+ <hkern u1="B" u2="&#xc7;" k="20" />
608
+ <hkern u1="B" u2="&#xc5;" k="61" />
609
+ <hkern u1="B" u2="&#xc4;" k="61" />
610
+ <hkern u1="B" u2="&#xc3;" k="61" />
611
+ <hkern u1="B" u2="&#xc2;" k="61" />
612
+ <hkern u1="B" u2="&#xc1;" k="61" />
613
+ <hkern u1="B" u2="&#xc0;" k="61" />
614
+ <hkern u1="B" u2="&#xae;" k="20" />
615
+ <hkern u1="B" u2="&#xa9;" k="20" />
616
+ <hkern u1="B" u2="&#x7d;" k="20" />
617
+ <hkern u1="B" u2="\" k="41" />
618
+ <hkern u1="B" u2="Y" k="102" />
619
+ <hkern u1="B" u2="X" k="51" />
620
+ <hkern u1="B" u2="W" k="41" />
621
+ <hkern u1="B" u2="V" k="102" />
622
+ <hkern u1="B" u2="T" k="82" />
623
+ <hkern u1="B" u2="Q" k="20" />
624
+ <hkern u1="B" u2="O" k="20" />
625
+ <hkern u1="B" u2="G" k="20" />
626
+ <hkern u1="B" u2="C" k="20" />
627
+ <hkern u1="B" u2="A" k="61" />
628
+ <hkern u1="B" u2="&#x40;" k="20" />
629
+ <hkern u1="B" u2="&#x39;" k="41" />
630
+ <hkern u1="B" u2="&#x37;" k="51" />
631
+ <hkern u1="B" u2="&#x32;" k="41" />
632
+ <hkern u1="B" u2="&#x30;" k="20" />
633
+ <hkern u1="B" u2="&#x2f;" k="61" />
634
+ <hkern u1="B" u2="&#x2e;" k="20" />
635
+ <hkern u1="B" u2="&#x2c;" k="20" />
636
+ <hkern u1="C" u2="x" k="41" />
637
+ <hkern u1="C" u2="X" k="31" />
638
+ <hkern u1="C" u2="J" k="41" />
639
+ <hkern u1="C" u2="&#x40;" k="20" />
640
+ <hkern u1="C" u2="&#x2f;" k="41" />
641
+ <hkern u1="D" u2="&#x2122;" k="61" />
642
+ <hkern u1="D" u2="x" k="20" />
643
+ <hkern u1="D" u2="X" k="72" />
644
+ <hkern u1="D" u2="J" k="51" />
645
+ <hkern u1="E" u2="J" k="20" />
646
+ <hkern u1="E" u2="&#x40;" k="61" />
647
+ <hkern u1="E" u2="&#x26;" k="20" />
648
+ <hkern u1="F" u2="&#x203a;" k="61" />
649
+ <hkern u1="F" u2="&#x2039;" k="123" />
650
+ <hkern u1="F" u2="&#x201e;" k="307" />
651
+ <hkern u1="F" u2="&#x201a;" k="307" />
652
+ <hkern u1="F" u2="&#x153;" k="164" />
653
+ <hkern u1="F" u2="&#x152;" k="61" />
654
+ <hkern u1="F" u2="&#xff;" k="102" />
655
+ <hkern u1="F" u2="&#xfd;" k="102" />
656
+ <hkern u1="F" u2="&#xfc;" k="102" />
657
+ <hkern u1="F" u2="&#xfb;" k="102" />
658
+ <hkern u1="F" u2="&#xfa;" k="143" />
659
+ <hkern u1="F" u2="&#xf9;" k="102" />
660
+ <hkern u1="F" u2="&#xf8;" k="164" />
661
+ <hkern u1="F" u2="&#xf6;" k="123" />
662
+ <hkern u1="F" u2="&#xf5;" k="123" />
663
+ <hkern u1="F" u2="&#xf4;" k="123" />
664
+ <hkern u1="F" u2="&#xf3;" k="164" />
665
+ <hkern u1="F" u2="&#xf2;" k="123" />
666
+ <hkern u1="F" u2="&#xf1;" k="143" />
667
+ <hkern u1="F" u2="&#xf0;" k="123" />
668
+ <hkern u1="F" u2="&#xef;" k="-154" />
669
+ <hkern u1="F" u2="&#xee;" k="-154" />
670
+ <hkern u1="F" u2="&#xec;" k="-154" />
671
+ <hkern u1="F" u2="&#xeb;" k="123" />
672
+ <hkern u1="F" u2="&#xea;" k="123" />
673
+ <hkern u1="F" u2="&#xe8;" k="123" />
674
+ <hkern u1="F" u2="&#xe6;" k="174" />
675
+ <hkern u1="F" u2="&#xe5;" k="102" />
676
+ <hkern u1="F" u2="&#xe4;" k="102" />
677
+ <hkern u1="F" u2="&#xe3;" k="102" />
678
+ <hkern u1="F" u2="&#xe2;" k="102" />
679
+ <hkern u1="F" u2="&#xe1;" k="174" />
680
+ <hkern u1="F" u2="&#xe0;" k="102" />
681
+ <hkern u1="F" u2="&#xd8;" k="61" />
682
+ <hkern u1="F" u2="&#xd6;" k="61" />
683
+ <hkern u1="F" u2="&#xd5;" k="61" />
684
+ <hkern u1="F" u2="&#xd4;" k="61" />
685
+ <hkern u1="F" u2="&#xd3;" k="61" />
686
+ <hkern u1="F" u2="&#xd2;" k="61" />
687
+ <hkern u1="F" u2="&#xc7;" k="61" />
688
+ <hkern u1="F" u2="&#xc5;" k="246" />
689
+ <hkern u1="F" u2="&#xc4;" k="246" />
690
+ <hkern u1="F" u2="&#xc3;" k="246" />
691
+ <hkern u1="F" u2="&#xc2;" k="246" />
692
+ <hkern u1="F" u2="&#xc1;" k="246" />
693
+ <hkern u1="F" u2="&#xc0;" k="246" />
694
+ <hkern u1="F" u2="&#xbb;" k="61" />
695
+ <hkern u1="F" u2="&#xb5;" k="143" />
696
+ <hkern u1="F" u2="&#xae;" k="82" />
697
+ <hkern u1="F" u2="&#xab;" k="123" />
698
+ <hkern u1="F" u2="&#xa9;" k="82" />
699
+ <hkern u1="F" u2="z" k="92" />
700
+ <hkern u1="F" u2="y" k="102" />
701
+ <hkern u1="F" u2="x" k="102" />
702
+ <hkern u1="F" u2="w" k="82" />
703
+ <hkern u1="F" u2="v" k="102" />
704
+ <hkern u1="F" u2="u" k="143" />
705
+ <hkern u1="F" u2="t" k="20" />
706
+ <hkern u1="F" u2="s" k="164" />
707
+ <hkern u1="F" u2="r" k="143" />
708
+ <hkern u1="F" u2="q" k="164" />
709
+ <hkern u1="F" u2="p" k="143" />
710
+ <hkern u1="F" u2="o" k="164" />
711
+ <hkern u1="F" u2="n" k="143" />
712
+ <hkern u1="F" u2="m" k="143" />
713
+ <hkern u1="F" u2="g" k="164" />
714
+ <hkern u1="F" u2="e" k="164" />
715
+ <hkern u1="F" u2="d" k="164" />
716
+ <hkern u1="F" u2="c" k="164" />
717
+ <hkern u1="F" u2="a" k="174" />
718
+ <hkern u1="F" u2="Z" k="20" />
719
+ <hkern u1="F" u2="X" k="41" />
720
+ <hkern u1="F" u2="T" k="-51" />
721
+ <hkern u1="F" u2="S" k="41" />
722
+ <hkern u1="F" u2="Q" k="61" />
723
+ <hkern u1="F" u2="O" k="61" />
724
+ <hkern u1="F" u2="J" k="287" />
725
+ <hkern u1="F" u2="G" k="61" />
726
+ <hkern u1="F" u2="C" k="61" />
727
+ <hkern u1="F" u2="A" k="246" />
728
+ <hkern u1="F" u2="&#x40;" k="61" />
729
+ <hkern u1="F" u2="&#x3f;" k="-41" />
730
+ <hkern u1="F" u2="&#x38;" k="72" />
731
+ <hkern u1="F" u2="&#x37;" k="-20" />
732
+ <hkern u1="F" u2="&#x36;" k="102" />
733
+ <hkern u1="F" u2="&#x35;" k="20" />
734
+ <hkern u1="F" u2="&#x34;" k="164" />
735
+ <hkern u1="F" u2="&#x33;" k="51" />
736
+ <hkern u1="F" u2="&#x32;" k="31" />
737
+ <hkern u1="F" u2="&#x30;" k="82" />
738
+ <hkern u1="F" u2="&#x2e;" k="307" />
739
+ <hkern u1="F" u2="&#x2c;" k="307" />
740
+ <hkern u1="F" u2="&#x26;" k="102" />
741
+ <hkern u1="G" u2="&#x178;" k="51" />
742
+ <hkern u1="G" u2="&#xff;" k="31" />
743
+ <hkern u1="G" u2="&#xfd;" k="31" />
744
+ <hkern u1="G" u2="&#xdd;" k="51" />
745
+ <hkern u1="G" u2="&#xc5;" k="61" />
746
+ <hkern u1="G" u2="&#xc4;" k="61" />
747
+ <hkern u1="G" u2="&#xc3;" k="61" />
748
+ <hkern u1="G" u2="&#xc2;" k="61" />
749
+ <hkern u1="G" u2="&#xc1;" k="61" />
750
+ <hkern u1="G" u2="&#xc0;" k="61" />
751
+ <hkern u1="G" u2="y" k="31" />
752
+ <hkern u1="G" u2="x" k="20" />
753
+ <hkern u1="G" u2="w" k="10" />
754
+ <hkern u1="G" u2="v" k="31" />
755
+ <hkern u1="G" u2="s" k="10" />
756
+ <hkern u1="G" u2="Y" k="51" />
757
+ <hkern u1="G" u2="X" k="41" />
758
+ <hkern u1="G" u2="W" k="20" />
759
+ <hkern u1="G" u2="V" k="51" />
760
+ <hkern u1="G" u2="T" k="51" />
761
+ <hkern u1="G" u2="S" k="20" />
762
+ <hkern u1="G" u2="J" k="20" />
763
+ <hkern u1="G" u2="A" k="61" />
764
+ <hkern u1="G" u2="&#x3f;" k="20" />
765
+ <hkern u1="G" u2="&#x33;" k="20" />
766
+ <hkern u1="G" u2="&#x2f;" k="51" />
767
+ <hkern u1="H" u2="J" k="20" />
768
+ <hkern u1="I" u2="J" k="20" />
769
+ <hkern u1="J" u2="X" k="20" />
770
+ <hkern u1="J" u2="&#x2f;" k="143" />
771
+ <hkern u1="K" g2="uniFB02" k="41" />
772
+ <hkern u1="K" g2="uniFB01" k="41" />
773
+ <hkern u1="K" u2="&#x2122;" k="51" />
774
+ <hkern u1="K" u2="&#x178;" k="51" />
775
+ <hkern u1="K" u2="&#x153;" k="41" />
776
+ <hkern u1="K" u2="&#x152;" k="92" />
777
+ <hkern u1="K" u2="&#xff;" k="92" />
778
+ <hkern u1="K" u2="&#xfd;" k="92" />
779
+ <hkern u1="K" u2="&#xfa;" k="20" />
780
+ <hkern u1="K" u2="&#xf8;" k="41" />
781
+ <hkern u1="K" u2="&#xf6;" k="41" />
782
+ <hkern u1="K" u2="&#xf5;" k="41" />
783
+ <hkern u1="K" u2="&#xf4;" k="41" />
784
+ <hkern u1="K" u2="&#xf3;" k="41" />
785
+ <hkern u1="K" u2="&#xf2;" k="41" />
786
+ <hkern u1="K" u2="&#xf0;" k="41" />
787
+ <hkern u1="K" u2="&#xeb;" k="41" />
788
+ <hkern u1="K" u2="&#xea;" k="41" />
789
+ <hkern u1="K" u2="&#xe8;" k="41" />
790
+ <hkern u1="K" u2="&#xe6;" k="31" />
791
+ <hkern u1="K" u2="&#xe5;" k="31" />
792
+ <hkern u1="K" u2="&#xe4;" k="31" />
793
+ <hkern u1="K" u2="&#xe3;" k="31" />
794
+ <hkern u1="K" u2="&#xe2;" k="31" />
795
+ <hkern u1="K" u2="&#xe1;" k="31" />
796
+ <hkern u1="K" u2="&#xe0;" k="31" />
797
+ <hkern u1="K" u2="&#xdd;" k="51" />
798
+ <hkern u1="K" u2="&#xdc;" k="51" />
799
+ <hkern u1="K" u2="&#xdb;" k="51" />
800
+ <hkern u1="K" u2="&#xda;" k="51" />
801
+ <hkern u1="K" u2="&#xd9;" k="51" />
802
+ <hkern u1="K" u2="&#xd8;" k="92" />
803
+ <hkern u1="K" u2="&#xd6;" k="92" />
804
+ <hkern u1="K" u2="&#xd5;" k="92" />
805
+ <hkern u1="K" u2="&#xd4;" k="92" />
806
+ <hkern u1="K" u2="&#xd3;" k="92" />
807
+ <hkern u1="K" u2="&#xd2;" k="92" />
808
+ <hkern u1="K" u2="&#xc7;" k="92" />
809
+ <hkern u1="K" u2="&#xae;" k="92" />
810
+ <hkern u1="K" u2="&#xa9;" k="92" />
811
+ <hkern u1="K" u2="y" k="92" />
812
+ <hkern u1="K" u2="w" k="41" />
813
+ <hkern u1="K" u2="v" k="92" />
814
+ <hkern u1="K" u2="u" k="20" />
815
+ <hkern u1="K" u2="t" k="31" />
816
+ <hkern u1="K" u2="s" k="31" />
817
+ <hkern u1="K" u2="q" k="41" />
818
+ <hkern u1="K" u2="o" k="41" />
819
+ <hkern u1="K" u2="g" k="41" />
820
+ <hkern u1="K" u2="f" k="41" />
821
+ <hkern u1="K" u2="e" k="41" />
822
+ <hkern u1="K" u2="d" k="41" />
823
+ <hkern u1="K" u2="c" k="41" />
824
+ <hkern u1="K" u2="a" k="31" />
825
+ <hkern u1="K" u2="Y" k="51" />
826
+ <hkern u1="K" u2="W" k="20" />
827
+ <hkern u1="K" u2="V" k="51" />
828
+ <hkern u1="K" u2="U" k="51" />
829
+ <hkern u1="K" u2="T" k="61" />
830
+ <hkern u1="K" u2="S" k="51" />
831
+ <hkern u1="K" u2="Q" k="92" />
832
+ <hkern u1="K" u2="O" k="92" />
833
+ <hkern u1="K" u2="J" k="41" />
834
+ <hkern u1="K" u2="G" k="92" />
835
+ <hkern u1="K" u2="C" k="92" />
836
+ <hkern u1="K" u2="&#x40;" k="92" />
837
+ <hkern u1="K" u2="&#x3f;" k="61" />
838
+ <hkern u1="K" u2="&#x39;" k="61" />
839
+ <hkern u1="K" u2="&#x38;" k="31" />
840
+ <hkern u1="K" u2="&#x37;" k="41" />
841
+ <hkern u1="K" u2="&#x36;" k="61" />
842
+ <hkern u1="K" u2="&#x35;" k="20" />
843
+ <hkern u1="K" u2="&#x34;" k="10" />
844
+ <hkern u1="K" u2="&#x33;" k="20" />
845
+ <hkern u1="K" u2="&#x31;" k="20" />
846
+ <hkern u1="K" u2="&#x30;" k="51" />
847
+ <hkern u1="K" u2="&#x26;" k="61" />
848
+ <hkern u1="L" u2="&#x2122;" k="123" />
849
+ <hkern u1="L" u2="&#xc6;" k="-61" />
850
+ <hkern u1="L" u2="\" k="164" />
851
+ <hkern u1="L" u2="J" k="-20" />
852
+ <hkern u1="L" u2="&#x40;" k="31" />
853
+ <hkern u1="L" u2="&#x3f;" k="61" />
854
+ <hkern u1="L" u2="&#x39;" k="20" />
855
+ <hkern u1="L" u2="&#x37;" k="72" />
856
+ <hkern u1="L" u2="&#x30;" k="20" />
857
+ <hkern u1="L" u2="&#x2a;" k="225" />
858
+ <hkern u1="L" u2="&#x20;" k="41" />
859
+ <hkern u1="M" u2="J" k="20" />
860
+ <hkern u1="N" u2="J" k="20" />
861
+ <hkern u1="O" u2="&#x2122;" k="61" />
862
+ <hkern u1="O" u2="x" k="20" />
863
+ <hkern u1="O" u2="X" k="72" />
864
+ <hkern u1="O" u2="J" k="51" />
865
+ <hkern u1="P" u2="&#x2039;" k="82" />
866
+ <hkern u1="P" u2="&#x201e;" k="266" />
867
+ <hkern u1="P" u2="&#x201a;" k="266" />
868
+ <hkern u1="P" u2="&#x178;" k="51" />
869
+ <hkern u1="P" u2="&#x153;" k="61" />
870
+ <hkern u1="P" u2="&#x152;" k="41" />
871
+ <hkern u1="P" u2="&#xf8;" k="61" />
872
+ <hkern u1="P" u2="&#xf6;" k="61" />
873
+ <hkern u1="P" u2="&#xf5;" k="61" />
874
+ <hkern u1="P" u2="&#xf4;" k="61" />
875
+ <hkern u1="P" u2="&#xf3;" k="61" />
876
+ <hkern u1="P" u2="&#xf2;" k="61" />
877
+ <hkern u1="P" u2="&#xf0;" k="61" />
878
+ <hkern u1="P" u2="&#xef;" k="-92" />
879
+ <hkern u1="P" u2="&#xee;" k="-92" />
880
+ <hkern u1="P" u2="&#xec;" k="-92" />
881
+ <hkern u1="P" u2="&#xeb;" k="61" />
882
+ <hkern u1="P" u2="&#xea;" k="61" />
883
+ <hkern u1="P" u2="&#xe8;" k="61" />
884
+ <hkern u1="P" u2="&#xe6;" k="51" />
885
+ <hkern u1="P" u2="&#xe5;" k="51" />
886
+ <hkern u1="P" u2="&#xe4;" k="51" />
887
+ <hkern u1="P" u2="&#xe3;" k="51" />
888
+ <hkern u1="P" u2="&#xe2;" k="51" />
889
+ <hkern u1="P" u2="&#xe1;" k="51" />
890
+ <hkern u1="P" u2="&#xe0;" k="51" />
891
+ <hkern u1="P" u2="&#xdd;" k="51" />
892
+ <hkern u1="P" u2="&#xd8;" k="41" />
893
+ <hkern u1="P" u2="&#xd6;" k="41" />
894
+ <hkern u1="P" u2="&#xd5;" k="41" />
895
+ <hkern u1="P" u2="&#xd4;" k="41" />
896
+ <hkern u1="P" u2="&#xd3;" k="41" />
897
+ <hkern u1="P" u2="&#xd2;" k="41" />
898
+ <hkern u1="P" u2="&#xc7;" k="41" />
899
+ <hkern u1="P" u2="&#xc6;" k="236" />
900
+ <hkern u1="P" u2="&#xc5;" k="184" />
901
+ <hkern u1="P" u2="&#xc4;" k="184" />
902
+ <hkern u1="P" u2="&#xc3;" k="184" />
903
+ <hkern u1="P" u2="&#xc2;" k="184" />
904
+ <hkern u1="P" u2="&#xc1;" k="184" />
905
+ <hkern u1="P" u2="&#xc0;" k="184" />
906
+ <hkern u1="P" u2="&#xae;" k="31" />
907
+ <hkern u1="P" u2="&#xab;" k="82" />
908
+ <hkern u1="P" u2="&#xa9;" k="31" />
909
+ <hkern u1="P" u2="t" k="-20" />
910
+ <hkern u1="P" u2="s" k="10" />
911
+ <hkern u1="P" u2="q" k="61" />
912
+ <hkern u1="P" u2="o" k="61" />
913
+ <hkern u1="P" u2="g" k="61" />
914
+ <hkern u1="P" u2="e" k="61" />
915
+ <hkern u1="P" u2="d" k="61" />
916
+ <hkern u1="P" u2="c" k="61" />
917
+ <hkern u1="P" u2="a" k="51" />
918
+ <hkern u1="P" u2="Z" k="31" />
919
+ <hkern u1="P" u2="Y" k="51" />
920
+ <hkern u1="P" u2="X" k="82" />
921
+ <hkern u1="P" u2="V" k="51" />
922
+ <hkern u1="P" u2="T" k="31" />
923
+ <hkern u1="P" u2="S" k="31" />
924
+ <hkern u1="P" u2="Q" k="41" />
925
+ <hkern u1="P" u2="O" k="41" />
926
+ <hkern u1="P" u2="J" k="246" />
927
+ <hkern u1="P" u2="G" k="41" />
928
+ <hkern u1="P" u2="C" k="41" />
929
+ <hkern u1="P" u2="A" k="184" />
930
+ <hkern u1="P" u2="&#x40;" k="20" />
931
+ <hkern u1="P" u2="&#x38;" k="20" />
932
+ <hkern u1="P" u2="&#x36;" k="51" />
933
+ <hkern u1="P" u2="&#x34;" k="82" />
934
+ <hkern u1="P" u2="&#x33;" k="41" />
935
+ <hkern u1="P" u2="&#x32;" k="20" />
936
+ <hkern u1="P" u2="&#x2e;" k="266" />
937
+ <hkern u1="P" u2="&#x2c;" k="266" />
938
+ <hkern u1="P" u2="&#x29;" k="41" />
939
+ <hkern u1="P" u2="&#x26;" k="102" />
940
+ <hkern u1="Q" u2="&#x2122;" k="61" />
941
+ <hkern u1="Q" u2="x" k="20" />
942
+ <hkern u1="Q" u2="X" k="72" />
943
+ <hkern u1="Q" u2="J" k="51" />
944
+ <hkern u1="R" u2="X" k="41" />
945
+ <hkern u1="R" u2="J" k="41" />
946
+ <hkern u1="R" u2="&#x36;" k="41" />
947
+ <hkern u1="R" u2="&#x34;" k="41" />
948
+ <hkern u1="R" u2="&#x33;" k="41" />
949
+ <hkern u1="R" u2="&#x32;" k="20" />
950
+ <hkern u1="R" u2="&#x30;" k="20" />
951
+ <hkern u1="R" u2="&#x26;" k="51" />
952
+ <hkern u1="S" u2="&#x2122;" k="41" />
953
+ <hkern u1="S" u2="x" k="20" />
954
+ <hkern u1="S" u2="\" k="20" />
955
+ <hkern u1="S" u2="X" k="41" />
956
+ <hkern u1="S" u2="J" k="20" />
957
+ <hkern u1="S" u2="&#x3f;" k="20" />
958
+ <hkern u1="S" u2="&#x37;" k="20" />
959
+ <hkern u1="S" u2="&#x2f;" k="51" />
960
+ <hkern u1="T" u2="&#xc6;" k="184" />
961
+ <hkern u1="T" u2="x" k="61" />
962
+ <hkern u1="T" u2="\" k="-41" />
963
+ <hkern u1="T" u2="X" k="31" />
964
+ <hkern u1="T" u2="J" k="195" />
965
+ <hkern u1="T" u2="&#x40;" k="102" />
966
+ <hkern u1="T" u2="&#x38;" k="61" />
967
+ <hkern u1="T" u2="&#x36;" k="102" />
968
+ <hkern u1="T" u2="&#x34;" k="113" />
969
+ <hkern u1="T" u2="&#x33;" k="31" />
970
+ <hkern u1="T" u2="&#x30;" k="61" />
971
+ <hkern u1="T" u2="&#x2f;" k="225" />
972
+ <hkern u1="T" u2="&#x26;" k="133" />
973
+ <hkern u1="T" u2="&#x20;" k="82" />
974
+ <hkern u1="U" u2="X" k="20" />
975
+ <hkern u1="U" u2="&#x2f;" k="143" />
976
+ <hkern u1="V" u2="&#xc6;" k="256" />
977
+ <hkern u1="V" u2="x" k="92" />
978
+ <hkern u1="V" u2="\" k="-72" />
979
+ <hkern u1="V" u2="X" k="61" />
980
+ <hkern u1="V" u2="J" k="205" />
981
+ <hkern u1="V" u2="&#x3f;" k="41" />
982
+ <hkern u1="V" u2="&#x39;" k="102" />
983
+ <hkern u1="V" u2="&#x38;" k="82" />
984
+ <hkern u1="V" u2="&#x36;" k="102" />
985
+ <hkern u1="V" u2="&#x35;" k="20" />
986
+ <hkern u1="V" u2="&#x34;" k="154" />
987
+ <hkern u1="V" u2="&#x33;" k="51" />
988
+ <hkern u1="V" u2="&#x32;" k="41" />
989
+ <hkern u1="V" u2="&#x30;" k="102" />
990
+ <hkern u1="V" u2="&#x2f;" k="256" />
991
+ <hkern u1="V" u2="&#x26;" k="133" />
992
+ <hkern u1="V" u2="&#x20;" k="82" />
993
+ <hkern u1="W" u2="&#xc6;" k="102" />
994
+ <hkern u1="W" u2="x" k="41" />
995
+ <hkern u1="W" u2="\" k="-20" />
996
+ <hkern u1="W" u2="X" k="41" />
997
+ <hkern u1="W" u2="J" k="82" />
998
+ <hkern u1="W" u2="&#x3f;" k="-31" />
999
+ <hkern u1="W" u2="&#x39;" k="20" />
1000
+ <hkern u1="W" u2="&#x38;" k="20" />
1001
+ <hkern u1="W" u2="&#x36;" k="41" />
1002
+ <hkern u1="W" u2="&#x35;" k="20" />
1003
+ <hkern u1="W" u2="&#x34;" k="61" />
1004
+ <hkern u1="W" u2="&#x33;" k="41" />
1005
+ <hkern u1="W" u2="&#x32;" k="20" />
1006
+ <hkern u1="W" u2="&#x30;" k="41" />
1007
+ <hkern u1="W" u2="&#x2f;" k="164" />
1008
+ <hkern u1="W" u2="&#x20;" k="41" />
1009
+ <hkern u1="X" g2="uniFB02" k="31" />
1010
+ <hkern u1="X" g2="uniFB01" k="31" />
1011
+ <hkern u1="X" u2="&#x2039;" k="82" />
1012
+ <hkern u1="X" u2="&#x201d;" k="20" />
1013
+ <hkern u1="X" u2="&#x201c;" k="20" />
1014
+ <hkern u1="X" u2="&#x2019;" k="20" />
1015
+ <hkern u1="X" u2="&#x2018;" k="20" />
1016
+ <hkern u1="X" u2="&#x2014;" k="61" />
1017
+ <hkern u1="X" u2="&#x2013;" k="61" />
1018
+ <hkern u1="X" u2="&#x178;" k="61" />
1019
+ <hkern u1="X" u2="&#x153;" k="61" />
1020
+ <hkern u1="X" u2="&#x152;" k="72" />
1021
+ <hkern u1="X" u2="&#xff;" k="61" />
1022
+ <hkern u1="X" u2="&#xfd;" k="61" />
1023
+ <hkern u1="X" u2="&#xfa;" k="20" />
1024
+ <hkern u1="X" u2="&#xf8;" k="61" />
1025
+ <hkern u1="X" u2="&#xf6;" k="61" />
1026
+ <hkern u1="X" u2="&#xf5;" k="61" />
1027
+ <hkern u1="X" u2="&#xf4;" k="61" />
1028
+ <hkern u1="X" u2="&#xf3;" k="61" />
1029
+ <hkern u1="X" u2="&#xf2;" k="61" />
1030
+ <hkern u1="X" u2="&#xf0;" k="61" />
1031
+ <hkern u1="X" u2="&#xeb;" k="61" />
1032
+ <hkern u1="X" u2="&#xea;" k="61" />
1033
+ <hkern u1="X" u2="&#xe8;" k="61" />
1034
+ <hkern u1="X" u2="&#xe6;" k="41" />
1035
+ <hkern u1="X" u2="&#xe5;" k="41" />
1036
+ <hkern u1="X" u2="&#xe4;" k="41" />
1037
+ <hkern u1="X" u2="&#xe3;" k="41" />
1038
+ <hkern u1="X" u2="&#xe2;" k="41" />
1039
+ <hkern u1="X" u2="&#xe1;" k="41" />
1040
+ <hkern u1="X" u2="&#xe0;" k="41" />
1041
+ <hkern u1="X" u2="&#xdd;" k="61" />
1042
+ <hkern u1="X" u2="&#xdc;" k="20" />
1043
+ <hkern u1="X" u2="&#xdb;" k="20" />
1044
+ <hkern u1="X" u2="&#xda;" k="20" />
1045
+ <hkern u1="X" u2="&#xd9;" k="20" />
1046
+ <hkern u1="X" u2="&#xd8;" k="72" />
1047
+ <hkern u1="X" u2="&#xd6;" k="72" />
1048
+ <hkern u1="X" u2="&#xd5;" k="72" />
1049
+ <hkern u1="X" u2="&#xd4;" k="72" />
1050
+ <hkern u1="X" u2="&#xd3;" k="72" />
1051
+ <hkern u1="X" u2="&#xd2;" k="72" />
1052
+ <hkern u1="X" u2="&#xc7;" k="72" />
1053
+ <hkern u1="X" u2="&#xc5;" k="31" />
1054
+ <hkern u1="X" u2="&#xc4;" k="31" />
1055
+ <hkern u1="X" u2="&#xc3;" k="31" />
1056
+ <hkern u1="X" u2="&#xc2;" k="31" />
1057
+ <hkern u1="X" u2="&#xc1;" k="31" />
1058
+ <hkern u1="X" u2="&#xc0;" k="31" />
1059
+ <hkern u1="X" u2="&#xae;" k="82" />
1060
+ <hkern u1="X" u2="&#xab;" k="82" />
1061
+ <hkern u1="X" u2="&#xa9;" k="82" />
1062
+ <hkern u1="X" u2="y" k="61" />
1063
+ <hkern u1="X" u2="w" k="51" />
1064
+ <hkern u1="X" u2="v" k="61" />
1065
+ <hkern u1="X" u2="u" k="20" />
1066
+ <hkern u1="X" u2="t" k="20" />
1067
+ <hkern u1="X" u2="s" k="61" />
1068
+ <hkern u1="X" u2="q" k="61" />
1069
+ <hkern u1="X" u2="o" k="61" />
1070
+ <hkern u1="X" u2="g" k="61" />
1071
+ <hkern u1="X" u2="f" k="31" />
1072
+ <hkern u1="X" u2="e" k="61" />
1073
+ <hkern u1="X" u2="d" k="61" />
1074
+ <hkern u1="X" u2="c" k="61" />
1075
+ <hkern u1="X" u2="a" k="41" />
1076
+ <hkern u1="X" u2="Y" k="61" />
1077
+ <hkern u1="X" u2="W" k="41" />
1078
+ <hkern u1="X" u2="V" k="61" />
1079
+ <hkern u1="X" u2="U" k="20" />
1080
+ <hkern u1="X" u2="T" k="31" />
1081
+ <hkern u1="X" u2="S" k="31" />
1082
+ <hkern u1="X" u2="Q" k="72" />
1083
+ <hkern u1="X" u2="O" k="72" />
1084
+ <hkern u1="X" u2="J" k="61" />
1085
+ <hkern u1="X" u2="G" k="72" />
1086
+ <hkern u1="X" u2="C" k="72" />
1087
+ <hkern u1="X" u2="A" k="31" />
1088
+ <hkern u1="X" u2="&#x40;" k="92" />
1089
+ <hkern u1="X" u2="&#x3f;" k="41" />
1090
+ <hkern u1="X" u2="&#x39;" k="61" />
1091
+ <hkern u1="X" u2="&#x38;" k="41" />
1092
+ <hkern u1="X" u2="&#x36;" k="61" />
1093
+ <hkern u1="X" u2="&#x34;" k="20" />
1094
+ <hkern u1="X" u2="&#x33;" k="41" />
1095
+ <hkern u1="X" u2="&#x30;" k="61" />
1096
+ <hkern u1="X" u2="&#x2d;" k="61" />
1097
+ <hkern u1="X" u2="&#x26;" k="82" />
1098
+ <hkern u1="Y" u2="&#xc6;" k="256" />
1099
+ <hkern u1="Y" u2="x" k="92" />
1100
+ <hkern u1="Y" u2="\" k="-72" />
1101
+ <hkern u1="Y" u2="X" k="61" />
1102
+ <hkern u1="Y" u2="J" k="205" />
1103
+ <hkern u1="Y" u2="&#x3f;" k="41" />
1104
+ <hkern u1="Y" u2="&#x39;" k="102" />
1105
+ <hkern u1="Y" u2="&#x38;" k="82" />
1106
+ <hkern u1="Y" u2="&#x36;" k="102" />
1107
+ <hkern u1="Y" u2="&#x35;" k="20" />
1108
+ <hkern u1="Y" u2="&#x34;" k="154" />
1109
+ <hkern u1="Y" u2="&#x33;" k="51" />
1110
+ <hkern u1="Y" u2="&#x32;" k="41" />
1111
+ <hkern u1="Y" u2="&#x30;" k="102" />
1112
+ <hkern u1="Y" u2="&#x2f;" k="256" />
1113
+ <hkern u1="Y" u2="&#x26;" k="133" />
1114
+ <hkern u1="Y" u2="&#x20;" k="82" />
1115
+ <hkern u1="Z" u2="\" k="-51" />
1116
+ <hkern u1="Z" u2="&#x40;" k="51" />
1117
+ <hkern u1="Z" u2="&#x38;" k="20" />
1118
+ <hkern u1="Z" u2="&#x36;" k="20" />
1119
+ <hkern u1="[" u2="j" k="-123" />
1120
+ <hkern u1="[" u2="J" k="82" />
1121
+ <hkern u1="\" u2="&#x178;" k="246" />
1122
+ <hkern u1="\" u2="&#xff;" k="143" />
1123
+ <hkern u1="\" u2="&#xfe;" k="102" />
1124
+ <hkern u1="\" u2="&#xfd;" k="143" />
1125
+ <hkern u1="\" u2="&#xfa;" k="82" />
1126
+ <hkern u1="\" u2="&#xed;" k="102" />
1127
+ <hkern u1="\" u2="&#xe6;" k="61" />
1128
+ <hkern u1="\" u2="&#xe1;" k="61" />
1129
+ <hkern u1="\" u2="&#xdf;" k="102" />
1130
+ <hkern u1="\" u2="&#xdd;" k="246" />
1131
+ <hkern u1="\" u2="&#xdc;" k="143" />
1132
+ <hkern u1="\" u2="&#xdb;" k="143" />
1133
+ <hkern u1="\" u2="&#xda;" k="143" />
1134
+ <hkern u1="\" u2="&#xd9;" k="143" />
1135
+ <hkern u1="\" u2="&#x7c;" k="102" />
1136
+ <hkern u1="\" u2="y" k="143" />
1137
+ <hkern u1="\" u2="x" k="20" />
1138
+ <hkern u1="\" u2="v" k="143" />
1139
+ <hkern u1="\" u2="u" k="82" />
1140
+ <hkern u1="\" u2="t" k="82" />
1141
+ <hkern u1="\" u2="l" k="102" />
1142
+ <hkern u1="\" u2="k" k="102" />
1143
+ <hkern u1="\" u2="j" k="-205" />
1144
+ <hkern u1="\" u2="i" k="102" />
1145
+ <hkern u1="\" u2="h" k="102" />
1146
+ <hkern u1="\" u2="b" k="102" />
1147
+ <hkern u1="\" u2="a" k="61" />
1148
+ <hkern u1="\" u2="[" k="102" />
1149
+ <hkern u1="\" u2="Y" k="246" />
1150
+ <hkern u1="\" u2="X" k="51" />
1151
+ <hkern u1="\" u2="W" k="164" />
1152
+ <hkern u1="\" u2="V" k="246" />
1153
+ <hkern u1="\" u2="U" k="143" />
1154
+ <hkern u1="\" u2="T" k="225" />
1155
+ <hkern u1="\" u2="S" k="113" />
1156
+ <hkern u1="\" u2="J" k="61" />
1157
+ <hkern u1="]" u2="j" k="-82" />
1158
+ <hkern u1="_" u2="j" k="-246" />
1159
+ <hkern u1="a" u2="&#x2122;" k="41" />
1160
+ <hkern u1="a" u2="\" k="92" />
1161
+ <hkern u1="a" u2="&#x37;" k="61" />
1162
+ <hkern u1="b" u2="&#x2122;" k="102" />
1163
+ <hkern u1="b" u2="x" k="72" />
1164
+ <hkern u1="b" u2="\" k="61" />
1165
+ <hkern u1="b" u2="X" k="61" />
1166
+ <hkern u1="b" u2="&#x39;" k="20" />
1167
+ <hkern u1="b" u2="&#x37;" k="102" />
1168
+ <hkern u1="b" u2="&#x35;" k="20" />
1169
+ <hkern u1="b" u2="&#x2a;" k="102" />
1170
+ <hkern u1="c" u2="&#x2122;" k="61" />
1171
+ <hkern u1="c" u2="x" k="72" />
1172
+ <hkern u1="c" u2="\" k="102" />
1173
+ <hkern u1="c" u2="X" k="61" />
1174
+ <hkern u1="c" u2="&#x2f;" k="82" />
1175
+ <hkern u1="e" u2="x" k="61" />
1176
+ <hkern u1="e" u2="\" k="92" />
1177
+ <hkern u1="e" u2="X" k="61" />
1178
+ <hkern u1="e" u2="&#x2f;" k="102" />
1179
+ <hkern u1="e" u2="&#x2a;" k="102" />
1180
+ <hkern u1="f" g2="uniFB02" k="-51" />
1181
+ <hkern u1="f" g2="uniFB01" k="-51" />
1182
+ <hkern u1="f" u2="&#x2122;" k="-72" />
1183
+ <hkern u1="f" u2="&#x203a;" k="-31" />
1184
+ <hkern u1="f" u2="&#x201e;" k="41" />
1185
+ <hkern u1="f" u2="&#x201d;" k="-51" />
1186
+ <hkern u1="f" u2="&#x201c;" k="-51" />
1187
+ <hkern u1="f" u2="&#x201a;" k="41" />
1188
+ <hkern u1="f" u2="&#x2019;" k="-51" />
1189
+ <hkern u1="f" u2="&#x2018;" k="-51" />
1190
+ <hkern u1="f" u2="&#x178;" k="-82" />
1191
+ <hkern u1="f" u2="&#x153;" k="51" />
1192
+ <hkern u1="f" u2="&#xff;" k="-82" />
1193
+ <hkern u1="f" u2="&#xfd;" k="-82" />
1194
+ <hkern u1="f" u2="&#xf8;" k="51" />
1195
+ <hkern u1="f" u2="&#xf3;" k="51" />
1196
+ <hkern u1="f" u2="&#xef;" k="-133" />
1197
+ <hkern u1="f" u2="&#xee;" k="-133" />
1198
+ <hkern u1="f" u2="&#xec;" k="-133" />
1199
+ <hkern u1="f" u2="&#xdd;" k="-82" />
1200
+ <hkern u1="f" u2="&#xbb;" k="-72" />
1201
+ <hkern u1="f" u2="&#xb6;" k="-72" />
1202
+ <hkern u1="f" u2="z" k="-20" />
1203
+ <hkern u1="f" u2="y" k="-82" />
1204
+ <hkern u1="f" u2="x" k="-20" />
1205
+ <hkern u1="f" u2="w" k="-82" />
1206
+ <hkern u1="f" u2="v" k="-82" />
1207
+ <hkern u1="f" u2="t" k="-31" />
1208
+ <hkern u1="f" u2="q" k="51" />
1209
+ <hkern u1="f" u2="o" k="51" />
1210
+ <hkern u1="f" u2="g" k="51" />
1211
+ <hkern u1="f" u2="f" k="-51" />
1212
+ <hkern u1="f" u2="e" k="51" />
1213
+ <hkern u1="f" u2="d" k="51" />
1214
+ <hkern u1="f" u2="c" k="51" />
1215
+ <hkern u1="f" u2="\" k="-123" />
1216
+ <hkern u1="f" u2="Z" k="-20" />
1217
+ <hkern u1="f" u2="Y" k="-82" />
1218
+ <hkern u1="f" u2="V" k="-82" />
1219
+ <hkern u1="f" u2="T" k="-102" />
1220
+ <hkern u1="f" u2="&#x3f;" k="-102" />
1221
+ <hkern u1="f" u2="&#x2e;" k="41" />
1222
+ <hkern u1="f" u2="&#x2c;" k="41" />
1223
+ <hkern u1="f" u2="&#x2a;" k="-20" />
1224
+ <hkern u1="f" u2="&#x29;" k="-20" />
1225
+ <hkern u1="g" u2="j" k="-72" />
1226
+ <hkern u1="g" u2="&#x37;" k="102" />
1227
+ <hkern u1="h" u2="&#x2122;" k="41" />
1228
+ <hkern u1="h" u2="\" k="92" />
1229
+ <hkern u1="h" u2="&#x37;" k="61" />
1230
+ <hkern u1="k" u2="&#x2122;" k="102" />
1231
+ <hkern u1="k" u2="\" k="82" />
1232
+ <hkern u1="k" u2="&#x40;" k="72" />
1233
+ <hkern u1="k" u2="&#x39;" k="41" />
1234
+ <hkern u1="k" u2="&#x38;" k="41" />
1235
+ <hkern u1="k" u2="&#x37;" k="61" />
1236
+ <hkern u1="k" u2="&#x36;" k="41" />
1237
+ <hkern u1="k" u2="&#x35;" k="41" />
1238
+ <hkern u1="k" u2="&#x33;" k="41" />
1239
+ <hkern u1="k" u2="&#x30;" k="41" />
1240
+ <hkern u1="k" u2="&#x2a;" k="82" />
1241
+ <hkern u1="k" u2="&#x26;" k="82" />
1242
+ <hkern u1="m" u2="&#x2122;" k="41" />
1243
+ <hkern u1="m" u2="\" k="92" />
1244
+ <hkern u1="m" u2="&#x37;" k="61" />
1245
+ <hkern u1="n" u2="&#x2122;" k="41" />
1246
+ <hkern u1="n" u2="\" k="92" />
1247
+ <hkern u1="n" u2="&#x37;" k="61" />
1248
+ <hkern u1="o" u2="&#x2122;" k="102" />
1249
+ <hkern u1="o" u2="x" k="72" />
1250
+ <hkern u1="o" u2="\" k="61" />
1251
+ <hkern u1="o" u2="X" k="61" />
1252
+ <hkern u1="o" u2="&#x39;" k="20" />
1253
+ <hkern u1="o" u2="&#x37;" k="102" />
1254
+ <hkern u1="o" u2="&#x35;" k="20" />
1255
+ <hkern u1="o" u2="&#x2a;" k="102" />
1256
+ <hkern u1="p" u2="&#x2122;" k="102" />
1257
+ <hkern u1="p" u2="x" k="72" />
1258
+ <hkern u1="p" u2="\" k="61" />
1259
+ <hkern u1="p" u2="X" k="61" />
1260
+ <hkern u1="p" u2="&#x39;" k="20" />
1261
+ <hkern u1="p" u2="&#x37;" k="102" />
1262
+ <hkern u1="p" u2="&#x35;" k="20" />
1263
+ <hkern u1="p" u2="&#x2a;" k="102" />
1264
+ <hkern u1="q" u2="j" k="-102" />
1265
+ <hkern u1="q" u2="&#x37;" k="102" />
1266
+ <hkern u1="r" u2="x" k="20" />
1267
+ <hkern u1="r" u2="X" k="72" />
1268
+ <hkern u1="r" u2="J" k="102" />
1269
+ <hkern u1="r" u2="&#x40;" k="41" />
1270
+ <hkern u1="r" u2="&#x38;" k="20" />
1271
+ <hkern u1="r" u2="&#x37;" k="61" />
1272
+ <hkern u1="r" u2="&#x33;" k="61" />
1273
+ <hkern u1="r" u2="&#x32;" k="61" />
1274
+ <hkern u1="r" u2="&#x26;" k="102" />
1275
+ <hkern u1="s" u2="&#x2122;" k="82" />
1276
+ <hkern u1="s" u2="&#xe9;" k="20" />
1277
+ <hkern u1="s" u2="&#xe7;" k="20" />
1278
+ <hkern u1="s" u2="x" k="41" />
1279
+ <hkern u1="s" u2="\" k="82" />
1280
+ <hkern u1="s" u2="X" k="61" />
1281
+ <hkern u1="s" u2="&#x3f;" k="20" />
1282
+ <hkern u1="s" u2="&#x39;" k="61" />
1283
+ <hkern u1="s" u2="&#x37;" k="102" />
1284
+ <hkern u1="s" u2="&#x34;" k="-20" />
1285
+ <hkern u1="s" u2="&#x32;" k="20" />
1286
+ <hkern u1="s" u2="&#x30;" k="41" />
1287
+ <hkern u1="s" u2="&#x2a;" k="51" />
1288
+ <hkern u1="t" u2="&#xe9;" k="20" />
1289
+ <hkern u1="t" u2="&#xe7;" k="20" />
1290
+ <hkern u1="t" u2="X" k="20" />
1291
+ <hkern u1="u" u2="&#x37;" k="102" />
1292
+ <hkern u1="v" u2="&#x2122;" k="61" />
1293
+ <hkern u1="v" u2="&#xe9;" k="41" />
1294
+ <hkern u1="v" u2="&#xe7;" k="41" />
1295
+ <hkern u1="v" u2="X" k="61" />
1296
+ <hkern u1="v" u2="J" k="51" />
1297
+ <hkern u1="v" u2="&#x3f;" k="-41" />
1298
+ <hkern u1="v" u2="&#x38;" k="20" />
1299
+ <hkern u1="v" u2="&#x37;" k="82" />
1300
+ <hkern u1="v" u2="&#x35;" k="41" />
1301
+ <hkern u1="v" u2="&#x34;" k="41" />
1302
+ <hkern u1="v" u2="&#x33;" k="41" />
1303
+ <hkern u1="v" u2="&#x32;" k="41" />
1304
+ <hkern u1="v" u2="&#x2f;" k="102" />
1305
+ <hkern u1="v" u2="&#x26;" k="51" />
1306
+ <hkern u1="w" u2="&#xe9;" k="20" />
1307
+ <hkern u1="w" u2="&#xe7;" k="20" />
1308
+ <hkern u1="w" u2="x" k="31" />
1309
+ <hkern u1="w" u2="X" k="51" />
1310
+ <hkern u1="w" u2="J" k="20" />
1311
+ <hkern u1="w" u2="&#x40;" k="20" />
1312
+ <hkern u1="w" u2="&#x38;" k="20" />
1313
+ <hkern u1="w" u2="&#x37;" k="82" />
1314
+ <hkern u1="w" u2="&#x36;" k="20" />
1315
+ <hkern u1="w" u2="&#x35;" k="20" />
1316
+ <hkern u1="w" u2="&#x34;" k="41" />
1317
+ <hkern u1="w" u2="&#x33;" k="41" />
1318
+ <hkern u1="w" u2="&#x32;" k="41" />
1319
+ <hkern u1="w" u2="&#x30;" k="20" />
1320
+ <hkern u1="w" u2="&#x26;" k="41" />
1321
+ <hkern u1="x" u2="&#x2122;" k="102" />
1322
+ <hkern u1="x" u2="\" k="82" />
1323
+ <hkern u1="x" u2="&#x40;" k="72" />
1324
+ <hkern u1="x" u2="&#x39;" k="41" />
1325
+ <hkern u1="x" u2="&#x38;" k="41" />
1326
+ <hkern u1="x" u2="&#x37;" k="61" />
1327
+ <hkern u1="x" u2="&#x36;" k="41" />
1328
+ <hkern u1="x" u2="&#x35;" k="41" />
1329
+ <hkern u1="x" u2="&#x33;" k="41" />
1330
+ <hkern u1="x" u2="&#x30;" k="41" />
1331
+ <hkern u1="x" u2="&#x2a;" k="82" />
1332
+ <hkern u1="x" u2="&#x26;" k="82" />
1333
+ <hkern u1="y" u2="&#x2122;" k="61" />
1334
+ <hkern u1="y" u2="&#xe9;" k="41" />
1335
+ <hkern u1="y" u2="&#xe7;" k="41" />
1336
+ <hkern u1="y" u2="X" k="61" />
1337
+ <hkern u1="y" u2="J" k="51" />
1338
+ <hkern u1="y" u2="&#x3f;" k="-41" />
1339
+ <hkern u1="y" u2="&#x38;" k="20" />
1340
+ <hkern u1="y" u2="&#x37;" k="82" />
1341
+ <hkern u1="y" u2="&#x35;" k="41" />
1342
+ <hkern u1="y" u2="&#x34;" k="41" />
1343
+ <hkern u1="y" u2="&#x33;" k="41" />
1344
+ <hkern u1="y" u2="&#x32;" k="41" />
1345
+ <hkern u1="y" u2="&#x2f;" k="102" />
1346
+ <hkern u1="y" u2="&#x26;" k="51" />
1347
+ <hkern u1="z" u2="&#xe9;" k="20" />
1348
+ <hkern u1="z" u2="&#xe7;" k="20" />
1349
+ <hkern u1="&#x7b;" u2="j" k="-123" />
1350
+ <hkern u1="&#x7b;" u2="J" k="82" />
1351
+ <hkern u1="&#xa1;" u2="j" k="-102" />
1352
+ <hkern u1="&#xa1;" u2="W" k="41" />
1353
+ <hkern u1="&#xa9;" u2="x" k="61" />
1354
+ <hkern u1="&#xa9;" u2="X" k="82" />
1355
+ <hkern u1="&#xae;" u2="x" k="61" />
1356
+ <hkern u1="&#xae;" u2="X" k="82" />
1357
+ <hkern u1="&#xb5;" u2="&#x37;" k="102" />
1358
+ <hkern u1="&#xbb;" u2="x" k="82" />
1359
+ <hkern u1="&#xbb;" u2="X" k="82" />
1360
+ <hkern u1="&#xbf;" g2="uniFB02" k="41" />
1361
+ <hkern u1="&#xbf;" g2="uniFB01" k="41" />
1362
+ <hkern u1="&#xbf;" u2="&#x178;" k="307" />
1363
+ <hkern u1="&#xbf;" u2="&#x153;" k="72" />
1364
+ <hkern u1="&#xbf;" u2="&#x152;" k="82" />
1365
+ <hkern u1="&#xbf;" u2="&#xff;" k="92" />
1366
+ <hkern u1="&#xbf;" u2="&#xfd;" k="92" />
1367
+ <hkern u1="&#xbf;" u2="&#xf8;" k="72" />
1368
+ <hkern u1="&#xbf;" u2="&#xf3;" k="72" />
1369
+ <hkern u1="&#xbf;" u2="&#xdd;" k="307" />
1370
+ <hkern u1="&#xbf;" u2="&#xdc;" k="51" />
1371
+ <hkern u1="&#xbf;" u2="&#xdb;" k="51" />
1372
+ <hkern u1="&#xbf;" u2="&#xda;" k="51" />
1373
+ <hkern u1="&#xbf;" u2="&#xd9;" k="51" />
1374
+ <hkern u1="&#xbf;" u2="&#xd8;" k="82" />
1375
+ <hkern u1="&#xbf;" u2="&#xd6;" k="82" />
1376
+ <hkern u1="&#xbf;" u2="&#xd5;" k="82" />
1377
+ <hkern u1="&#xbf;" u2="&#xd4;" k="82" />
1378
+ <hkern u1="&#xbf;" u2="&#xd3;" k="82" />
1379
+ <hkern u1="&#xbf;" u2="&#xd2;" k="82" />
1380
+ <hkern u1="&#xbf;" u2="&#xc7;" k="82" />
1381
+ <hkern u1="&#xbf;" u2="y" k="92" />
1382
+ <hkern u1="&#xbf;" u2="w" k="82" />
1383
+ <hkern u1="&#xbf;" u2="v" k="92" />
1384
+ <hkern u1="&#xbf;" u2="q" k="72" />
1385
+ <hkern u1="&#xbf;" u2="o" k="72" />
1386
+ <hkern u1="&#xbf;" u2="j" k="-102" />
1387
+ <hkern u1="&#xbf;" u2="g" k="72" />
1388
+ <hkern u1="&#xbf;" u2="f" k="41" />
1389
+ <hkern u1="&#xbf;" u2="e" k="72" />
1390
+ <hkern u1="&#xbf;" u2="d" k="72" />
1391
+ <hkern u1="&#xbf;" u2="c" k="72" />
1392
+ <hkern u1="&#xbf;" u2="Y" k="307" />
1393
+ <hkern u1="&#xbf;" u2="W" k="123" />
1394
+ <hkern u1="&#xbf;" u2="V" k="307" />
1395
+ <hkern u1="&#xbf;" u2="U" k="51" />
1396
+ <hkern u1="&#xbf;" u2="S" k="41" />
1397
+ <hkern u1="&#xbf;" u2="Q" k="82" />
1398
+ <hkern u1="&#xbf;" u2="O" k="82" />
1399
+ <hkern u1="&#xbf;" u2="G" k="82" />
1400
+ <hkern u1="&#xbf;" u2="C" k="82" />
1401
+ <hkern u1="&#xc0;" u2="&#x2122;" k="154" />
1402
+ <hkern u1="&#xc0;" u2="\" k="164" />
1403
+ <hkern u1="&#xc0;" u2="X" k="31" />
1404
+ <hkern u1="&#xc0;" u2="J" k="-20" />
1405
+ <hkern u1="&#xc0;" u2="&#x40;" k="92" />
1406
+ <hkern u1="&#xc0;" u2="&#x39;" k="61" />
1407
+ <hkern u1="&#xc0;" u2="&#x38;" k="20" />
1408
+ <hkern u1="&#xc0;" u2="&#x37;" k="123" />
1409
+ <hkern u1="&#xc0;" u2="&#x36;" k="41" />
1410
+ <hkern u1="&#xc0;" u2="&#x35;" k="20" />
1411
+ <hkern u1="&#xc0;" u2="&#x31;" k="20" />
1412
+ <hkern u1="&#xc0;" u2="&#x30;" k="61" />
1413
+ <hkern u1="&#xc0;" u2="&#x2a;" k="184" />
1414
+ <hkern u1="&#xc0;" u2="&#x29;" k="41" />
1415
+ <hkern u1="&#xc0;" u2="&#x26;" k="31" />
1416
+ <hkern u1="&#xc0;" u2="&#x20;" k="82" />
1417
+ <hkern u1="&#xc1;" u2="&#x2122;" k="154" />
1418
+ <hkern u1="&#xc1;" u2="\" k="164" />
1419
+ <hkern u1="&#xc1;" u2="X" k="31" />
1420
+ <hkern u1="&#xc1;" u2="J" k="-20" />
1421
+ <hkern u1="&#xc1;" u2="&#x40;" k="92" />
1422
+ <hkern u1="&#xc1;" u2="&#x39;" k="61" />
1423
+ <hkern u1="&#xc1;" u2="&#x38;" k="20" />
1424
+ <hkern u1="&#xc1;" u2="&#x37;" k="123" />
1425
+ <hkern u1="&#xc1;" u2="&#x36;" k="41" />
1426
+ <hkern u1="&#xc1;" u2="&#x35;" k="20" />
1427
+ <hkern u1="&#xc1;" u2="&#x31;" k="20" />
1428
+ <hkern u1="&#xc1;" u2="&#x30;" k="61" />
1429
+ <hkern u1="&#xc1;" u2="&#x2a;" k="184" />
1430
+ <hkern u1="&#xc1;" u2="&#x29;" k="41" />
1431
+ <hkern u1="&#xc1;" u2="&#x26;" k="31" />
1432
+ <hkern u1="&#xc1;" u2="&#x20;" k="82" />
1433
+ <hkern u1="&#xc2;" u2="&#x2122;" k="154" />
1434
+ <hkern u1="&#xc2;" u2="\" k="164" />
1435
+ <hkern u1="&#xc2;" u2="X" k="31" />
1436
+ <hkern u1="&#xc2;" u2="J" k="-20" />
1437
+ <hkern u1="&#xc2;" u2="&#x40;" k="92" />
1438
+ <hkern u1="&#xc2;" u2="&#x39;" k="61" />
1439
+ <hkern u1="&#xc2;" u2="&#x38;" k="20" />
1440
+ <hkern u1="&#xc2;" u2="&#x37;" k="123" />
1441
+ <hkern u1="&#xc2;" u2="&#x36;" k="41" />
1442
+ <hkern u1="&#xc2;" u2="&#x35;" k="20" />
1443
+ <hkern u1="&#xc2;" u2="&#x31;" k="20" />
1444
+ <hkern u1="&#xc2;" u2="&#x30;" k="61" />
1445
+ <hkern u1="&#xc2;" u2="&#x2a;" k="184" />
1446
+ <hkern u1="&#xc2;" u2="&#x29;" k="41" />
1447
+ <hkern u1="&#xc2;" u2="&#x26;" k="31" />
1448
+ <hkern u1="&#xc2;" u2="&#x20;" k="82" />
1449
+ <hkern u1="&#xc3;" u2="&#x2122;" k="154" />
1450
+ <hkern u1="&#xc3;" u2="\" k="164" />
1451
+ <hkern u1="&#xc3;" u2="X" k="31" />
1452
+ <hkern u1="&#xc3;" u2="J" k="-20" />
1453
+ <hkern u1="&#xc3;" u2="&#x40;" k="92" />
1454
+ <hkern u1="&#xc3;" u2="&#x39;" k="61" />
1455
+ <hkern u1="&#xc3;" u2="&#x38;" k="20" />
1456
+ <hkern u1="&#xc3;" u2="&#x37;" k="123" />
1457
+ <hkern u1="&#xc3;" u2="&#x36;" k="41" />
1458
+ <hkern u1="&#xc3;" u2="&#x35;" k="20" />
1459
+ <hkern u1="&#xc3;" u2="&#x31;" k="20" />
1460
+ <hkern u1="&#xc3;" u2="&#x30;" k="61" />
1461
+ <hkern u1="&#xc3;" u2="&#x2a;" k="184" />
1462
+ <hkern u1="&#xc3;" u2="&#x29;" k="41" />
1463
+ <hkern u1="&#xc3;" u2="&#x26;" k="31" />
1464
+ <hkern u1="&#xc3;" u2="&#x20;" k="82" />
1465
+ <hkern u1="&#xc4;" u2="&#x2122;" k="154" />
1466
+ <hkern u1="&#xc4;" u2="\" k="164" />
1467
+ <hkern u1="&#xc4;" u2="X" k="31" />
1468
+ <hkern u1="&#xc4;" u2="J" k="-20" />
1469
+ <hkern u1="&#xc4;" u2="&#x40;" k="92" />
1470
+ <hkern u1="&#xc4;" u2="&#x39;" k="61" />
1471
+ <hkern u1="&#xc4;" u2="&#x38;" k="20" />
1472
+ <hkern u1="&#xc4;" u2="&#x37;" k="123" />
1473
+ <hkern u1="&#xc4;" u2="&#x36;" k="41" />
1474
+ <hkern u1="&#xc4;" u2="&#x35;" k="20" />
1475
+ <hkern u1="&#xc4;" u2="&#x31;" k="20" />
1476
+ <hkern u1="&#xc4;" u2="&#x30;" k="61" />
1477
+ <hkern u1="&#xc4;" u2="&#x2a;" k="184" />
1478
+ <hkern u1="&#xc4;" u2="&#x29;" k="41" />
1479
+ <hkern u1="&#xc4;" u2="&#x26;" k="31" />
1480
+ <hkern u1="&#xc4;" u2="&#x20;" k="82" />
1481
+ <hkern u1="&#xc5;" u2="&#x2122;" k="154" />
1482
+ <hkern u1="&#xc5;" u2="\" k="164" />
1483
+ <hkern u1="&#xc5;" u2="X" k="31" />
1484
+ <hkern u1="&#xc5;" u2="J" k="-20" />
1485
+ <hkern u1="&#xc5;" u2="&#x40;" k="92" />
1486
+ <hkern u1="&#xc5;" u2="&#x39;" k="61" />
1487
+ <hkern u1="&#xc5;" u2="&#x38;" k="20" />
1488
+ <hkern u1="&#xc5;" u2="&#x37;" k="123" />
1489
+ <hkern u1="&#xc5;" u2="&#x36;" k="41" />
1490
+ <hkern u1="&#xc5;" u2="&#x35;" k="20" />
1491
+ <hkern u1="&#xc5;" u2="&#x31;" k="20" />
1492
+ <hkern u1="&#xc5;" u2="&#x30;" k="61" />
1493
+ <hkern u1="&#xc5;" u2="&#x2a;" k="184" />
1494
+ <hkern u1="&#xc5;" u2="&#x29;" k="41" />
1495
+ <hkern u1="&#xc5;" u2="&#x26;" k="31" />
1496
+ <hkern u1="&#xc5;" u2="&#x20;" k="82" />
1497
+ <hkern u1="&#xc6;" u2="J" k="20" />
1498
+ <hkern u1="&#xc6;" u2="&#x40;" k="61" />
1499
+ <hkern u1="&#xc6;" u2="&#x26;" k="20" />
1500
+ <hkern u1="&#xc7;" u2="x" k="41" />
1501
+ <hkern u1="&#xc7;" u2="X" k="31" />
1502
+ <hkern u1="&#xc7;" u2="J" k="41" />
1503
+ <hkern u1="&#xc7;" u2="&#x40;" k="20" />
1504
+ <hkern u1="&#xc7;" u2="&#x2f;" k="41" />
1505
+ <hkern u1="&#xc8;" u2="J" k="20" />
1506
+ <hkern u1="&#xc8;" u2="&#x40;" k="61" />
1507
+ <hkern u1="&#xc8;" u2="&#x26;" k="20" />
1508
+ <hkern u1="&#xc9;" u2="J" k="20" />
1509
+ <hkern u1="&#xc9;" u2="&#x40;" k="61" />
1510
+ <hkern u1="&#xc9;" u2="&#x26;" k="20" />
1511
+ <hkern u1="&#xca;" u2="J" k="20" />
1512
+ <hkern u1="&#xca;" u2="&#x40;" k="61" />
1513
+ <hkern u1="&#xca;" u2="&#x26;" k="20" />
1514
+ <hkern u1="&#xcb;" u2="J" k="20" />
1515
+ <hkern u1="&#xcb;" u2="&#x40;" k="61" />
1516
+ <hkern u1="&#xcb;" u2="&#x26;" k="20" />
1517
+ <hkern u1="&#xcc;" u2="J" k="20" />
1518
+ <hkern u1="&#xcd;" u2="J" k="20" />
1519
+ <hkern u1="&#xce;" u2="J" k="20" />
1520
+ <hkern u1="&#xcf;" u2="J" k="20" />
1521
+ <hkern u1="&#xd0;" u2="&#x2122;" k="61" />
1522
+ <hkern u1="&#xd0;" u2="x" k="20" />
1523
+ <hkern u1="&#xd0;" u2="X" k="72" />
1524
+ <hkern u1="&#xd0;" u2="J" k="51" />
1525
+ <hkern u1="&#xd1;" u2="J" k="20" />
1526
+ <hkern u1="&#xd2;" u2="&#x2122;" k="61" />
1527
+ <hkern u1="&#xd2;" u2="x" k="20" />
1528
+ <hkern u1="&#xd2;" u2="X" k="72" />
1529
+ <hkern u1="&#xd2;" u2="J" k="51" />
1530
+ <hkern u1="&#xd3;" u2="&#x2122;" k="61" />
1531
+ <hkern u1="&#xd3;" u2="x" k="20" />
1532
+ <hkern u1="&#xd3;" u2="X" k="72" />
1533
+ <hkern u1="&#xd3;" u2="J" k="51" />
1534
+ <hkern u1="&#xd4;" u2="&#x2122;" k="61" />
1535
+ <hkern u1="&#xd4;" u2="x" k="20" />
1536
+ <hkern u1="&#xd4;" u2="X" k="72" />
1537
+ <hkern u1="&#xd4;" u2="J" k="51" />
1538
+ <hkern u1="&#xd5;" u2="&#x2122;" k="61" />
1539
+ <hkern u1="&#xd5;" u2="x" k="20" />
1540
+ <hkern u1="&#xd5;" u2="X" k="72" />
1541
+ <hkern u1="&#xd5;" u2="J" k="51" />
1542
+ <hkern u1="&#xd6;" u2="&#x2122;" k="61" />
1543
+ <hkern u1="&#xd6;" u2="x" k="20" />
1544
+ <hkern u1="&#xd6;" u2="X" k="72" />
1545
+ <hkern u1="&#xd6;" u2="J" k="51" />
1546
+ <hkern u1="&#xd8;" u2="&#x2122;" k="61" />
1547
+ <hkern u1="&#xd8;" u2="x" k="20" />
1548
+ <hkern u1="&#xd8;" u2="X" k="72" />
1549
+ <hkern u1="&#xd8;" u2="J" k="51" />
1550
+ <hkern u1="&#xd9;" u2="X" k="20" />
1551
+ <hkern u1="&#xd9;" u2="&#x2f;" k="143" />
1552
+ <hkern u1="&#xda;" u2="X" k="20" />
1553
+ <hkern u1="&#xda;" u2="&#x2f;" k="143" />
1554
+ <hkern u1="&#xdb;" u2="X" k="20" />
1555
+ <hkern u1="&#xdb;" u2="&#x2f;" k="143" />
1556
+ <hkern u1="&#xdc;" u2="X" k="20" />
1557
+ <hkern u1="&#xdc;" u2="&#x2f;" k="143" />
1558
+ <hkern u1="&#xdd;" u2="&#xc6;" k="256" />
1559
+ <hkern u1="&#xdd;" u2="x" k="92" />
1560
+ <hkern u1="&#xdd;" u2="\" k="-72" />
1561
+ <hkern u1="&#xdd;" u2="X" k="61" />
1562
+ <hkern u1="&#xdd;" u2="J" k="205" />
1563
+ <hkern u1="&#xdd;" u2="&#x3f;" k="41" />
1564
+ <hkern u1="&#xdd;" u2="&#x39;" k="102" />
1565
+ <hkern u1="&#xdd;" u2="&#x38;" k="82" />
1566
+ <hkern u1="&#xdd;" u2="&#x36;" k="102" />
1567
+ <hkern u1="&#xdd;" u2="&#x35;" k="20" />
1568
+ <hkern u1="&#xdd;" u2="&#x34;" k="154" />
1569
+ <hkern u1="&#xdd;" u2="&#x33;" k="51" />
1570
+ <hkern u1="&#xdd;" u2="&#x32;" k="41" />
1571
+ <hkern u1="&#xdd;" u2="&#x30;" k="102" />
1572
+ <hkern u1="&#xdd;" u2="&#x2f;" k="256" />
1573
+ <hkern u1="&#xdd;" u2="&#x26;" k="133" />
1574
+ <hkern u1="&#xdd;" u2="&#x20;" k="82" />
1575
+ <hkern u1="&#xe0;" u2="&#x2122;" k="41" />
1576
+ <hkern u1="&#xe0;" u2="\" k="92" />
1577
+ <hkern u1="&#xe0;" u2="&#x37;" k="61" />
1578
+ <hkern u1="&#xe1;" u2="&#x2122;" k="41" />
1579
+ <hkern u1="&#xe1;" u2="\" k="92" />
1580
+ <hkern u1="&#xe1;" u2="&#x37;" k="61" />
1581
+ <hkern u1="&#xe2;" u2="&#x2122;" k="41" />
1582
+ <hkern u1="&#xe2;" u2="\" k="92" />
1583
+ <hkern u1="&#xe2;" u2="&#x37;" k="61" />
1584
+ <hkern u1="&#xe3;" u2="&#x2122;" k="41" />
1585
+ <hkern u1="&#xe3;" u2="\" k="92" />
1586
+ <hkern u1="&#xe3;" u2="&#x37;" k="61" />
1587
+ <hkern u1="&#xe4;" u2="&#x2122;" k="41" />
1588
+ <hkern u1="&#xe4;" u2="\" k="92" />
1589
+ <hkern u1="&#xe4;" u2="&#x37;" k="61" />
1590
+ <hkern u1="&#xe5;" u2="&#x2122;" k="41" />
1591
+ <hkern u1="&#xe5;" u2="\" k="92" />
1592
+ <hkern u1="&#xe5;" u2="&#x37;" k="61" />
1593
+ <hkern u1="&#xe6;" u2="x" k="61" />
1594
+ <hkern u1="&#xe6;" u2="\" k="92" />
1595
+ <hkern u1="&#xe6;" u2="X" k="61" />
1596
+ <hkern u1="&#xe6;" u2="&#x2f;" k="102" />
1597
+ <hkern u1="&#xe6;" u2="&#x2a;" k="102" />
1598
+ <hkern u1="&#xe7;" u2="&#x2122;" k="61" />
1599
+ <hkern u1="&#xe7;" u2="x" k="72" />
1600
+ <hkern u1="&#xe7;" u2="\" k="102" />
1601
+ <hkern u1="&#xe7;" u2="X" k="61" />
1602
+ <hkern u1="&#xe7;" u2="&#x2f;" k="82" />
1603
+ <hkern u1="&#xe8;" u2="x" k="61" />
1604
+ <hkern u1="&#xe8;" u2="\" k="92" />
1605
+ <hkern u1="&#xe8;" u2="X" k="61" />
1606
+ <hkern u1="&#xe8;" u2="&#x2f;" k="102" />
1607
+ <hkern u1="&#xe8;" u2="&#x2a;" k="102" />
1608
+ <hkern u1="&#xe9;" u2="x" k="61" />
1609
+ <hkern u1="&#xe9;" u2="\" k="92" />
1610
+ <hkern u1="&#xe9;" u2="X" k="61" />
1611
+ <hkern u1="&#xe9;" u2="&#x2f;" k="102" />
1612
+ <hkern u1="&#xe9;" u2="&#x2a;" k="102" />
1613
+ <hkern u1="&#xea;" u2="x" k="61" />
1614
+ <hkern u1="&#xea;" u2="\" k="92" />
1615
+ <hkern u1="&#xea;" u2="X" k="61" />
1616
+ <hkern u1="&#xea;" u2="&#x2f;" k="102" />
1617
+ <hkern u1="&#xea;" u2="&#x2a;" k="102" />
1618
+ <hkern u1="&#xeb;" u2="x" k="61" />
1619
+ <hkern u1="&#xeb;" u2="\" k="92" />
1620
+ <hkern u1="&#xeb;" u2="X" k="61" />
1621
+ <hkern u1="&#xeb;" u2="&#x2f;" k="102" />
1622
+ <hkern u1="&#xeb;" u2="&#x2a;" k="102" />
1623
+ <hkern u1="&#xf1;" u2="&#x2122;" k="41" />
1624
+ <hkern u1="&#xf1;" u2="\" k="92" />
1625
+ <hkern u1="&#xf1;" u2="&#x37;" k="61" />
1626
+ <hkern u1="&#xf2;" u2="x" k="72" />
1627
+ <hkern u1="&#xf2;" u2="X" k="61" />
1628
+ <hkern u1="&#xf3;" u2="&#xff;" k="41" />
1629
+ <hkern u1="&#xf3;" u2="&#xfd;" k="41" />
1630
+ <hkern u1="&#xf3;" u2="z" k="20" />
1631
+ <hkern u1="&#xf3;" u2="y" k="41" />
1632
+ <hkern u1="&#xf3;" u2="x" k="72" />
1633
+ <hkern u1="&#xf3;" u2="w" k="20" />
1634
+ <hkern u1="&#xf3;" u2="v" k="41" />
1635
+ <hkern u1="&#xf4;" u2="x" k="72" />
1636
+ <hkern u1="&#xf4;" u2="X" k="61" />
1637
+ <hkern u1="&#xf5;" u2="x" k="72" />
1638
+ <hkern u1="&#xf5;" u2="X" k="61" />
1639
+ <hkern u1="&#xf6;" u2="x" k="72" />
1640
+ <hkern u1="&#xf6;" u2="X" k="61" />
1641
+ <hkern u1="&#xf8;" u2="x" k="72" />
1642
+ <hkern u1="&#xf8;" u2="X" k="61" />
1643
+ <hkern u1="&#xf9;" u2="&#x178;" k="102" />
1644
+ <hkern u1="&#xf9;" u2="&#xdd;" k="102" />
1645
+ <hkern u1="&#xf9;" u2="Y" k="102" />
1646
+ <hkern u1="&#xf9;" u2="V" k="102" />
1647
+ <hkern u1="&#xfd;" u2="&#x2122;" k="61" />
1648
+ <hkern u1="&#xfd;" u2="&#xe9;" k="41" />
1649
+ <hkern u1="&#xfd;" u2="&#xe7;" k="41" />
1650
+ <hkern u1="&#xfd;" u2="X" k="61" />
1651
+ <hkern u1="&#xfd;" u2="J" k="51" />
1652
+ <hkern u1="&#xfd;" u2="&#x3f;" k="-41" />
1653
+ <hkern u1="&#xfd;" u2="&#x38;" k="20" />
1654
+ <hkern u1="&#xfd;" u2="&#x37;" k="82" />
1655
+ <hkern u1="&#xfd;" u2="&#x35;" k="41" />
1656
+ <hkern u1="&#xfd;" u2="&#x34;" k="41" />
1657
+ <hkern u1="&#xfd;" u2="&#x33;" k="41" />
1658
+ <hkern u1="&#xfd;" u2="&#x32;" k="41" />
1659
+ <hkern u1="&#xfd;" u2="&#x2f;" k="102" />
1660
+ <hkern u1="&#xfd;" u2="&#x26;" k="51" />
1661
+ <hkern u1="&#xfe;" u2="&#x2122;" k="102" />
1662
+ <hkern u1="&#xfe;" u2="x" k="72" />
1663
+ <hkern u1="&#xfe;" u2="\" k="61" />
1664
+ <hkern u1="&#xfe;" u2="X" k="61" />
1665
+ <hkern u1="&#xfe;" u2="&#x39;" k="20" />
1666
+ <hkern u1="&#xfe;" u2="&#x37;" k="102" />
1667
+ <hkern u1="&#xfe;" u2="&#x35;" k="20" />
1668
+ <hkern u1="&#xfe;" u2="&#x2a;" k="102" />
1669
+ <hkern u1="&#xff;" u2="&#x2122;" k="61" />
1670
+ <hkern u1="&#xff;" u2="&#xe9;" k="41" />
1671
+ <hkern u1="&#xff;" u2="&#xe7;" k="41" />
1672
+ <hkern u1="&#xff;" u2="X" k="61" />
1673
+ <hkern u1="&#xff;" u2="J" k="51" />
1674
+ <hkern u1="&#xff;" u2="&#x3f;" k="-41" />
1675
+ <hkern u1="&#xff;" u2="&#x38;" k="20" />
1676
+ <hkern u1="&#xff;" u2="&#x37;" k="82" />
1677
+ <hkern u1="&#xff;" u2="&#x35;" k="41" />
1678
+ <hkern u1="&#xff;" u2="&#x34;" k="41" />
1679
+ <hkern u1="&#xff;" u2="&#x33;" k="41" />
1680
+ <hkern u1="&#xff;" u2="&#x32;" k="41" />
1681
+ <hkern u1="&#xff;" u2="&#x2f;" k="102" />
1682
+ <hkern u1="&#xff;" u2="&#x26;" k="51" />
1683
+ <hkern u1="&#x152;" u2="J" k="20" />
1684
+ <hkern u1="&#x152;" u2="&#x40;" k="61" />
1685
+ <hkern u1="&#x152;" u2="&#x26;" k="20" />
1686
+ <hkern u1="&#x153;" u2="x" k="61" />
1687
+ <hkern u1="&#x153;" u2="\" k="92" />
1688
+ <hkern u1="&#x153;" u2="X" k="61" />
1689
+ <hkern u1="&#x153;" u2="&#x2f;" k="102" />
1690
+ <hkern u1="&#x153;" u2="&#x2a;" k="102" />
1691
+ <hkern u1="&#x178;" u2="&#xc6;" k="256" />
1692
+ <hkern u1="&#x178;" u2="x" k="92" />
1693
+ <hkern u1="&#x178;" u2="\" k="-72" />
1694
+ <hkern u1="&#x178;" u2="X" k="61" />
1695
+ <hkern u1="&#x178;" u2="J" k="205" />
1696
+ <hkern u1="&#x178;" u2="&#x3f;" k="41" />
1697
+ <hkern u1="&#x178;" u2="&#x39;" k="102" />
1698
+ <hkern u1="&#x178;" u2="&#x38;" k="82" />
1699
+ <hkern u1="&#x178;" u2="&#x36;" k="102" />
1700
+ <hkern u1="&#x178;" u2="&#x35;" k="20" />
1701
+ <hkern u1="&#x178;" u2="&#x34;" k="154" />
1702
+ <hkern u1="&#x178;" u2="&#x33;" k="51" />
1703
+ <hkern u1="&#x178;" u2="&#x32;" k="41" />
1704
+ <hkern u1="&#x178;" u2="&#x30;" k="102" />
1705
+ <hkern u1="&#x178;" u2="&#x2f;" k="256" />
1706
+ <hkern u1="&#x178;" u2="&#x26;" k="133" />
1707
+ <hkern u1="&#x178;" u2="&#x20;" k="82" />
1708
+ <hkern u1="&#x2013;" u2="X" k="61" />
1709
+ <hkern u1="&#x2014;" u2="X" k="61" />
1710
+ <hkern u1="&#x2018;" u2="x" k="41" />
1711
+ <hkern u1="&#x2018;" u2="X" k="20" />
1712
+ <hkern u1="&#x2018;" u2="J" k="256" />
1713
+ <hkern u1="&#x2019;" u2="x" k="61" />
1714
+ <hkern u1="&#x2019;" u2="X" k="20" />
1715
+ <hkern u1="&#x2019;" u2="J" k="256" />
1716
+ <hkern u1="&#x201c;" u2="x" k="41" />
1717
+ <hkern u1="&#x201c;" u2="X" k="20" />
1718
+ <hkern u1="&#x201c;" u2="J" k="256" />
1719
+ <hkern u1="&#x201d;" u2="x" k="61" />
1720
+ <hkern u1="&#x201d;" u2="X" k="20" />
1721
+ <hkern u1="&#x201d;" u2="J" k="256" />
1722
+ <hkern u1="&#x203a;" u2="x" k="82" />
1723
+ <hkern u1="&#x203a;" u2="X" k="82" />
1724
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="V,Y,Yacute,Ydieresis" k="41" />
1725
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="41" />
1726
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
1727
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="comma,period,quotesinglbase,quotedblbase" k="72" />
1728
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="T" k="92" />
1729
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="W" k="41" />
1730
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="V,Y,Yacute,Ydieresis" k="113" />
1731
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="v,y,yacute,ydieresis" k="20" />
1732
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="s" k="20" />
1733
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="w" k="20" />
1734
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="a,aacute,ae" k="20" />
1735
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
1736
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="guillemotleft,guilsinglleft" k="20" />
1737
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
1738
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="comma,period,quotesinglbase,quotedblbase" k="82" />
1739
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="Z" k="20" />
1740
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="z" k="10" />
1741
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="agrave,acircumflex,atilde,adieresis,aring" k="20" />
1742
+ <hkern g1="S" g2="T" k="61" />
1743
+ <hkern g1="S" g2="W" k="41" />
1744
+ <hkern g1="S" g2="V,Y,Yacute,Ydieresis" k="82" />
1745
+ <hkern g1="S" g2="t" k="20" />
1746
+ <hkern g1="S" g2="v,y,yacute,ydieresis" k="41" />
1747
+ <hkern g1="S" g2="w" k="20" />
1748
+ <hkern g1="S" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="61" />
1749
+ <hkern g1="S" g2="comma,period,quotesinglbase,quotedblbase" k="41" />
1750
+ <hkern g1="S" g2="guillemotright,guilsinglright" k="20" />
1751
+ <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="92" />
1752
+ <hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
1753
+ <hkern g1="T" g2="quoteleft,quotedblleft" k="-20" />
1754
+ <hkern g1="T" g2="quoteright,quotedblright" k="-20" />
1755
+ <hkern g1="T" g2="S" k="51" />
1756
+ <hkern g1="T" g2="s" k="143" />
1757
+ <hkern g1="T" g2="w" k="82" />
1758
+ <hkern g1="T" g2="f,uniFB01,uniFB02" k="10" />
1759
+ <hkern g1="T" g2="a,aacute,ae" k="133" />
1760
+ <hkern g1="T" g2="c,d,e,g,o,q,oacute,oslash,oe" k="174" />
1761
+ <hkern g1="T" g2="u,uacute" k="82" />
1762
+ <hkern g1="T" g2="guillemotleft,guilsinglleft" k="143" />
1763
+ <hkern g1="T" g2="copyright,registered" k="82" />
1764
+ <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="164" />
1765
+ <hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase" k="154" />
1766
+ <hkern g1="T" g2="z" k="61" />
1767
+ <hkern g1="T" g2="agrave,acircumflex,atilde,adieresis,aring" k="102" />
1768
+ <hkern g1="T" g2="guillemotright,guilsinglright" k="102" />
1769
+ <hkern g1="T" g2="colon,semicolon" k="82" />
1770
+ <hkern g1="T" g2="m,n,p,r,uni00B5,ntilde" k="133" />
1771
+ <hkern g1="T" g2="igrave,icircumflex,idieresis" k="-143" />
1772
+ <hkern g1="T" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="92" />
1773
+ <hkern g1="T" g2="ugrave,ucircumflex,udieresis" k="82" />
1774
+ <hkern g1="T" g2="hyphen,endash,emdash" k="102" />
1775
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="113" />
1776
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="t" k="20" />
1777
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="82" />
1778
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="quoteleft,quotedblleft" k="20" />
1779
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="S" k="61" />
1780
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="s" k="102" />
1781
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="w" k="82" />
1782
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="f,uniFB01,uniFB02" k="51" />
1783
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="a,aacute,ae" k="154" />
1784
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="c,d,e,g,o,q,oacute,oslash,oe" k="154" />
1785
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="u,uacute" k="51" />
1786
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="guillemotleft,guilsinglleft" k="154" />
1787
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="copyright,registered" k="123" />
1788
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Ecircumflex,Edieresis,Eth,Ntilde,Thorn" k="41" />
1789
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="195" />
1790
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase" k="154" />
1791
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="z" k="41" />
1792
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="agrave,acircumflex,atilde,adieresis,aring" k="123" />
1793
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="guillemotright,guilsinglright" k="61" />
1794
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="colon,semicolon" k="154" />
1795
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="m,n,p,r,uni00B5,ntilde" k="123" />
1796
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="igrave,icircumflex,idieresis" k="-133" />
1797
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="113" />
1798
+ <hkern g1="V,Y,Yacute,Ydieresis" g2="ugrave,ucircumflex,udieresis" k="102" />
1799
+ <hkern g1="W" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
1800
+ <hkern g1="W" g2="v,y,yacute,ydieresis" k="20" />
1801
+ <hkern g1="W" g2="quoteleft,quotedblleft" k="-51" />
1802
+ <hkern g1="W" g2="quoteright,quotedblright" k="-51" />
1803
+ <hkern g1="W" g2="S" k="41" />
1804
+ <hkern g1="W" g2="s" k="41" />
1805
+ <hkern g1="W" g2="w" k="20" />
1806
+ <hkern g1="W" g2="a,aacute,ae" k="20" />
1807
+ <hkern g1="W" g2="c,d,e,g,o,q,oacute,oslash,oe" k="41" />
1808
+ <hkern g1="W" g2="guillemotleft,guilsinglleft" k="61" />
1809
+ <hkern g1="W" g2="copyright,registered" k="41" />
1810
+ <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
1811
+ <hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase" k="72" />
1812
+ <hkern g1="W" g2="z" k="20" />
1813
+ <hkern g1="W" g2="agrave,acircumflex,atilde,adieresis,aring" k="123" />
1814
+ <hkern g1="W" g2="colon,semicolon" k="31" />
1815
+ <hkern g1="W" g2="m,n,p,r,uni00B5,ntilde" k="20" />
1816
+ <hkern g1="W" g2="igrave,icircumflex,idieresis" k="-133" />
1817
+ <hkern g1="W" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
1818
+ <hkern g1="W" g2="ugrave,ucircumflex,udieresis" k="20" />
1819
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="T" k="102" />
1820
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="W" k="20" />
1821
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="V,Y,Yacute,Ydieresis" k="113" />
1822
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="v,y,yacute,ydieresis" k="41" />
1823
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="quoteright,quotedblright" k="20" />
1824
+ <hkern g1="a,h,m,n,agrave,aacute,acircumflex,atilde,adieresis,aring,ntilde" g2="w" k="20" />
1825
+ <hkern g1="iacute,icircumflex,idieresis" g2="T" k="-143" />
1826
+ <hkern g1="iacute,icircumflex,idieresis" g2="W" k="-133" />
1827
+ <hkern g1="iacute,icircumflex,idieresis" g2="V,Y,Yacute,Ydieresis" k="-133" />
1828
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="T" k="92" />
1829
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="W" k="20" />
1830
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="V,Y,Yacute,Ydieresis" k="113" />
1831
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="t" k="20" />
1832
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="41" />
1833
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="s" k="20" />
1834
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="w" k="20" />
1835
+ <hkern g1="ograve,ocircumflex,otilde,odieresis" g2="z" k="20" />
1836
+ <hkern g1="b,o,p,thorn" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
1837
+ <hkern g1="b,o,p,thorn" g2="T" k="174" />
1838
+ <hkern g1="b,o,p,thorn" g2="W" k="41" />
1839
+ <hkern g1="b,o,p,thorn" g2="V,Y,Yacute,Ydieresis" k="154" />
1840
+ <hkern g1="b,o,p,thorn" g2="t" k="20" />
1841
+ <hkern g1="b,o,p,thorn" g2="v,y,yacute,ydieresis" k="41" />
1842
+ <hkern g1="b,o,p,thorn" g2="quoteleft,quotedblleft" k="31" />
1843
+ <hkern g1="b,o,p,thorn" g2="quoteright,quotedblright" k="51" />
1844
+ <hkern g1="b,o,p,thorn" g2="s" k="20" />
1845
+ <hkern g1="b,o,p,thorn" g2="w" k="20" />
1846
+ <hkern g1="b,o,p,thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
1847
+ <hkern g1="b,o,p,thorn" g2="comma,period,quotesinglbase,quotedblbase" k="72" />
1848
+ <hkern g1="b,o,p,thorn" g2="Z" k="41" />
1849
+ <hkern g1="b,o,p,thorn" g2="z" k="20" />
1850
+ <hkern g1="b,o,p,thorn" g2="guillemotright,guilsinglright" k="20" />
1851
+ <hkern g1="g,q,u,uni00B5" g2="T" k="41" />
1852
+ <hkern g1="g,q,u,uni00B5" g2="W" k="10" />
1853
+ <hkern g1="g,q,u,uni00B5" g2="V,Y,Yacute,Ydieresis" k="51" />
1854
+ <hkern g1="v,y,yacute,ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
1855
+ <hkern g1="v,y,yacute,ydieresis" g2="T" k="82" />
1856
+ <hkern g1="v,y,yacute,ydieresis" g2="W" k="20" />
1857
+ <hkern g1="v,y,yacute,ydieresis" g2="V,Y,Yacute,Ydieresis" k="82" />
1858
+ <hkern g1="v,y,yacute,ydieresis" g2="t" k="-31" />
1859
+ <hkern g1="v,y,yacute,ydieresis" g2="S" k="31" />
1860
+ <hkern g1="v,y,yacute,ydieresis" g2="s" k="41" />
1861
+ <hkern g1="v,y,yacute,ydieresis" g2="a,aacute,ae" k="41" />
1862
+ <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,o,q,oacute,oslash,oe" k="41" />
1863
+ <hkern g1="v,y,yacute,ydieresis" g2="guillemotleft,guilsinglleft" k="51" />
1864
+ <hkern g1="v,y,yacute,ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="72" />
1865
+ <hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase" k="123" />
1866
+ <hkern g1="v,y,yacute,ydieresis" g2="Z" k="20" />
1867
+ <hkern g1="v,y,yacute,ydieresis" g2="agrave,acircumflex,atilde,adieresis,aring" k="41" />
1868
+ <hkern g1="v,y,yacute,ydieresis" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="41" />
1869
+ <hkern g1="colon,semicolon" g2="T" k="82" />
1870
+ <hkern g1="colon,semicolon" g2="W" k="31" />
1871
+ <hkern g1="colon,semicolon" g2="V,Y,Yacute,Ydieresis" k="154" />
1872
+ <hkern g1="colon,semicolon" g2="j" k="-20" />
1873
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="82" />
1874
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="T" k="154" />
1875
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="W" k="72" />
1876
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="V,Y,Yacute,Ydieresis" k="195" />
1877
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="v,y,yacute,ydieresis" k="123" />
1878
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="quoteleft,quotedblleft" k="154" />
1879
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="quoteright,quotedblright" k="154" />
1880
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="S" k="41" />
1881
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="w" k="61" />
1882
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="f,uniFB01,uniFB02" k="20" />
1883
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="c,d,e,g,o,q,oacute,oslash,oe" k="72" />
1884
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="comma,period,quotesinglbase,quotedblbase" k="41" />
1885
+ <hkern g1="comma,period,quotesinglbase,quotedblbase" g2="j" k="-20" />
1886
+ <hkern g1="quoteleft,quotedblleft" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="82" />
1887
+ <hkern g1="quoteleft,quotedblleft" g2="T" k="-20" />
1888
+ <hkern g1="quoteleft,quotedblleft" g2="W" k="-51" />
1889
+ <hkern g1="quoteleft,quotedblleft" g2="V,Y,Yacute,Ydieresis" k="-20" />
1890
+ <hkern g1="quoteleft,quotedblleft" g2="v,y,yacute,ydieresis" k="123" />
1891
+ <hkern g1="quoteleft,quotedblleft" g2="quoteleft,quotedblleft" k="41" />
1892
+ <hkern g1="quoteleft,quotedblleft" g2="quoteright,quotedblright" k="82" />
1893
+ <hkern g1="quoteleft,quotedblleft" g2="S" k="41" />
1894
+ <hkern g1="quoteleft,quotedblleft" g2="s" k="31" />
1895
+ <hkern g1="quoteleft,quotedblleft" g2="w" k="61" />
1896
+ <hkern g1="quoteleft,quotedblleft" g2="a,aacute,ae" k="31" />
1897
+ <hkern g1="quoteleft,quotedblleft" g2="c,d,e,g,o,q,oacute,oslash,oe" k="72" />
1898
+ <hkern g1="quoteleft,quotedblleft" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="205" />
1899
+ <hkern g1="quoteleft,quotedblleft" g2="comma,period,quotesinglbase,quotedblbase" k="154" />
1900
+ <hkern g1="quoteleft,quotedblleft" g2="z" k="41" />
1901
+ <hkern g1="quoteleft,quotedblleft" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="72" />
1902
+ <hkern g1="quoteright,quotedblright" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="82" />
1903
+ <hkern g1="quoteright,quotedblright" g2="T" k="-20" />
1904
+ <hkern g1="quoteright,quotedblright" g2="W" k="-51" />
1905
+ <hkern g1="quoteright,quotedblright" g2="V,Y,Yacute,Ydieresis" k="-20" />
1906
+ <hkern g1="quoteright,quotedblright" g2="v,y,yacute,ydieresis" k="123" />
1907
+ <hkern g1="quoteright,quotedblright" g2="quoteright,quotedblright" k="41" />
1908
+ <hkern g1="quoteright,quotedblright" g2="S" k="41" />
1909
+ <hkern g1="quoteright,quotedblright" g2="s" k="92" />
1910
+ <hkern g1="quoteright,quotedblright" g2="w" k="61" />
1911
+ <hkern g1="quoteright,quotedblright" g2="a,aacute,ae" k="82" />
1912
+ <hkern g1="quoteright,quotedblright" g2="c,d,e,g,o,q,oacute,oslash,oe" k="133" />
1913
+ <hkern g1="quoteright,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="236" />
1914
+ <hkern g1="quoteright,quotedblright" g2="comma,period,quotesinglbase,quotedblbase" k="154" />
1915
+ <hkern g1="quoteright,quotedblright" g2="z" k="72" />
1916
+ <hkern g1="quoteright,quotedblright" g2="agrave,acircumflex,atilde,adieresis,aring" k="82" />
1917
+ <hkern g1="quoteright,quotedblright" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="72" />
1918
+ <hkern g1="k,x" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
1919
+ <hkern g1="k,x" g2="T" k="102" />
1920
+ <hkern g1="k,x" g2="W" k="41" />
1921
+ <hkern g1="k,x" g2="V,Y,Yacute,Ydieresis" k="92" />
1922
+ <hkern g1="k,x" g2="t" k="20" />
1923
+ <hkern g1="k,x" g2="v,y,yacute,ydieresis" k="41" />
1924
+ <hkern g1="k,x" g2="S" k="20" />
1925
+ <hkern g1="k,x" g2="s" k="41" />
1926
+ <hkern g1="k,x" g2="w" k="31" />
1927
+ <hkern g1="k,x" g2="f,uniFB01,uniFB02" k="31" />
1928
+ <hkern g1="k,x" g2="a,aacute,ae" k="51" />
1929
+ <hkern g1="k,x" g2="c,d,e,g,o,q,oacute,oslash,oe" k="72" />
1930
+ <hkern g1="k,x" g2="u,uacute" k="31" />
1931
+ <hkern g1="k,x" g2="guillemotleft,guilsinglleft" k="82" />
1932
+ <hkern g1="k,x" g2="copyright,registered" k="61" />
1933
+ <hkern g1="k,x" g2="agrave,acircumflex,atilde,adieresis,aring" k="51" />
1934
+ <hkern g1="k,x" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="72" />
1935
+ <hkern g1="k,x" g2="ugrave,ucircumflex,udieresis" k="31" />
1936
+ <hkern g1="k,x" g2="hyphen,endash,emdash" k="51" />
1937
+ <hkern g1="C,Ccedilla" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
1938
+ <hkern g1="C,Ccedilla" g2="T" k="20" />
1939
+ <hkern g1="C,Ccedilla" g2="W" k="20" />
1940
+ <hkern g1="C,Ccedilla" g2="V,Y,Yacute,Ydieresis" k="51" />
1941
+ <hkern g1="C,Ccedilla" g2="v,y,yacute,ydieresis" k="41" />
1942
+ <hkern g1="C,Ccedilla" g2="S" k="10" />
1943
+ <hkern g1="C,Ccedilla" g2="s" k="20" />
1944
+ <hkern g1="C,Ccedilla" g2="w" k="20" />
1945
+ <hkern g1="C,Ccedilla" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
1946
+ <hkern g1="C,Ccedilla" g2="guillemotleft,guilsinglleft" k="20" />
1947
+ <hkern g1="C,Ccedilla" g2="copyright,registered" k="20" />
1948
+ <hkern g1="C,Ccedilla" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="41" />
1949
+ <hkern g1="C,Ccedilla" g2="guillemotright,guilsinglright" k="20" />
1950
+ <hkern g1="C,Ccedilla" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
1951
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
1952
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="W" k="10" />
1953
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="V,Y,Yacute,Ydieresis" k="31" />
1954
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="t" k="10" />
1955
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="v,y,yacute,ydieresis" k="51" />
1956
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="S" k="20" />
1957
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="s" k="10" />
1958
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="w" k="20" />
1959
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="f,uniFB01,uniFB02" k="20" />
1960
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="a,aacute,ae" k="10" />
1961
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="c,d,e,g,o,q,oacute,oslash,oe" k="31" />
1962
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="guillemotleft,guilsinglleft" k="41" />
1963
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="copyright,registered" k="61" />
1964
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="agrave,acircumflex,atilde,adieresis,aring" k="10" />
1965
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="31" />
1966
+ <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
1967
+ <hkern g1="Z" g2="t" k="20" />
1968
+ <hkern g1="Z" g2="v,y,yacute,ydieresis" k="20" />
1969
+ <hkern g1="Z" g2="s" k="20" />
1970
+ <hkern g1="Z" g2="w" k="20" />
1971
+ <hkern g1="Z" g2="c,d,e,g,o,q,oacute,oslash,oe" k="41" />
1972
+ <hkern g1="Z" g2="u,uacute" k="10" />
1973
+ <hkern g1="Z" g2="guillemotleft,guilsinglleft" k="41" />
1974
+ <hkern g1="R" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
1975
+ <hkern g1="R" g2="T" k="41" />
1976
+ <hkern g1="R" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
1977
+ <hkern g1="R" g2="W" k="20" />
1978
+ <hkern g1="R" g2="V,Y,Yacute,Ydieresis" k="82" />
1979
+ <hkern g1="R" g2="S" k="41" />
1980
+ <hkern g1="R" g2="c,d,e,g,o,q,oacute,oslash,oe" k="51" />
1981
+ <hkern g1="R" g2="guillemotleft,guilsinglleft" k="61" />
1982
+ <hkern g1="R" g2="copyright,registered" k="41" />
1983
+ <hkern g1="R" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="51" />
1984
+ <hkern g1="R" g2="comma,period,quotesinglbase,quotedblbase" k="31" />
1985
+ <hkern g1="R" g2="colon,semicolon" k="20" />
1986
+ <hkern g1="c,ccedilla" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
1987
+ <hkern g1="c,ccedilla" g2="T" k="174" />
1988
+ <hkern g1="c,ccedilla" g2="W" k="41" />
1989
+ <hkern g1="c,ccedilla" g2="V,Y,Yacute,Ydieresis" k="133" />
1990
+ <hkern g1="c,ccedilla" g2="t" k="20" />
1991
+ <hkern g1="c,ccedilla" g2="v,y,yacute,ydieresis" k="41" />
1992
+ <hkern g1="c,ccedilla" g2="s" k="20" />
1993
+ <hkern g1="c,ccedilla" g2="w" k="20" />
1994
+ <hkern g1="c,ccedilla" g2="a,aacute,ae" k="20" />
1995
+ <hkern g1="c,ccedilla" g2="u,uacute" k="20" />
1996
+ <hkern g1="c,ccedilla" g2="guillemotleft,guilsinglleft" k="20" />
1997
+ <hkern g1="c,ccedilla" g2="z" k="20" />
1998
+ <hkern g1="c,ccedilla" g2="agrave,acircumflex,atilde,adieresis,aring" k="20" />
1999
+ <hkern g1="c,ccedilla" g2="guillemotright,guilsinglright" k="41" />
2000
+ <hkern g1="copyright,registered" g2="T" k="82" />
2001
+ <hkern g1="copyright,registered" g2="W" k="41" />
2002
+ <hkern g1="copyright,registered" g2="V,Y,Yacute,Ydieresis" k="123" />
2003
+ <hkern g1="copyright,registered" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
2004
+ <hkern g1="z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="10" />
2005
+ <hkern g1="z" g2="T" k="61" />
2006
+ <hkern g1="z" g2="W" k="20" />
2007
+ <hkern g1="z" g2="V,Y,Yacute,Ydieresis" k="41" />
2008
+ <hkern g1="z" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
2009
+ <hkern g1="z" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
2010
+ <hkern g1="s" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
2011
+ <hkern g1="s" g2="T" k="143" />
2012
+ <hkern g1="s" g2="W" k="41" />
2013
+ <hkern g1="s" g2="V,Y,Yacute,Ydieresis" k="123" />
2014
+ <hkern g1="s" g2="t" k="20" />
2015
+ <hkern g1="s" g2="v,y,yacute,ydieresis" k="41" />
2016
+ <hkern g1="s" g2="w" k="20" />
2017
+ <hkern g1="s" g2="a,aacute,ae" k="20" />
2018
+ <hkern g1="s" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
2019
+ <hkern g1="s" g2="u,uacute" k="20" />
2020
+ <hkern g1="s" g2="guillemotleft,guilsinglleft" k="20" />
2021
+ <hkern g1="s" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
2022
+ <hkern g1="s" g2="Z" k="20" />
2023
+ <hkern g1="s" g2="z" k="20" />
2024
+ <hkern g1="s" g2="agrave,acircumflex,atilde,adieresis,aring" k="20" />
2025
+ <hkern g1="s" g2="guillemotright,guilsinglright" k="20" />
2026
+ <hkern g1="s" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
2027
+ <hkern g1="s" g2="ugrave,ucircumflex,udieresis" k="20" />
2028
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="10" />
2029
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="T" k="143" />
2030
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="V,Y,Yacute,Ydieresis" k="143" />
2031
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="t" k="20" />
2032
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="s" k="20" />
2033
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="w" k="20" />
2034
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="Z" k="20" />
2035
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="z" k="20" />
2036
+ <hkern g1="guillemotleft,guilsinglleft" g2="T" k="102" />
2037
+ <hkern g1="guillemotleft,guilsinglleft" g2="V,Y,Yacute,Ydieresis" k="61" />
2038
+ <hkern g1="guillemotleft,guilsinglleft" g2="S" k="20" />
2039
+ <hkern g1="guillemotleft,guilsinglleft" g2="s" k="20" />
2040
+ <hkern g1="guillemotleft,guilsinglleft" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
2041
+ <hkern g1="guillemotright,guilsinglright" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
2042
+ <hkern g1="guillemotright,guilsinglright" g2="T" k="143" />
2043
+ <hkern g1="guillemotright,guilsinglright" g2="W" k="61" />
2044
+ <hkern g1="guillemotright,guilsinglright" g2="V,Y,Yacute,Ydieresis" k="154" />
2045
+ <hkern g1="guillemotright,guilsinglright" g2="t" k="20" />
2046
+ <hkern g1="guillemotright,guilsinglright" g2="v,y,yacute,ydieresis" k="51" />
2047
+ <hkern g1="guillemotright,guilsinglright" g2="s" k="20" />
2048
+ <hkern g1="guillemotright,guilsinglright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="41" />
2049
+ <hkern g1="guillemotright,guilsinglright" g2="Z" k="41" />
2050
+ <hkern g1="w" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
2051
+ <hkern g1="w" g2="T" k="82" />
2052
+ <hkern g1="w" g2="W" k="20" />
2053
+ <hkern g1="w" g2="V,Y,Yacute,Ydieresis" k="82" />
2054
+ <hkern g1="w" g2="S" k="20" />
2055
+ <hkern g1="w" g2="s" k="20" />
2056
+ <hkern g1="w" g2="a,aacute,ae" k="20" />
2057
+ <hkern g1="w" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
2058
+ <hkern g1="w" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="41" />
2059
+ <hkern g1="w" g2="comma,period,quotesinglbase,quotedblbase" k="61" />
2060
+ <hkern g1="w" g2="Z" k="20" />
2061
+ <hkern g1="w" g2="agrave,acircumflex,atilde,adieresis,aring" k="20" />
2062
+ <hkern g1="w" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
2063
+ <hkern g1="t" g2="V,Y,Yacute,Ydieresis" k="41" />
2064
+ <hkern g1="t" g2="a,aacute,ae" k="20" />
2065
+ <hkern g1="t" g2="c,d,e,g,o,q,oacute,oslash,oe" k="20" />
2066
+ <hkern g1="t" g2="guillemotleft,guilsinglleft" k="20" />
2067
+ <hkern g1="t" g2="agrave,acircumflex,atilde,adieresis,aring" k="20" />
2068
+ <hkern g1="t" g2="egrave,ecircumflex,edieresis,eth,ograve,ocircumflex,otilde,odieresis" k="20" />
2069
+ <hkern g1="t" g2="hyphen,endash,emdash" k="41" />
2070
+ <hkern g1="r" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
2071
+ <hkern g1="r" g2="T" k="61" />
2072
+ <hkern g1="r" g2="V,Y,Yacute,Ydieresis" k="102" />
2073
+ <hkern g1="r" g2="t" k="-31" />
2074
+ <hkern g1="r" g2="s" k="20" />
2075
+ <hkern g1="r" g2="a,aacute,ae" k="41" />
2076
+ <hkern g1="r" g2="c,d,e,g,o,q,oacute,oslash,oe" k="51" />
2077
+ <hkern g1="r" g2="u,uacute" k="20" />
2078
+ <hkern g1="r" g2="guillemotleft,guilsinglleft" k="61" />
2079
+ <hkern g1="r" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="102" />
2080
+ <hkern g1="r" g2="Z" k="61" />
2081
+ <hkern g1="r" g2="z" k="20" />
2082
+ <hkern g1="r" g2="agrave,acircumflex,atilde,adieresis,aring" k="41" />
2083
+ <hkern g1="r" g2="guillemotright,guilsinglright" k="-10" />
2084
+ <hkern g1="r" g2="m,n,p,r,uni00B5,ntilde" k="10" />
2085
+ <hkern g1="r" g2="hyphen,endash,emdash" k="41" />
2086
+ <hkern g1="r" g2="bracketleft,b,h,i,k,l,bar,germandbls,iacute,thorn" k="10" />
2087
+ <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
2088
+ <hkern g1="L" g2="T" k="102" />
2089
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
2090
+ <hkern g1="L" g2="W" k="41" />
2091
+ <hkern g1="L" g2="V,Y,Yacute,Ydieresis" k="164" />
2092
+ <hkern g1="L" g2="v,y,yacute,ydieresis" k="72" />
2093
+ <hkern g1="L" g2="quoteleft,quotedblleft" k="133" />
2094
+ <hkern g1="L" g2="quoteright,quotedblright" k="133" />
2095
+ <hkern g1="L" g2="S" k="20" />
2096
+ <hkern g1="L" g2="w" k="20" />
2097
+ <hkern g1="L" g2="copyright,registered" k="41" />
2098
+ <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-41" />
2099
+ <hkern g1="L" g2="comma,period,quotesinglbase,quotedblbase" k="-20" />
2100
+ <hkern g1="L" g2="Z" k="-20" />
2101
+ <hkern g1="L" g2="guillemotright,guilsinglright" k="-61" />
2102
+ <hkern g1="hyphen,endash,emdash" g2="T" k="102" />
2103
+ <hkern g1="hyphen,endash,emdash" g2="t" k="41" />
2104
+ </font>
2105
+ </defs></svg>