@qhealth-design-system/core 1.0.38

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 (503) hide show
  1. package/.babelrc +15 -0
  2. package/.browserslistrc +5 -0
  3. package/.editorconfig +19 -0
  4. package/.eslintignore +1 -0
  5. package/.eslintrc +25 -0
  6. package/.gitattributes +2 -0
  7. package/.github/workflows/release_package.yml +103 -0
  8. package/CHANGELOG.md +14 -0
  9. package/README.md +534 -0
  10. package/dist/api/service_finder/schemas.json +1 -0
  11. package/dist/component-abstract.html +884 -0
  12. package/dist/component-accordion.html +1157 -0
  13. package/dist/component-banner.html +928 -0
  14. package/dist/component-banner_advanced.html +1524 -0
  15. package/dist/component-banner_basic.html +1189 -0
  16. package/dist/component-banner_intermediate.html +1288 -0
  17. package/dist/component-body.html +919 -0
  18. package/dist/component-breadcrumbs.html +881 -0
  19. package/dist/component-btn.html +829 -0
  20. package/dist/component-callout.html +964 -0
  21. package/dist/component-card_feature.html +1805 -0
  22. package/dist/component-card_multi_action.html +1965 -0
  23. package/dist/component-card_no_action.html +1632 -0
  24. package/dist/component-card_single_action.html +1772 -0
  25. package/dist/component-code.html +928 -0
  26. package/dist/component-footer.html +1131 -0
  27. package/dist/component-forms.html +1297 -0
  28. package/dist/component-global-elements.html +1243 -0
  29. package/dist/component-global_alert.html +891 -0
  30. package/dist/component-header.html +1155 -0
  31. package/dist/component-in_page_navigation.html +920 -0
  32. package/dist/component-internal_navigation.html +1097 -0
  33. package/dist/component-left_hand_navigation.html +995 -0
  34. package/dist/component-main_navigation.html +999 -0
  35. package/dist/component-mega_main_navigation.html +1145 -0
  36. package/dist/component-multi_column.html +1116 -0
  37. package/dist/component-page_alert.html +911 -0
  38. package/dist/component-pagination.html +971 -0
  39. package/dist/component-tag_list.html +979 -0
  40. package/dist/component-updated_date.html +778 -0
  41. package/dist/component-widgets.html +851 -0
  42. package/dist/components/_global/import.xml +95 -0
  43. package/dist/components/_global/manifest.json +11 -0
  44. package/dist/components/_global/presentation.js +50 -0
  45. package/dist/components/_global/static.html +30 -0
  46. package/dist/components/_template/import.xml +299 -0
  47. package/dist/components/_template/manifest.json +40 -0
  48. package/dist/components/_template/presentation.js +12 -0
  49. package/dist/components/_template/static.html +4 -0
  50. package/dist/components/abstract/import.xml +231 -0
  51. package/dist/components/abstract/manifest.json +29 -0
  52. package/dist/components/abstract/presentation.js +33 -0
  53. package/dist/components/abstract/static.html +9 -0
  54. package/dist/components/accordion/import.xml +1929 -0
  55. package/dist/components/accordion/manifest.json +427 -0
  56. package/dist/components/accordion/presentation.js +112 -0
  57. package/dist/components/accordion/static.html +56 -0
  58. package/dist/components/banner/import.xml +95 -0
  59. package/dist/components/banner/manifest.json +11 -0
  60. package/dist/components/banner/presentation.js +138 -0
  61. package/dist/components/banner/static.html +39 -0
  62. package/dist/components/banner_advanced/import.xml +1969 -0
  63. package/dist/components/banner_advanced/manifest.json +1450 -0
  64. package/dist/components/banner_advanced/presentation.js +564 -0
  65. package/dist/components/banner_advanced/static.html +159 -0
  66. package/dist/components/banner_basic/import.xml +907 -0
  67. package/dist/components/banner_basic/manifest.json +151 -0
  68. package/dist/components/banner_basic/presentation.js +325 -0
  69. package/dist/components/banner_basic/static.html +86 -0
  70. package/dist/components/banner_intermediate/import.xml +1473 -0
  71. package/dist/components/banner_intermediate/manifest.json +248 -0
  72. package/dist/components/banner_intermediate/presentation.js +410 -0
  73. package/dist/components/banner_intermediate/static.html +102 -0
  74. package/dist/components/body/import.xml +343 -0
  75. package/dist/components/body/manifest.json +46 -0
  76. package/dist/components/body/presentation.js +37 -0
  77. package/dist/components/body/static.html +5 -0
  78. package/dist/components/breadcrumbs/import.xml +95 -0
  79. package/dist/components/breadcrumbs/manifest.json +9 -0
  80. package/dist/components/breadcrumbs/presentation.js +99 -0
  81. package/dist/components/breadcrumbs/static.html +21 -0
  82. package/dist/components/callout/import.xml +953 -0
  83. package/dist/components/callout/manifest.json +121 -0
  84. package/dist/components/callout/presentation.js +103 -0
  85. package/dist/components/callout/static.html +10 -0
  86. package/dist/components/card_feature/import.xml +2355 -0
  87. package/dist/components/card_feature/manifest.json +1390 -0
  88. package/dist/components/card_feature/presentation.js +365 -0
  89. package/dist/components/card_feature/static.html +80 -0
  90. package/dist/components/card_multi_action/import.xml +1539 -0
  91. package/dist/components/card_multi_action/manifest.json +1314 -0
  92. package/dist/components/card_multi_action/presentation.js +638 -0
  93. package/dist/components/card_multi_action/static.html +120 -0
  94. package/dist/components/card_no_action/import.xml +1449 -0
  95. package/dist/components/card_no_action/manifest.json +1264 -0
  96. package/dist/components/card_no_action/presentation.js +454 -0
  97. package/dist/components/card_no_action/static.html +94 -0
  98. package/dist/components/card_single_action/import.xml +1539 -0
  99. package/dist/components/card_single_action/manifest.json +1273 -0
  100. package/dist/components/card_single_action/presentation.js +498 -0
  101. package/dist/components/card_single_action/static.html +103 -0
  102. package/dist/components/code/import.xml +569 -0
  103. package/dist/components/code/manifest.json +112 -0
  104. package/dist/components/code/presentation.js +124 -0
  105. package/dist/components/code/static.html +15 -0
  106. package/dist/components/footer/import.xml +95 -0
  107. package/dist/components/footer/manifest.json +9 -0
  108. package/dist/components/footer/presentation.js +409 -0
  109. package/dist/components/footer/static.html +146 -0
  110. package/dist/components/global_alert/import.xml +95 -0
  111. package/dist/components/global_alert/manifest.json +9 -0
  112. package/dist/components/global_alert/presentation.js +81 -0
  113. package/dist/components/global_alert/static.html +26 -0
  114. package/dist/components/header/import.xml +95 -0
  115. package/dist/components/header/manifest.json +11 -0
  116. package/dist/components/header/presentation.js +190 -0
  117. package/dist/components/header/static.html +158 -0
  118. package/dist/components/horizontal_rule/import.xml +547 -0
  119. package/dist/components/horizontal_rule/manifest.json +69 -0
  120. package/dist/components/horizontal_rule/presentation.js +50 -0
  121. package/dist/components/horizontal_rule/static.html +4 -0
  122. package/dist/components/in_page_navigation/import.xml +253 -0
  123. package/dist/components/in_page_navigation/manifest.json +35 -0
  124. package/dist/components/in_page_navigation/presentation.js +14 -0
  125. package/dist/components/in_page_navigation/static.html +13 -0
  126. package/dist/components/internal_navigation/import.xml +95 -0
  127. package/dist/components/internal_navigation/manifest.json +11 -0
  128. package/dist/components/internal_navigation/presentation.js +165 -0
  129. package/dist/components/internal_navigation/static.html +130 -0
  130. package/dist/components/left_hand_navigation/import.xml +299 -0
  131. package/dist/components/left_hand_navigation/manifest.json +40 -0
  132. package/dist/components/left_hand_navigation/presentation.js +178 -0
  133. package/dist/components/left_hand_navigation/static.html +64 -0
  134. package/dist/components/main_navigation/import.xml +95 -0
  135. package/dist/components/main_navigation/manifest.json +11 -0
  136. package/dist/components/main_navigation/presentation.js +150 -0
  137. package/dist/components/main_navigation/static.html +80 -0
  138. package/dist/components/mega_main_navigation/import.xml +95 -0
  139. package/dist/components/mega_main_navigation/manifest.json +9 -0
  140. package/dist/components/mega_main_navigation/presentation.js +380 -0
  141. package/dist/components/mega_main_navigation/static.html +153 -0
  142. package/dist/components/multi_column/import.xml +1631 -0
  143. package/dist/components/multi_column/manifest.json +233 -0
  144. package/dist/components/multi_column/presentation.js +249 -0
  145. package/dist/components/multi_column/static.html +36 -0
  146. package/dist/components/page_alert/import.xml +479 -0
  147. package/dist/components/page_alert/manifest.json +63 -0
  148. package/dist/components/page_alert/presentation.js +67 -0
  149. package/dist/components/page_alert/static.html +8 -0
  150. package/dist/components/pagination/import.xml +95 -0
  151. package/dist/components/pagination/manifest.json +42 -0
  152. package/dist/components/pagination/presentation.js +84 -0
  153. package/dist/components/pagination/static.html +5 -0
  154. package/dist/components/updated_date/import.xml +95 -0
  155. package/dist/components/updated_date/manifest.json +9 -0
  156. package/dist/components/updated_date/presentation.js +34 -0
  157. package/dist/components/updated_date/static.html +6 -0
  158. package/dist/components/widgets/import.xml +95 -0
  159. package/dist/components/widgets/manifest.json +9 -0
  160. package/dist/components/widgets/presentation.js +40 -0
  161. package/dist/components/widgets/static.html +0 -0
  162. package/dist/components.html +790 -0
  163. package/dist/externals/componentPreview.js +101 -0
  164. package/dist/externals/dsComponentLoader.js +410 -0
  165. package/dist/externals/esri-leaflet-vector.js +5 -0
  166. package/dist/externals/esri-leaflet.js +12 -0
  167. package/dist/externals/fb-handlebars.min.js +29 -0
  168. package/dist/externals/fb-typeahead.bundle.min.js +6 -0
  169. package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
  170. package/dist/externals/getPagination.js +62 -0
  171. package/dist/externals/handlebars.min-v4.7.6.js +29 -0
  172. package/dist/externals/leaflet.js +6 -0
  173. package/dist/externals/populateDatastoreSim.js +381 -0
  174. package/dist/externals/tinymce_classes.css +62 -0
  175. package/dist/home.html +694 -0
  176. package/dist/index.html +710 -0
  177. package/dist/inner-with-nav.html +1853 -0
  178. package/dist/inner.html +671 -0
  179. package/dist/js/helpers.js +892 -0
  180. package/dist/js/main.js +55 -0
  181. package/dist/js/main.js.map +1 -0
  182. package/dist/js/runtime.js +2 -0
  183. package/dist/js/runtime.js.map +1 -0
  184. package/dist/main.css +918 -0
  185. package/dist/main.css.map +1 -0
  186. package/dist/mysource_files/ajax-loader.gif +0 -0
  187. package/dist/mysource_files/favicons/favicon.ico +0 -0
  188. package/dist/mysource_files/img/100x100.jpg +0 -0
  189. package/dist/mysource_files/img/600x260.jpg +0 -0
  190. package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
  191. package/dist/mysource_files/img/Heart-Pattern.png +0 -0
  192. package/dist/mysource_files/img/banner-background--desktop.png +0 -0
  193. package/dist/mysource_files/img/banner-background--mobile.png +0 -0
  194. package/dist/mysource_files/img/banner-bg.png +0 -0
  195. package/dist/mysource_files/img/banner.png +0 -0
  196. package/dist/mysource_files/img/card--brand.png +0 -0
  197. package/dist/mysource_files/img/card--components.png +0 -0
  198. package/dist/mysource_files/img/card--content.png +0 -0
  199. package/dist/mysource_files/img/header-logo-agov.png +0 -0
  200. package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
  201. package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
  202. package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
  203. package/dist/mysource_files/img/header-search.svg +3 -0
  204. package/dist/mysource_files/img/layers-2x.png +0 -0
  205. package/dist/mysource_files/img/layers.png +0 -0
  206. package/dist/mysource_files/img/marker-icon.png +0 -0
  207. package/dist/mysource_files/img/svg-icons.svg +155 -0
  208. package/dist/mysource_files/img/video-play.svg +3 -0
  209. package/dist/mysource_files/slick.eot +0 -0
  210. package/dist/mysource_files/slick.svg +14 -0
  211. package/dist/mysource_files/slick.ttf +0 -0
  212. package/dist/mysource_files/slick.woff +0 -0
  213. package/package-lock.json +14276 -0
  214. package/package.json +79 -0
  215. package/scripts/add_component.sh +109 -0
  216. package/src/assets/favicons/favicon.ico +0 -0
  217. package/src/assets/img/100x100.jpg +0 -0
  218. package/src/assets/img/600x260.jpg +0 -0
  219. package/src/assets/img/Heart-Pattern-Dark.png +0 -0
  220. package/src/assets/img/Heart-Pattern.png +0 -0
  221. package/src/assets/img/banner-background--desktop.png +0 -0
  222. package/src/assets/img/banner-background--mobile.png +0 -0
  223. package/src/assets/img/banner-bg.png +0 -0
  224. package/src/assets/img/banner.png +0 -0
  225. package/src/assets/img/card--brand.png +0 -0
  226. package/src/assets/img/card--components.png +0 -0
  227. package/src/assets/img/card--content.png +0 -0
  228. package/src/assets/img/header-logo-agov.png +0 -0
  229. package/src/assets/img/header-logo-qgov--dark.svg +63 -0
  230. package/src/assets/img/header-logo-qgov--light.svg +56 -0
  231. package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
  232. package/src/assets/img/header-search.svg +3 -0
  233. package/src/assets/img/layers-2x.png +0 -0
  234. package/src/assets/img/layers.png +0 -0
  235. package/src/assets/img/marker-icon.png +0 -0
  236. package/src/assets/img/svg-icons.svg +155 -0
  237. package/src/assets/img/video-play.svg +3 -0
  238. package/src/components/_global/css/admin/component.scss +71 -0
  239. package/src/components/_global/css/body/component.scss +897 -0
  240. package/src/components/_global/css/btn/component.scss +564 -0
  241. package/src/components/_global/css/cta_links/component.scss +121 -0
  242. package/src/components/_global/css/direction_links/component.scss +196 -0
  243. package/src/components/_global/css/example/component.scss +54 -0
  244. package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
  245. package/src/components/_global/css/forms/general/component.scss +298 -0
  246. package/src/components/_global/css/forms/select/component.scss +230 -0
  247. package/src/components/_global/css/forms/text/component.scss +402 -0
  248. package/src/components/_global/css/global.scss +42 -0
  249. package/src/components/_global/css/grid-12/component.scss +331 -0
  250. package/src/components/_global/css/headings/component.scss +172 -0
  251. package/src/components/_global/css/icons/component.scss +29 -0
  252. package/src/components/_global/css/link_columns/component.scss +194 -0
  253. package/src/components/_global/css/link_list/component.scss +37 -0
  254. package/src/components/_global/css/modal/component.scss +182 -0
  255. package/src/components/_global/css/slick/component.scss +25 -0
  256. package/src/components/_global/css/table/component.scss +211 -0
  257. package/src/components/_global/css/tabs/component.scss +43 -0
  258. package/src/components/_global/css/tags/component.scss +272 -0
  259. package/src/components/_global/css/user_location/component.scss +38 -0
  260. package/src/components/_global/css/version/component.scss +47 -0
  261. package/src/components/_global/html/component.hbs +108 -0
  262. package/src/components/_global/html/ds_component.hbs +30 -0
  263. package/src/components/_global/html/head.html +63 -0
  264. package/src/components/_global/html/scripts.html +58 -0
  265. package/src/components/_global/js/_polyfills/global.js +18 -0
  266. package/src/components/_global/js/animate/global.js +324 -0
  267. package/src/components/_global/js/forms/global.js +182 -0
  268. package/src/components/_global/js/global.js +302 -0
  269. package/src/components/_global/js/manifest.json +11 -0
  270. package/src/components/_global/js/modal/global.js +236 -0
  271. package/src/components/_global/js/slick/global.js +153 -0
  272. package/src/components/_global/js/tabs/global.js +305 -0
  273. package/src/components/_global/js/user_location/global.js +116 -0
  274. package/src/components/_template/css/component.scss +22 -0
  275. package/src/components/_template/html/component-page.html +85 -0
  276. package/src/components/_template/html/component.hbs +4 -0
  277. package/src/components/_template/js/global.js +6 -0
  278. package/src/components/_template/js/manifest.json +40 -0
  279. package/src/components/abstract/css/component.scss +91 -0
  280. package/src/components/abstract/html/component.hbs +9 -0
  281. package/src/components/abstract/js/manifest.json +29 -0
  282. package/src/components/accordion/css/component.scss +329 -0
  283. package/src/components/accordion/html/accordion-group.html +157 -0
  284. package/src/components/accordion/html/component.hbs +46 -0
  285. package/src/components/accordion/html/default.html +92 -0
  286. package/src/components/accordion/js/global.js +413 -0
  287. package/src/components/accordion/js/manifest.json +427 -0
  288. package/src/components/banner/css/component.scss +664 -0
  289. package/src/components/banner/html/component.hbs +52 -0
  290. package/src/components/banner/js/manifest.json +11 -0
  291. package/src/components/banner_advanced/css/component.scss +7 -0
  292. package/src/components/banner_advanced/html/component.hbs +213 -0
  293. package/src/components/banner_advanced/js/global.js +6 -0
  294. package/src/components/banner_advanced/js/manifest.json +1450 -0
  295. package/src/components/banner_basic/css/component.scss +52 -0
  296. package/src/components/banner_basic/html/component.hbs +130 -0
  297. package/src/components/banner_basic/js/global.js +6 -0
  298. package/src/components/banner_basic/js/manifest.json +151 -0
  299. package/src/components/banner_intermediate/css/component.scss +276 -0
  300. package/src/components/banner_intermediate/html/component.hbs +165 -0
  301. package/src/components/banner_intermediate/js/global.js +6 -0
  302. package/src/components/banner_intermediate/js/manifest.json +248 -0
  303. package/src/components/body/css/component.scss +16 -0
  304. package/src/components/body/html/component.hbs +5 -0
  305. package/src/components/body/js/manifest.json +46 -0
  306. package/src/components/breadcrumbs/css/component.scss +236 -0
  307. package/src/components/breadcrumbs/html/component.hbs +29 -0
  308. package/src/components/breadcrumbs/js/manifest.json +9 -0
  309. package/src/components/callout/css/component.scss +146 -0
  310. package/src/components/callout/html/component.hbs +28 -0
  311. package/src/components/callout/js/manifest.json +121 -0
  312. package/src/components/card_feature/css/component.scss +224 -0
  313. package/src/components/card_feature/html/component.hbs +129 -0
  314. package/src/components/card_feature/js/manifest.json +1390 -0
  315. package/src/components/card_multi_action/css/component.scss +229 -0
  316. package/src/components/card_multi_action/html/component.hbs +192 -0
  317. package/src/components/card_multi_action/js/manifest.json +1314 -0
  318. package/src/components/card_no_action/css/component.scss +551 -0
  319. package/src/components/card_no_action/html/component.hbs +127 -0
  320. package/src/components/card_no_action/js/global.js +6 -0
  321. package/src/components/card_no_action/js/manifest.json +1264 -0
  322. package/src/components/card_single_action/css/component.scss +164 -0
  323. package/src/components/card_single_action/html/component.hbs +161 -0
  324. package/src/components/card_single_action/js/manifest.json +1273 -0
  325. package/src/components/code/css/component.scss +355 -0
  326. package/src/components/code/html/component.hbs +84 -0
  327. package/src/components/code/js/global.js +160 -0
  328. package/src/components/code/js/manifest.json +112 -0
  329. package/src/components/footer/css/component.scss +437 -0
  330. package/src/components/footer/html/component.hbs +177 -0
  331. package/src/components/footer/js/manifest.json +9 -0
  332. package/src/components/global_alert/css/component.scss +169 -0
  333. package/src/components/global_alert/html/component.hbs +38 -0
  334. package/src/components/global_alert/js/global.js +39 -0
  335. package/src/components/global_alert/js/manifest.json +9 -0
  336. package/src/components/header/css/component.scss +697 -0
  337. package/src/components/header/html/component.hbs +186 -0
  338. package/src/components/header/js/global.js +188 -0
  339. package/src/components/header/js/manifest.json +11 -0
  340. package/src/components/horizontal_rule/css/component.scss +37 -0
  341. package/src/components/horizontal_rule/html/component.hbs +6 -0
  342. package/src/components/horizontal_rule/js/manifest.json +69 -0
  343. package/src/components/in_page_navigation/css/component.scss +54 -0
  344. package/src/components/in_page_navigation/html/component.hbs +17 -0
  345. package/src/components/in_page_navigation/js/global.js +51 -0
  346. package/src/components/in_page_navigation/js/manifest.json +35 -0
  347. package/src/components/internal_navigation/css/component.scss +437 -0
  348. package/src/components/internal_navigation/html/component.hbs +57 -0
  349. package/src/components/internal_navigation/js/manifest.json +11 -0
  350. package/src/components/left_hand_navigation/css/component.scss +280 -0
  351. package/src/components/left_hand_navigation/html/component.hbs +77 -0
  352. package/src/components/left_hand_navigation/js/global.js +36 -0
  353. package/src/components/left_hand_navigation/js/manifest.json +40 -0
  354. package/src/components/main_navigation/css/component.scss +706 -0
  355. package/src/components/main_navigation/html/component.hbs +87 -0
  356. package/src/components/main_navigation/js/global.js +373 -0
  357. package/src/components/main_navigation/js/manifest.json +11 -0
  358. package/src/components/mega_main_navigation/css/component.scss +535 -0
  359. package/src/components/mega_main_navigation/html/component.hbs +157 -0
  360. package/src/components/mega_main_navigation/js/global.js +170 -0
  361. package/src/components/mega_main_navigation/js/manifest.json +9 -0
  362. package/src/components/multi_column/css/component.scss +11 -0
  363. package/src/components/multi_column/html/component.hbs +98 -0
  364. package/src/components/multi_column/js/manifest.json +233 -0
  365. package/src/components/page_alert/css/component.scss +132 -0
  366. package/src/components/page_alert/html/component.hbs +26 -0
  367. package/src/components/page_alert/js/manifest.json +63 -0
  368. package/src/components/pagination/css/component.scss +196 -0
  369. package/src/components/pagination/html/component.hbs +41 -0
  370. package/src/components/pagination/html/default.html +30 -0
  371. package/src/components/pagination/js/manifest.json +42 -0
  372. package/src/components/search_box/css/component.scss +48 -0
  373. package/src/components/search_box/html/component.html +11 -0
  374. package/src/components/search_box/js/manifest.json +73 -0
  375. package/src/components/updated_date/css/component.scss +0 -0
  376. package/src/components/updated_date/html/component.hbs +31 -0
  377. package/src/components/updated_date/js/manifest.json +9 -0
  378. package/src/components/widgets/css/component.scss +82 -0
  379. package/src/components/widgets/html/component.hbs +19 -0
  380. package/src/components/widgets/html/default.html +4 -0
  381. package/src/components/widgets/js/current.json +483 -0
  382. package/src/components/widgets/js/manifest.json +9 -0
  383. package/src/components/widgets/js/site.json +358 -0
  384. package/src/data/current.json +522 -0
  385. package/src/data/current_admin.json +305 -0
  386. package/src/data/model_component.js +14 -0
  387. package/src/data/site.json +762 -0
  388. package/src/externals/componentPreview.js +101 -0
  389. package/src/externals/dsComponentLoader.js +410 -0
  390. package/src/externals/esri-leaflet-vector.js +5 -0
  391. package/src/externals/esri-leaflet.js +12 -0
  392. package/src/externals/fb-handlebars.min.js +29 -0
  393. package/src/externals/fb-typeahead.bundle.min.js +6 -0
  394. package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
  395. package/src/externals/getPagination.js +62 -0
  396. package/src/externals/handlebars.min-v4.7.6.js +29 -0
  397. package/src/externals/leaflet.js +6 -0
  398. package/src/externals/populateDatastoreSim.js +381 -0
  399. package/src/externals/tinymce_classes.css +62 -0
  400. package/src/helpers/Handlebars/appendIf.js +6 -0
  401. package/src/helpers/Handlebars/arrayLength.js +3 -0
  402. package/src/helpers/Handlebars/arrayWith.js +13 -0
  403. package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
  404. package/src/helpers/Handlebars/charMax.js +8 -0
  405. package/src/helpers/Handlebars/checkIf.js +20 -0
  406. package/src/helpers/Handlebars/columnWidth.js +39 -0
  407. package/src/helpers/Handlebars/contains.js +7 -0
  408. package/src/helpers/Handlebars/createMap.js +19 -0
  409. package/src/helpers/Handlebars/dsMapFromID.js +8 -0
  410. package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
  411. package/src/helpers/Handlebars/eachByName.js +18 -0
  412. package/src/helpers/Handlebars/eachDS.js +7 -0
  413. package/src/helpers/Handlebars/eachFrom.js +13 -0
  414. package/src/helpers/Handlebars/eachUpTo.js +8 -0
  415. package/src/helpers/Handlebars/eachWhen.js +33 -0
  416. package/src/helpers/Handlebars/formatDate.js +62 -0
  417. package/src/helpers/Handlebars/generateDates.js +74 -0
  418. package/src/helpers/Handlebars/getDistance.js +40 -0
  419. package/src/helpers/Handlebars/getObject.js +3 -0
  420. package/src/helpers/Handlebars/getParamaterByName.js +11 -0
  421. package/src/helpers/Handlebars/getPossibleValues.js +13 -0
  422. package/src/helpers/Handlebars/getProp.js +3 -0
  423. package/src/helpers/Handlebars/getTags.js +20 -0
  424. package/src/helpers/Handlebars/getTitle.js +4 -0
  425. package/src/helpers/Handlebars/ifAny.js +9 -0
  426. package/src/helpers/Handlebars/ifArray.js +3 -0
  427. package/src/helpers/Handlebars/ifCond.js +31 -0
  428. package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
  429. package/src/helpers/Handlebars/ifProp.js +3 -0
  430. package/src/helpers/Handlebars/if_eq.js +9 -0
  431. package/src/helpers/Handlebars/inArray.js +8 -0
  432. package/src/helpers/Handlebars/isPage.js +7 -0
  433. package/src/helpers/Handlebars/itemAt.js +11 -0
  434. package/src/helpers/Handlebars/jsonParse.js +8 -0
  435. package/src/helpers/Handlebars/jsonStringify.js +3 -0
  436. package/src/helpers/Handlebars/listAZ.js +51 -0
  437. package/src/helpers/Handlebars/listAZOptions.js +34 -0
  438. package/src/helpers/Handlebars/listByClosest.js +60 -0
  439. package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
  440. package/src/helpers/Handlebars/math.js +11 -0
  441. package/src/helpers/Handlebars/newLineToBreak.js +6 -0
  442. package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
  443. package/src/helpers/Handlebars/objectFromSelect.js +21 -0
  444. package/src/helpers/Handlebars/partialReplace.js +9 -0
  445. package/src/helpers/Handlebars/printAccordion.js +24 -0
  446. package/src/helpers/Handlebars/replace.js +8 -0
  447. package/src/helpers/Handlebars/replaceMany.js +5 -0
  448. package/src/helpers/Handlebars/sizeFormat.js +11 -0
  449. package/src/helpers/Handlebars/split.js +6 -0
  450. package/src/helpers/Handlebars/toUpperCase.js +7 -0
  451. package/src/helpers/Handlebars/urldecode.js +3 -0
  452. package/src/helpers/Handlebars/urlencode.js +3 -0
  453. package/src/helpers/Handlebars/withinObject.js +13 -0
  454. package/src/html/component-abstract.html +86 -0
  455. package/src/html/component-accordion.html +87 -0
  456. package/src/html/component-banner.html +84 -0
  457. package/src/html/component-banner_advanced.html +97 -0
  458. package/src/html/component-banner_basic.html +163 -0
  459. package/src/html/component-banner_intermediate.html +91 -0
  460. package/src/html/component-body.html +116 -0
  461. package/src/html/component-breadcrumbs.html +88 -0
  462. package/src/html/component-btn.html +117 -0
  463. package/src/html/component-callout.html +86 -0
  464. package/src/html/component-card_feature.html +631 -0
  465. package/src/html/component-card_multi_action.html +793 -0
  466. package/src/html/component-card_no_action.html +521 -0
  467. package/src/html/component-card_single_action.html +631 -0
  468. package/src/html/component-code.html +84 -0
  469. package/src/html/component-footer.html +87 -0
  470. package/src/html/component-forms.html +585 -0
  471. package/src/html/component-global-elements.html +531 -0
  472. package/src/html/component-global_alert.html +87 -0
  473. package/src/html/component-header.html +88 -0
  474. package/src/html/component-in_page_navigation.html +109 -0
  475. package/src/html/component-internal_navigation.html +87 -0
  476. package/src/html/component-left_hand_navigation.html +85 -0
  477. package/src/html/component-main_navigation.html +87 -0
  478. package/src/html/component-mega_main_navigation.html +88 -0
  479. package/src/html/component-multi_column.html +86 -0
  480. package/src/html/component-page_alert.html +86 -0
  481. package/src/html/component-pagination.html +86 -0
  482. package/src/html/component-tag_list.html +340 -0
  483. package/src/html/component-updated_date.html +88 -0
  484. package/src/html/component-widgets.html +90 -0
  485. package/src/html/components.html +136 -0
  486. package/src/html/home.html +126 -0
  487. package/src/html/index.html +142 -0
  488. package/src/html/inner-with-nav.html +1126 -0
  489. package/src/html/inner.html +107 -0
  490. package/src/index.js +12 -0
  491. package/src/styles/global.scss +120 -0
  492. package/src/styles/imports/figma.scss +0 -0
  493. package/src/styles/imports/functions.scss +519 -0
  494. package/src/styles/imports/mixins.scss +658 -0
  495. package/src/styles/imports/placeholders.scss +68 -0
  496. package/src/styles/imports/utilities.scss +185 -0
  497. package/src/styles/imports/variables.scss +484 -0
  498. package/src/styles/postcss.config.js +4 -0
  499. package/webpack/JsonMergePlugin.js +35 -0
  500. package/webpack/PrecompilePlugin.js +369 -0
  501. package/webpack/webpack.common.js +151 -0
  502. package/webpack/webpack.dev.js +54 -0
  503. package/webpack/webpack.prod.js +70 -0
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@qhealth-design-system/core",
3
+ "version": "1.0.38",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "build": "webpack --config webpack/webpack.prod.js --env.minify=true",
8
+ "build-all": "npm run build && npm run jsdoc",
9
+ "serve": "webpack-dev-server --open --config webpack/webpack.dev.js",
10
+ "add-component": "bash scripts/add_component.sh",
11
+ "jsdoc": "./node_modules/jsdoc/jsdoc.js -a all -c jsdoc.json -r -R README.md ./src/components/ -d ./documentation/jsdoc",
12
+ "lint:js": "eslint \"./src/**/*.js\"",
13
+ "lint:styles": "stylelint \"./src/**/*.css\" \"./src/**/*.scss\" \"!./src/**/*.min.css\"",
14
+ "lint": "npm run lint:js && npm run lint:styles",
15
+ "get-figma": "node .figma.js"
16
+ },
17
+ "keywords": [],
18
+ "author": "",
19
+ "license": "ISC",
20
+ "devDependencies": {
21
+ "@babel/core": "^7.12.13",
22
+ "@babel/plugin-syntax-dynamic-import": "^7.7.4",
23
+ "@babel/preset-env": "^7.12.13",
24
+ "@babel/preset-react": "^7.12.13",
25
+ "autoprefixer": "^9.8.6",
26
+ "babel-eslint": "^10.1.0",
27
+ "babel-loader": "^8.2.2",
28
+ "clean-webpack-plugin": "^0.1.19",
29
+ "copy-webpack-plugin": "^5.1.2",
30
+ "core-js": "^3.8.3",
31
+ "css-loader": "^1.0.1",
32
+ "eslint": "^5.6.1",
33
+ "eslint-loader": "^2.2.1",
34
+ "esm": "^3.2.25",
35
+ "exports-loader": "^3.0.0",
36
+ "file-loader": "^2.0.0",
37
+ "glob": "^7.1.6",
38
+ "handlebars": "^4.7.7",
39
+ "html-loader": "^0.5.5",
40
+ "html-webpack-plugin": "^3.2.0",
41
+ "import-glob-loader": "^1.1.0",
42
+ "imports-loader": "^3.0.0",
43
+ "jsdoc": "^3.6.7",
44
+ "mini-css-extract-plugin": "^0.4.5",
45
+ "node-sass": "^4.14.1",
46
+ "postcss-loader": "^3.0.0",
47
+ "prismjs": "^1.29.0",
48
+ "raw-loader": "^4.0.2",
49
+ "sass-loader": "^7.3.1",
50
+ "style-loader": "^0.23.1",
51
+ "stylelint": "^10.1.0",
52
+ "stylelint-config-standard": "^18.3.0",
53
+ "stylelint-scss": "^3.18.0",
54
+ "stylelint-webpack-plugin": "^0.10.5",
55
+ "url-loader": "^4.1.1",
56
+ "webpack": "^4.46.0",
57
+ "webpack-cli": "^3.3.12",
58
+ "webpack-dev-server": "^3.11.2"
59
+ },
60
+ "dependencies": {
61
+ "bloodhound-js": "^1.2.3",
62
+ "corejs-typeahead": "^1.3.1",
63
+ "datatables.net": "^1.11.3",
64
+ "datatables.net-dt": "^1.11.3",
65
+ "extract-loader": "^5.1.0",
66
+ "handlebars-loader": "^1.7.1",
67
+ "highlight.js": "^11.1.0",
68
+ "jquery": "^3.5.1",
69
+ "jquery-ui": "^1.13.0",
70
+ "jquery-validation": "^1.19.3",
71
+ "node-jq": "^2.0.0",
72
+ "select2": "^4.1.0-rc.0",
73
+ "slick-carousel": "^1.8.1",
74
+ "string-replace-loader": "^2.3.0",
75
+ "tinymce": "^5.8.2",
76
+ "to-string-loader": "^1.1.6",
77
+ "webpack-merge": "^4.2.2"
78
+ }
79
+ }
@@ -0,0 +1,109 @@
1
+ #!/bin/sh
2
+
3
+ #######
4
+ # Set varialbes
5
+ #######
6
+ version="0.1.0";
7
+ componentsPathRelative="../../src/components";
8
+ componentsPathAbsolute="./src/components";
9
+
10
+ #######
11
+ # Set colors
12
+ #######
13
+ RED='\033[0;31m';
14
+ LRED='\033[1;31m';
15
+ GREEN='\033[0;32m';
16
+ LGREEN='\033[1;32m';
17
+ NC='\033[0m'; # No Color
18
+
19
+ #######
20
+ # Functions
21
+ #######
22
+
23
+ # Cross env sed in place - https://stackoverflow.com/questions/2320564/i-need-my-sed-i-command-for-in-place-editing-to-work-with-both-gnu-sed-and-bsd
24
+ sedi () {
25
+ sed --version >/dev/null 2>&1 && sed -i -- "$@" || sed -i "" "$@"
26
+ }
27
+
28
+ # Rename [component_name] to real name
29
+ rename_component_name()
30
+ {
31
+ path=$1
32
+ componentNameTrimed=$2
33
+
34
+ echo "┌──────";
35
+ for lvl1 in $path/*
36
+ do
37
+
38
+ # File on first level
39
+ if [ -f "$lvl1" ]; then
40
+ echo -e "| Processing: ${GREEN}[components]${LGREEN}${lvl1//$componentsPathRelative/}${NC}";
41
+ sedi "s/\[component_name\]/$componentNameTrimed/g" $lvl1
42
+ fi
43
+
44
+ # Folder on first level
45
+ if [ -d "$lvl1" ]; then
46
+ for lvl2 in $lvl1/*
47
+ do
48
+ # File on second level
49
+ if [ -f "$lvl2" ];
50
+ then
51
+ echo -e "| Processing: ${GREEN}[components]${LGREEN}${lvl2//$componentsPathRelative/}${NC}";
52
+ sedi "s/\[component_name\]/$componentNameTrimed/g" $lvl2
53
+ fi
54
+ done
55
+ fi
56
+ done
57
+ echo "└──────";
58
+ }
59
+
60
+ #######
61
+ # Get new component name
62
+ #######
63
+ echo "┌──────";
64
+ echo -e "| Add component version: ${LGREEN}$version${NC}";
65
+ echo "├──────";
66
+
67
+ echo -n "└ Input component name: ";
68
+ read componentName;
69
+ componentNameFriendly="$(tr '[:lower:]' '[:upper:]' <<< ${componentName:0:1})${componentName:1}"
70
+ componentNameTrimed=${componentName//[[:space:]]/_}
71
+
72
+ #######
73
+ # Exit if component already exists
74
+ #######
75
+ if [ -d "$componentsPathAbsolute/$componentNameTrimed" ]; then
76
+ echo -e "[${RED}Error${NC}] Component with that name already exists."
77
+ exit;
78
+ fi
79
+
80
+ #######
81
+ # Create new component from the base template
82
+ #######
83
+ mkdir "$componentsPathAbsolute/$componentNameTrimed"
84
+ cp -R "$componentsPathAbsolute/_template/." "$componentsPathAbsolute/$componentNameTrimed"
85
+
86
+ #######
87
+ # Replace [component_name] in template files with actual component name
88
+ #######
89
+ rename_component_name $componentsPathAbsolute/$componentNameTrimed $componentNameTrimed
90
+
91
+ #######
92
+ # Create component preview page
93
+ #######
94
+ mv "$componentsPathAbsolute/$componentNameTrimed/html/component-page.html" "./src/html/component-$componentNameTrimed.html"
95
+
96
+ #######
97
+ # Update current.json to add component page to internal navigation
98
+ #######
99
+ ./node_modules/node-jq/bin/jq ".children[0].children = (.children[0].children += [{\"asset_url\": \"/component-$componentNameTrimed.html\",\"asset_name\": \"$componentNameFriendly\",\"asset_short_name\": \"$componentNameFriendly\", \"children\": []}] | .children[0].children | sort_by(.asset_name))" "./src/data/current.json" > "./src/data/current-tmp.json" && mv "./src/data/current-tmp.json" "./src/data/current.json"
100
+
101
+ #######
102
+ # Success
103
+ #######
104
+ echo "┌──────";
105
+ echo -e "| DONE";
106
+ echo -e "| To access new component folder type ${LGREEN}cd '$componentsPathAbsolute/$componentNameTrimed'${NC}";
107
+ echo "└──────";
108
+
109
+ exit;
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,63 @@
1
+ <svg width="170" height="56" viewBox="0 0 170 56" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M59.2787 21.2597C59.0853 21.3111 58.617 21.455 58.3116 21.4962C58.8918 20.9205 59.2379 20.2216 59.2379 19.6459C58.9631 19.7385 58.4643 19.9235 58.0062 20.0263C58.9122 19.2451 59.4008 18.3508 59.187 17.1584C58.9122 17.3023 58.5152 17.5285 58.1284 17.6929C58.9224 16.4697 58.9122 15.3802 58.5865 14.7429C58.2302 15.0821 57.8026 15.4727 57.3548 15.7502C57.65 14.3317 57.6296 13.4169 57.0392 12.7693C56.4386 13.9205 55.9195 14.7634 55.0746 15.781C55.1458 14.8457 55.044 13.6739 54.4333 13.0571C54.4333 13.0571 54.2602 14.3625 53.8021 14.784C53.6902 13.4991 53.3034 12.8001 52.7231 12.1114C52.7231 12.1114 52.6824 13.4477 52.3261 14.27C52.0208 13.1496 51.4507 12.2862 50.728 11.4639C50.7789 13.9308 50.0969 18.5769 48.1424 21.7017C47.9083 23.552 47.7047 26.3478 44.7221 27.9925C44.2946 27.6841 43.5312 27.2935 42.4725 27.3552C42.1875 25.9572 43.9994 24.6827 45.567 23.6753C47.1448 22.6474 47.837 21.7737 47.7963 20.3963C47.7556 18.8956 46.7478 18.2788 45.7095 18.2377C44.2437 18.1658 43.0425 19.5123 42.7575 20.0777C42.33 20.2832 41.0779 20.6738 40.5588 20.8178C39.9887 20.9719 39.3372 21.2084 38.9301 21.5476C39.1744 21.7017 39.8564 21.7531 40.1312 21.712C40.63 21.6401 42.218 21.342 43.7347 21.157C44.2946 21.455 45.1802 21.969 44.2335 22.6269C42.9408 23.4595 42.3809 23.6753 40.5588 24.6415C37.678 26.1628 38.6145 29.9969 39.3169 30.2847C39.3169 31.5799 40.4672 33.9132 41.2408 34.7252C41.5869 36.3493 41.1288 38.7752 40.6402 39.7825C40.2432 38.7957 39.5408 36.5138 39.0929 35.1775C39.5612 32.6489 38.8079 31.5387 38.2786 31.1173C37.7493 30.6753 36.9146 30.7987 36.375 31.6724C37.2098 31.5799 37.4846 32.6592 37.4642 33.7693C37.4439 35.1056 37.108 36.1746 36.1816 36.1848C36.2529 37.3258 37.4744 37.6547 38.0852 37.0997C38.1768 37.3567 38.6654 38.8574 39.1337 40.1937C39.4085 40.9851 39.6732 41.7149 39.8564 42.0953C40.0498 42.5167 41.4546 42.5887 41.6174 42.0953C41.8414 41.4477 42.0144 40.9543 42.3707 40.1937C42.6354 39.618 43.012 38.8779 43.5719 37.7884C43.9485 38.4462 44.4575 39.4844 44.7425 40.1937C44.8748 40.5123 44.9766 40.7796 44.9868 40.9029C45.0988 41.9925 45.0377 45.8574 44.7425 48.1702C41.5971 47.3067 40.7115 48.8588 40.9863 50.0101C41.4444 49.5064 42.0246 49.5681 42.3911 49.8354C42.2994 50.6782 42.5336 51.295 43.3886 51.5519C44.2946 49.1364 47.5317 49.6709 47.837 49.8765C47.8472 49.4139 48.2849 48.2524 46.6155 48.0057C46.6766 45.9191 46.8903 43.3596 46.9718 42.8251C47.043 42.2906 47.1041 41.9616 46.8496 41.129C46.7784 40.8823 46.6868 40.574 46.5951 40.2039C46.3814 39.3611 46.1574 38.2612 46.1371 37.0586C46.4221 37.3464 47.1143 37.5828 47.5927 37.4697C47.9592 39.0527 48.4885 38.5901 48.7634 39.248C48.9059 39.5872 48.9364 39.9058 48.9771 40.1937C49.0077 40.4712 49.0484 40.7076 49.2011 40.9132C50.3208 40.944 51.2675 40.6768 51.9495 40.1937C52.1633 40.0395 52.3363 39.875 52.4992 39.69C52.2243 38.0145 51.7561 37.1819 50.8908 36.1643C50.6669 34.7869 50.0256 33.5329 49.1604 32.4227C50.2597 32.063 51.3693 31.1584 51.9597 30.5417C52.489 30.5006 53.0896 30.0586 53.1303 29.1951C53.4357 29.154 53.7004 29.1437 53.9345 29.0923C53.9039 28.8559 53.8429 28.4962 53.8123 28.2803C54.2195 28.2803 54.5961 28.2597 54.983 28.2289C54.871 27.9103 54.7285 27.5813 54.6165 27.3449C55.0237 27.3449 55.5225 27.3141 55.9296 27.2935C55.7159 26.8824 55.553 26.5329 55.4309 26.1731C55.8991 26.132 56.6117 26.0086 57.2021 25.875C57.0087 25.6694 56.7949 25.4639 56.4793 25.1452C58.0164 24.6827 58.6781 23.6136 58.7595 23.1408C58.5356 23.1408 58.0673 23.2436 57.7925 23.223C58.617 22.7091 59.1972 22.0101 59.2787 21.2597Z" fill="#022A50"/>
4
+ <path d="M37.8308 24.7344H28.3232H18.8055H18.4492V25.0941V31.9605C18.5408 32.0119 18.6223 32.0839 18.7139 32.1661V25.0427H37.9936V31.6624C38.0649 31.7344 38.126 31.8269 38.187 31.9502V25.1044V24.7447H37.8308V24.7344Z" fill="#022A50"/>
5
+ <path d="M28.2942 49.6405C19.7435 46.4232 18.6543 39.3409 18.6238 36.1339C18.6136 36.1339 18.6034 36.1339 18.5933 36.1236C18.6034 36.0414 18.6136 35.9694 18.6238 35.8872C18.6238 35.1882 18.6747 34.7154 18.7052 34.5509C18.6849 34.0884 18.6136 33.7389 18.5424 33.4613C18.522 33.4099 18.4813 33.3483 18.4609 33.2969V36.6273C18.4609 40.3585 19.825 43.5759 22.492 46.1867C24.8332 48.4789 27.4595 49.548 28.2128 49.8152L28.3349 49.8563L28.4571 49.8152C29.2104 49.548 31.8366 48.4789 34.1779 46.1867C36.8449 43.5759 38.1988 40.3483 38.1988 36.6273V36.0208C38.1377 36.1339 38.0664 36.1956 37.985 36.2881C37.9137 37.9635 37.6084 40.5641 36.4988 42.5171C35.1755 45.2719 33.1498 47.523 28.2942 49.6405Z" fill="#022A50"/>
6
+ <path d="M24.8714 18.3403C23.5379 18.4226 22.2248 20.17 22.7846 22.1641C22.5912 22.2361 22.011 22.2258 21.8176 21.8249C21.6751 22.4725 20.3721 23.2229 19.4153 23.1201C19.9446 22.5445 20.2907 21.2493 21.329 20.5606C22.3673 19.8719 22.8355 19.4094 23.1918 18.2376C22.7134 18.4637 20.2194 19.1113 19.5171 18.3301C21.1559 18.0937 23.09 17.1583 24.0469 16.5518L23.6601 16.1509C22.632 16.7368 21.2577 17.2199 20.5655 17.4358C20.3212 15.3697 22.2757 15.452 22.4182 16.007C23.2224 15.0408 22.6625 13.6531 22.0619 13.4989C22.6727 11.8543 22.0619 10.8367 21.5428 10.2199C21.4206 11.9777 19.4865 12.2552 19.2524 13.6017C19.171 12.5327 19.1099 9.64432 19.0183 8.2361C18.8656 5.61496 15.598 4.7104 15.0992 4.7104C12.9615 4.81319 12.758 4.52538 12.8089 3.52832C11.7298 4.77208 12.0963 5.88221 13.0124 6.41672C12.8903 7.16708 11.6993 7.74271 10.9766 7.90717C12.7172 9.53125 14.7328 8.56503 15.6896 7.63992C15.7609 7.57824 15.8321 7.51657 15.9034 7.4549C16.2495 8.07164 16.504 9.20232 16.504 9.8499C14.8753 9.75739 14.5902 11.032 14.5902 11.4843C16.6567 10.6208 16.8806 14.6091 17.4201 15.2567C16.8908 15.2258 15.9645 13.9923 14.5902 13.8998C12.9412 13.797 12.361 14.681 11.6891 14.6502C11.8113 15.822 13.2364 16.4901 14.1525 16.634C13.6843 17.8367 14.1016 18.659 15.0687 18.9571C15.0687 17.8572 16.4531 17.5078 17.9393 18.3917C19.7207 19.4402 20.6368 19.5327 22.0619 19.0907C21.8278 19.6149 21.1763 19.6663 20.3925 20.4475C19.2829 21.5474 19.2524 22.9865 18.0105 23.5107C19.4662 24.2097 21.6446 23.2332 21.9601 22.6678C22.5709 23.0481 23.3547 22.822 23.5583 22.4314C22.5811 20.2317 24.2301 18.9263 24.8816 18.9571C24.902 18.9776 25.187 18.3198 24.8714 18.3403ZM17.3183 17.4358C16.5854 17.1377 15.4657 16.9424 14.8345 17.8367C14.4884 17.2405 14.9974 16.3359 15.313 16.0687C13.7148 16.0892 12.8089 15.6061 12.5747 15.1127C13.1651 14.7838 14.6615 14.239 15.883 15.1436C16.7279 15.7603 17.1554 16.0687 18.153 16.3976C18.5093 16.0276 18.377 16.192 18.4991 16.0892C17.6848 15.5239 17.3183 11.1245 15.71 10.96C15.9441 10.405 16.7686 10.4564 17.4303 10.6311C17.4812 9.64432 17.074 8.02024 16.4734 7.08485C17.3998 6.59146 18.0411 7.12597 18.3668 8.29777C18.7129 9.54153 18.3057 12.6458 19.1099 15.4417L19.6087 14.9688C19.3542 13.3345 21.1254 12.7383 21.5122 11.9263C21.6649 13.0261 21.441 13.5092 21.1356 13.9101C21.7769 13.9923 22.0619 14.6194 21.9601 15.0716C20.4129 14.8352 19.5171 16.4079 19.8632 17.6517C18.7333 17.8984 17.9494 17.7031 17.3183 17.4358ZM12.9412 5.2038C14.1627 5.81026 14.5495 4.70013 16.8297 6.19058C15.3232 6.67369 14.1627 8.55475 12.4628 8.07164C13.6843 7.4549 13.5519 6.56062 14.2645 6.10835C13.8064 6.04667 12.931 5.84109 12.9412 5.2038Z" fill="#022A50"/>
7
+ <path d="M40.711 12.3073C40.711 9.86086 40.6194 7.84617 40.5888 7.20887C40.6804 7.22943 40.7721 7.26027 40.884 7.30139C42.6247 7.91813 43.0217 10.0356 46.615 7.63031C44.6911 7.85645 44.5893 6.21181 43.7139 6.1707C45.0474 5.41005 45.139 3.65234 45.139 3.65234C44.0193 4.5569 41.4337 4.61857 40.9247 4.91666C40.2529 5.32782 39.408 5.82121 38.838 6.13986C37.3416 6.96218 38.3799 11.4438 38.2374 13.0782C37.4332 10.6421 35.7943 11.0018 34.9393 9.60388C34.298 10.7654 34.98 12.7287 35.2447 13.2838C34.3183 14.0444 34.5626 15.4629 34.7866 15.833C35.5806 15.2573 36.8123 15.4012 37.1787 16.3675C36.1404 17.015 34.3896 17.1281 33.1986 15.9563L32.7711 16.4394C33.6159 17.5701 35.7231 18.0018 37.2907 17.087C37.2805 17.344 37.2296 17.6318 37.1278 17.9504C36.3135 18.3821 35.265 18.6186 34.0537 18.1971C34.2165 19.4203 35.6213 20.3454 36.9446 20.7155C36.4967 21.065 35.9369 21.2089 35.5399 21.1575C35.7842 21.8667 35.9267 22.8124 35.3973 23.5628C34.7357 23.1208 34.3794 22.6685 34.1249 20.9519C33.8704 19.225 32.6387 17.4673 31.6819 17.1178C31.631 17.7243 31.631 17.457 31.7328 17.8579C34.2674 19.739 32.8321 23.131 35.4788 24.3542C36.4458 23.2338 36.456 22.8432 36.3135 21.7948C37.2703 21.5378 37.9829 20.7257 38.2374 20.0987C37.3314 20.5304 35.8961 19.7698 35.4991 19.1736C37.0668 19.1222 38.5224 17.9299 40.0188 16.3572C41.3523 14.949 43.1235 15.1648 42.981 16.2647C43.8971 16.131 44.2636 14.8564 43.9582 14.0444C45.3019 13.623 46.3707 12.6053 46.5132 11.0327C44.7217 11.968 42.4211 10.457 40.711 12.3073ZM42.8894 13.6332C43.6019 14.2191 43.3678 15.062 43.1947 15.2573C42.5738 14.1575 40.5583 14.5481 38.5835 16.7992C38.441 16.9636 38.2577 17.1589 38.044 17.3542C38.1967 14.6611 36.0081 14.6097 35.3668 14.8873C35.4381 14.1061 35.9165 13.5819 36.171 13.4996C35.5297 12.7493 35.3872 11.8036 35.3159 11.1149C36.3847 11.5774 37.9625 12.8418 38.2374 15.0106L38.9296 14.5378C38.726 10.7448 38.7667 10.7551 38.7464 8.1751C38.7362 7.81534 38.7565 6.97246 39.8966 7.06497C39.9373 8.02092 40.09 10.5701 40.0391 14.1061H40.4463C40.8128 13.1193 42.1056 11.968 43.6121 12.0606C44.6504 12.1325 44.9965 12.1017 45.5869 11.8447C45.0983 13.0371 43.3474 13.551 42.8894 13.6332ZM39.9373 6.40711C40.6703 5.88289 41.1283 5.64647 41.5151 5.42033C42.1463 5.44089 43.2253 5.36894 43.8768 5.04001C43.1947 5.88289 43.1235 6.18098 42.0139 6.30432C43.4492 6.43795 44.0498 7.7331 44.7624 7.9284C42.36 8.65821 42.1157 6.26321 39.9373 6.40711Z" fill="#022A50"/>
8
+ <path d="M30.93 20.6534C30.8079 20.6534 30.6959 20.7151 30.6247 20.8076C30.4923 20.7871 30.3498 20.7665 30.1971 20.746L30.2073 19.9545C30.3498 19.8928 30.4414 19.7592 30.4414 19.5947C30.4414 19.3788 30.2684 19.2041 30.0546 19.2041C29.8408 19.2041 29.6678 19.3891 29.6678 19.5947C29.6678 19.7489 29.7492 19.8722 29.8714 19.9339L29.8612 20.6946C29.7289 20.6843 29.5965 20.6637 29.454 20.6534C29.393 20.5198 29.2606 20.417 29.0978 20.417C28.884 20.417 28.7109 20.5815 28.7109 20.8076C28.7109 21.0235 28.884 21.1982 29.0978 21.1982C29.2301 21.1982 29.3624 21.1263 29.4235 21.0132C29.5762 21.0338 29.7187 21.044 29.8612 21.0646L29.851 22.2158C29.7289 22.2775 29.6474 22.4111 29.6474 22.5653C29.6474 22.7812 29.8205 22.9559 30.0343 22.9559C30.248 22.9559 30.4211 22.7812 30.4211 22.5653C30.4211 22.4009 30.3295 22.2672 30.1869 22.2056L30.1971 21.1057C30.3295 21.1263 30.4414 21.1468 30.5636 21.1674C30.6247 21.3216 30.757 21.4346 30.93 21.4346C31.1438 21.4346 31.3169 21.2599 31.3169 21.044C31.3169 20.8282 31.1438 20.6534 30.93 20.6534Z" fill="#022A50"/>
9
+ <path d="M27.5589 20.4268C27.3961 20.4268 27.2637 20.5193 27.2027 20.6632C27.0703 20.6735 26.9278 20.6838 26.7955 20.7043L26.7853 19.9437C26.9075 19.882 26.9889 19.7484 26.9889 19.6045C26.9889 19.3886 26.8159 19.2139 26.6021 19.2139C26.3883 19.2139 26.2153 19.3989 26.2153 19.6045C26.2153 19.7689 26.3069 19.9026 26.4494 19.9642L26.4596 20.7557C26.3171 20.766 26.1644 20.7968 26.032 20.8174C25.971 20.7249 25.859 20.6632 25.7267 20.6632C25.5129 20.6632 25.3398 20.8482 25.3398 21.0538C25.3398 21.2697 25.5129 21.4444 25.7267 21.4444C25.8997 21.4444 26.0422 21.3313 26.0931 21.1772C26.2153 21.1566 26.3374 21.136 26.4596 21.1155L26.4698 22.2153C26.3374 22.2667 26.2458 22.4106 26.2458 22.5751C26.2458 22.791 26.4189 22.9657 26.6326 22.9657C26.8464 22.9657 27.0194 22.791 27.0194 22.5751C27.0194 22.4209 26.9278 22.2976 26.8057 22.2256L26.7955 21.0744C26.9278 21.0538 27.0805 21.0435 27.223 21.023C27.2943 21.136 27.4164 21.208 27.5488 21.208C27.7625 21.208 27.9356 21.0332 27.9356 20.8174C27.9458 20.6015 27.7727 20.4268 27.5589 20.4268Z" fill="#022A50"/>
10
+ <path d="M32.7203 23.7986C32.4862 22.2156 31.9161 17.7854 31.8551 16.2949L31.1832 16.3258C31.1934 16.5827 31.224 16.9117 31.2545 17.3023C30.4503 17.0658 29.4018 16.8911 28.3228 16.8911C27.254 16.8911 26.1953 17.0556 25.3912 17.3023C25.4217 16.9117 25.4522 16.5827 25.4624 16.3258L24.7906 16.2949C24.7295 17.7751 24.1595 22.2053 23.9253 23.7986C23.5182 23.9528 23.2637 24.3639 23.2637 25.0835C23.2637 25.0835 26.9079 25.1349 28.3228 25.1349C29.7276 25.1349 33.3718 25.0835 33.3718 25.0835C33.382 24.3537 33.1173 23.9528 32.7203 23.7986ZM28.3228 23.7575C27.7426 24.8779 26.6636 24.8368 25.7271 24.2097C25.3504 23.9631 24.9636 23.7986 24.6074 23.7369C24.7702 22.6371 25.0349 20.5607 25.2385 18.803C26.4498 18.2479 27.9564 18.1246 28.3228 19.5328C28.6893 18.1246 30.1857 18.2479 31.4072 18.803C31.6006 20.5607 31.8754 22.6268 32.0383 23.7369C31.682 23.7986 31.2952 23.9631 30.9186 24.2097C29.9821 24.8368 28.903 24.8676 28.3228 23.7575Z" fill="#022A50"/>
11
+ <path d="M48.774 51.7886C48.3566 51.9223 47.8476 51.9942 47.074 51.9942H46.1273C42.8496 51.9223 39.4904 50.9457 37.4239 48.8077C40.2742 45.909 36.9252 43.514 35.1132 45.981C34.5534 46.7519 34.0953 47.2967 33.7085 48.0471C33.3827 48.6535 33.627 49.2497 34.3396 50.1748C34.7264 50.6785 35.6935 51.47 36.4773 51.9942H20.119C20.9028 51.47 21.8699 50.6888 22.2567 50.1748C22.959 49.2497 23.2033 48.6433 22.8878 48.0471C22.4908 47.2967 22.0429 46.7519 21.4729 45.981C19.6609 43.514 16.3119 45.909 19.1621 48.8077C17.0957 50.9355 13.7365 51.9223 10.4588 51.9942H9.56297C8.79952 51.9942 8.28037 51.9223 7.86302 51.7886C7.19118 51.6242 7.03849 51.9223 7.40494 53.0941C7.65943 53.8753 7.85284 55.1601 7.94445 56.0441H48.7027C48.7841 55.1704 48.9877 53.8855 49.2422 53.0941C49.6087 51.9223 49.456 51.6242 48.774 51.7886ZM36.0192 46.0838C36.5485 45.3643 37.3323 45.5596 37.6581 46.166C38.0042 46.8033 37.5054 47.6051 36.8234 48.2218C35.897 47.2042 35.7952 46.3922 36.0192 46.0838ZM34.6653 49.4656C34.3396 48.9927 34.2276 48.7255 34.4007 48.2732C34.5635 47.8312 34.9198 47.4406 35.2761 46.8958C35.8461 49.1366 39.1952 51.2747 41.6789 51.9942H37.7293C36.7012 51.4391 35.4186 50.5243 34.6653 49.4656ZM18.9382 46.166C19.2639 45.5596 20.0376 45.3745 20.5669 46.0838C20.7908 46.3922 20.6992 47.2042 19.7627 48.2218C19.0909 47.6051 18.5921 46.8033 18.9382 46.166ZM21.3303 46.8958C21.6968 47.4406 22.0429 47.8312 22.2058 48.2732C22.3788 48.7255 22.2668 49.003 21.9411 49.4656C21.1878 50.5243 19.9052 51.4289 18.8771 51.9942H14.9377C17.4113 51.285 20.7603 49.1469 21.3303 46.8958ZM48.0003 55.3965H8.64683C8.4636 54.1322 8.22947 53.3305 8.01571 52.6418H48.6213C48.4075 53.3305 48.1734 54.1425 48.0003 55.3965Z" fill="#022A50"/>
12
+ <path d="M13.9817 54.5025C13.9919 54.5025 14.0021 54.5128 14.0021 54.523L14.1039 54.8109C14.114 54.8417 14.1039 54.8623 14.0835 54.8725C14.0631 54.8725 14.053 54.8725 14.053 54.8931C14.053 54.9136 14.0835 54.9136 14.1242 54.9136H14.5619C14.6434 54.9136 14.6637 54.9136 14.6637 54.8931C14.6637 54.8725 14.6535 54.8725 14.6332 54.8725C14.6026 54.8725 14.5721 54.8725 14.5314 54.8622C14.4805 54.852 14.4092 54.8211 14.3278 54.6053C14.1751 54.2455 13.8087 53.2896 13.7578 53.1559C13.7272 53.1045 13.717 53.084 13.6967 53.084C13.6763 53.084 13.656 53.1148 13.6356 53.1765L13.0452 54.6567C13.0045 54.78 12.9536 54.852 12.8518 54.8622C12.8314 54.8622 12.8009 54.8622 12.7805 54.8622C12.7602 54.8622 12.75 54.8623 12.75 54.8828C12.75 54.9034 12.7704 54.9034 12.7907 54.9034H13.0656H13.32C13.3404 54.9034 13.3608 54.9034 13.3608 54.8828C13.3608 54.8623 13.3506 54.8622 13.32 54.8622H13.2895C13.2183 54.8622 13.1979 54.8314 13.1979 54.7903C13.1979 54.7697 13.2081 54.7081 13.2284 54.6567L13.2793 54.523C13.2895 54.5025 13.2895 54.5025 13.2997 54.5025H13.9817ZM13.3506 54.3894C13.3404 54.3894 13.3404 54.3791 13.3404 54.3689L13.6356 53.5774C13.6356 53.5671 13.6458 53.5568 13.6458 53.5568C13.656 53.5568 13.656 53.5671 13.656 53.5774L13.9512 54.3689C13.9512 54.3791 13.9512 54.3894 13.941 54.3894H13.3506Z" fill="#022A50"/>
13
+ <path d="M15.1404 54.1529C15.1404 54.4921 15.232 54.6771 15.3541 54.7799C15.517 54.9341 15.741 54.9341 15.8631 54.9341C16.0158 54.9341 16.1889 54.9135 16.3517 54.7696C16.5451 54.6052 16.5757 54.3174 16.5757 54.0604V53.8137C16.5757 53.4539 16.5757 53.3923 16.5757 53.3203C16.5858 53.2381 16.596 53.197 16.6571 53.1867C16.6876 53.1867 16.708 53.1764 16.7284 53.1764C16.7589 53.1764 16.7691 53.1661 16.7691 53.1558C16.7691 53.1353 16.7589 53.1353 16.7182 53.1353C16.6266 53.1353 16.4841 53.1456 16.4535 53.1456C16.4535 53.1456 16.3008 53.1353 16.1889 53.1353C16.1583 53.1353 16.138 53.1353 16.138 53.1558C16.138 53.1661 16.1481 53.1764 16.1787 53.1764C16.199 53.1764 16.2397 53.1867 16.2601 53.1867C16.3314 53.2072 16.3517 53.2381 16.3619 53.3203C16.3619 53.3923 16.3619 53.4539 16.3619 53.8137V54.1015C16.3619 54.3585 16.3517 54.5641 16.2296 54.6874C16.138 54.7902 16.0056 54.8108 15.9038 54.8108C15.8224 54.8108 15.7206 54.8005 15.6086 54.7182C15.4967 54.6257 15.4254 54.4715 15.4254 54.1323V53.8034C15.4254 53.4436 15.4254 53.382 15.4356 53.31C15.4356 53.2278 15.4559 53.1867 15.517 53.1764C15.5476 53.1764 15.5577 53.1661 15.5883 53.1661C15.6086 53.1661 15.629 53.1558 15.629 53.1456C15.629 53.125 15.6086 53.125 15.5781 53.125C15.4967 53.125 15.344 53.1353 15.2931 53.1353C15.2218 53.1353 15.0793 53.125 14.9571 53.125C14.9266 53.125 14.9062 53.125 14.9062 53.1456C14.9062 53.1558 14.9164 53.1661 14.947 53.1661C14.9775 53.1661 15.0182 53.1764 15.0386 53.1764C15.12 53.197 15.1404 53.2278 15.1404 53.31C15.1404 53.382 15.1404 53.4436 15.1404 53.8034V54.1529Z" fill="#022A50"/>
14
+ <path d="M17.5627 54.2249C17.5627 54.4407 17.5627 54.636 17.5525 54.7285C17.5423 54.8005 17.5321 54.8519 17.4812 54.8519C17.4609 54.8622 17.4303 54.8621 17.3896 54.8621C17.3591 54.8621 17.3489 54.8724 17.3489 54.8827C17.3489 54.9033 17.3591 54.9033 17.3998 54.9033H17.695C17.807 54.9033 18.0207 54.9238 18.1938 54.9238C18.6213 54.9238 18.8554 54.7594 18.9674 54.6463C19.0998 54.5127 19.2219 54.2762 19.2219 53.9884C19.2219 53.7109 19.1099 53.5053 18.9878 53.3923C18.7435 53.125 18.3465 53.125 18.0615 53.125C17.9189 53.125 17.7764 53.1353 17.7052 53.1353C17.6339 53.1353 17.4914 53.125 17.3693 53.125C17.3387 53.125 17.3184 53.125 17.3184 53.1456C17.3184 53.1558 17.3285 53.1661 17.3591 53.1661C17.3896 53.1661 17.4303 53.1764 17.4507 53.1764C17.5219 53.197 17.5525 53.2278 17.5525 53.31C17.5627 53.382 17.5627 53.4436 17.5627 53.8034V54.2249ZM17.8579 53.7726C17.8579 53.5876 17.8579 53.382 17.8579 53.2997C17.8579 53.2792 17.868 53.2586 17.8884 53.2483C17.9088 53.2381 17.9902 53.2278 18.0411 53.2278C18.2243 53.2278 18.4992 53.2586 18.7028 53.4642C18.8045 53.5567 18.9267 53.752 18.9267 54.0501C18.9267 54.2865 18.8758 54.5127 18.7333 54.6463C18.5908 54.7696 18.4381 54.8108 18.204 54.8108C18.0207 54.8108 17.9291 54.7594 17.8986 54.7182C17.8884 54.6977 17.8782 54.5949 17.8782 54.5332C17.868 54.4921 17.868 54.2968 17.868 54.0604V53.7726H17.8579Z" fill="#022A50"/>
15
+ <path d="M20.7688 54.5025C20.779 54.5025 20.7892 54.5128 20.7892 54.523L20.9011 54.8109C20.9113 54.8417 20.891 54.8623 20.8808 54.8725C20.8502 54.8725 20.8401 54.8725 20.8401 54.8931C20.8401 54.9136 20.8706 54.9136 20.9113 54.9136H21.349C21.4407 54.9136 21.461 54.9136 21.461 54.8931C21.461 54.8725 21.4508 54.8725 21.4305 54.8725C21.4101 54.8725 21.3694 54.8725 21.3287 54.8622C21.2778 54.852 21.2167 54.8211 21.1251 54.6053C20.9724 54.2455 20.6059 53.2896 20.5449 53.1559C20.5245 53.1045 20.5042 53.084 20.4838 53.084C20.4634 53.084 20.4533 53.1148 20.4227 53.1765L19.8425 54.6567C19.7916 54.78 19.7509 54.852 19.6389 54.8622C19.6287 54.8622 19.588 54.8622 19.5676 54.8622C19.5473 54.8622 19.5371 54.8623 19.5371 54.8828C19.5371 54.9034 19.5473 54.9034 19.5778 54.9034H19.8527H20.097C20.1275 54.9034 20.1377 54.9034 20.1377 54.8828C20.1377 54.8623 20.1275 54.8622 20.1072 54.8622H20.0664C19.9952 54.8622 19.9748 54.8314 19.9748 54.7903C19.9748 54.7697 19.985 54.7081 20.0054 54.6567L20.0563 54.523C20.0563 54.5025 20.0664 54.5025 20.0766 54.5025H20.7688ZM20.1377 54.3894C20.1275 54.3894 20.1275 54.3791 20.1275 54.3689L20.4227 53.5774C20.4227 53.5671 20.4329 53.5568 20.4329 53.5568C20.4431 53.5568 20.4431 53.5671 20.4431 53.5774L20.7281 54.3689C20.7281 54.3791 20.7281 54.3894 20.7179 54.3894H20.1377Z" fill="#022A50"/>
16
+ <path d="M23.0508 53.3819C23.1221 53.2689 23.173 53.2072 23.2239 53.1969C23.2544 53.1866 23.285 53.1866 23.3053 53.1866C23.3257 53.1866 23.346 53.1763 23.346 53.1661C23.346 53.1455 23.3358 53.1455 23.3053 53.1455C23.2137 53.1455 23.1221 53.1558 23.0712 53.1558C23.0305 53.1558 22.9287 53.1455 22.8371 53.1455C22.8065 53.1455 22.7862 53.1558 22.7862 53.1661C22.7862 53.1763 22.8065 53.1866 22.8167 53.1866C22.8371 53.1866 22.8676 53.1866 22.888 53.1969C22.9083 53.2072 22.9287 53.2175 22.9287 53.238C22.9287 53.2586 22.9185 53.2997 22.9083 53.3408C22.8778 53.4025 22.664 53.7314 22.5928 53.8342C22.5011 53.68 22.3993 53.5053 22.2976 53.31C22.2772 53.2894 22.2772 53.2586 22.2772 53.238C22.2772 53.2277 22.2874 53.2175 22.3077 53.1969C22.3281 53.1969 22.3586 53.1866 22.3688 53.1866C22.3892 53.1866 22.3993 53.1763 22.3993 53.1661C22.3993 53.1455 22.3892 53.1455 22.3586 53.1455C22.267 53.1455 22.1449 53.1558 22.1041 53.1558C21.9922 53.1558 21.8089 53.1455 21.7479 53.1455C21.7173 53.1455 21.697 53.1455 21.697 53.1661C21.697 53.1866 21.7071 53.1866 21.7173 53.1866C21.7377 53.1866 21.7784 53.1969 21.8191 53.2072C21.9006 53.2277 21.9515 53.2791 22.0125 53.3819L22.4197 54.0501L21.9718 54.6976C21.8904 54.8107 21.8497 54.8518 21.7784 54.8724C21.7377 54.8827 21.7071 54.8827 21.6868 54.8827C21.6664 54.8827 21.6562 54.8929 21.6562 54.9032C21.6562 54.9238 21.6664 54.9238 21.697 54.9238H21.7377H21.9311H22.1449H22.1856C22.2161 54.9238 22.2365 54.9238 22.2365 54.9032C22.2365 54.8929 22.2263 54.8827 22.2059 54.8827C22.1856 54.8827 22.1652 54.8827 22.155 54.8827C22.1347 54.8724 22.1143 54.8621 22.1143 54.8415C22.1143 54.821 22.1245 54.7799 22.1449 54.749L22.491 54.1837C22.5928 54.3584 22.7353 54.5948 22.8676 54.821C22.888 54.8518 22.8778 54.8724 22.8574 54.8724C22.8371 54.8827 22.8269 54.8827 22.8269 54.8929C22.8269 54.9032 22.8472 54.9238 22.9083 54.9238H23.3257H23.3969C23.4173 54.9238 23.4376 54.9238 23.4376 54.9032C23.4376 54.8827 23.4275 54.8827 23.4071 54.8827C23.3867 54.8827 23.3562 54.8827 23.3155 54.8724C23.2544 54.8621 23.2137 54.8313 23.1832 54.7696C23.1323 54.6976 22.7454 54.0603 22.6742 53.937L23.0508 53.3819Z" fill="#022A50"/>
17
+ <path d="M26.8563 54.5025C26.8665 54.5025 26.8766 54.5128 26.8766 54.523L26.9784 54.8109C26.9886 54.8417 26.9784 54.8623 26.9581 54.8725C26.9377 54.8725 26.9275 54.8725 26.9275 54.8931C26.9275 54.9136 26.9581 54.9136 26.9988 54.9136H27.4467C27.5281 54.9136 27.5485 54.9136 27.5485 54.8931C27.5485 54.8725 27.5383 54.8725 27.518 54.8725C27.4976 54.8725 27.4569 54.8725 27.4263 54.8622C27.3754 54.852 27.3042 54.8211 27.2227 54.6053C27.0701 54.2455 26.7036 53.2896 26.6425 53.1559C26.6222 53.1045 26.6018 53.084 26.5814 53.084C26.5611 53.084 26.5509 53.1148 26.5204 53.1765L25.9401 54.6567C25.8994 54.78 25.8485 54.852 25.7366 54.8622C25.7162 54.8622 25.6857 54.8622 25.6653 54.8622C25.6449 54.8622 25.6348 54.8623 25.6348 54.8828C25.6348 54.9034 25.6449 54.9034 25.6755 54.9034H25.9503H26.1946C26.2252 54.9034 26.2353 54.9034 26.2353 54.8828C26.2353 54.8623 26.2252 54.8622 26.2048 54.8622H26.1743C26.103 54.8622 26.0827 54.8314 26.0827 54.7903C26.0827 54.7697 26.0928 54.7081 26.1234 54.6567L26.1743 54.523C26.1641 54.5128 26.1743 54.5025 26.1743 54.5025H26.8563ZM26.2252 54.3894C26.215 54.3894 26.215 54.3791 26.215 54.3689L26.5 53.5774C26.5102 53.5671 26.5102 53.5568 26.5204 53.5568C26.5204 53.5568 26.5306 53.5671 26.5306 53.5774L26.8258 54.3689C26.8258 54.3791 26.8258 54.3791 26.8156 54.3791H26.2252V54.3894Z" fill="#022A50"/>
18
+ <path d="M28.2921 54.2244C28.2921 54.4403 28.2921 54.6356 28.2819 54.7281C28.2717 54.8001 28.2616 54.8515 28.2107 54.8515C28.1903 54.8617 28.1598 54.8617 28.1292 54.8617C28.0987 54.8617 28.0885 54.8617 28.0885 54.8823C28.0885 54.9029 28.1089 54.9029 28.1394 54.9029H28.4346H28.8011C28.8214 54.9029 28.8418 54.9029 28.8418 54.8823C28.8418 54.872 28.8316 54.8617 28.8011 54.8617C28.7705 54.8617 28.7196 54.8617 28.6891 54.8515C28.6178 54.8412 28.5975 54.7898 28.5975 54.7281C28.5873 54.6253 28.5873 54.4403 28.5873 54.2142V53.2685L28.8825 53.2788C29.0861 53.2891 29.1472 53.3507 29.1574 53.4124V53.433C29.1675 53.4638 29.1675 53.4741 29.1777 53.4741C29.1879 53.4741 29.1981 53.4638 29.1981 53.4432C29.1981 53.3816 29.2083 53.2171 29.2083 53.1657C29.2083 53.1349 29.2083 53.1143 29.1879 53.1143C29.1675 53.1143 29.1166 53.1349 28.9639 53.1349H28.0478C27.9664 53.1349 27.8849 53.1246 27.8137 53.1246C27.7526 53.1143 27.7322 53.0938 27.7119 53.0938C27.7017 53.0938 27.6915 53.104 27.6813 53.1349C27.6712 53.1554 27.6406 53.3713 27.6406 53.4021C27.6406 53.433 27.6406 53.4432 27.661 53.4432C27.6813 53.4432 27.6813 53.433 27.6915 53.4124C27.6915 53.3918 27.7119 53.361 27.7322 53.3302C27.773 53.2685 27.8239 53.2685 27.9562 53.2582L28.3023 53.2479V54.2244H28.2921Z" fill="#022A50"/>
19
+ <path d="M32.3453 54.0393C32.3453 54.029 32.3453 54.029 32.3657 54.029C32.4064 54.029 32.6507 54.029 32.7118 54.0393C32.783 54.0496 32.8238 54.0907 32.8339 54.1113C32.8441 54.1421 32.8441 54.1729 32.8441 54.1935C32.8441 54.2038 32.8543 54.2243 32.8645 54.2243C32.8848 54.2243 32.8848 54.1935 32.8848 54.1729C32.8848 54.1524 32.895 54.0496 32.895 54.0085C32.9052 53.9365 32.9154 53.8749 32.9154 53.8646C32.9154 53.8543 32.9154 53.844 32.9052 53.844C32.8848 53.844 32.8848 53.8543 32.8746 53.8646C32.8543 53.8851 32.8237 53.9057 32.7729 53.9057C32.7423 53.916 32.7016 53.916 32.6711 53.916H32.3759C32.3555 53.916 32.3555 53.9057 32.3555 53.8954V53.3095C32.3555 53.2787 32.3657 53.2787 32.3759 53.2787H32.7321C32.8238 53.2787 32.8746 53.3198 32.8848 53.3506C32.9052 53.3815 32.9052 53.4226 32.9052 53.4431C32.9052 53.474 32.9154 53.4843 32.9255 53.4843C32.9357 53.4843 32.9459 53.474 32.9459 53.4534C32.9561 53.4329 32.9561 53.289 32.9561 53.2581C32.9663 53.1964 32.9764 53.1656 32.9764 53.1553C32.9764 53.145 32.9663 53.1348 32.9663 53.1348C32.9561 53.1348 32.9459 53.145 32.9255 53.1553C32.9052 53.1553 32.8746 53.1553 32.8238 53.1656C32.7729 53.1656 32.2944 53.1656 32.213 53.1656C32.1417 53.1656 31.9992 53.1553 31.8771 53.1553C31.8364 53.1553 31.8262 53.1553 31.8262 53.1759C31.8262 53.1862 31.8364 53.1964 31.8669 53.1964C31.8974 53.1964 31.9381 53.2067 31.9585 53.2067C32.0399 53.2273 32.0501 53.2581 32.0603 53.3403C32.0705 53.4123 32.0705 53.474 32.0705 53.8337V54.2449C32.0705 54.4813 32.0705 54.6561 32.0603 54.7486C32.0501 54.8205 32.0399 54.8719 31.989 54.8719C31.9687 54.8822 31.9381 54.8822 31.8974 54.8822C31.8669 54.8822 31.8669 54.8925 31.8669 54.9028C31.8669 54.9233 31.8771 54.9233 31.9178 54.9233H32.213H32.5693C32.61 54.9233 32.6202 54.9233 32.6202 54.9028C32.6202 54.8925 32.61 54.8822 32.5896 54.8822C32.5489 54.8822 32.498 54.8822 32.4675 54.8719C32.3962 54.8616 32.386 54.8205 32.3759 54.7486C32.3657 54.6458 32.3657 54.4813 32.3657 54.2449V54.0393H32.3453Z" fill="#022A50"/>
20
+ <path d="M33.8403 54.2243C33.8403 54.4608 33.8403 54.6355 33.8301 54.7486C33.8199 54.8102 33.8098 54.8514 33.7589 54.8616C33.7385 54.8719 33.708 54.8719 33.6774 54.8719C33.6469 54.8719 33.6367 54.8719 33.6367 54.8925C33.6367 54.913 33.6571 54.913 33.6876 54.913H33.9828H34.3493C34.3696 54.913 34.39 54.913 34.39 54.8925C34.39 54.8822 34.3798 54.8719 34.3493 54.8719C34.3086 54.8719 34.2577 54.8719 34.2271 54.8616C34.1559 54.8514 34.1355 54.8102 34.1355 54.7486C34.1253 54.6458 34.1253 54.4608 34.1253 54.2243V53.8132C34.1253 53.4534 34.1253 53.3917 34.1253 53.3198C34.1253 53.2273 34.1457 53.1964 34.2169 53.1862C34.2373 53.1862 34.2577 53.1759 34.2882 53.1759C34.3086 53.1759 34.3289 53.1656 34.3289 53.1553C34.3289 53.145 34.3086 53.1348 34.278 53.1348C34.1864 53.1348 34.0541 53.145 33.993 53.145C33.9319 53.145 33.7792 53.1348 33.6978 53.1348C33.6571 53.1348 33.6469 53.1348 33.6469 53.1553C33.6469 53.1759 33.6571 53.1759 33.6876 53.1759C33.7182 53.1759 33.7385 53.1862 33.769 53.1862C33.8199 53.2067 33.8403 53.2376 33.8505 53.3198C33.8505 53.3917 33.8505 53.4534 33.8505 53.8132V54.2243H33.8403Z" fill="#022A50"/>
21
+ <path d="M35.2345 54.2249C35.2345 54.4407 35.2345 54.636 35.2244 54.7285C35.2142 54.8005 35.204 54.8519 35.1531 54.8519C35.1327 54.8622 35.1022 54.8621 35.0615 54.8621C35.0411 54.8621 35.0208 54.8724 35.0208 54.8827C35.0208 54.9033 35.0411 54.9033 35.0717 54.9033H35.3669C35.4788 54.9033 35.6926 54.9238 35.8657 54.9238C36.2932 54.9238 36.5375 54.7594 36.6495 54.6463C36.7818 54.5127 36.904 54.2762 36.904 53.9884C36.904 53.7109 36.792 53.5053 36.6698 53.3923C36.4153 53.125 36.0285 53.125 35.7333 53.125C35.601 53.125 35.4483 53.1353 35.3771 53.1353C35.316 53.1353 35.1633 53.125 35.0411 53.125C35.0004 53.125 34.9902 53.125 34.9902 53.1456C34.9902 53.1558 35.0004 53.1661 35.031 53.1661C35.0513 53.1661 35.1022 53.1764 35.1226 53.1764C35.1938 53.197 35.2142 53.2278 35.2244 53.31C35.2244 53.382 35.2244 53.4436 35.2244 53.8034V54.2249H35.2345ZM35.5196 53.7726V53.2997C35.5196 53.2792 35.5297 53.2586 35.5603 53.2483C35.5806 53.2381 35.6621 53.2278 35.7028 53.2278C35.886 53.2278 36.1609 53.2586 36.3746 53.4642C36.4662 53.5567 36.5884 53.752 36.5884 54.0501C36.5884 54.2865 36.5477 54.5127 36.395 54.6463C36.2525 54.7696 36.0998 54.8108 35.8657 54.8108C35.6824 54.8108 35.5908 54.7594 35.5603 54.7182C35.5399 54.6977 35.5399 54.5949 35.5297 54.5332C35.5196 54.4921 35.5196 54.2968 35.5196 54.0604V53.7726Z" fill="#022A50"/>
22
+ <path d="M37.7192 54.2249C37.7192 54.4407 37.7192 54.636 37.709 54.7285C37.6989 54.8005 37.6887 54.8519 37.648 54.8519C37.6276 54.8622 37.5971 54.8621 37.5563 54.8621C37.5258 54.8621 37.5156 54.8621 37.5156 54.8827C37.5156 54.9033 37.536 54.9033 37.5665 54.9033H37.8617C37.9941 54.9033 38.1569 54.9135 38.503 54.9135C38.5946 54.9135 38.615 54.9135 38.6252 54.8519C38.6354 54.8005 38.6557 54.6463 38.6557 54.5846C38.6557 54.5641 38.6557 54.5332 38.6354 54.5332C38.615 54.5332 38.615 54.5538 38.615 54.5743C38.5946 54.6668 38.5743 54.7285 38.5132 54.7491C38.4521 54.7799 38.3605 54.7799 38.2994 54.7799C38.0653 54.7799 38.0246 54.7388 38.0246 54.5846V54.2146V54.0296C38.0246 54.0193 38.0246 54.009 38.045 54.009C38.0959 54.009 38.3198 54.009 38.3707 54.0193C38.4521 54.0296 38.4928 54.0604 38.503 54.1118C38.5132 54.1426 38.5132 54.1735 38.5132 54.194C38.5132 54.2146 38.5132 54.2146 38.5336 54.2146C38.5539 54.2146 38.5539 54.1837 38.5539 54.1735C38.5539 54.1632 38.5641 54.0604 38.5641 54.0193C38.5743 53.8959 38.5845 53.8548 38.5845 53.8445C38.5845 53.824 38.5743 53.824 38.5641 53.824C38.5539 53.824 38.5437 53.8342 38.5336 53.8548C38.5132 53.8754 38.4827 53.8856 38.4216 53.8856C38.3707 53.8959 38.0959 53.8959 38.0551 53.8959C38.0348 53.8959 38.0348 53.8856 38.0348 53.8651V53.2792C38.0348 53.2586 38.0348 53.2586 38.0551 53.2586C38.0959 53.2586 38.3402 53.2586 38.3809 53.2586C38.4928 53.2792 38.5234 53.2997 38.5336 53.3511C38.5437 53.382 38.5539 53.4231 38.5539 53.4437C38.5539 53.4642 38.5641 53.4745 38.5743 53.4745C38.5946 53.4745 38.5946 53.4642 38.6048 53.4539C38.615 53.4231 38.615 53.3203 38.615 53.2997C38.6252 53.197 38.6354 53.1661 38.6354 53.1456C38.6354 53.1353 38.6354 53.125 38.6252 53.125C38.615 53.125 38.5946 53.1353 38.5946 53.1353C38.5743 53.1456 38.5437 53.1456 38.4928 53.1456C38.4521 53.1456 37.9839 53.1456 37.9126 53.1456C37.8515 53.1456 37.6989 53.1353 37.5869 53.1353C37.5462 53.1353 37.536 53.1353 37.536 53.1558C37.536 53.1661 37.5462 53.1764 37.5767 53.1764C37.6072 53.1764 37.648 53.1867 37.6683 53.1867C37.7498 53.2072 37.7701 53.2381 37.7701 53.3203C37.7701 53.3923 37.7701 53.4539 37.7701 53.8137V54.2249H37.7192Z" fill="#022A50"/>
23
+ <path d="M39.8258 53.8132C39.8258 53.4534 39.8258 53.3917 39.8258 53.3198C39.8258 53.2376 39.8461 53.1964 39.9072 53.1862C39.9378 53.1862 39.9785 53.1759 39.9988 53.1759C40.0294 53.1759 40.0396 53.1656 40.0396 53.1553C40.0396 53.1348 40.0294 53.1348 39.9887 53.1348C39.897 53.1348 39.724 53.145 39.6731 53.145C39.612 53.145 39.4695 53.1348 39.3575 53.1348C39.3168 53.1348 39.3066 53.1348 39.3066 53.1553C39.3066 53.1656 39.3168 53.1759 39.3474 53.1759C39.3779 53.1759 39.4084 53.1862 39.4288 53.1862C39.5 53.2067 39.5204 53.2376 39.5306 53.3198C39.5306 53.3917 39.5306 53.4534 39.5306 53.8132V54.2243C39.5306 54.4505 39.5306 54.6355 39.5204 54.728C39.5102 54.8 39.5 54.8514 39.4492 54.8514C39.4288 54.8616 39.3983 54.8616 39.3575 54.8616C39.3372 54.8616 39.327 54.8719 39.327 54.8822C39.327 54.9028 39.3372 54.9028 39.3779 54.9028H39.6731C39.8563 54.9028 40.0192 54.913 40.3551 54.913C40.4773 54.913 40.4874 54.9028 40.5078 54.8411C40.5282 54.7794 40.5383 54.5944 40.5383 54.5635C40.5383 54.5327 40.5383 54.5224 40.518 54.5224C40.4976 54.5224 40.4976 54.5327 40.4976 54.5635C40.4874 54.6047 40.4671 54.6766 40.4366 54.7075C40.3857 54.7691 40.294 54.7691 40.1617 54.7691C39.9785 54.7691 39.9276 54.7588 39.8869 54.7177C39.8461 54.6766 39.8461 54.5122 39.8461 54.2038V53.8132H39.8258Z" fill="#022A50"/>
24
+ <path d="M41.2821 54.2243C41.2821 54.4608 41.2821 54.6355 41.2719 54.7486C41.2618 54.8102 41.2516 54.8514 41.2007 54.8616C41.1803 54.8719 41.1498 54.8719 41.1091 54.8719C41.0785 54.8719 41.0684 54.8719 41.0684 54.8925C41.0684 54.913 41.0887 54.913 41.1193 54.913H41.4145H41.7809C41.8013 54.913 41.8216 54.913 41.8216 54.8925C41.8216 54.8822 41.8115 54.8719 41.7809 54.8719C41.7504 54.8719 41.6995 54.8719 41.6689 54.8616C41.5977 54.8514 41.5773 54.8102 41.5773 54.7486C41.5671 54.6458 41.5672 54.4608 41.5672 54.2243V53.8132C41.5672 53.4534 41.5671 53.3917 41.5773 53.3198C41.5875 53.2273 41.5977 53.1964 41.6689 53.1862C41.6995 53.1862 41.7097 53.1759 41.7402 53.1759C41.7606 53.1759 41.7707 53.1656 41.7707 53.1553C41.7707 53.145 41.7504 53.1348 41.73 53.1348C41.6384 53.1348 41.5061 53.145 41.445 53.145C41.3737 53.145 41.2312 53.1348 41.1396 53.1348C41.1091 53.1348 41.0887 53.1348 41.0887 53.1553C41.0887 53.1759 41.0989 53.1759 41.1193 53.1759C41.1498 53.1759 41.1803 53.1862 41.2109 53.1862C41.2618 53.2067 41.2923 53.2376 41.2923 53.3198C41.3025 53.3917 41.3025 53.4534 41.3025 53.8132V54.2243H41.2821Z" fill="#022A50"/>
25
+ <path d="M42.8907 54.9444C43.0129 54.9444 43.1452 54.9239 43.2674 54.8519C43.4302 54.7491 43.4811 54.5744 43.4811 54.4408C43.4811 54.2146 43.3793 54.0604 43.1045 53.8343L43.0332 53.7829C42.85 53.639 42.7889 53.5465 42.7889 53.454C42.7889 53.3101 42.8907 53.2073 43.0638 53.2073C43.2165 53.2073 43.2775 53.2792 43.3081 53.3306C43.359 53.382 43.3692 53.4643 43.3692 53.4848C43.3692 53.5054 43.3793 53.5259 43.3895 53.5259C43.3997 53.5259 43.4099 53.5054 43.4099 53.4643C43.4099 53.269 43.4201 53.2073 43.4201 53.1764C43.4201 53.1559 43.4099 53.1456 43.3895 53.1456C43.3284 53.1251 43.2266 53.1045 43.0841 53.1045C42.7584 53.1045 42.5446 53.2895 42.5446 53.5465C42.5446 53.7418 42.6362 53.9063 42.8907 54.1016L43.0027 54.1838C43.1961 54.338 43.2266 54.451 43.2266 54.5641C43.2266 54.6875 43.1249 54.8314 42.9111 54.8314C42.7686 54.8314 42.6362 54.7697 42.5853 54.5949C42.5752 54.5538 42.565 54.5024 42.565 54.4819C42.565 54.4613 42.565 54.4408 42.5446 54.4408C42.5243 54.4408 42.5243 54.4716 42.5141 54.5024C42.5141 54.5436 42.5039 54.6875 42.5039 54.8108C42.5039 54.8622 42.5141 54.8828 42.5446 54.893C42.6464 54.9342 42.7482 54.9444 42.8907 54.9444Z" fill="#022A50"/>
26
+ <path d="M35.8769 6.54027C35.8973 6.19078 35.2458 5.92353 35.0931 5.90297C34.8182 5.88241 34.4823 6.45804 34.126 6.82808C33.8105 5.13205 33.9733 4.41252 34.1566 3.66215C34.859 4.9573 35.8158 5.23484 36.3248 5.17316C34.6146 3.79578 34.9098 2.55202 34.3907 2.49035C34.0955 2.45951 33.8817 2.48007 33.729 2.48007C33.1386 2.48007 33.0572 3.64159 32.9758 4.1761C32.5889 3.44629 32.2123 2.85011 31.5507 2.00723C30.9195 0.383152 30.1561 0.794312 29.3723 0.0542243C29.983 0.979334 29.4842 1.55496 30.8992 2.23337C31.2656 2.58286 31.6932 3.12764 31.9782 3.57992C31.7441 3.88829 31.5812 4.07331 31.3674 4.28917C31.1944 4.55642 31.1028 5.56376 30.5633 6.32441C31.3674 5.96465 31.683 5.47125 31.968 4.98814C34.5129 6.92059 32.4464 11.8751 31.8662 12.9646C31.3063 12.5843 30.5938 12.3685 29.9321 12.2554L29.8609 12.0293L29.2603 10.0762H29.5351C29.8507 10.0762 29.922 9.86038 29.8812 9.68564L31.6321 10.2304L32.4057 10.4771L31.9375 9.80899L31.1231 8.66802L31.9375 7.53733L32.4057 6.8692L31.6321 7.10561L30.0543 7.599C29.9423 7.23924 29.6471 7.0645 29.3214 7.02338L29.8507 5.21428L30.0746 4.44335L29.4333 4.91619L28.3136 5.73851L27.1837 4.91619L26.5424 4.44335L26.7663 5.21428L27.2957 7.02338C26.9699 7.07478 26.6849 7.23924 26.5628 7.599L24.985 7.10561L24.2317 6.8692L24.6999 7.53733L25.5143 8.66802L24.6999 9.80899L24.2317 10.4771L25.0053 10.2304L26.7663 9.68564C26.7154 9.86038 26.7765 10.0762 27.1023 10.0762H27.3771L26.7765 12.0293L26.7154 12.2554C26.0436 12.3787 25.3107 12.5946 24.7406 12.9955C23.0305 9.64452 23.5089 6.25246 24.9442 5.12177C24.9239 5.83102 25.5346 6.79724 25.8298 7.00282C25.6364 6.27302 25.9723 4.9573 25.5855 4.62838C25.3209 4.40224 24.9239 4.28917 24.4963 4.29945C24.7915 3.81634 25.1885 3.20988 25.8604 2.30532C26.8681 1.82221 27.1633 0.640127 27.4076 0.0439453C26.3083 0.455105 25.5041 1.02045 25.331 1.95584C24.9442 2.46979 24.5167 3.08653 24.0383 3.80606C24.0586 2.93234 23.5802 2.62397 22.9491 2.58286C21.0964 2.97346 21.2389 4.32001 19.6611 5.24512C20.7401 5.62544 22.4401 3.23043 23.0203 3.49769C23.1119 4.96758 22.776 6.12911 22.776 6.93087C22.5012 6.6225 22.3587 6.40664 22.1245 6.3758C21.9006 6.33469 21.2797 6.38608 20.8623 6.85892C20.7401 7.59901 20.7707 8.99695 20.0785 10.6827C21.1066 9.72676 21.5952 7.85598 21.7683 7.32147C22.0329 7.68124 22.318 8.49328 22.379 9.18197C22.5012 10.5182 23.3155 12.7488 24.0179 13.8281C23.8245 14.1981 23.7736 14.6196 23.8347 15.0924C23.2952 15.4933 23.2341 16.0586 23.4173 16.4389C23.6209 16.8501 24.1502 17.1174 24.7712 16.8809L24.9646 16.7987C25.6161 16.5314 26.8376 16.0175 28.3136 16.0175C29.7896 16.0175 31.0111 16.5314 31.6626 16.7987L31.856 16.8809C32.477 17.1276 33.0063 16.8604 33.1997 16.4389C33.3931 16.0586 33.332 15.4933 32.7925 15.0924C32.8638 14.5887 32.7925 14.1364 32.5584 13.7458L32.5788 13.7664C33.841 11.947 33.9224 8.483 34.9709 7.48594C35.0625 8.69886 35.7038 9.7062 36.335 9.8501C35.8463 8.96611 35.8464 7.30091 35.8769 6.54027ZM30.095 8.15407L31.0213 7.86626L30.5633 8.49328L30.4513 8.65774L30.5734 8.8222L31.0315 9.4595L29.8507 9.08946C29.9525 8.84276 30.0441 8.56523 30.095 8.15407ZM25.6263 9.44922L26.0843 8.81193L26.2065 8.64746L26.0843 8.483L25.6263 7.85598L26.5526 8.14379C26.6035 8.55495 26.6951 8.8222 26.7969 9.0689L25.6263 9.44922ZM29.3315 9.14085H28.5885L28.6801 7.81486C29.7794 7.33175 29.6776 8.35965 29.3315 9.14085ZM29.1076 11.392L28.4765 10.9294L28.3238 10.8163L28.1609 10.9294L27.54 11.392L27.9472 10.066H28.7004L29.1076 11.392ZM28.1609 6.29357L28.3238 6.40664L28.4765 6.29357L29.1178 5.83102L28.7513 7.07478C28.7411 7.08506 28.731 7.08506 28.7208 7.08506C28.6597 6.93087 28.4968 6.82808 28.3238 6.82808C28.1507 6.82808 27.998 6.93087 27.937 7.08506C27.9268 7.08506 27.9064 7.08506 27.8963 7.07478L27.5298 5.83102L28.1609 6.29357ZM27.3262 9.14085C26.9699 8.35965 26.8681 7.32147 27.9675 7.81486L28.0591 9.14085H27.3262ZM28.3238 11.4947L29.1992 12.132C28.8226 12.0909 28.507 12.0909 28.3238 12.0909C28.1304 12.0909 27.8148 12.1012 27.4484 12.132L28.3238 11.4947ZM24.7203 16.1203L24.5371 16.2025C24.2724 16.3053 24.0993 16.2231 24.0383 16.0997C23.967 15.9661 24.0077 15.74 24.3335 15.5344C24.3742 15.5138 24.4251 15.483 24.4658 15.4624L25.0867 15.9764C24.9442 16.0278 24.8221 16.0792 24.7203 16.1203ZM26.8274 15.4419L26.1861 14.7943C26.7154 14.6607 27.2753 14.5682 27.825 14.527L28.2118 15.2877C27.713 15.298 27.255 15.3596 26.8274 15.4419ZM30.4004 15.5755L30.0237 14.7018C30.604 14.8149 31.1537 14.9793 31.6321 15.1849L31.856 16.0895C31.4896 15.9353 31.001 15.74 30.4004 15.5755ZM28.3238 13.8384C27.1023 13.8384 25.728 14.1364 24.6694 14.599C24.6897 14.3626 24.7712 14.157 24.9137 13.972C25.5245 13.2216 27.1328 12.9544 28.3238 12.9544C29.5046 12.9544 31.1129 13.2216 31.7237 13.972C31.8764 14.1467 31.9578 14.3626 31.968 14.5887C30.9195 14.1262 29.5657 13.8384 28.3238 13.8384Z" fill="#022A50"/>
27
+ <path d="M19.9245 34.8174C19.4562 34.8174 19.1508 34.8277 19.1508 34.8277C19.0389 36.1948 19.0898 37.4385 19.273 38.5692C19.7514 37.7675 20.24 36.9657 20.2197 36.4003C20.1891 35.8144 20.0568 35.2902 19.9245 34.8174Z" fill="#022A50"/>
28
+ <path d="M20.2626 34.8173C20.3949 35.2902 20.517 35.8041 20.5374 36.3797C20.5578 37.0479 20.0692 37.8702 19.55 38.7439C19.4889 38.8467 19.4279 38.9495 19.377 39.0523C20.8835 46.5046 28.0192 48.9921 28.0192 48.9921V34.8276C28.0192 34.8276 22.6445 34.8071 20.2626 34.8173ZM25.6169 43.6778C25.2606 43.7498 24.7008 43.7909 24.3241 43.7909C23.9475 43.7909 23.3774 43.7498 23.0314 43.6778C23.0721 43.5236 23.123 43.3078 23.1637 43.0919C22.899 43.0611 22.6242 42.9686 22.4104 42.8863C22.5224 42.4957 22.6954 42.1154 22.8379 41.5912C23.3164 41.7043 23.7846 41.7351 24.3241 41.7351C24.8636 41.7351 25.3319 41.694 25.8103 41.5912C25.9528 42.1154 26.1259 42.4957 26.2379 42.8863C26.0241 42.9686 25.7492 43.0611 25.4846 43.0919C25.5355 43.3078 25.5864 43.5236 25.6169 43.6778ZM22.6954 40.5736C22.9601 40.4811 24.0086 40.4194 24.3241 40.4194C24.6295 40.4194 25.678 40.4811 25.9528 40.5736C25.9834 40.7072 25.9834 40.9128 25.963 41.0567C25.5558 41.18 24.8535 41.2417 24.3241 41.2417C23.7948 41.2417 23.0924 41.18 22.6853 41.0567C22.6649 40.9025 22.6649 40.7072 22.6954 40.5736ZM26.6654 37.7777C26.2684 38.7336 25.8816 39.7204 25.7696 40.0185C25.5558 39.9877 25.3319 39.9671 25.1079 39.9568C25.3726 39.1242 25.6983 37.9319 25.9732 37.1815C26.1564 36.6573 27.0318 36.8834 26.6654 37.7777ZM24.3241 36.3797C24.3852 35.9377 25.6271 35.8555 25.393 36.832C25.1588 37.8085 24.8636 38.9598 24.6397 39.9466C24.5379 39.9466 24.4259 39.9363 24.3241 39.9363C24.2223 39.9363 24.1104 39.9466 24.0086 39.9466C23.7846 38.9598 23.4894 37.8188 23.2553 36.832C23.0212 35.8555 24.2631 35.9377 24.3241 36.3797ZM22.6954 37.1815C22.9601 37.9319 23.296 39.1242 23.5607 39.9568C23.3266 39.9671 23.1026 39.9877 22.899 40.0185C22.7769 39.7204 22.39 38.7336 21.9931 37.7777C21.6062 36.8834 22.502 36.6573 22.6954 37.1815Z" fill="#022A50"/>
29
+ <path d="M35.8563 36.2156L35.8359 35.8661H36.1922C36.6604 35.8661 36.8946 35.4036 37.0269 34.8691C35.1946 34.8588 28.6289 34.8794 28.6289 34.8794V41.7149C29.1786 41.3037 29.6977 40.9748 30.3899 40.7487V39.5666V39.2479H30.6953H31.072C31.1127 37.6033 31.4995 36.4007 32.2629 35.6092L32.4869 35.3728L32.7108 35.6092C33.4743 36.4007 33.8611 37.593 33.9018 39.2479H34.309H34.6144V39.5666V40.8515C35.3677 41.1598 35.8664 41.6429 36.2533 42.1569C36.8742 40.8823 37.3323 39.4124 37.4951 37.7061C37.4646 37.7061 37.4341 37.7164 37.3934 37.7164C36.6706 37.7061 35.9173 37.1921 35.8563 36.2156Z" fill="#022A50"/>
30
+ <path d="M37.4944 34.8691C37.4944 34.8691 37.4333 34.8691 37.362 34.8691C37.1992 35.6503 36.8429 36.1848 36.1914 36.1951C36.2423 36.9763 36.8225 37.3772 37.3824 37.3772C37.4231 37.3772 37.474 37.3669 37.5147 37.3567C37.5656 36.5652 37.5758 35.7531 37.4944 34.8691Z" fill="#022A50"/>
31
+ <path d="M32.4767 41.0879C30.4917 41.0879 29.7181 41.6532 28.6289 42.4961V49.0336C28.6289 49.0336 33.3521 47.3889 35.9275 42.7839C35.3269 41.8794 34.4617 41.0879 32.4767 41.0879ZM34.1054 43.7296L33.5048 43.0409L32.4869 43.9557L32.9042 44.4388C32.9042 44.4388 33.3318 44.2333 33.7084 44.6753C33.4234 44.922 32.9348 45.3537 32.6396 45.6106C32.2629 45.1686 32.5276 44.778 32.5276 44.778L32.1103 44.2949L30.8684 45.4256L30.4612 44.9528L31.7336 43.8735L31.2755 43.339C31.2755 43.339 31.1127 43.4932 30.8582 43.709C30.4917 43.2876 30.2067 42.7325 30.4714 42.0233C31.1941 41.8588 31.7031 42.2289 32.0695 42.64C31.8252 42.8559 31.6522 43.0101 31.6522 43.0101L32.1103 43.5548L33.1486 42.6709L32.5785 41.9616C33.118 41.8999 33.5863 42.085 33.8509 42.3933C34.1156 42.7017 34.2377 43.1951 34.1054 43.7296Z" fill="#022A50"/>
32
+ <path d="M19.4177 31.3131C19.9165 31.7242 20.1099 32.0326 19.9572 33.4408C19.9369 33.6156 20.0285 33.9445 20.1303 34.3043H37.1095C37.1298 34.1192 37.14 33.9342 37.14 33.78C37.1502 33.0091 37.0179 32.4027 36.7634 32.1457C36.682 32.0634 36.5903 32.0223 36.4376 32.0223C36.4275 32.0223 36.4173 32.0223 36.4173 32.0223L35.7353 32.0943L36.1017 31.5084C36.458 30.9328 36.967 30.6038 37.5065 30.5627V25.4746H19.1836V31.1589C19.2447 31.2 19.3159 31.2308 19.3668 31.272L19.4177 31.3131ZM30.2079 30.6347V30.2749L29.3732 30.2646C29.5767 29.3806 31.2869 28.2499 32.0503 27.9827C32.0096 27.0165 33.2617 26.6978 34.2796 26.667C35.5317 26.6361 35.8269 27.993 35.8269 28.4144C35.8269 28.9695 35.6844 30.2132 34.9922 30.5935C33.9844 31.1486 33.1293 30.3777 33.1293 29.689C33.1293 28.9284 33.6587 28.4761 34.5545 28.5789C35.4604 28.6817 35.3892 28.1677 34.7072 27.993C34.3712 27.9107 32.9359 27.8285 32.4575 28.9078C32.1827 28.9181 31.8875 28.805 31.7144 28.6303C31.5312 28.877 31.236 29.0414 30.839 29.1545C31.1851 29.874 31.8976 29.7507 32.3252 29.4115C32.315 29.504 32.3048 29.6068 32.3048 29.7198C32.3048 31.4775 34.1676 31.9298 35.3179 31.272C35.1245 31.8373 35.2161 32.5671 35.2976 33.0502H30.7881C30.8695 32.5568 31.4599 32.0121 31.9689 31.6523L31.5719 31.015C31.0833 31.2308 30.6252 31.4261 30.0959 31.5701C28.8438 31.899 28.9151 31.0047 30.2079 30.6347ZM27.0319 32.0737C26.8588 32.3307 25.79 32.6596 25.5253 32.4952C25.0775 32.2176 24.8535 31.6317 24.9655 31.3748C25.0978 31.0458 26.2684 30.7169 26.6451 30.8402C27.0115 30.9739 27.1744 31.8579 27.0319 32.0737ZM20.7818 29.2676C21.7793 28.7022 22.2883 28.2808 22.8176 27.4379C22.4206 27.2426 21.9626 26.8931 21.6165 26.3997C23.5098 26.9342 24.4667 27.2118 26.6858 26.41C26.3193 26.9959 25.7798 27.3454 25.3218 27.6332C25.8307 28.4761 26.3295 29.432 26.5026 30.2029C25.8307 30.1516 25.0775 30.316 24.5379 30.8094C23.7032 30.8505 22.6548 31.1178 22.0644 29.2059C21.7692 29.3601 21.4638 29.5656 21.4638 29.5656C21.7997 30.8094 22.4308 31.6626 24.0901 31.4878C24.1817 31.8887 24.2529 32.1148 24.4565 32.4438C23.7745 32.8446 22.0644 33.8623 20.7614 32.6905V29.2676H20.7818Z" fill="#022A50"/>
33
+ <path d="M19.1836 31.5488V34.2933H19.7842C19.6824 33.9336 19.5908 33.6149 19.6213 33.3888C19.774 32.0114 19.5704 31.8675 19.1836 31.5488Z" fill="#022A50"/>
34
+ <path d="M37.4947 34.2935V30.8809C37.0977 30.922 36.6906 31.1687 36.375 31.6723C36.4055 31.6621 36.4463 31.6621 36.4768 31.6621C37.2301 31.6621 37.4846 32.7002 37.4744 33.7693C37.4744 33.944 37.4642 34.1187 37.4438 34.2935H37.4947Z" fill="#022A50"/>
35
+ <path d="M23.6312 29.6268C23.9468 29.781 24.3336 29.6063 24.7408 29.6577C24.6594 29.4829 24.5779 29.3493 24.6288 29.1026C24.7306 28.6092 24.3336 28.4756 24.1504 28.4961C23.6923 28.5167 23.4276 28.6298 22.9492 28.4961C23.2851 28.8045 23.1935 29.411 23.6312 29.6268Z" fill="#022A50"/>
36
+ <path d="M19.6503 33.368C19.8131 31.9495 19.5892 31.8364 19.182 31.4972C18.8257 31.1991 18.2455 31.1066 17.6653 30.7057C17.2479 30.4179 17.1359 29.9965 16.6168 29.4311C16.7186 28.2388 17.5635 26.7689 18.1946 26.44C18.2862 26.3886 18.2557 24.5383 18.2557 24.5383C18.2557 24.5383 18.673 24.5178 18.6323 24.4972C18.0724 24.1477 17.4006 24.415 16.912 24.9906C16.4336 25.3812 15.3546 26.111 14.6115 26.368C13.6037 25.5046 12.0259 24.7542 10.8654 23.5824C10.8654 23.5824 12.3924 23.5618 13.0947 23.274C13.278 23.161 13.7666 22.3695 13.5732 21.6191C13.339 21.5369 12.9929 21.3518 12.657 21.1668C12.2397 20.9201 11.8325 20.6632 11.6493 20.5192C10.9876 20.0156 10.7229 19.5736 9.57267 19.2858C9.64392 18.7513 9.7559 18.8746 10.2649 18.5354C10.9062 18.0934 11.2624 17.5692 11.5271 17.0552C11.7307 16.6441 11.4966 15.8115 10.9774 16.8702C10.7942 17.2505 10.2954 17.7439 9.73554 17.8981C9.77626 17.5692 9.79661 17.3739 9.79661 17.1991C11.4762 16.0068 11.3133 14.948 11.181 13.9612C11.1098 13.3856 10.5397 13.1492 10.5702 13.7454C10.5804 14.136 10.9265 15.2564 9.78643 15.9143C9.76608 15.4209 9.62356 15.1947 9.52177 14.9378C10.5397 13.5809 10.1122 12.2652 9.68464 11.669C9.4098 11.2887 8.73796 11.1551 9.04334 11.7615C9.28765 12.2549 9.69482 13.6015 8.94155 14.1463C8.67688 13.8173 8.38168 13.694 8.27989 13.252C8.35114 11.7718 8.25953 10.8776 8.0763 10.3533C7.89307 9.87021 7.435 9.56184 7.46554 10.2814C7.50625 11.1037 7.57751 12.1316 7.49607 12.2035C7.42482 12.2652 6.3458 11.2476 5.89791 10.9495C5.45002 10.6411 4.93087 10.7542 5.45002 11.3607C5.90809 11.8952 7.28231 12.9231 7.10926 13.2623C6.99728 13.4679 6.00988 12.6455 5.50091 12.4708C4.98177 12.2858 4.8189 12.5736 5.25661 12.9334C5.95899 13.5193 6.42724 13.8996 7.58769 14.2902C8.73796 14.6808 9.31818 16.2946 8.95173 18.6074C8.94155 18.7204 8.73796 18.6999 8.62599 18.6587C8.57509 17.7748 8.4224 16.716 8.20863 16.2535C7.93379 15.647 7.39428 15.6367 7.58769 16.459C7.74038 17.1066 7.83199 17.8159 7.72002 18.6999C6.76316 18.5354 6.3967 18.2784 5.9997 18.0317C5.95899 17.5897 6.18293 16.8496 6.22365 16.1918C6.28473 15.5442 5.90809 15.1331 5.69432 15.9554C5.49074 16.7366 5.34822 17.1169 5.22607 17.672C4.95123 17.5795 4.6662 17.4561 4.53387 17.3019C4.4728 17.23 4.53387 16.346 4.46262 15.719C4.40154 14.9994 4.1267 15.02 3.91293 15.6573C3.81114 15.9451 3.73988 16.3357 3.70934 16.8085C3.37342 16.603 3.1393 16.2021 3.10876 15.8937C3.15966 15.1433 3.28181 14.3416 3.37342 13.8482C3.4345 13.4884 3.20037 12.7689 2.91535 13.6426C2.71176 14.2696 2.66087 14.7938 2.53871 15.2358C2.29441 15.2153 1.97885 13.7865 1.8058 12.882C1.73454 12.4605 1.38844 11.9877 1.32737 12.9128C1.25611 13.9304 1.46988 14.9583 1.71418 15.4209C1.22557 15.3695 0.757323 14.4752 0.421403 13.9612C0.116022 13.4987 -0.0264893 13.9818 0.00404883 14.1668C0.289072 15.9862 1.72436 16.6338 2.37584 16.7571C3.3836 18.2168 5.30751 18.8438 6.92603 19.553C4.80872 19.5325 4.25903 20.3856 3.29199 19.8306C3.33271 20.6323 3.7297 21.0126 4.10634 21.1977C4.38118 21.321 4.64585 21.3621 4.768 21.3827C4.94105 22.3592 5.86737 22.3078 6.64101 22.3592C6.43742 24.2608 6.67154 26.7792 8.33078 28.6602C8.27989 29.6264 8.21881 30.901 8.22899 31.7336C6.87513 33.0082 5.66378 35.6705 5.18535 37.1507C4.82908 38.2505 4.28957 39.1139 3.46504 39.5148C4.14706 40.2446 5.14464 39.8849 5.72486 39.4737C5.76558 40.1213 5.91827 40.5838 6.02006 40.9642C5.63325 41.5501 5.36858 41.951 5.4093 42.6705C4.97159 42.7938 4.66621 43.0611 4.43208 43.3695C4.27939 43.5545 4.45244 44.4385 4.62549 44.8085C5.16499 46.0317 4.74764 48.7865 4.64585 49.6088C4.86979 49.6191 5.28715 49.6396 5.37876 49.3004C5.51109 49.4238 5.84701 49.6602 5.9997 50.1947C5.95899 50.39 5.82665 51.2329 6.26437 51.346C6.62065 51.4385 8.13737 51.3871 8.34096 51.1198C8.18827 50.9348 7.92361 50.5339 7.76074 50.133C7.76074 49.7116 7.72002 49.2079 7.60805 48.9818C7.435 48.6734 6.99728 47.9642 6.71226 47.6866C6.65119 47.183 6.60029 44.9319 6.83441 44.0684C7.23141 43.7909 9.90859 41.7762 10.4685 39.854C10.9571 40.0185 10.8044 41.3651 10.8044 43.1022C10.8044 43.5648 11.3642 43.8012 11.7002 43.8526C12.4229 43.9451 13.4612 44.6338 14.6115 46.3709C14.8354 46.1345 15.1306 45.8981 15.1306 45.8981C15.2833 46.1037 15.4563 46.6073 15.5581 46.9157C15.6803 47.1521 16.6168 47.296 17.3294 47.0699C17.5635 46.9877 17.706 46.9465 17.8587 46.6896C16.9527 45.086 16.403 44.0273 15.2426 43.1433C14.7031 42.7322 13.9803 42.5266 13.3798 42.136C13.7869 41.3753 14.8965 37.7982 14.2246 36.4825C14.0007 36.0508 13.1558 35.6191 12.1277 35.8144C12.9828 34.7659 14.7234 32.7101 14.9576 32.0831C15.1611 32.3298 16.1893 32.1551 16.9527 32.4634C17.2276 32.5765 18.0114 33.5941 18.0521 33.9539C18.1233 34.5809 18.1539 35.3416 17.7162 37.0684C18.0216 37.017 17.9808 36.9965 18.276 36.8731C18.3269 37.3357 18.1844 37.6955 17.7874 38.3944C17.8892 39.0214 18.1641 39.9774 18.4593 40.1624C18.8461 39.0009 20.2814 37.3357 20.2407 36.3695C20.1898 35.0537 19.579 33.9436 19.6503 33.368Z" fill="#022A50"/>
37
+ <path d="M78.0588 32.1249C78.0588 32.1249 77.6414 32.3819 76.766 32.3819C75.6361 32.3819 74.6283 31.7035 74.0888 31.3437C73.3966 30.8812 72.2667 30.2233 71.1368 29.8636C68.9584 29.8636 67.5333 29.2468 66.4237 27.7872C65.3142 26.3481 64.7441 24.4876 64.7441 22.3393C64.7441 19.1734 65.9351 16.6037 68.0321 15.4627C68.8872 15.0001 69.956 14.7432 71.0452 14.7432C74.9133 14.7432 77.3055 17.6007 77.3055 22.2057C77.3055 25.4025 76.1756 27.7872 74.4349 28.9487C74.8319 29.1029 75.402 29.4832 75.7379 29.6888C76.257 30.0075 76.8881 30.3056 77.5396 30.3056C78.1707 30.3056 78.8324 30.2028 78.8324 30.2028L78.0588 32.1249ZM73.5595 18.8959C73.3254 18.1558 72.5517 17.0354 71.0045 17.0354C70.0171 17.0354 69.162 17.539 68.7446 18.3305C68.2458 19.2865 68.0117 20.5714 68.0117 22.3496C68.0117 24.8885 68.4291 26.4715 69.3045 27.1088C69.7728 27.448 70.353 27.6125 71.0452 27.6125C73.0709 27.6125 73.9361 26.0501 73.9361 22.3085C73.9361 20.7975 73.814 19.7182 73.5595 18.8959Z" fill="#022A50"/>
38
+ <path d="M86.5504 29.9248C86.1941 29.6678 85.8989 29.3081 85.7157 28.8661C85.0235 29.5445 84.0157 29.9042 82.8858 29.9042C81.3793 29.9042 80.0763 29.1847 79.7302 28.1465C79.5674 27.6531 79.4961 27.0878 79.4961 25.9879V19.0496L82.2547 18.5254V25.4843C82.2547 26.4505 82.3463 26.9644 82.4888 27.2625C82.6415 27.5606 83.0487 27.7662 83.4762 27.7662C84.1684 27.7662 85.0031 27.2625 85.2169 26.728V19.1113L87.8941 18.5459V26.8103C87.8941 27.5298 88.1282 28.2699 88.5456 28.7735L86.5504 29.9248Z" fill="#022A50"/>
39
+ <path d="M93.2171 25.1043V25.1968C93.2171 26.862 94.0314 27.818 95.4769 27.818C96.4439 27.818 97.3397 27.4582 98.205 26.7387L99.2941 28.4347C98.0624 29.442 96.7595 29.9354 95.2529 29.9354C92.1788 29.9354 90.1836 27.7357 90.1836 24.3334C90.1836 22.3907 90.5806 21.0955 91.5273 20.0368C92.4027 19.0397 93.4715 18.5771 94.8967 18.5771C96.1284 18.5771 97.3092 18.9986 97.9912 19.7181C98.9786 20.7357 99.4163 22.1954 99.4163 24.4567V25.1146H93.2171V25.1043ZM96.505 22.9046C96.505 22.1028 96.4236 21.6814 96.1691 21.2805C95.8942 20.8591 95.4972 20.6432 94.9374 20.6432C93.8685 20.6432 93.2578 21.4861 93.2578 22.9868V23.028H96.505V22.9046Z" fill="#022A50"/>
40
+ <path d="M103.803 25.1043V25.1968C103.803 26.862 104.618 27.818 106.063 27.818C107.02 27.818 107.926 27.4582 108.781 26.7387L109.87 28.4347C108.639 29.442 107.336 29.9354 105.829 29.9354C102.755 29.9354 100.76 27.7357 100.76 24.3334C100.76 22.3907 101.157 21.0955 102.103 20.0368C102.989 19.0397 104.048 18.5771 105.473 18.5771C106.705 18.5771 107.885 18.9986 108.567 19.7181C109.555 20.7357 109.992 22.1954 109.992 24.4567V25.1146H103.803V25.1043ZM107.091 22.9046C107.091 22.1028 107.01 21.6814 106.755 21.2805C106.481 20.8591 106.084 20.6432 105.524 20.6432C104.455 20.6432 103.844 21.4861 103.844 22.9868V23.028H107.091V22.9046Z" fill="#022A50"/>
41
+ <path d="M117.679 29.6267V22.5856C117.679 21.3624 117.465 21.0026 116.732 21.0026C116.172 21.0026 115.439 21.383 114.788 21.9791V29.6267H111.978V21.7838C111.978 20.8484 111.856 19.9645 111.602 19.2449L114.096 18.5254C114.35 18.9777 114.493 19.4402 114.493 19.8822C114.91 19.5841 115.266 19.3374 115.724 19.0805C116.294 18.7824 117.027 18.6179 117.658 18.6179C118.849 18.6179 119.898 19.2552 120.234 20.1803C120.376 20.5812 120.447 21.054 120.447 21.7222V29.6267H117.679Z" fill="#022A50"/>
42
+ <path d="M126.543 29.966C125.22 29.966 123.775 29.5445 122.207 28.7222L123.215 26.6458C124.07 27.1804 125.556 27.869 126.778 27.869C127.572 27.869 128.203 27.3345 128.203 26.6458C128.203 25.9058 127.684 25.5254 126.554 25.3199L125.291 25.0834C124.579 24.9601 123.703 24.4461 123.327 23.9836C122.95 23.521 122.716 22.7398 122.716 22.0306C122.716 19.9234 124.375 18.5049 126.859 18.5049C128.579 18.5049 129.709 19.0291 130.686 19.5225L129.77 21.4241C128.701 20.8691 127.928 20.6429 127.134 20.6429C126.319 20.6429 125.77 21.0644 125.77 21.7017C125.77 22.2567 126.126 22.5445 127.113 22.8015L128.406 23.1407C129.73 23.4799 130.167 23.8808 130.544 24.3639C130.941 24.8676 131.134 25.4843 131.134 26.2038C131.134 28.4447 129.292 29.966 126.543 29.966Z" fill="#022A50"/>
43
+ <path d="M135.848 29.8836C134.657 29.8836 133.69 29.3182 133.354 28.4034C133.14 27.8483 133.1 27.5194 133.1 25.9673V17.888C133.1 16.4695 133.059 15.5958 132.957 14.6295L135.828 13.9717C135.929 14.5576 135.97 15.2566 135.97 16.7881V25.2272C135.97 27.0877 135.99 27.3447 136.153 27.6325C136.255 27.8175 136.489 27.9306 136.713 27.9306C136.815 27.9306 136.886 27.9306 137.029 27.8894L137.507 29.5855C137.049 29.7808 136.459 29.8836 135.848 29.8836Z" fill="#022A50"/>
44
+ <path d="M146.151 30.1822C145.499 29.9046 144.919 29.4215 144.644 28.8665C144.441 29.0823 144.207 29.2879 144.003 29.4318C143.474 29.8121 142.721 30.028 141.845 30.028C139.453 30.028 138.16 28.8048 138.16 26.6462C138.16 24.1073 139.901 22.9252 143.311 22.9252C143.525 22.9252 143.708 22.9252 143.942 22.9458V22.5038C143.942 21.3011 143.708 20.9002 142.69 20.9002C141.784 20.9002 140.746 21.3422 139.585 22.1235L138.394 20.0882C138.964 19.7284 139.382 19.5229 140.135 19.1939C141.183 18.7519 142.079 18.5566 143.067 18.5566C144.868 18.5566 146.1 19.2351 146.517 20.4377C146.66 20.8797 146.731 21.2189 146.701 22.3804L146.64 26.0192C146.619 27.2013 146.701 27.7152 147.647 28.4348L146.151 30.1822ZM143.759 24.8988C141.815 24.8988 141.143 25.2585 141.143 26.5434C141.143 27.3863 141.662 27.9619 142.374 27.9619C142.894 27.9619 143.423 27.6844 143.84 27.2218L143.881 24.8988H143.759Z" fill="#022A50"/>
45
+ <path d="M155.29 29.6267V22.5856C155.29 21.3624 155.076 21.0026 154.343 21.0026C153.773 21.0026 153.04 21.383 152.399 21.9791V29.6267H149.59V21.7838C149.59 20.8484 149.467 19.9645 149.213 19.2449L151.707 18.5254C151.961 18.9777 152.104 19.4402 152.104 19.8822C152.521 19.5841 152.877 19.3374 153.336 19.0805C153.895 18.7824 154.638 18.6179 155.27 18.6179C156.461 18.6179 157.509 19.2552 157.845 20.1803C157.988 20.5812 158.059 21.054 158.059 21.7222V29.6267H155.29Z" fill="#022A50"/>
46
+ <path d="M167.424 29.627C167.343 29.4626 167.302 29.2878 167.261 28.9898C166.569 29.6065 165.755 29.8943 164.788 29.8943C162.07 29.8943 160.35 27.7563 160.35 24.395C160.35 21.0133 162.212 18.6902 164.93 18.6902C165.704 18.6902 166.315 18.8855 166.834 19.3069C166.793 19.0705 166.752 18.3304 166.752 17.7034V13.9824L169.542 14.4244V25.6696C169.542 28.3319 169.755 29.2056 169.939 29.627H167.424ZM166.793 21.6608C166.274 21.1983 165.765 20.9619 165.266 20.9619C164.014 20.9619 163.464 22.0206 163.464 24.4259C163.464 26.7489 163.943 27.5199 165.409 27.5199C165.928 27.5199 166.518 27.1601 166.793 26.8209V21.6608Z" fill="#022A50"/>
47
+ <path d="M71.3613 50.3284C69.5596 50.3284 68.0327 49.6911 66.9435 48.509C65.7322 47.183 65.1621 45.3842 65.1621 42.8864C65.1621 40.1213 65.895 38.1478 67.3812 36.8012C68.4093 35.8658 69.641 35.4238 71.1272 35.4238C72.6541 35.4238 73.9775 35.9069 75.0666 36.8629L74.293 37.9422C73.1224 37.1404 72.2877 36.8218 71.1781 36.8218C69.4985 36.8218 68.1854 37.603 67.595 39.2682C67.2183 40.3475 67.0351 41.5707 67.0351 42.9481C67.0351 44.8497 67.3914 46.3915 68.0429 47.3475C68.6943 48.3034 70.1602 48.8893 71.514 48.8893C72.42 48.8893 73.1936 48.7043 73.7942 48.324V43.904H70.9033L70.5674 42.4649H75.4026V49.2285C74.3744 49.9069 72.8272 50.3284 71.3613 50.3284Z" fill="#022A50"/>
48
+ <path d="M82.7219 50.3699C79.8514 50.3699 78.2227 48.2422 78.2227 44.7679C78.2227 41.345 79.9226 39.248 82.6609 39.248C84.4015 39.248 85.5315 40.0498 86.244 41.088C86.8955 42.0439 87.2009 43.2877 87.2009 45.0043C87.2009 48.5094 85.3381 50.3699 82.7219 50.3699ZM84.8596 41.9514C84.4219 41.016 83.4956 40.5946 82.6405 40.5946C81.7142 40.5946 80.8591 41.0366 80.5028 41.7356C80.1669 42.3934 80.004 43.2363 80.004 44.4801C80.004 45.9602 80.2585 47.2759 80.6555 47.9235C81.0322 48.5608 81.8669 48.9823 82.7728 48.9823C83.862 48.9823 84.6764 48.4169 85.0327 47.3993C85.2668 46.7414 85.3482 46.1555 85.3482 45.1174C85.338 43.6475 85.1955 42.6504 84.8596 41.9514Z" fill="#022A50"/>
49
+ <path d="M93.704 50.2058H92.0956L88.3496 39.6596L90.0292 39.2998L92.4621 46.5568C92.7573 47.4202 92.9609 48.3556 92.9609 48.3556H93.0016C93.0016 48.3556 93.1645 47.5333 93.5004 46.5773L95.8925 39.5773H97.6332L93.704 50.2058Z" fill="#022A50"/>
50
+ <path d="M100.852 45.107V45.3639C100.852 46.361 100.974 47.1217 101.34 47.6664C101.92 48.571 102.887 48.9616 103.936 48.9616C104.944 48.9616 105.758 48.6429 106.491 47.9645L107.122 49.0233C106.196 49.8661 104.944 50.3287 103.6 50.3287C100.709 50.3287 98.9785 48.2215 98.9785 44.7267C98.9785 42.9484 99.3551 41.8074 100.231 40.7487C101.065 39.7516 102.093 39.2891 103.345 39.2891C104.475 39.2891 105.463 39.6899 106.175 40.43C107.071 41.3551 107.366 42.3522 107.366 44.8706V45.107H100.852ZM105.147 41.5093C104.791 40.944 104.058 40.5842 103.264 40.5842C101.778 40.5842 100.943 41.6841 100.852 43.8632H105.626C105.605 42.7222 105.463 42.0233 105.147 41.5093Z" fill="#022A50"/>
51
+ <path d="M114.726 41.1501C114.624 41.109 114.431 41.0679 114.268 41.0679C113.637 41.0679 113.016 41.3351 112.527 41.8285C112.049 42.3117 111.926 42.6303 111.926 43.504V50.1031H110.298V41.9827C110.298 40.4409 109.941 39.7419 109.941 39.7419L111.57 39.2999C111.57 39.2999 111.967 40.1222 111.906 41.0165C112.659 39.9372 113.769 39.2588 114.838 39.2588C115.113 39.2588 115.398 39.3616 115.398 39.3616L114.726 41.1501Z" fill="#022A50"/>
52
+ <path d="M122.971 50.0922V42.9689C122.971 41.8485 122.89 41.5709 122.595 41.2112C122.36 40.9439 121.923 40.7692 121.444 40.7692C120.61 40.7692 119.307 41.4476 118.553 42.2494V50.0922H116.965V41.9718C116.965 40.4711 116.568 39.7516 116.568 39.7516L118.156 39.3096C118.156 39.3096 118.533 40.0908 118.533 40.9542C119.622 39.8544 120.711 39.3301 121.821 39.3301C122.951 39.3301 123.959 39.9469 124.376 40.872C124.539 41.2523 124.63 41.6737 124.63 42.0952V50.0922H122.971Z" fill="#022A50"/>
53
+ <path d="M139.207 50.0923V42.3111C139.207 41.2935 138.749 40.7692 137.863 40.7692C136.917 40.7692 136.184 41.386 135.095 42.3933V50.0923H133.446V42.6092C133.446 41.9719 133.385 41.5504 133.15 41.2524C132.896 40.9543 132.56 40.8309 132.082 40.8309C131.288 40.8309 130.514 41.2318 129.425 42.2289V50.0923H127.857V41.9308C127.857 40.4095 127.48 39.6899 127.48 39.6899L129.068 39.3096C129.068 39.3096 129.445 40.1319 129.445 40.872C130.137 40.0908 131.41 39.2891 132.479 39.2891C133.507 39.2891 134.535 39.9264 134.911 41.0468C135.919 39.9675 137.192 39.2891 138.26 39.2891C139.808 39.2891 140.877 40.4711 140.877 42.1466V50.0923H139.207Z" fill="#022A50"/>
54
+ <path d="M145.375 45.107V45.3639C145.375 46.361 145.498 47.1217 145.854 47.6664C146.444 48.571 147.401 48.9616 148.45 48.9616C149.457 48.9616 150.272 48.6429 151.005 47.9645L151.636 49.0233C150.72 49.8661 149.457 50.3287 148.114 50.3287C145.223 50.3287 143.492 48.2215 143.492 44.7267C143.492 42.9484 143.869 41.8074 144.744 40.7487C145.579 39.7516 146.607 39.2891 147.869 39.2891C148.999 39.2891 149.987 39.6899 150.699 40.43C151.595 41.3551 151.89 42.3522 151.89 44.8706V45.107H145.375ZM149.661 41.5093C149.305 40.944 148.572 40.5842 147.778 40.5842C146.292 40.5842 145.457 41.6841 145.365 43.8632H150.139C150.129 42.7222 149.976 42.0233 149.661 41.5093Z" fill="#022A50"/>
55
+ <path d="M160.817 50.0922V42.9689C160.817 41.8485 160.735 41.5709 160.44 41.2112C160.206 40.9439 159.768 40.7692 159.29 40.7692C158.455 40.7692 157.152 41.4476 156.399 42.2494V50.0922H154.811V41.9718C154.811 40.4711 154.414 39.7516 154.414 39.7516L156.002 39.3096C156.002 39.3096 156.379 40.0908 156.379 40.9542C157.468 39.8544 158.557 39.3301 159.667 39.3301C160.797 39.3301 161.804 39.9469 162.222 40.872C162.385 41.2523 162.476 41.6737 162.476 42.0952V50.0922H160.817Z" fill="#022A50"/>
56
+ <path d="M169.502 40.8103H167.324V47.5944C167.324 48.756 167.64 49.1568 168.668 49.1568C169.126 49.1568 169.401 49.0952 169.696 48.941L169.93 49.9997C169.411 50.2772 168.82 50.4211 168.087 50.4211C167.538 50.4211 167.12 50.3184 166.723 50.1231C165.99 49.7633 165.716 49.0849 165.716 48.0261V40.8H164.352V39.5563H165.716C165.716 38.5386 165.878 36.894 165.878 36.894L167.589 36.5137C167.589 36.5137 167.385 38.1583 167.385 39.5563H170.001L169.502 40.8103Z" fill="#022A50"/>
57
+ </g>
58
+ <defs>
59
+ <clipPath id="clip0">
60
+ <rect width="170" height="56" fill="white"/>
61
+ </clipPath>
62
+ </defs>
63
+ </svg>
@@ -0,0 +1,56 @@
1
+ <svg width="165" height="28" viewBox="0 0 165 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.4607 10.6139C30.3538 10.6402 30.1222 10.7102 29.9618 10.7277C30.2647 10.4389 30.4429 10.0889 30.4429 9.8002C30.3004 9.84395 30.042 9.9402 29.8104 9.9927C30.2736 9.6077 30.532 9.1527 30.4162 8.5577C30.2736 8.6277 30.0776 8.74145 29.8727 8.8202C30.2825 8.2077 30.2736 7.66519 30.1044 7.35019C29.9262 7.51644 29.7035 7.70895 29.4719 7.84895C29.6233 7.1402 29.6144 6.6852 29.3115 6.36145C28.9997 6.93895 28.7325 7.3677 28.2959 7.8752C28.3316 7.4027 28.2781 6.81645 27.9663 6.51895C27.9663 6.51895 27.8772 7.17519 27.6456 7.38519C27.5922 6.74644 27.3873 6.39645 27.0933 6.0552C27.0933 6.0552 27.0755 6.72019 26.8884 7.13144C26.728 6.57144 26.443 6.1427 26.0688 5.73145C26.0955 6.9652 25.7481 9.28395 24.7414 10.8502C24.6256 11.7777 24.5187 13.1689 22.9865 13.9914C22.7638 13.8427 22.3807 13.6414 21.8284 13.6764C21.6858 12.9764 22.6123 12.3464 23.4141 11.8389C24.2248 11.3227 24.5722 10.8852 24.5633 10.2027C24.5455 9.4502 24.0288 9.14395 23.4943 9.12645C22.737 9.09145 22.1223 9.76519 21.9798 10.0452C21.7571 10.1502 21.1157 10.3427 20.8484 10.4127C20.5544 10.4914 20.2248 10.6052 20.011 10.7802C20.1357 10.8589 20.4921 10.8852 20.6257 10.8589C20.8841 10.8239 21.7036 10.6752 22.4787 10.5789C22.7638 10.7277 23.2181 10.9814 22.737 11.3139C22.0689 11.7339 21.7838 11.8389 20.8484 12.3202C19.3696 13.0814 19.8507 14.9977 20.207 15.1377C20.207 15.7852 20.795 16.9489 21.1959 17.3602C21.374 18.1739 21.1335 19.3814 20.8841 19.8889C20.6792 19.3989 20.3228 18.2527 20.0912 17.5877C20.3317 16.3277 19.9398 15.7677 19.6725 15.5577C19.4053 15.3389 18.9776 15.4002 18.6926 15.8377C19.1202 15.7939 19.2627 16.3277 19.2538 16.8877C19.2449 17.5527 19.0667 18.0952 18.5946 18.0952C18.6302 18.6639 19.2538 18.8302 19.5656 18.5502C19.6191 18.6814 19.8685 19.4252 20.1001 20.0902C20.2427 20.4839 20.3763 20.8514 20.4654 21.0439C20.5634 21.2539 21.2849 21.2889 21.3651 21.0439C21.4809 20.7202 21.57 20.4752 21.7482 20.0902C21.8818 19.8014 22.0778 19.4339 22.3629 18.8914C22.5589 19.2239 22.8172 19.7402 22.9597 20.0902C23.031 20.2564 23.0756 20.3877 23.0845 20.4489C23.1468 20.9914 23.1112 22.9252 22.9597 24.0802C21.3473 23.6514 20.8841 24.4214 21.0266 24.9989C21.2582 24.7452 21.5611 24.7802 21.7482 24.9114C21.7036 25.3314 21.8195 25.6377 22.256 25.7689C22.7192 24.5614 24.3851 24.8327 24.5455 24.9289C24.5544 24.6927 24.7771 24.1152 23.9219 23.9927C23.9575 22.9514 24.0644 21.6739 24.1 21.4114C24.1357 21.1489 24.1713 20.9827 24.0466 20.5627C24.0109 20.4402 23.9575 20.2827 23.913 20.0989C23.7971 19.6789 23.6902 19.1277 23.6813 18.5327C23.8328 18.6814 24.1891 18.7952 24.4296 18.7427C24.6167 19.5302 24.8929 19.3027 25.0354 19.6352C25.1067 19.8014 25.1245 19.9677 25.1423 20.1077C25.1601 20.2477 25.1869 20.3614 25.2581 20.4664C25.8283 20.4839 26.3183 20.3527 26.6657 20.1077C26.7726 20.0377 26.8706 19.9502 26.9418 19.8627C26.7993 19.0227 26.5588 18.6114 26.1134 18.1039C25.9975 17.4214 25.6679 16.7914 25.2225 16.2314C25.7837 16.0477 26.3539 15.6014 26.6568 15.2864C26.924 15.2689 27.2358 15.0502 27.2626 14.6127C27.4229 14.5952 27.5565 14.5864 27.6813 14.5602C27.6634 14.4377 27.6367 14.2627 27.6189 14.1577C27.8238 14.1577 28.0287 14.1489 28.2158 14.1314C28.1623 13.9739 28.0821 13.8077 28.0287 13.6852C28.2336 13.6852 28.4919 13.6677 28.6968 13.6589C28.5899 13.4577 28.5008 13.2739 28.4385 13.0989C28.679 13.0727 29.0443 13.0202 29.3471 12.9502C29.2491 12.8539 29.1422 12.7489 28.973 12.5914C29.7569 12.3639 30.1044 11.8214 30.14 11.5852C30.0242 11.5852 29.7837 11.6377 29.6411 11.6202C30.1222 11.3402 30.4162 10.9902 30.4607 10.6139Z" fill="white"/>
3
+ <path d="M14.5411 24.7975C10.1492 23.1875 9.58798 19.6525 9.57016 18.0425C9.57016 18.0425 9.56125 18.0425 9.55234 18.0425C9.56125 17.9988 9.56125 17.9638 9.57016 17.9288C9.57016 17.5788 9.59689 17.3425 9.60579 17.2638C9.59689 17.0363 9.56125 16.8525 9.51671 16.7213C9.5078 16.695 9.48998 16.6688 9.47217 16.6338V18.2963C9.47217 20.16 10.167 21.77 11.5389 23.0738C12.7416 24.22 14.0957 24.7538 14.4787 24.885L14.5411 24.9025L14.6035 24.885C14.9865 24.745 16.3406 24.22 17.5433 23.0738C18.9152 21.77 19.61 20.16 19.61 18.2963V17.99C19.5744 18.0425 19.5388 18.0775 19.5031 18.1213C19.4675 18.9613 19.3072 20.2563 18.737 21.2363C18.0689 22.61 17.0266 23.7388 14.5411 24.7975Z" fill="white"/>
4
+ <path d="M25.0619 25.8738C24.8481 25.9351 24.5809 25.9789 24.1889 25.9789H23.6989C22.0152 25.9439 20.287 25.4539 19.2269 24.3864C20.6879 22.9339 18.9685 21.7439 18.042 22.9689C17.748 23.3539 17.5164 23.6251 17.3204 24.0014C17.1601 24.2989 17.2759 24.6051 17.6411 25.0688C17.8371 25.3226 18.336 25.7164 18.7458 25.9789H10.3362C10.7371 25.7164 11.2359 25.3226 11.4408 25.0688C11.8061 24.6051 11.9308 24.3076 11.7615 24.0014C11.5566 23.6251 11.325 23.3539 11.0399 22.9689C10.1135 21.7351 8.39412 22.9339 9.85511 24.3864C8.795 25.4539 7.06675 25.9439 5.38305 25.9789H4.9198C4.52783 25.9789 4.26057 25.9438 4.04677 25.8738C3.69934 25.7951 3.61916 25.9351 3.80624 26.5301C3.93096 26.9151 4.03786 27.5626 4.0824 28.0001H25.0263C25.0708 27.5626 25.1777 26.9151 25.3025 26.5213C25.4895 25.9351 25.4094 25.7863 25.0619 25.8738ZM18.5053 23.0213C18.7814 22.6626 19.1823 22.7589 19.3427 23.0564C19.5208 23.3801 19.2625 23.7739 18.9151 24.0889C18.4429 23.5814 18.3895 23.1701 18.5053 23.0213ZM17.8104 24.7101C17.6411 24.4738 17.5788 24.3426 17.6679 24.1151C17.757 23.8963 17.9351 23.7039 18.1133 23.4326C18.4073 24.5526 20.1266 25.6201 21.4005 25.9789H19.3694C18.8616 25.6901 18.1935 25.2351 17.8104 24.7101ZM9.7304 23.0564C9.89966 22.7589 10.3005 22.6626 10.5678 23.0213C10.6836 23.1788 10.6302 23.5814 10.158 24.0889C9.81057 23.7739 9.55223 23.3801 9.7304 23.0564ZM10.9598 23.4239C11.1468 23.6951 11.325 23.8963 11.4052 24.1063C11.4943 24.3338 11.4408 24.4738 11.2716 24.7013C10.8885 25.2263 10.2204 25.6813 9.69476 25.9613H7.67253C8.94645 25.6201 10.6658 24.5439 10.9598 23.4239ZM24.661 27.6763H4.44765C4.35857 27.0463 4.23385 26.6351 4.12695 26.2938H24.9907C24.8749 26.6351 24.7501 27.0463 24.661 27.6763Z" fill="white"/>
5
+ <path d="M20.4653 26.8804C20.4653 26.7054 20.4653 26.6704 20.4653 26.6354C20.4653 26.5916 20.4742 26.5741 20.5098 26.5654C20.5277 26.5654 20.5455 26.5654 20.5544 26.5654C20.5722 26.5654 20.5722 26.5654 20.5722 26.5566C20.5722 26.5479 20.5633 26.5479 20.5455 26.5479C20.5009 26.5479 20.4118 26.5479 20.3851 26.5479C20.3495 26.5479 20.2782 26.5479 20.2248 26.5479C20.2069 26.5479 20.198 26.5479 20.198 26.5566C20.198 26.5654 20.2069 26.5654 20.2159 26.5654C20.2337 26.5654 20.2426 26.5654 20.2604 26.5654C20.296 26.5741 20.3049 26.5916 20.3139 26.6354C20.3139 26.6704 20.3139 26.7054 20.3139 26.8804V27.0904C20.3139 27.1954 20.3139 27.2916 20.3049 27.3441C20.296 27.3791 20.296 27.4054 20.2693 27.4141C20.2604 27.4141 20.2426 27.4141 20.2248 27.4141C20.2069 27.4141 20.2069 27.4229 20.2069 27.4229C20.2069 27.4316 20.2159 27.4316 20.2337 27.4316C20.2782 27.4316 20.3584 27.4316 20.3851 27.4316C20.4831 27.4316 20.5633 27.4404 20.7326 27.4404C20.7949 27.4404 20.8038 27.4316 20.8038 27.4054C20.8127 27.3704 20.8216 27.2829 20.8216 27.2654C20.8216 27.2479 20.8216 27.2479 20.8127 27.2479C20.8038 27.2479 20.8038 27.2566 20.8038 27.2654C20.8038 27.2916 20.786 27.3179 20.7682 27.3354C20.7415 27.3616 20.688 27.3704 20.6256 27.3704C20.5366 27.3704 20.5009 27.3616 20.4831 27.3441C20.4564 27.3179 20.4564 27.2391 20.4564 27.0904V26.8804H20.4653Z" fill="white"/>
6
+ <path d="M22.0329 27.4491C22.0952 27.4491 22.1664 27.4403 22.2198 27.4053C22.3088 27.3528 22.3355 27.2653 22.3355 27.2041C22.3355 27.0903 22.2821 27.0116 22.1397 26.9066L22.1041 26.8803C22.0062 26.8103 21.9795 26.7666 21.9795 26.7141C21.9795 26.6441 22.0329 26.5916 22.1219 26.5916C22.202 26.5916 22.2376 26.6266 22.2554 26.6528C22.2821 26.6791 22.291 26.7228 22.291 26.7316C22.291 26.7491 22.2999 26.7491 22.2999 26.7491C22.3088 26.7491 22.3088 26.7403 22.3088 26.7141C22.3088 26.6266 22.3177 26.5916 22.3177 26.5741C22.3177 26.5653 22.3088 26.5653 22.2999 26.5566C22.2732 26.5478 22.2198 26.5391 22.1397 26.5391C21.9706 26.5391 21.8638 26.6353 21.8638 26.7578C21.8638 26.8541 21.9083 26.9328 22.0418 27.0378L22.0952 27.0816C22.1931 27.1603 22.2109 27.2128 22.2109 27.2741C22.2109 27.3353 22.1575 27.4053 22.0507 27.4053C21.9795 27.4053 21.9083 27.3703 21.8816 27.2828C21.8727 27.2653 21.8727 27.2391 21.8727 27.2216C21.8727 27.2128 21.8727 27.1953 21.8638 27.1953C21.8549 27.1953 21.8549 27.2128 21.846 27.2303C21.846 27.2478 21.8371 27.3178 21.8371 27.3791C21.8371 27.4053 21.8371 27.4141 21.8638 27.4228C21.9083 27.4403 21.9617 27.4491 22.0329 27.4491Z" fill="white"/>
7
+ <path d="M21.2046 27.0903C21.2046 27.2041 21.2046 27.3003 21.1957 27.3528C21.1957 27.3878 21.1868 27.4053 21.1601 27.4141C21.1512 27.4141 21.1333 27.4141 21.1155 27.4141C21.0977 27.4141 21.0977 27.4228 21.0977 27.4228C21.0977 27.4316 21.1066 27.4316 21.1244 27.4316C21.1779 27.4316 21.2491 27.4316 21.2758 27.4316C21.3114 27.4316 21.3826 27.4316 21.4627 27.4316C21.4716 27.4316 21.4894 27.4316 21.4894 27.4228C21.4894 27.4141 21.4805 27.4141 21.4716 27.4141C21.4538 27.4141 21.4271 27.4141 21.4093 27.4141C21.3737 27.4053 21.3648 27.3878 21.3648 27.3528C21.3559 27.3003 21.3559 27.2128 21.3559 27.0903V26.8803C21.3559 26.7053 21.3559 26.6703 21.3559 26.6353C21.3559 26.5916 21.3648 26.5741 21.4004 26.5653C21.4182 26.5653 21.4182 26.5653 21.436 26.5653C21.4538 26.5653 21.4538 26.5653 21.4538 26.5478C21.4538 26.5391 21.4449 26.5391 21.4271 26.5391C21.3826 26.5391 21.3114 26.5391 21.2847 26.5391C21.2491 26.5391 21.1779 26.5391 21.1244 26.5391C21.1066 26.5391 21.0977 26.5391 21.0977 26.5478C21.0977 26.5566 21.1066 26.5653 21.1155 26.5653C21.1333 26.5653 21.1512 26.5653 21.1601 26.5653C21.1868 26.5741 21.1957 26.5916 21.2046 26.6353C21.2046 26.6703 21.2046 26.7053 21.2046 26.8803V27.0903Z" fill="white"/>
8
+ <path d="M18.1045 27.0903C18.1045 27.1953 18.1045 27.2916 18.0956 27.3441C18.0956 27.3791 18.0867 27.4053 18.0599 27.4053C18.051 27.4053 18.0332 27.4053 18.0154 27.4053C18.0065 27.4053 17.9976 27.4053 17.9976 27.4141C17.9976 27.4228 18.0065 27.4228 18.0243 27.4228C18.0688 27.4228 18.149 27.4228 18.1757 27.4228C18.2381 27.4228 18.345 27.4316 18.4341 27.4316C18.6568 27.4316 18.7815 27.3528 18.835 27.2916C18.9062 27.2216 18.9686 27.1078 18.9686 26.9678C18.9686 26.8278 18.9151 26.7316 18.8528 26.6703C18.7192 26.5391 18.5232 26.5391 18.3717 26.5391C18.3005 26.5391 18.2203 26.5391 18.1846 26.5391C18.149 26.5391 18.0777 26.5391 18.0154 26.5391C17.9976 26.5391 17.9887 26.5391 17.9887 26.5478C17.9887 26.5566 17.9976 26.5566 18.0065 26.5566C18.0243 26.5566 18.0421 26.5566 18.051 26.5566C18.0867 26.5653 18.0956 26.5828 18.1045 26.6266C18.1045 26.6616 18.1045 26.6966 18.1045 26.8716V27.0903ZM18.2559 26.8628V26.6266C18.2559 26.6178 18.2648 26.6091 18.2737 26.6003C18.2826 26.6003 18.3272 26.5916 18.3539 26.5916C18.4519 26.5916 18.5855 26.6091 18.6924 26.7141C18.7459 26.7666 18.8082 26.8541 18.8082 27.0028C18.8082 27.1253 18.7815 27.2303 18.7103 27.3003C18.639 27.3616 18.5588 27.3878 18.4341 27.3878C18.3361 27.3878 18.2916 27.3616 18.2737 27.3441C18.2648 27.3266 18.2648 27.2828 18.2559 27.2566C18.2559 27.2303 18.2559 27.1428 18.2559 27.0203V26.8628Z" fill="white"/>
9
+ <path d="M17.3828 27.0903C17.3828 27.2041 17.3828 27.3003 17.3739 27.3528C17.3739 27.3878 17.365 27.4053 17.3383 27.4141C17.3294 27.4141 17.3116 27.4141 17.2938 27.4141C17.276 27.4141 17.276 27.4228 17.276 27.4228C17.276 27.4316 17.2849 27.4316 17.3027 27.4316C17.3472 27.4316 17.4273 27.4316 17.454 27.4316C17.4896 27.4316 17.5608 27.4316 17.6409 27.4316C17.6498 27.4316 17.6587 27.4316 17.6587 27.4228C17.6587 27.4141 17.6498 27.4141 17.6409 27.4141C17.6231 27.4141 17.5964 27.4141 17.5786 27.4141C17.543 27.4053 17.5341 27.3878 17.5341 27.3528C17.5341 27.3003 17.5341 27.2128 17.5341 27.0903V26.8803C17.5341 26.7053 17.5341 26.6703 17.5341 26.6353C17.5341 26.5916 17.543 26.5741 17.5786 26.5653C17.5875 26.5653 17.6053 26.5653 17.6142 26.5653C17.6231 26.5653 17.632 26.5653 17.632 26.5478C17.632 26.5391 17.6231 26.5391 17.6053 26.5391C17.5608 26.5391 17.4896 26.5391 17.4629 26.5391C17.4273 26.5391 17.3561 26.5391 17.3116 26.5391C17.2938 26.5391 17.2849 26.5391 17.2849 26.5478C17.2849 26.5566 17.2938 26.5653 17.3027 26.5653C17.3116 26.5653 17.3294 26.5653 17.3472 26.5653C17.3739 26.5741 17.3828 26.5916 17.3917 26.6353C17.3917 26.6703 17.3917 26.7053 17.3917 26.8803V27.0903H17.3828Z" fill="white"/>
10
+ <path d="M16.6169 26.9941C16.6169 26.9853 16.6169 26.9853 16.6258 26.9853C16.6436 26.9853 16.7683 26.9853 16.804 26.9941C16.8396 26.9941 16.8574 27.0203 16.8663 27.0378C16.8663 27.0553 16.8752 27.0641 16.8752 27.0728C16.8752 27.0816 16.8752 27.0903 16.8841 27.0903C16.893 27.0903 16.893 27.0816 16.893 27.0641C16.893 27.0553 16.893 27.0028 16.9019 26.9766C16.9019 26.9416 16.9109 26.9153 16.9109 26.9066C16.9109 26.8978 16.9109 26.8978 16.9019 26.8978C16.893 26.8978 16.893 26.9066 16.8841 26.9066C16.8752 26.9241 16.8574 26.9241 16.8307 26.9241C16.8129 26.9241 16.795 26.9241 16.7772 26.9241H16.6258C16.6169 26.9241 16.6169 26.9241 16.6169 26.9153V26.6266C16.6169 26.6178 16.6258 26.6091 16.6258 26.6091L16.8129 26.6178C16.8574 26.6178 16.8841 26.6353 16.893 26.6528C16.9019 26.6703 16.9019 26.6878 16.9019 26.6966C16.9019 26.7141 16.9019 26.7141 16.9109 26.7141C16.9198 26.7141 16.9198 26.7053 16.9198 26.6966C16.9198 26.6791 16.9198 26.6091 16.9287 26.6003C16.9376 26.5741 16.9376 26.5566 16.9376 26.5478C16.9376 26.5391 16.9376 26.5391 16.9287 26.5391C16.9198 26.5391 16.9198 26.5478 16.9109 26.5478C16.9019 26.5478 16.8841 26.5478 16.8574 26.5478H16.5456C16.51 26.5478 16.4387 26.5478 16.3763 26.5478C16.3585 26.5478 16.3496 26.5478 16.3496 26.5566C16.3496 26.5653 16.3585 26.5653 16.3674 26.5653C16.3853 26.5653 16.4031 26.5653 16.412 26.5653C16.4476 26.5741 16.4565 26.5916 16.4654 26.6353C16.4654 26.6703 16.4654 26.7053 16.4654 26.8803V27.0903C16.4654 27.2041 16.4654 27.2916 16.4565 27.3441C16.4476 27.3791 16.4476 27.4053 16.4209 27.4053C16.412 27.4053 16.3942 27.4053 16.3763 27.4053C16.3585 27.4053 16.3585 27.4141 16.3585 27.4141C16.3585 27.4228 16.3674 27.4228 16.3853 27.4228C16.4298 27.4228 16.5011 27.4228 16.5367 27.4228C16.5723 27.4228 16.6436 27.4228 16.7149 27.4228C16.7327 27.4228 16.7416 27.4228 16.7416 27.4141C16.7416 27.4053 16.7327 27.4053 16.7238 27.4053C16.706 27.4053 16.6792 27.4053 16.6614 27.4053C16.6258 27.3966 16.6169 27.3703 16.6169 27.3441C16.608 27.2916 16.608 27.2041 16.608 27.0903V26.9941H16.6169Z" fill="white"/>
11
+ <path d="M9.02682 27.0903C9.02682 27.1953 9.02682 27.2916 9.01791 27.3441C9.01791 27.3791 9.009 27.4053 8.98228 27.4053C8.97337 27.4053 8.95555 27.4053 8.93774 27.4053C8.91992 27.4053 8.91992 27.4053 8.91992 27.4141C8.91992 27.4228 8.92883 27.4228 8.94665 27.4228C8.99119 27.4228 9.07136 27.4228 9.09809 27.4228C9.16045 27.4228 9.26735 27.4316 9.35644 27.4316C9.57915 27.4316 9.70387 27.3528 9.75732 27.2916C9.82859 27.2216 9.89095 27.1078 9.89095 26.9678C9.89095 26.8278 9.8375 26.7316 9.77514 26.6703C9.64151 26.5391 9.44552 26.5391 9.29408 26.5391C9.22281 26.5391 9.14263 26.5391 9.107 26.5391C9.07136 26.5391 9.0001 26.5391 8.92883 26.5391C8.91101 26.5391 8.9021 26.5391 8.9021 26.5478C8.9021 26.5566 8.91101 26.5566 8.91992 26.5566C8.93774 26.5566 8.95555 26.5566 8.97337 26.5566C9.009 26.5653 9.01791 26.5828 9.02682 26.6266C9.02682 26.6616 9.02682 26.6966 9.02682 26.8716V27.0903ZM9.17827 26.8628C9.17827 26.7753 9.17827 26.6703 9.17827 26.6266C9.17827 26.6178 9.18717 26.6091 9.19608 26.6003C9.20499 26.6003 9.24953 26.5916 9.27626 26.5916C9.37425 26.5916 9.50788 26.6091 9.61478 26.7141C9.66823 26.7666 9.73059 26.8541 9.73059 27.0028C9.73059 27.1253 9.70387 27.2303 9.6326 27.3003C9.56133 27.3616 9.48116 27.3878 9.35644 27.3878C9.25844 27.3878 9.2139 27.3616 9.19608 27.3441C9.18717 27.3266 9.18718 27.2828 9.18718 27.2566C9.18718 27.2303 9.18718 27.1428 9.18718 27.0203V26.8628H9.17827Z" fill="white"/>
12
+ <path d="M7.77956 27.0553C7.77956 27.2216 7.8241 27.3091 7.88646 27.3703C7.97555 27.4491 8.09136 27.4491 8.15372 27.4491C8.23389 27.4491 8.32298 27.4403 8.40316 27.3616C8.50115 27.2828 8.51897 27.1428 8.51897 27.0028V26.8803C8.51897 26.7053 8.51897 26.6703 8.51897 26.6353C8.51897 26.5916 8.52788 26.5741 8.56351 26.5653C8.58133 26.5653 8.59023 26.5653 8.59914 26.5653C8.61696 26.5653 8.61696 26.5653 8.61696 26.5566C8.61696 26.5478 8.60805 26.5478 8.59024 26.5478C8.54569 26.5478 8.46552 26.5478 8.45661 26.5478C8.45661 26.5478 8.38534 26.5478 8.32298 26.5478C8.30516 26.5478 8.29625 26.5478 8.29625 26.5566C8.29625 26.5653 8.30516 26.5653 8.31407 26.5653C8.32298 26.5653 8.34971 26.5653 8.35861 26.5653C8.39425 26.5741 8.40316 26.5916 8.41206 26.6353C8.41206 26.6703 8.41206 26.7053 8.41206 26.8803V27.0291C8.41206 27.1516 8.41206 27.2566 8.3408 27.3178C8.28735 27.3616 8.22499 27.3791 8.17154 27.3791C8.12699 27.3791 8.07354 27.3703 8.02009 27.3266C7.95773 27.2741 7.93101 27.2041 7.93101 27.0378V26.8716C7.93101 26.6966 7.93101 26.6616 7.93101 26.6266C7.93101 26.5828 7.94882 26.5653 7.97555 26.5566C7.99337 26.5566 7.99337 26.5566 8.01118 26.5566C8.02009 26.5566 8.029 26.5566 8.029 26.5478C8.029 26.5391 8.02009 26.5391 8.00227 26.5391C7.95773 26.5391 7.88646 26.5391 7.85083 26.5391C7.8152 26.5391 7.73502 26.5391 7.67266 26.5391C7.65484 26.5391 7.64593 26.5391 7.64593 26.5478C7.64593 26.5566 7.65484 26.5566 7.66375 26.5566C7.68157 26.5566 7.69938 26.5566 7.70829 26.5566C7.75284 26.5653 7.76174 26.5828 7.76174 26.6266C7.76174 26.6616 7.76174 26.6966 7.76174 26.8716V27.0553H7.77956Z" fill="white"/>
13
+ <path d="M19.3783 27.0903C19.3783 27.1953 19.3783 27.2915 19.3694 27.344C19.3605 27.379 19.3605 27.4053 19.3337 27.4053C19.3248 27.4053 19.307 27.4053 19.2892 27.4053C19.2714 27.4053 19.2714 27.414 19.2714 27.414C19.2714 27.4228 19.2803 27.4228 19.2981 27.4228C19.3426 27.4228 19.4228 27.4228 19.4495 27.4228C19.5208 27.4228 19.601 27.4315 19.7792 27.4315C19.8237 27.4315 19.8326 27.4315 19.8415 27.3965C19.8504 27.3703 19.8593 27.2915 19.8593 27.2653C19.8593 27.2565 19.8593 27.239 19.8504 27.239C19.8415 27.239 19.8415 27.2478 19.8415 27.2565C19.8326 27.3003 19.8148 27.3265 19.7881 27.344C19.7613 27.3615 19.7079 27.3615 19.6723 27.3615C19.5475 27.3615 19.5297 27.344 19.5297 27.2653C19.5297 27.2303 19.5297 27.1253 19.5297 27.0815V26.9853C19.5297 26.9765 19.5297 26.9765 19.5386 26.9765C19.5654 26.9765 19.6812 26.9765 19.7079 26.9765C19.7524 26.9765 19.7703 26.994 19.7792 27.0203C19.7792 27.0378 19.7792 27.0553 19.7881 27.064C19.7881 27.0728 19.7881 27.0728 19.797 27.0728C19.8059 27.0728 19.8059 27.064 19.8059 27.0553C19.8059 27.0465 19.8059 27.0028 19.8148 26.9765C19.8148 26.9153 19.8237 26.8978 19.8237 26.889C19.8237 26.8803 19.8148 26.8803 19.8148 26.8803C19.8059 26.8803 19.8059 26.889 19.797 26.8978C19.7881 26.9065 19.7703 26.9153 19.7435 26.9153C19.7168 26.9153 19.5743 26.9153 19.5564 26.9153C19.5475 26.9153 19.5475 26.9153 19.5475 26.9065V26.609C19.5475 26.6003 19.5475 26.6003 19.5564 26.6003C19.5832 26.6003 19.7079 26.6003 19.7257 26.609C19.7881 26.6178 19.797 26.6265 19.8059 26.6528C19.8148 26.6703 19.8148 26.6878 19.8148 26.6965C19.8148 26.7053 19.8148 26.714 19.8237 26.714C19.8326 26.714 19.8326 26.7053 19.8326 26.6965C19.8326 26.679 19.8415 26.6265 19.8415 26.6178C19.8415 26.5653 19.8504 26.5478 19.8504 26.539C19.8504 26.5303 19.8504 26.5303 19.8415 26.5303C19.8326 26.5303 19.8326 26.539 19.8237 26.539C19.8148 26.539 19.797 26.5478 19.7703 26.5478H19.4674C19.4317 26.5478 19.3605 26.5478 19.2981 26.5478C19.2803 26.5478 19.2714 26.5478 19.2714 26.5565C19.2714 26.5653 19.2803 26.5653 19.2892 26.5653C19.307 26.5653 19.3248 26.5653 19.3337 26.5653C19.3783 26.574 19.3872 26.5915 19.3872 26.6353C19.3872 26.6703 19.3872 26.7053 19.3872 26.8803V27.0903H19.3783Z" fill="white"/>
14
+ <path d="M14.5321 27.0903C14.5321 27.1953 14.5321 27.2915 14.5232 27.344C14.5232 27.379 14.5143 27.4053 14.4876 27.4053C14.4787 27.4053 14.4609 27.4053 14.4431 27.4053C14.4252 27.4053 14.4252 27.414 14.4252 27.414C14.4252 27.4228 14.4342 27.4228 14.452 27.4228C14.5054 27.4228 14.5767 27.4228 14.6034 27.4228C14.639 27.4228 14.7103 27.4228 14.7905 27.4228C14.7994 27.4228 14.8083 27.4228 14.8083 27.414C14.8083 27.4053 14.7994 27.4053 14.7905 27.4053C14.7727 27.4053 14.746 27.4053 14.7281 27.4053C14.6925 27.3965 14.6836 27.3703 14.6836 27.344C14.6747 27.2915 14.6747 27.1953 14.6747 27.0903V26.609H14.8261C14.933 26.609 14.9687 26.644 14.9687 26.679V26.6878C14.9687 26.7053 14.9776 26.714 14.9865 26.714C14.9954 26.714 14.9954 26.7053 14.9954 26.6965C14.9954 26.6615 14.9954 26.5828 14.9954 26.5653C14.9954 26.5478 14.9954 26.539 14.9865 26.539C14.9776 26.539 14.9508 26.5478 14.8707 26.5478H14.3985C14.3629 26.5478 14.3094 26.5478 14.2827 26.5478C14.256 26.5478 14.2382 26.5303 14.2293 26.5303C14.2204 26.5303 14.2203 26.539 14.2114 26.5565C14.2114 26.5653 14.1847 26.6703 14.1847 26.6878C14.1847 26.7053 14.1847 26.7053 14.1936 26.7053C14.2025 26.7053 14.2025 26.6965 14.2025 26.6878C14.2025 26.679 14.2114 26.6615 14.2204 26.644C14.2382 26.6178 14.2649 26.609 14.3362 26.609H14.5143V27.0903H14.5321Z" fill="white"/>
15
+ <path d="M11.8419 26.6615C11.8776 26.609 11.9043 26.574 11.931 26.5653C11.9488 26.5653 11.9666 26.5565 11.9755 26.5565C11.9845 26.5565 11.9934 26.5478 11.9934 26.5478C11.9934 26.539 11.9845 26.539 11.9755 26.539C11.931 26.539 11.8865 26.539 11.8597 26.539C11.8419 26.539 11.7885 26.539 11.7439 26.539C11.7261 26.539 11.7172 26.539 11.7172 26.5478C11.7172 26.5565 11.7261 26.5565 11.735 26.5565C11.7439 26.5565 11.7617 26.5565 11.7707 26.5565C11.7796 26.5565 11.7885 26.5653 11.7885 26.574C11.7885 26.5828 11.7885 26.6003 11.7796 26.6178C11.7617 26.6528 11.6548 26.8103 11.6192 26.8628C11.5747 26.784 11.5212 26.6965 11.4678 26.6003C11.4589 26.5915 11.4589 26.574 11.4589 26.5653C11.4589 26.5565 11.4589 26.5478 11.4767 26.5478C11.4856 26.5478 11.5034 26.5478 11.5123 26.5478C11.5212 26.5478 11.5301 26.5478 11.5301 26.539C11.5301 26.5303 11.5212 26.5303 11.5034 26.5303C11.4589 26.5303 11.3876 26.5303 11.3787 26.5303C11.3252 26.5303 11.2272 26.5303 11.2005 26.5303C11.1827 26.5303 11.1738 26.5303 11.1738 26.539C11.1738 26.5478 11.1738 26.5478 11.1827 26.5478C11.1916 26.5478 11.2183 26.5478 11.2361 26.5565C11.2807 26.5653 11.3074 26.6003 11.3341 26.644L11.539 26.9765L11.3074 27.3003C11.2629 27.3615 11.2451 27.379 11.2094 27.3878C11.1916 27.3965 11.1738 27.3965 11.1649 27.3965C11.156 27.3965 11.1471 27.4053 11.1471 27.4053C11.1471 27.414 11.156 27.414 11.1649 27.414H11.1827C11.2005 27.414 11.2629 27.414 11.2807 27.414C11.3074 27.414 11.3876 27.414 11.3965 27.414H11.4143C11.4321 27.414 11.441 27.414 11.441 27.4053C11.441 27.3965 11.4321 27.3965 11.4232 27.3965C11.4143 27.3965 11.4054 27.3965 11.3965 27.3965C11.3876 27.3965 11.3698 27.3878 11.3698 27.379C11.3698 27.3615 11.3787 27.3528 11.3876 27.3265L11.5658 27.0465C11.6192 27.134 11.6905 27.2478 11.7528 27.3615C11.7617 27.379 11.7528 27.3878 11.7528 27.3878C11.7439 27.3878 11.735 27.3965 11.735 27.3965C11.735 27.4053 11.7439 27.414 11.7796 27.414C11.8686 27.414 11.9666 27.414 11.9934 27.414H12.029C12.0468 27.414 12.0557 27.414 12.0557 27.4053C12.0557 27.3965 12.0468 27.3965 12.0379 27.3965C12.029 27.3965 12.0112 27.3965 11.9934 27.3878C11.9577 27.379 11.9399 27.3615 11.9221 27.3353C11.8954 27.3003 11.6994 26.9765 11.6638 26.924L11.8419 26.6615Z" fill="white"/>
16
+ <path d="M13.8018 27.2302C13.8107 27.2302 13.8107 27.2302 13.8107 27.239L13.8641 27.3877C13.873 27.4052 13.8641 27.414 13.8552 27.414C13.8463 27.414 13.8374 27.414 13.8374 27.4227C13.8374 27.4315 13.8552 27.4315 13.873 27.4315C13.971 27.4315 14.0512 27.4315 14.0958 27.4315C14.1403 27.4315 14.1492 27.4315 14.1492 27.4227C14.1492 27.414 14.1403 27.414 14.1314 27.414C14.1136 27.414 14.0958 27.414 14.0779 27.414C14.0512 27.4052 14.0156 27.3965 13.971 27.2827C13.8909 27.1077 13.7038 26.6265 13.6771 26.5565C13.6681 26.5302 13.6592 26.5215 13.6414 26.5215C13.6325 26.5215 13.6236 26.539 13.6058 26.574L13.3029 27.309C13.2762 27.3702 13.2584 27.4052 13.2049 27.414C13.196 27.414 13.1782 27.414 13.1693 27.414C13.1604 27.414 13.1515 27.414 13.1515 27.4227C13.1515 27.4315 13.1604 27.4315 13.1782 27.4315C13.2405 27.4315 13.3029 27.4315 13.3207 27.4315C13.3564 27.4315 13.4098 27.4315 13.4454 27.4315C13.4633 27.4315 13.4633 27.4315 13.4633 27.4227C13.4633 27.414 13.4633 27.414 13.4454 27.414H13.4276C13.392 27.414 13.3831 27.3965 13.3831 27.379C13.3831 27.3702 13.392 27.3352 13.4009 27.309L13.4276 27.2477C13.4276 27.239 13.4365 27.239 13.4365 27.239H13.8018V27.2302ZM13.4811 27.169C13.4722 27.169 13.4722 27.169 13.4722 27.1602L13.6236 26.7665C13.6236 26.7665 13.6236 26.7577 13.6325 26.7577C13.6325 26.7577 13.6325 26.7665 13.6414 26.7665L13.7929 27.1602C13.7929 27.1602 13.7929 27.169 13.784 27.169H13.4811Z" fill="white"/>
17
+ <path d="M10.6749 27.2302C10.6838 27.2302 10.6838 27.2302 10.6838 27.239L10.7373 27.3877C10.7462 27.4052 10.7373 27.414 10.7284 27.414C10.7194 27.414 10.7105 27.414 10.7105 27.4227C10.7105 27.4315 10.7284 27.4315 10.7462 27.4315C10.8442 27.4315 10.9332 27.4315 10.9689 27.4315C11.0134 27.4315 11.0223 27.4315 11.0223 27.4227C11.0223 27.414 11.0134 27.414 11.0045 27.414C10.9867 27.414 10.9689 27.414 10.9511 27.414C10.9243 27.4052 10.8887 27.3965 10.8442 27.2827C10.764 27.1077 10.5769 26.6265 10.5413 26.5565C10.5324 26.5302 10.5235 26.5215 10.5145 26.5215C10.5056 26.5215 10.4967 26.539 10.4789 26.574L10.176 27.309C10.1493 27.3702 10.1315 27.4052 10.078 27.414C10.0691 27.414 10.0513 27.414 10.0424 27.414C10.0335 27.414 10.0246 27.414 10.0246 27.4227C10.0246 27.4315 10.0335 27.4315 10.0513 27.4315C10.1137 27.4315 10.176 27.4315 10.1938 27.4315C10.2295 27.4315 10.2829 27.4315 10.3186 27.4315C10.3364 27.4315 10.3364 27.4315 10.3364 27.4227C10.3364 27.414 10.3364 27.414 10.3186 27.414H10.3007C10.2651 27.414 10.2562 27.3965 10.2562 27.379C10.2562 27.3702 10.2651 27.3352 10.274 27.309L10.3007 27.2477C10.3007 27.239 10.3097 27.239 10.3097 27.239H10.6749V27.2302ZM10.3453 27.169C10.3453 27.169 10.3364 27.169 10.3453 27.1602L10.4967 26.7665L10.5056 26.7577L10.5145 26.7665L10.666 27.1602C10.666 27.169 10.666 27.169 10.6571 27.169H10.3453Z" fill="white"/>
18
+ <path d="M7.18277 27.2302C7.18277 27.2302 7.19167 27.2302 7.19167 27.2389L7.24513 27.3877C7.25403 27.4052 7.24512 27.4139 7.23622 27.4139C7.22731 27.4139 7.2184 27.4139 7.2184 27.4227C7.2184 27.4314 7.23622 27.4314 7.25403 27.4314C7.35203 27.4314 7.44111 27.4314 7.47675 27.4314C7.52129 27.4314 7.5302 27.4314 7.5302 27.4227C7.5302 27.4139 7.52129 27.4139 7.51238 27.4139C7.49456 27.4139 7.47675 27.4139 7.45893 27.4139C7.4322 27.4052 7.39657 27.3964 7.35203 27.2827C7.27185 27.1077 7.08477 26.6264 7.05805 26.5564C7.05805 26.5302 7.05805 26.5127 7.04023 26.5127C7.03132 26.5127 7.02241 26.5302 7.0046 26.5652L6.71061 27.3002C6.68389 27.3614 6.66607 27.3964 6.61262 27.4052C6.60371 27.4052 6.5859 27.4052 6.57699 27.4052C6.56808 27.4052 6.55917 27.4052 6.55917 27.4139C6.55917 27.4227 6.56808 27.4227 6.5859 27.4227C6.64826 27.4227 6.71061 27.4227 6.72843 27.4227C6.76407 27.4227 6.81752 27.4227 6.85315 27.4227C6.86206 27.4227 6.87097 27.4227 6.87097 27.4139C6.87097 27.4052 6.87097 27.4052 6.85315 27.4052H6.82643C6.79079 27.4052 6.78188 27.3877 6.78188 27.3702C6.78188 27.3614 6.79079 27.3264 6.7997 27.3002L6.82643 27.2389C6.82643 27.2302 6.83533 27.2302 6.83533 27.2302H7.18277ZM6.86206 27.1689C6.85315 27.1689 6.85315 27.1689 6.85315 27.1602L7.0046 26.7664L7.0135 26.7577C7.0135 26.7577 7.0135 26.7664 7.02241 26.7664L7.17386 27.1602C7.17386 27.1689 7.17386 27.1689 7.16495 27.1689H6.86206Z" fill="white"/>
19
+ <path d="M18.4252 18.0864L18.4162 17.9114H18.5944C18.8349 17.9114 18.9597 17.6839 19.022 17.4126C18.0777 17.4039 14.7103 17.4214 14.7103 17.4214V20.8339C14.9954 20.6326 15.2626 20.4576 15.619 20.3526V19.7576V19.6001H15.7793H15.9753C15.9931 18.7776 16.198 18.1739 16.59 17.7801L16.7058 17.6664L16.8216 17.7801C17.2136 18.1739 17.4096 18.7689 17.4363 19.6001H17.6412H17.8016V19.7576V20.3964C18.1846 20.5539 18.443 20.7901 18.6479 21.0439C18.9686 20.4051 19.2002 19.6701 19.2804 18.8214C19.2626 18.8214 19.2447 18.8301 19.2269 18.8301C18.8439 18.8301 18.4519 18.5764 18.4252 18.0864Z" fill="white"/>
20
+ <path d="M16.688 20.5186C15.6635 20.5186 15.2715 20.7986 14.7103 21.2186V24.4823C14.7103 24.4823 17.1334 23.6598 18.4608 21.3586C18.149 20.9211 17.7036 20.5186 16.688 20.5186ZM17.5254 21.8398L17.2225 21.4986L16.7058 21.9536L16.9196 22.1898C16.9196 22.1898 17.1423 22.0848 17.3294 22.3123C17.1869 22.4348 16.9285 22.6536 16.786 22.7761C16.59 22.5573 16.7236 22.3561 16.7236 22.3561L16.5098 22.1198L15.8684 22.6798L15.6635 22.4436L16.3138 21.9011L16.0822 21.6386C16.0822 21.6386 15.9931 21.7173 15.8684 21.8223C15.6813 21.6123 15.5388 21.3323 15.6724 20.9823C16.0466 20.8948 16.3049 21.0786 16.492 21.2886C16.3673 21.4023 16.2782 21.4723 16.2782 21.4723L16.5187 21.7436L17.0532 21.3061L16.7504 20.9561C17.0265 20.9211 17.2671 21.0173 17.4096 21.1748C17.5254 21.3323 17.5967 21.5773 17.5254 21.8398Z" fill="white"/>
21
+ <path d="M19.2627 17.4121C19.2627 17.4121 19.236 17.4121 19.1914 17.4121C19.1113 17.8059 18.9242 18.0771 18.5946 18.0771C18.6213 18.4621 18.9242 18.6634 19.2093 18.6634C19.236 18.6634 19.2538 18.6546 19.2805 18.6546C19.2984 18.2609 19.3073 17.8496 19.2627 17.4121Z" fill="white"/>
22
+ <path d="M10.2383 17.3867C9.99776 17.3867 9.83741 17.3867 9.83741 17.3955C9.77505 18.078 9.80177 18.6992 9.89977 19.268C10.1492 18.8655 10.3986 18.463 10.3808 18.183C10.3719 17.8855 10.3007 17.623 10.2383 17.3867Z" fill="white"/>
23
+ <path d="M10.4076 17.3867C10.47 17.623 10.5413 17.8855 10.5502 18.1742C10.5591 18.5067 10.3096 18.918 10.0424 19.3555C10.0067 19.408 9.98001 19.4517 9.95329 19.5042C10.7194 23.2317 14.3897 24.4742 14.3897 24.4742V17.3955C14.3986 17.3955 11.637 17.3867 10.4076 17.3867ZM13.1604 21.8142C12.9822 21.8492 12.6882 21.8755 12.4922 21.8755C12.2962 21.8755 12.0112 21.858 11.8241 21.8142C11.8419 21.7355 11.8686 21.6305 11.8953 21.5255C11.7617 21.5167 11.6192 21.4642 11.5034 21.4205C11.5568 21.228 11.6459 21.0355 11.7172 20.773C11.9666 20.8255 12.2071 20.8517 12.4833 20.8517C12.7595 20.8517 13 20.8342 13.2494 20.773C13.3207 21.0355 13.4098 21.228 13.4721 21.4205C13.3652 21.4555 13.2227 21.508 13.0802 21.5255C13.1158 21.6305 13.1425 21.7355 13.1604 21.8142ZM11.6637 20.2655C11.7973 20.213 12.3408 20.1955 12.5011 20.1955C12.6615 20.1955 13.196 20.2217 13.3385 20.2655C13.3563 20.3355 13.3563 20.4317 13.3474 20.5105C13.1425 20.5717 12.7773 20.598 12.51 20.598C12.2339 20.598 11.8775 20.563 11.6726 20.5105C11.6459 20.4317 11.6459 20.3355 11.6637 20.2655ZM13.7038 18.8742C13.4989 19.3467 13.3029 19.8455 13.2405 19.9942C13.1336 19.9767 13.0178 19.968 12.902 19.9592C13.0356 19.5392 13.2049 18.9442 13.3474 18.568C13.4365 18.3055 13.8908 18.428 13.7038 18.8742ZM12.5011 18.1655C12.5368 17.9467 13.1693 17.903 13.0534 18.3842C12.9376 18.8742 12.7862 19.4517 12.6704 19.9417C12.6169 19.9417 12.5635 19.9417 12.51 19.9417C12.4566 19.9417 12.4031 19.9417 12.3497 19.9417C12.2339 19.4517 12.0824 18.8742 11.9666 18.3842C11.833 17.903 12.4655 17.9467 12.5011 18.1655ZM11.6548 18.568C11.7973 18.9442 11.9577 19.5392 12.1002 19.9592C11.9844 19.968 11.8686 19.9767 11.7617 19.9942C11.6994 19.8455 11.5034 19.3555 11.2985 18.8742C11.1025 18.428 11.5568 18.3055 11.6548 18.568Z" fill="white"/>
24
+ <path d="M19.4408 12.3554H14.55H9.65923H9.48106V12.5392V15.9692C9.5256 15.9954 9.57015 16.0304 9.61469 16.0654V12.5042H19.5209V15.8117C19.5566 15.8467 19.5922 15.8904 19.6278 15.9517V12.5304V12.3467H19.4408V12.3554Z" fill="white"/>
25
+ <path d="M9.98003 15.6364C10.2384 15.8464 10.3364 15.9951 10.2562 16.6951C10.2473 16.7826 10.2918 16.9489 10.3453 17.1239H19.0667C19.0756 17.0276 19.0845 16.9401 19.0845 16.8614C19.0934 16.4764 19.0222 16.1701 18.8974 16.0476C18.8529 16.0039 18.8084 15.9864 18.7282 15.9864H18.7104L18.3629 16.0214L18.55 15.7326C18.7282 15.4439 18.9954 15.2776 19.2716 15.2601V12.7139H9.85531V15.5576C9.89095 15.5751 9.91767 15.5926 9.95331 15.6189L9.98003 15.6364ZM15.5211 15.3039V15.1289L15.0935 15.1201C15.1915 14.6739 16.0734 14.1139 16.4743 13.9826C16.4565 13.5014 17.0979 13.3439 17.6146 13.3264C18.256 13.3089 18.4075 13.9914 18.4075 14.2014C18.4075 14.4814 18.3362 15.1026 17.9799 15.2951C17.4632 15.5751 17.0178 15.1901 17.0178 14.8401C17.0178 14.4551 17.285 14.2364 17.7572 14.2889C18.2204 14.3414 18.1848 14.0789 17.8373 13.9914C17.6681 13.9476 16.9287 13.9126 16.6792 14.4551C16.5367 14.4639 16.3852 14.4026 16.2962 14.3151C16.1982 14.4376 16.0467 14.5164 15.8418 14.5776C16.02 14.9364 16.3852 14.8751 16.608 14.7089C16.599 14.7614 16.599 14.8051 16.599 14.8576C16.599 15.7414 17.5523 15.9601 18.1402 15.6276C18.0422 15.9164 18.0868 16.2751 18.1313 16.5201H15.8151C15.8507 16.2751 16.1625 15.9951 16.4209 15.8201L16.216 15.5051C15.9665 15.6101 15.726 15.7151 15.4588 15.7851C14.8173 15.9339 14.853 15.4789 15.5211 15.3039ZM13.8909 16.0214C13.8018 16.1439 13.2495 16.3101 13.1158 16.2314C12.8842 16.0914 12.7684 15.8026 12.8218 15.6714C12.8842 15.5051 13.49 15.3389 13.686 15.4001C13.882 15.4614 13.9621 15.9076 13.8909 16.0214ZM10.6749 14.6126C11.1827 14.3239 11.4499 14.1139 11.7172 13.7026C11.5212 13.6064 11.2807 13.4314 11.1025 13.1864C12.0735 13.4576 12.5635 13.5976 13.7127 13.1951C13.5256 13.4839 13.2495 13.6589 13.0178 13.8076C13.2762 14.2276 13.5345 14.7089 13.6236 15.0939C13.2851 15.0676 12.8931 15.1464 12.6169 15.4001C12.1893 15.4176 11.6459 15.5489 11.3519 14.5951C11.2005 14.6739 11.0401 14.7701 11.0401 14.7701C11.2183 15.3914 11.539 15.8201 12.3942 15.7239C12.4388 15.9251 12.4744 16.0389 12.5813 16.2051C12.2339 16.4064 11.3519 16.9139 10.6838 16.3276V14.6126H10.6749Z" fill="white"/>
26
+ <path d="M9.85531 15.7588V17.1325H10.1668C10.1134 16.9488 10.0689 16.7913 10.0867 16.6863C10.1579 15.9863 10.0511 15.9163 9.85531 15.7588Z" fill="white"/>
27
+ <path d="M19.2622 17.132V15.4258C19.0575 15.4433 18.8528 15.5658 18.6926 15.8195C18.7104 15.8195 18.7282 15.8195 18.746 15.8195C19.1287 15.8195 19.2622 16.3358 19.2533 16.8695C19.2533 16.957 19.2444 17.0445 19.2444 17.132H19.2622Z" fill="white"/>
28
+ <path d="M12.1447 14.7963C12.3051 14.875 12.51 14.7788 12.7149 14.805C12.6703 14.7175 12.6258 14.6563 12.6525 14.525C12.706 14.28 12.5011 14.2188 12.412 14.2188C12.1715 14.2363 12.0467 14.28 11.7973 14.2188C11.9577 14.385 11.922 14.6825 12.1447 14.7963Z" fill="white"/>
29
+ <path d="M159.171 19.2849V15.0587C159.171 14.3937 159.117 14.2274 158.939 14.0174C158.797 13.8512 158.529 13.7549 158.235 13.7549C157.727 13.7549 156.935 14.1574 156.471 14.6299V19.2849H155.5V14.4724C155.5 13.5799 155.26 13.1512 155.26 13.1512L156.231 12.8887C156.231 12.8887 156.462 13.3524 156.462 13.8687C157.131 13.2124 157.79 12.9062 158.467 12.9062C159.153 12.9062 159.768 13.2649 160.026 13.8249C160.133 14.0524 160.177 14.3062 160.177 14.5512V19.2937H159.171V19.2849Z" fill="white"/>
30
+ <path d="M136.392 19.2849V15.0587C136.392 14.3937 136.338 14.2274 136.16 14.0174C136.018 13.8512 135.75 13.7549 135.456 13.7549C134.949 13.7549 134.156 14.1574 133.692 14.6299V19.2849H132.721V14.4724C132.721 13.5799 132.481 13.1512 132.481 13.1512L133.452 12.8887C133.452 12.8887 133.684 13.3524 133.684 13.8687C134.352 13.2124 135.011 12.9062 135.688 12.9062C136.383 12.9062 136.989 13.2649 137.247 13.8249C137.345 14.0524 137.398 14.3062 137.398 14.5512V19.2937H136.392V19.2849Z" fill="white"/>
31
+ <path d="M119.554 19.3549H118.575L116.285 13.0987L117.31 12.8887L118.788 17.1937C118.967 17.7099 119.091 18.2612 119.091 18.2612H119.118C119.118 18.2612 119.225 17.7712 119.421 17.2112L120.882 13.0549H121.942L119.554 19.3549Z" fill="white"/>
32
+ <path d="M146.298 19.2849V14.6736C146.298 14.0699 146.022 13.7549 145.478 13.7549C144.908 13.7549 144.454 14.1224 143.795 14.7174V19.2849H142.788V14.8486C142.788 14.4724 142.752 14.2186 142.61 14.0436C142.458 13.8686 142.253 13.7899 141.959 13.7899C141.469 13.7899 140.997 14.0261 140.338 14.6211V19.2849H139.376V14.4461C139.376 13.5449 139.144 13.1161 139.144 13.1161L140.115 12.8886C140.115 12.8886 140.347 13.3786 140.347 13.8161C140.766 13.3524 141.55 12.8799 142.2 12.8799C142.824 12.8799 143.447 13.2561 143.679 13.9211C144.293 13.2824 145.069 12.8799 145.719 12.8799C146.663 12.8799 147.313 13.5799 147.313 14.5774V19.2936H146.298V19.2849Z" fill="white"/>
33
+ <path d="M150.066 16.3273V16.4761C150.066 17.0623 150.146 17.5173 150.36 17.8411C150.717 18.3836 151.304 18.6023 151.946 18.6023C152.561 18.6023 153.059 18.4098 153.505 18.0161L153.888 18.6461C153.327 19.1448 152.561 19.4248 151.741 19.4248C149.977 19.4248 148.917 18.1736 148.917 16.0998C148.917 15.0498 149.149 14.3673 149.683 13.7373C150.191 13.1511 150.823 12.8711 151.59 12.8711C152.276 12.8711 152.881 13.1073 153.309 13.5448C153.861 14.0961 154.039 14.6823 154.039 16.1786V16.3186H150.066V16.3273ZM152.685 14.1923C152.471 13.8511 152.026 13.6411 151.536 13.6411C150.627 13.6411 150.12 14.2886 150.066 15.5836H152.979C152.961 14.9098 152.872 14.4986 152.685 14.1923Z" fill="white"/>
34
+ <path d="M123.599 16.3273V16.4761C123.599 17.0623 123.679 17.5173 123.893 17.8411C124.249 18.3836 124.837 18.6023 125.479 18.6023C126.093 18.6023 126.592 18.4098 127.038 18.0161L127.421 18.6461C126.86 19.1448 126.093 19.4248 125.274 19.4248C123.51 19.4248 122.45 18.1736 122.45 16.0998C122.45 15.0498 122.682 14.3673 123.216 13.7373C123.724 13.1511 124.356 12.8711 125.122 12.8711C125.808 12.8711 126.414 13.1073 126.851 13.5448C127.403 14.0961 127.581 14.6823 127.581 16.1786V16.3186H123.599V16.3273ZM126.218 14.1923C126.004 13.8511 125.55 13.6411 125.069 13.6411C124.16 13.6411 123.653 14.2886 123.599 15.5836H126.512C126.494 14.9098 126.405 14.4986 126.218 14.1923Z" fill="white"/>
35
+ <path d="M131.741 13.9823C131.679 13.956 131.563 13.9298 131.465 13.9298C131.082 13.9298 130.699 14.096 130.405 14.3848C130.111 14.6735 130.031 14.8573 130.031 15.3735V19.2848H129.033V14.4723C129.033 13.5535 128.819 13.1423 128.819 13.1423L129.817 12.8798C129.817 12.8798 130.058 13.3698 130.022 13.8948C130.485 13.256 131.153 12.8535 131.813 12.8535C131.982 12.8535 132.16 12.9148 132.16 12.9148L131.741 13.9823Z" fill="white"/>
36
+ <path d="M113.167 19.451C111.421 19.451 110.423 18.1823 110.423 16.126C110.423 14.096 111.457 12.8535 113.132 12.8535C114.192 12.8535 114.887 13.326 115.314 13.9473C115.706 14.516 115.902 15.251 115.902 16.266C115.902 18.3485 114.762 19.451 113.167 19.451ZM114.468 14.4548C114.201 13.9035 113.639 13.6498 113.114 13.6498C112.553 13.6498 112.027 13.9123 111.813 14.3235C111.608 14.7085 111.51 15.216 111.51 15.951C111.51 16.826 111.662 17.6048 111.911 17.9985C112.143 18.3748 112.651 18.6285 113.203 18.6285C113.871 18.6285 114.37 18.2873 114.584 17.6835C114.726 17.2985 114.78 16.9485 114.78 16.3273C114.762 15.461 114.673 14.8748 114.468 14.4548Z" fill="white"/>
37
+ <path d="M83.9295 19.6177C83.5375 19.4514 83.1722 19.1627 83.0119 18.8389C82.8872 18.9614 82.7446 19.0927 82.6199 19.1802C82.2992 19.4077 81.836 19.5302 81.3015 19.5302C79.8494 19.5302 79.0565 18.8039 79.0565 17.5264C79.0565 16.0214 80.1166 15.3214 82.2012 15.3214C82.3259 15.3214 82.4417 15.3214 82.5843 15.3302V15.0677C82.5843 14.3502 82.4417 14.1139 81.8181 14.1139C81.2658 14.1139 80.6333 14.3764 79.9295 14.8402L79.1991 13.6327C79.5465 13.4227 79.7959 13.2914 80.2592 13.1077C80.9006 12.8452 81.444 12.7314 82.0498 12.7314C83.1455 12.7314 83.9027 13.1339 84.1611 13.8514C84.2502 14.1139 84.2858 14.3152 84.2769 15.0064L84.2413 17.1677C84.2324 17.8677 84.2769 18.1739 84.8559 18.5939L83.9295 19.6177ZM82.4685 16.4764C81.2836 16.4764 80.8738 16.6864 80.8738 17.4564C80.8738 17.9552 81.1946 18.2964 81.6311 18.2964C81.9518 18.2964 82.2725 18.1302 82.5219 17.8589L82.5487 16.4764H82.4685Z" fill="white"/>
38
+ <path d="M57.4711 16.5989V16.6514C57.4711 17.6402 57.97 18.2089 58.8519 18.2089C59.4399 18.2089 59.9922 17.9989 60.5089 17.5702L61.1771 18.5764C60.4198 19.1802 59.6359 19.4689 58.7094 19.4689C56.8297 19.4689 55.6182 18.1652 55.6182 16.1439C55.6182 14.9889 55.8587 14.2277 56.4377 13.5977C56.9723 13.0114 57.6226 12.7314 58.4956 12.7314C59.2528 12.7314 59.9655 12.9852 60.3842 13.4052C60.9811 14.0089 61.2572 14.8752 61.2572 16.2139V16.5989H57.4711ZM59.4755 15.2952C59.4755 14.8227 59.4221 14.5689 59.2706 14.3327C59.1014 14.0789 58.8609 13.9564 58.5134 13.9564C57.8631 13.9564 57.4889 14.4552 57.4889 15.3477V15.3739H59.4666V15.2952H59.4755Z" fill="white"/>
39
+ <path d="M50.8611 16.5989V16.6514C50.8611 17.6402 51.3599 18.2089 52.2419 18.2089C52.8298 18.2089 53.3822 17.9989 53.8989 17.5702L54.567 18.5764C53.8098 19.1802 53.0169 19.4689 52.0993 19.4689C50.2196 19.4689 49.0081 18.1652 49.0081 16.1439C49.0081 14.9889 49.2486 14.2277 49.8277 13.5977C50.3622 13.0114 51.0125 12.7314 51.8855 12.7314C52.6428 12.7314 53.3554 12.9852 53.7741 13.4052C54.371 14.0089 54.6472 14.8752 54.6472 16.2139V16.5989H50.8611ZM52.8655 15.2952C52.8655 14.8227 52.812 14.5689 52.6606 14.3327C52.4913 14.0789 52.2508 13.9564 51.9034 13.9564C51.253 13.9564 50.8789 14.4552 50.8789 15.3477V15.3739H52.8566V15.2952H52.8655Z" fill="white"/>
40
+ <path d="M89.6577 19.285V15.1113C89.6577 14.385 89.5241 14.1663 89.0786 14.1663C88.7312 14.1663 88.2858 14.3938 87.8938 14.7438V19.285H86.1834V14.63C86.1834 14.0788 86.1032 13.5538 85.9518 13.125L87.4751 12.6963C87.6266 12.9588 87.7156 13.2388 87.7156 13.5013C87.974 13.3263 88.1878 13.1775 88.4729 13.0288C88.8203 12.8538 89.2657 12.7488 89.6488 12.7488C90.3793 12.7488 91.0118 13.125 91.2167 13.6763C91.3058 13.9125 91.3414 14.1925 91.3414 14.595V19.285H89.6577Z" fill="white"/>
41
+ <path d="M66.0945 19.285V15.1113C66.0945 14.385 65.9698 14.1663 65.5155 14.1663C65.1681 14.1663 64.7226 14.3938 64.3307 14.7438V19.285H62.6202V14.63C62.6202 14.0788 62.5401 13.5538 62.3886 13.125L63.912 12.6963C64.0634 12.9588 64.1525 13.2388 64.1525 13.5013C64.4108 13.3263 64.6246 13.1775 64.9097 13.0288C65.2571 12.8538 65.7026 12.7488 66.0856 12.7488C66.8161 12.7488 67.4486 13.125 67.6535 13.6763C67.7426 13.9125 67.7783 14.1925 67.7783 14.595V19.285H66.0945Z" fill="white"/>
42
+ <path d="M46.6294 19.46C46.4156 19.3113 46.2374 19.1013 46.1216 18.83C45.7029 19.2325 45.0882 19.4425 44.4023 19.4425C43.4847 19.4425 42.6918 19.0138 42.4691 18.4013C42.3711 18.1125 42.3266 17.7713 42.3266 17.1238V13.0113L44.0103 12.6963V16.8263C44.0103 17.4038 44.0637 17.7013 44.1528 17.8763C44.2419 18.0513 44.5003 18.1738 44.7497 18.1738C45.1684 18.1738 45.6851 17.8763 45.8098 17.5613V13.0463L47.449 12.705V17.605C47.449 18.0338 47.5915 18.4713 47.841 18.7688L46.6294 19.46Z" fill="white"/>
43
+ <path d="M71.6626 19.4863C70.8608 19.4863 69.9789 19.2325 69.0167 18.7513L69.6314 17.5263C70.157 17.8413 71.0657 18.2525 71.8051 18.2525C72.2862 18.2525 72.6692 17.9375 72.6692 17.5263C72.6692 17.0888 72.3485 16.8612 71.6626 16.7387L70.8964 16.5988C70.4599 16.52 69.9254 16.2225 69.6938 15.9425C69.4622 15.6713 69.3196 15.1988 69.3196 14.7875C69.3196 13.5362 70.3263 12.6875 71.8496 12.6875C72.9008 12.6875 73.5868 13.0025 74.1837 13.2912L73.6224 14.42C72.9721 14.0962 72.5 13.9563 72.01 13.9563C71.5111 13.9563 71.1815 14.21 71.1815 14.5863C71.1815 14.91 71.3953 15.085 72.0011 15.2338L72.7939 15.435C73.5957 15.6363 73.863 15.8725 74.0946 16.1613C74.3351 16.4588 74.4509 16.8263 74.4509 17.255C74.4598 18.585 73.3374 19.4863 71.6626 19.4863Z" fill="white"/>
44
+ <path d="M164.471 13.7816H163.144V17.8066C163.144 18.4978 163.331 18.7341 163.963 18.7341C164.24 18.7341 164.409 18.6991 164.587 18.6116L164.73 19.2416C164.409 19.4078 164.053 19.4953 163.607 19.4953C163.277 19.4953 163.019 19.4341 162.779 19.3203C162.333 19.1103 162.164 18.7078 162.164 18.0778V13.7903H161.335V13.0378H162.164C162.164 12.4341 162.262 11.4541 162.262 11.4541L163.313 11.2266C163.313 11.2266 163.188 12.2066 163.188 13.0291H164.783L164.471 13.7816Z" fill="white"/>
45
+ <path d="M106.557 19.4254C105.461 19.4254 104.526 19.0491 103.858 18.3491C103.118 17.5616 102.771 16.4941 102.771 15.0154C102.771 13.3704 103.216 12.2066 104.125 11.4016C104.749 10.8504 105.506 10.5879 106.415 10.5879C107.35 10.5879 108.152 10.8766 108.811 11.4366L108.339 12.0754C107.626 11.6029 107.109 11.4104 106.432 11.4104C105.408 11.4104 104.606 11.8741 104.25 12.8629C104.018 13.5016 103.902 14.2279 103.902 15.0504C103.902 16.1791 104.116 17.0891 104.517 17.6579C104.918 18.2266 105.809 18.5766 106.637 18.5766C107.19 18.5766 107.662 18.4629 108.027 18.2354V15.6104H106.263L106.058 14.7616H109.007V18.7779C108.392 19.1716 107.448 19.4254 106.557 19.4254Z" fill="white"/>
46
+ <path d="M41.2934 20.7636C41.2934 20.7636 41.0351 20.9123 40.5006 20.9123C39.8146 20.9123 39.1999 20.5098 38.8703 20.2998C38.4516 20.0286 37.7568 19.6348 37.0708 19.4248C35.7434 19.4248 34.8704 19.0661 34.1934 18.1998C33.5163 17.3423 33.1689 16.2398 33.1689 14.9623C33.1689 13.0811 33.8994 11.5673 35.1733 10.8848C35.6989 10.6136 36.3492 10.4561 37.0084 10.4561C39.3692 10.4561 40.8302 12.1536 40.8302 14.8836C40.8302 16.7736 40.1442 18.1911 39.0841 18.8823C39.3246 18.9698 39.6721 19.1973 39.877 19.3198C40.1977 19.5036 40.5807 19.6786 40.9727 19.6786C41.3558 19.6786 41.7656 19.6173 41.7656 19.6173L41.2934 20.7636ZM38.5496 12.9148C38.4071 12.4773 37.9349 11.8123 36.9906 11.8123C36.3938 11.8123 35.8681 12.1098 35.6098 12.5736C35.3069 13.1336 35.1644 13.9036 35.1644 14.9536C35.1644 16.4586 35.4227 17.4036 35.9572 17.7798C36.2423 17.9811 36.5986 18.0773 37.0173 18.0773C38.2556 18.0773 38.7812 17.1498 38.7812 14.9273C38.7812 14.0436 38.7011 13.4048 38.5496 12.9148Z" fill="white"/>
47
+ <path d="M97.2208 19.2848C97.1674 19.1885 97.1407 19.0835 97.1228 18.9085C96.7041 19.276 96.2053 19.451 95.6173 19.451C93.9603 19.451 92.9091 18.1823 92.9091 16.1873C92.9091 14.1835 94.0405 12.801 95.7064 12.801C96.1785 12.801 96.5527 12.9148 96.8645 13.1685C96.8378 13.0285 96.8111 12.591 96.8111 12.2148V10.0098L98.5126 10.2723V16.9485C98.5126 18.5323 98.6373 19.0398 98.7531 19.2935H97.2208V19.2848ZM96.8378 14.5598C96.5171 14.2798 96.2142 14.1485 95.9024 14.1485C95.1363 14.1485 94.8066 14.7785 94.8066 16.2048C94.8066 17.5873 95.1006 18.0335 95.9915 18.0335C96.3122 18.0335 96.6685 17.8148 96.8378 17.6223V14.5598Z" fill="white"/>
48
+ <path d="M77.4974 19.4334C76.7669 19.4334 76.179 19.0922 75.9741 18.5584C75.8494 18.2347 75.8226 18.0334 75.8226 17.1147V12.3197C75.8226 11.4797 75.7959 10.9634 75.7336 10.3859L77.4796 9.99219C77.542 10.3422 77.5687 10.7534 77.5687 11.6634V16.6684C77.5687 17.7709 77.5776 17.9197 77.6845 18.0947C77.7469 18.2084 77.8894 18.2697 78.0319 18.2697C78.0943 18.2697 78.1389 18.2697 78.219 18.2434L78.513 19.2497C78.219 19.3722 77.8627 19.4334 77.4974 19.4334Z" fill="white"/>
49
+ <path d="M15.8952 10.3073C15.8328 10.3073 15.7705 10.3335 15.7348 10.386C15.6636 10.3773 15.5923 10.3598 15.5121 10.351V9.95727C15.5834 9.93102 15.6368 9.86102 15.6368 9.77352C15.6368 9.66852 15.5478 9.57227 15.4409 9.57227C15.334 9.57227 15.2449 9.65977 15.2449 9.77352C15.2449 9.84352 15.2894 9.91352 15.3518 9.94852V10.3248C15.2805 10.316 15.2181 10.3073 15.138 10.3073C15.1112 10.2373 15.04 10.1935 14.9598 10.1935C14.8529 10.1935 14.7638 10.281 14.7638 10.386C14.7638 10.491 14.8529 10.5785 14.9598 10.5785C15.0311 10.5785 15.0934 10.5435 15.1291 10.491C15.2092 10.4998 15.2805 10.5085 15.3518 10.5173L15.3429 11.086C15.2805 11.121 15.236 11.1823 15.236 11.261C15.236 11.366 15.325 11.4623 15.4319 11.4623C15.5389 11.4623 15.6368 11.3748 15.6368 11.261C15.6368 11.1823 15.5834 11.1123 15.521 11.086L15.5299 10.5348C15.5923 10.5435 15.6547 10.5523 15.717 10.561C15.7437 10.6398 15.815 10.6923 15.9041 10.6923C16.011 10.6923 16.1001 10.6048 16.1001 10.4998C16.0912 10.3948 16.0021 10.3073 15.8952 10.3073Z" fill="white"/>
50
+ <path d="M14.1581 10.1935C14.0779 10.1935 14.0066 10.2373 13.971 10.3073C13.8997 10.316 13.8285 10.316 13.7572 10.3248V9.94852C13.8195 9.91352 13.8641 9.85227 13.8641 9.77352C13.8641 9.66852 13.775 9.57227 13.6681 9.57227C13.5523 9.57227 13.4632 9.65977 13.4632 9.77352C13.4632 9.85227 13.5167 9.92227 13.579 9.95727L13.5879 10.351C13.5167 10.3598 13.4365 10.3685 13.3652 10.386C13.3296 10.3423 13.2761 10.3073 13.2049 10.3073C13.098 10.3073 13.0089 10.3948 13.0089 10.5085C13.0089 10.6135 13.098 10.701 13.2049 10.701C13.2939 10.701 13.3652 10.6485 13.3919 10.5698C13.4543 10.561 13.5167 10.5523 13.579 10.5435L13.5879 11.0948C13.5167 11.121 13.4721 11.191 13.4721 11.2698C13.4721 11.3748 13.5612 11.471 13.6681 11.471C13.775 11.471 13.873 11.3835 13.873 11.2698C13.873 11.191 13.8285 11.1298 13.7661 11.0948V10.526C13.8374 10.5173 13.9086 10.5085 13.9888 10.4998C14.0244 10.5523 14.0868 10.5873 14.1581 10.5873C14.265 10.5873 14.363 10.4998 14.363 10.3948C14.363 10.281 14.265 10.1935 14.1581 10.1935Z" fill="white"/>
51
+ <path d="M20.9197 6.14281C20.9197 4.91781 20.8751 3.91156 20.8573 3.59656C20.9019 3.60531 20.9553 3.62281 21.0088 3.64031C21.8996 3.94656 22.1045 5.00531 23.9575 3.80656C22.9686 3.92031 22.9152 3.09781 22.4609 3.08031C23.1468 2.69531 23.1914 1.82031 23.1914 1.82031C22.6212 2.27531 21.2849 2.30156 21.0266 2.45031C20.6792 2.65156 20.2515 2.90531 19.9576 3.06281C19.1914 3.47406 19.7259 5.71406 19.6458 6.52781C19.2271 5.31156 18.3897 5.49531 17.9532 4.79531C17.6235 5.38156 17.971 6.35281 18.1046 6.63281C17.6235 7.01781 17.7572 7.71781 17.873 7.91031C18.2828 7.62156 18.9153 7.69156 19.1024 8.18156C18.5678 8.50531 17.6681 8.55781 17.0534 7.98031L16.8396 8.21656C17.2761 8.77656 18.354 8.99531 19.1647 8.54031C19.1647 8.67156 19.1291 8.81156 19.0756 8.96906C18.6569 9.18781 18.1135 9.30156 17.4988 9.09156C17.579 9.70406 18.3006 10.1591 18.9865 10.3516C18.7549 10.5266 18.4698 10.5966 18.265 10.5703C18.3986 10.9291 18.4698 11.4016 18.1937 11.7778C17.8552 11.5591 17.6681 11.3316 17.5434 10.4741C17.4097 9.60781 16.7772 8.73281 16.2873 8.55781C16.2605 8.86406 16.2605 8.73281 16.314 8.92531C17.6146 9.86156 16.8841 11.5591 18.2382 12.1716C18.7371 11.6116 18.746 11.4191 18.6658 10.8941C19.1558 10.7628 19.521 10.3603 19.6547 10.0453C19.1914 10.2641 18.452 9.87906 18.2471 9.58156C19.0578 9.55531 19.8061 8.96031 20.5723 8.17281C21.2582 7.47281 22.1669 7.57781 22.0956 8.12906C22.5678 8.05906 22.7548 7.42906 22.6034 7.01781C23.2983 6.79906 23.8417 6.30031 23.9129 5.51281C22.9775 5.96781 21.8016 5.21531 20.9197 6.14281ZM22.0332 6.79906C22.3985 7.09656 22.2827 7.51656 22.1936 7.61281C21.8729 7.07031 20.8395 7.25406 19.8239 8.38281C19.7527 8.47031 19.6547 8.56656 19.5478 8.66281C19.628 7.31531 18.5055 7.28906 18.1759 7.42906C18.2115 7.04406 18.4609 6.77281 18.5857 6.73781C18.256 6.36156 18.1848 5.88906 18.1491 5.53906C18.7015 5.77531 19.5121 6.40531 19.6458 7.49031L20.0021 7.25406C19.8952 5.35531 19.9219 5.36406 19.9041 4.07781C19.9041 3.89406 19.913 3.47406 20.4921 3.51781C20.5188 3.99906 20.5901 5.26781 20.5633 7.03531H20.7682C20.9553 6.54531 21.6235 5.95906 22.3985 6.01156C22.9241 6.04656 23.1112 6.03781 23.4141 5.90656C23.1735 6.50156 22.2738 6.76406 22.0332 6.79906ZM20.5188 3.18531C20.893 2.92281 21.1335 2.80031 21.3295 2.68656C21.6502 2.69531 22.2114 2.66031 22.541 2.49406C22.1936 2.91406 22.158 3.06281 21.5878 3.12406C22.3272 3.18531 22.639 3.83281 22.9954 3.93781C21.766 4.31406 21.6413 3.11531 20.5188 3.18531Z" fill="white"/>
52
+ <path d="M12.7772 9.15254C12.0913 9.18754 11.4231 10.0625 11.6993 11.06C11.5924 11.095 11.2984 11.095 11.2004 10.8938C11.1292 11.2175 10.4521 11.5938 9.96215 11.5413C10.2294 11.2525 10.4165 10.605 10.9421 10.2638C11.4766 9.92254 11.7082 9.68629 11.8953 9.10004C11.6459 9.21379 10.3719 9.53754 10.0067 9.15254C10.853 9.03004 11.8418 8.56629 12.3318 8.26004L12.1358 8.05879C11.6102 8.35629 10.9065 8.59254 10.5501 8.70629C10.4254 7.67379 11.4231 7.71754 11.5033 7.99754C11.9131 7.51629 11.628 6.82504 11.3251 6.74629C11.6369 5.92379 11.3251 5.41629 11.0579 5.11004C10.9955 5.98504 9.99778 6.12504 9.88197 6.79879C9.84634 6.26504 9.8107 4.82129 9.76616 4.12129C9.7038 2.80879 8.02009 2.34504 7.76175 2.34504C6.666 2.39754 6.56801 2.25754 6.59473 1.75879C6.0335 2.38004 6.22058 2.93129 6.69273 3.20254C6.63037 3.57879 6.02459 3.86754 5.65043 3.94629C6.54128 4.76004 7.57467 4.27879 8.07355 3.81504C8.10918 3.78004 8.13591 3.75379 8.17154 3.71879C8.34971 4.02504 8.48334 4.59379 8.48334 4.91754C7.64594 4.87379 7.5034 5.50379 7.5034 5.74004C8.56351 5.31129 8.67932 7.30629 8.95549 7.62129C8.68823 7.60379 8.20717 6.98254 7.5034 6.93879C6.64819 6.89504 6.3542 7.34129 6.00677 7.32379C6.06913 7.91004 6.79963 8.24254 7.27178 8.31254C7.03125 8.91629 7.24505 9.32754 7.74393 9.47629C7.74393 8.92504 8.45661 8.75004 9.21383 9.18754C10.1314 9.71254 10.5947 9.75629 11.3341 9.53754C11.2093 9.80004 10.8797 9.82629 10.4788 10.22C9.9087 10.7713 9.89088 11.4888 9.25838 11.7513C10.0067 12.1013 11.1292 11.6113 11.2895 11.3313C11.6013 11.5238 12.0022 11.41 12.1091 11.2175C11.6013 10.115 12.4565 9.46754 12.7951 9.47629C12.7951 9.46754 12.9465 9.14379 12.7772 9.15254ZM8.90204 8.70629C8.52788 8.55754 7.94883 8.46129 7.62812 8.90754C7.44995 8.60129 7.7083 8.15504 7.86865 8.01504C7.04907 8.03254 6.58583 7.78754 6.46111 7.54254C6.764 7.37629 7.53013 7.10504 8.16263 7.56004C8.59915 7.87504 8.81295 8.02379 9.32964 8.19004C9.51672 8.00629 9.44546 8.09379 9.50781 8.04129C9.08912 7.75254 8.90204 5.55629 8.07355 5.47754C8.18936 5.19754 8.61696 5.22379 8.9644 5.31129C8.99112 4.82129 8.78623 4.00754 8.47443 3.53504C8.95549 3.29004 9.2851 3.55254 9.44546 4.13879C9.62363 4.76004 9.40982 6.30879 9.82852 7.70879L10.0869 7.47254C9.95324 6.65879 10.8708 6.36129 11.0668 5.95004C11.147 6.49254 11.0312 6.74629 10.8708 6.93879C11.2004 6.97379 11.3519 7.29754 11.2984 7.51629C10.5056 7.40254 10.0423 8.18129 10.2205 8.80254C9.62363 8.93379 9.22274 8.83754 8.90204 8.70629ZM6.64818 2.59004C7.27178 2.88754 7.47668 2.33629 8.64369 3.08004C7.86865 3.31629 7.27178 4.26129 6.39875 4.01629C7.02234 3.71004 6.95998 3.26379 7.32523 3.03629C7.09361 3.01004 6.63928 2.90504 6.64818 2.59004Z" fill="white"/>
53
+ <path d="M16.8128 11.8827C16.6881 11.0952 16.403 8.87266 16.3674 8.13766L16.02 8.15516C16.02 8.27766 16.0378 8.44391 16.0556 8.64516C15.6458 8.52266 15.1024 8.44391 14.5501 8.44391C13.9977 8.44391 13.4543 8.53141 13.0445 8.64516C13.0623 8.45266 13.0802 8.28641 13.0802 8.15516L12.7416 8.12891C12.706 8.87266 12.4209 11.0864 12.2962 11.8739C12.0913 11.9527 11.9577 12.1539 11.9577 12.5127C11.9577 12.5127 13.8285 12.5389 14.559 12.5389C15.2895 12.5389 17.1602 12.5127 17.1602 12.5127C17.1513 12.1539 17.0177 11.9614 16.8128 11.8827ZM14.5501 11.8564C14.2561 12.4164 13.7038 12.3989 13.2138 12.0839C13.0178 11.9614 12.8218 11.8739 12.6347 11.8477C12.7149 11.2964 12.8574 10.2639 12.9554 9.38891C13.579 9.10891 14.3541 9.04766 14.5411 9.75641C14.7282 9.04766 15.5033 9.11766 16.1269 9.38891C16.2249 10.2639 16.3674 11.3052 16.4476 11.8477C16.2694 11.8739 16.0645 11.9614 15.8685 12.0839C15.4053 12.3989 14.8529 12.4164 14.5501 11.8564Z" fill="white"/>
54
+ <path d="M18.4342 3.255C18.4431 3.08 18.1135 2.94875 18.0244 2.94C17.8819 2.93125 17.7126 3.22 17.5256 3.395C17.3652 2.555 17.4454 2.1875 17.5345 1.81125C17.8997 2.45875 18.3897 2.59875 18.648 2.56375C17.775 1.88125 17.9264 1.26 17.6592 1.225C17.5077 1.2075 17.4008 1.21625 17.3207 1.21625C17.0178 1.21625 16.9732 1.8025 16.9287 2.065C16.7327 1.70625 16.5367 1.4 16.1982 0.98C15.8775 0.16625 15.4855 0.3675 15.0846 0C15.3964 0.46375 15.147 0.7525 15.8686 1.085C16.0556 1.26 16.2784 1.54 16.4209 1.75875C16.2962 1.91625 16.216 2.00375 16.1002 2.1175C16.0111 2.24875 15.9666 2.75625 15.6904 3.1325C16.1002 2.9575 16.2695 2.70375 16.412 2.4675C17.7215 3.43875 16.6614 5.90625 16.3585 6.44875C16.0735 6.25625 15.6993 6.15125 15.3697 6.09L15.3341 5.97625L15.0312 5.005H15.1737C15.3341 5.005 15.3786 4.9 15.3519 4.8125L16.2516 5.08375L16.6525 5.20625L16.412 4.87375L15.9933 4.305L16.412 3.73625L16.6525 3.40375L16.2516 3.52625L15.441 3.77125C15.3875 3.5875 15.2361 3.5 15.0668 3.4825L15.343 2.58125L15.4588 2.19625L15.1292 2.4325L14.5501 2.84375L13.9711 2.4325L13.6414 2.19625L13.7573 2.58125L14.0334 3.4825C13.8731 3.50875 13.7127 3.59625 13.6593 3.77125L12.8486 3.52625L12.4477 3.40375L12.6882 3.73625L13.1069 4.305L12.6882 4.87375L12.4477 5.20625L12.8486 5.08375L13.7573 4.8125C13.7305 4.9 13.7662 5.005 13.9265 5.005H14.0691L13.7662 5.97625L13.7216 6.09875C13.3742 6.16 13 6.27375 12.715 6.46625C11.833 4.795 12.0825 3.0975 12.8219 2.5375C12.813 2.89625 13.1248 3.3775 13.2762 3.47375C13.1782 3.10625 13.3475 2.45 13.1515 2.28375C13.0178 2.17 12.813 2.1175 12.5902 2.1175C12.7417 1.8725 12.9466 1.56625 13.294 1.12C13.8107 0.8925 13.9622 0.2975 14.0869 0C13.5256 0.20125 13.1069 0.49 13.0178 0.95375C12.8219 1.21625 12.5991 1.5225 12.3497 1.88125C12.3675 1.44375 12.1181 1.295 11.7974 1.26875C10.8531 1.46125 10.9154 2.135 10.1048 2.59875C10.6571 2.79125 11.5301 1.5925 11.833 1.72375C11.8776 2.45875 11.7083 3.03625 11.7083 3.43875C11.5658 3.28125 11.4945 3.17625 11.3698 3.15875C11.254 3.14125 10.9333 3.1675 10.7195 3.40375C10.6571 3.78 10.6749 4.48 10.3186 5.31125C10.8442 4.83875 11.1025 3.9025 11.1827 3.63125C11.3163 3.815 11.4678 4.2175 11.5034 4.5675C11.5658 5.2325 11.9845 6.3525 12.3408 6.88625C12.2428 7.07 12.2161 7.28 12.2517 7.51625C11.9756 7.7175 11.9399 7.9975 12.0379 8.19C12.1448 8.39125 12.4121 8.53125 12.7328 8.40875L12.8308 8.365C13.1693 8.225 13.7929 7.97125 14.5501 7.97125C15.3073 7.97125 15.9398 8.225 16.2695 8.365L16.3674 8.40875C16.6882 8.53125 16.9554 8.39125 17.0623 8.19C17.1603 7.9975 17.1247 7.7175 16.8485 7.51625C16.8841 7.27125 16.8485 7.04375 16.7327 6.8425L16.7416 6.85125C17.3919 5.94125 17.4365 4.20875 17.971 3.71875C18.0155 4.3225 18.3451 4.83 18.6658 4.9C18.4164 4.47125 18.4164 3.64 18.4342 3.255ZM15.4677 4.06875L15.9487 3.92L15.7171 4.235L15.6548 4.31375L15.7171 4.3925L15.9487 4.7075L15.343 4.52375C15.3875 4.40125 15.4321 4.27 15.4677 4.06875ZM13.1693 4.71625L13.4009 4.40125L13.4633 4.3225L13.4009 4.24375L13.1693 3.92875L13.6504 4.0775C13.6771 4.27875 13.7216 4.41875 13.7751 4.54125L13.1693 4.71625ZM15.0668 4.55875H14.6926L14.7372 3.9025C15.2984 3.64875 15.2539 4.165 15.0668 4.55875ZM14.9599 5.67875L14.6392 5.45125L14.559 5.39L14.4788 5.45125L14.1581 5.67875L14.363 5.01375H14.755L14.9599 5.67875ZM14.4699 3.1325L14.5501 3.19375L14.6303 3.1325L14.9599 2.89625L14.7728 3.5175C14.7639 3.5175 14.755 3.5175 14.755 3.52625C14.7194 3.4475 14.6392 3.395 14.5501 3.395C14.461 3.395 14.3808 3.4475 14.3452 3.52625C14.3363 3.52625 14.3363 3.52625 14.3274 3.5175L14.1403 2.89625L14.4699 3.1325ZM14.0423 4.55875C13.8552 4.165 13.8107 3.64875 14.3719 3.9025L14.4165 4.55875H14.0423ZM14.5501 5.73125L15.0044 6.055C14.8085 6.0375 14.6481 6.0375 14.5501 6.0375C14.4521 6.0375 14.2918 6.0375 14.0958 6.055L14.5501 5.73125ZM12.6971 8.04125L12.5991 8.07625C12.4655 8.12875 12.3764 8.085 12.3408 8.02375C12.3052 7.95375 12.3319 7.84 12.4922 7.74375C12.5101 7.735 12.5368 7.7175 12.5635 7.70875L12.8842 7.9625C12.813 7.9975 12.7506 8.02375 12.6971 8.04125ZM13.784 7.7L13.4544 7.385C13.7305 7.315 14.0156 7.27125 14.2918 7.25375L14.4878 7.63C14.2383 7.63 13.9978 7.665 13.784 7.7ZM15.6191 7.77L15.4231 7.3325C15.7171 7.385 16.0022 7.4725 16.2516 7.5775L16.3674 8.0325C16.1804 7.95375 15.9309 7.84875 15.6191 7.77ZM14.5501 6.90375C13.9265 6.90375 13.2138 7.0525 12.6704 7.28C12.6793 7.1575 12.7239 7.06125 12.7951 6.965C13.1069 6.58875 13.9354 6.4575 14.5412 6.4575C15.147 6.4575 15.9755 6.58875 16.2873 6.965C16.3674 7.0525 16.4031 7.1575 16.412 7.28C15.8864 7.04375 15.1915 6.90375 14.5501 6.90375Z" fill="white"/>
55
+ <path d="M10.0958 16.6603C10.176 15.9516 10.0602 15.8903 9.85526 15.7241C9.67709 15.5753 9.3742 15.5316 9.08022 15.3303C8.86641 15.1816 8.80405 14.9803 8.5368 14.7003C8.59025 14.1053 9.02676 13.3703 9.34747 13.2041C9.39201 13.1778 9.3831 12.2503 9.3831 12.2503C9.3831 12.2503 9.59691 12.2416 9.57909 12.2328C9.29402 12.0578 8.94659 12.1891 8.69715 12.4778C8.45662 12.6703 7.89538 13.0378 7.51232 13.1691C6.99563 12.7403 6.18495 12.3553 5.58808 11.7778C5.58808 11.7778 6.37203 11.7691 6.73728 11.6291C6.83527 11.5678 7.08471 11.1828 6.97781 10.8066C6.85309 10.7628 6.68383 10.6753 6.50566 10.5791C6.29185 10.4566 6.08696 10.3341 5.98896 10.2553C5.65044 10.0016 5.50791 9.78282 4.91994 9.63407C4.95558 9.37157 5.01794 9.43282 5.27628 9.25782C5.6059 9.03907 5.79298 8.77657 5.92661 8.51407C6.0246 8.31282 5.90879 7.89282 5.65044 8.42657C5.56136 8.61032 5.30301 8.86407 5.00903 8.94282C5.03575 8.77657 5.04466 8.68032 5.04466 8.59282C5.90879 7.99782 5.8197 7.47282 5.75734 6.97407C5.70389 6.68532 5.41882 6.56282 5.42773 6.86032C5.43664 7.06157 5.61481 7.62157 5.02685 7.94532C5.00903 7.70032 4.94667 7.58657 4.89322 7.46407C5.41882 6.78157 5.19611 6.12532 4.9734 5.82782C4.83086 5.63532 4.49234 5.57407 4.64378 5.87157C4.77741 6.11657 4.9823 6.79032 4.59033 7.06157C4.4567 6.90407 4.30526 6.83407 4.25181 6.61532C4.28744 5.88032 4.2429 5.42532 4.1449 5.16282C4.05582 4.91782 3.81529 4.76032 3.83311 5.12782C3.85092 5.53907 3.88656 6.05532 3.85092 6.08157C3.81529 6.11657 3.26296 5.60907 3.04025 5.46032C2.80863 5.30282 2.54137 5.36407 2.79972 5.67032C3.04025 5.93282 3.74402 6.44907 3.65494 6.61532C3.60149 6.72032 3.0937 6.30907 2.82645 6.22157C2.55919 6.13407 2.47901 6.27407 2.70173 6.44907C3.06698 6.73782 3.30751 6.93032 3.90437 7.13157C4.50124 7.32407 4.79523 8.13782 4.60815 9.29282C4.59924 9.34532 4.50124 9.33657 4.43889 9.31907C4.41216 8.88157 4.33198 8.34782 4.22508 8.12032C4.08254 7.80532 3.80638 7.80532 3.90437 8.21657C3.98455 8.54032 4.02909 8.89907 3.97564 9.33657C3.48568 9.25782 3.2986 9.12657 3.0937 9.00407C3.07588 8.77657 3.19169 8.40907 3.20951 8.08532C3.22733 7.76157 3.03134 7.56032 2.92444 7.96282C2.81754 8.35657 2.74627 8.54032 2.68391 8.82032C2.54137 8.77657 2.38993 8.71532 2.32757 8.63657C2.29194 8.60157 2.32757 8.16407 2.29194 7.84032C2.2563 7.48157 2.11377 7.49032 2.00686 7.80532C1.95341 7.95407 1.91778 8.14657 1.89996 8.37407C1.7307 8.27782 1.61489 8.08532 1.59707 7.91907C1.6238 7.54282 1.68616 7.14907 1.7307 6.89532C1.76633 6.72032 1.64161 6.35282 1.49908 6.79032C1.39218 7.11407 1.36545 7.37657 1.30309 7.59532C1.17837 7.58657 1.01802 6.87782 0.928934 6.41407C0.8933 6.21282 0.71513 5.97657 0.679496 6.43157C0.643862 6.94782 0.750764 7.46407 0.884392 7.69157C0.634954 7.66532 0.394424 7.21907 0.216254 6.95657C0.0648096 6.72907 -0.015367 6.96532 0.00245005 7.06157C0.153895 7.97157 0.8933 8.29532 1.22292 8.35657C1.73961 9.08282 2.72845 9.39782 3.56585 9.75657C2.47901 9.74782 2.19394 10.1766 1.69507 9.89657C1.71288 10.2991 1.91778 10.4828 2.11377 10.5791C2.2563 10.6403 2.38993 10.6578 2.45229 10.6753C2.54137 11.1653 3.01352 11.1391 3.41441 11.1653C3.3075 12.1191 3.43222 13.3791 4.27853 14.3153C4.25181 14.7966 4.21617 15.4353 4.22508 15.8553C3.53913 16.4766 2.91553 17.8066 2.675 18.5416C2.48792 19.0928 2.21176 19.5216 1.78415 19.7228C2.13158 20.0816 2.64828 19.9066 2.95116 19.7053C2.96898 20.0291 3.04916 20.2566 3.10261 20.4491C2.90662 20.7378 2.76409 20.9391 2.7819 21.2978C2.55919 21.3591 2.39884 21.4991 2.28303 21.6478C2.20285 21.7441 2.29194 22.1816 2.38102 22.3653C2.65718 22.9778 2.44338 24.3603 2.38993 24.7628C2.50574 24.7716 2.71954 24.7716 2.76409 24.6053C2.83535 24.6666 3.00462 24.7891 3.08479 25.0516C3.06698 25.1653 2.99571 25.5941 3.21842 25.6466C3.39659 25.6903 4.18054 25.6641 4.28744 25.5328C4.20726 25.4453 4.07364 25.2353 3.99346 25.0341C3.99346 24.8241 3.97564 24.5703 3.91328 24.4653C3.8242 24.3078 3.60149 23.9578 3.45004 23.8178C3.42332 23.5641 3.39659 22.4353 3.5124 22.0066C3.7173 21.8666 5.08921 20.8691 5.37428 19.9066C5.62372 19.9941 5.55245 20.6591 5.55245 21.5253C5.55245 21.7616 5.83752 21.8753 6.01569 21.9016C6.38985 21.9453 6.91545 22.2953 7.51232 23.1616C7.62813 23.0391 7.77957 22.9253 7.77957 22.9253C7.85975 23.0303 7.94883 23.2753 8.00229 23.4328C8.06465 23.5553 8.5457 23.6253 8.91095 23.5116C9.03567 23.4678 9.10694 23.4503 9.18712 23.3191C8.72388 22.5228 8.4388 21.9891 7.84193 21.5516C7.56577 21.3503 7.19161 21.2453 6.87981 21.0528C7.08471 20.6678 7.65485 18.8828 7.31633 18.2266C7.20052 18.0078 6.764 17.7978 6.2384 17.8941C6.67492 17.3778 7.57468 16.3453 7.69049 16.0303C7.79739 16.1528 8.32299 16.0653 8.71497 16.2228C8.8575 16.2841 9.25839 16.7916 9.2762 16.9666C9.31184 17.2816 9.32965 17.6578 9.10694 18.5241C9.26729 18.4978 9.24057 18.4891 9.39201 18.4278C9.41874 18.6553 9.34747 18.8391 9.14258 19.1891C9.19603 19.5041 9.33856 19.9853 9.49001 20.0728C9.68599 19.4866 10.4254 18.6641 10.4076 18.1741C10.3719 17.5091 10.0602 16.9491 10.0958 16.6603Z" fill="white"/>
56
+ </svg>