@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
@@ -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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
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="#022A50"/>
56
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.7802 28.256L22.2179 20.6937C22.1006 20.5765 21.9248 20.5178 21.7489 20.5178H21.1041C23.1558 18.2902 24.3869 15.4177 24.3869 12.1935C24.3869 5.5105 18.8764 0 12.1935 0C5.45188 0 0 5.5105 0 12.1935C0 18.935 5.45188 24.3869 12.1935 24.3869C15.3591 24.3869 18.2902 23.1558 20.4592 21.1627V21.7489C20.4592 21.9834 20.5178 22.1593 20.6351 22.2765L28.1974 29.8388C28.4905 30.1319 28.9008 30.1319 29.1939 29.8388L29.7802 29.2526C30.0733 28.9594 30.0733 28.5491 29.7802 28.256ZM12.1935 22.511C6.44846 22.511 1.87592 17.9384 1.87592 12.1935C1.87592 6.50708 6.44846 1.87592 12.1935 1.87592C17.8798 1.87592 22.511 6.50708 22.511 12.1935C22.511 17.9384 17.8798 22.511 12.1935 22.511Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,155 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" focusable="false">
2
+ <defs>
3
+ <symbol viewBox="0 0 384 512" id="qld__icon__arrow-up">
4
+ <title>Icon arrow up</title>
5
+ <path fill="currentColor" d="M379.8 225.7C376.7 229.3 372.3 231.1 368 231.1c-3.844 0-7.703-1.426-10.77-4.31L208 86.12v377.3c0 9.171-7.156 16.59-15.1 16.59S176 472.6 176 463.4V86.12l-149.2 140.7C20.25 232.1 10.14 232.5 4.156 225.7C-1.781 218.9-1.297 208.4 5.234 202.2l176-165.9c6.094-5.768 15.44-5.768 21.53 0l176 165.9C385.3 208.4 385.8 218.9 379.8 225.7z"/>
6
+ </symbol>
7
+
8
+ <symbol viewBox="0 0 448 512" id="qld__icon__arrow-right">
9
+ <title>Icon arrow right</title>
10
+ <path fill="currentColor" d="M443.7 266.8l-165.9 176C274.5 446.3 269.1 448 265.5 448c-3.986 0-7.988-1.375-11.16-4.156c-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59c-9.171 0-16.59-7.155-16.59-15.1S7.421 240 16.59 240h377.3l-140.7-149.3c-6.157-6.531-5.655-16.66 1.118-22.59c6.789-5.906 17.27-5.469 23.45 1.094l165.9 176C449.4 251.3 449.4 260.7 443.7 266.8z"/>
11
+ </symbol>
12
+
13
+ <symbol viewBox="0 0 384 512" id="qld__icon__arrow-down">
14
+ <title>Icon arrow down</title>
15
+ <path fill="currentColor" d="M378.8 309.8l-176 165.9C199.7 478.6 195.9 480 192 480s-7.719-1.426-10.77-4.31l-176-165.9C-1.297 303.6-1.781 293.1 4.156 286.3c5.953-6.838 16.09-7.259 22.61-1.134L176 425.9V48.59c0-9.171 7.156-16.59 15.1-16.59S208 39.42 208 48.59v377.3l149.2-140.7c6.516-6.125 16.66-5.704 22.61 1.134C385.8 293.1 385.3 303.6 378.8 309.8z"/>
16
+ </symbol>
17
+
18
+ <symbol viewBox="0 0 384 512" id="qld__icon__arrow-left">
19
+ <title>Icon arrow left</title>
20
+ <path fill="currentColor" d="M448 256C448 264.8 440.6 272 431.4 272H54.11l140.7 149.3c6.157 6.531 5.655 16.66-1.118 22.59C190.5 446.6 186.5 448 182.5 448c-4.505 0-9.009-1.75-12.28-5.25l-165.9-176c-5.752-6.094-5.752-15.41 0-21.5l165.9-176c6.19-6.562 16.69-7 23.45-1.094c6.773 5.938 7.275 16.06 1.118 22.59L54.11 240h377.3C440.6 240 448 247.2 448 256z"/>
21
+ </symbol>
22
+
23
+ <symbol viewBox="0 0 512 512" id="qld__icon__arrow-view-all">
24
+ <title>Icon view all</title>
25
+ <path fill="currentColor" d="M283.3 148.7c-6.25-6.25-16.38-6.25-22.62 0s-6.25 16.38 0 22.62L329.4 240H144C135.2 240 128 247.2 128 256s7.156 16 16 16h185.4l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.62s16.38 6.25 22.62 0l96-96C382.4 264.2 384 260.1 384 256s-1.562-8.188-4.688-11.31L283.3 148.7zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480z"/>
26
+ </symbol>
27
+
28
+ <symbol viewBox="0 0 448 512" id="qld__icon__chevron-up">
29
+ <title>Icon chevron up</title>
30
+ <path fill="currentColor" d="M443.8 330.8C440.6 334.3 436.3 336 432 336c-3.891 0-7.781-1.406-10.86-4.25L224 149.8l-197.1 181.1c-6.5 6-16.64 5.625-22.61-.9062c-6-6.5-5.594-16.59 .8906-22.59l208-192c6.156-5.688 15.56-5.688 21.72 0l208 192C449.3 314.3 449.8 324.3 443.8 330.8z"/>
31
+ </symbol>
32
+
33
+ <symbol viewBox="0 0 384 512" id="qld__icon__chevron-right">
34
+ <title>Icon chevron right</title>
35
+ <path fill="currentColor" d="M85.14 475.8c-3.438-3.141-5.156-7.438-5.156-11.75c0-3.891 1.406-7.781 4.25-10.86l181.1-197.1L84.23 58.86c-6-6.5-5.625-16.64 .9062-22.61c6.5-6 16.59-5.594 22.59 .8906l192 208c5.688 6.156 5.688 15.56 0 21.72l-192 208C101.7 481.3 91.64 481.8 85.14 475.8z"/>
36
+ </symbol>
37
+
38
+ <symbol viewBox="0 0 384 512" id="qld__icon__chevron-down">
39
+ <title>Icon chevron down</title>
40
+ <path fill="currentColor" d="M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z"/>
41
+ </symbol>
42
+
43
+ <symbol viewBox="0 0 384 512" id="qld__icon__chevron-left">
44
+ <title>Icon chevron left</title>
45
+ <path fill="currentColor" d="M234.8 36.25c3.438 3.141 5.156 7.438 5.156 11.75c0 3.891-1.406 7.781-4.25 10.86L53.77 256l181.1 197.1c6 6.5 5.625 16.64-.9062 22.61c-6.5 6-16.59 5.594-22.59-.8906l-192-208c-5.688-6.156-5.688-15.56 0-21.72l192-208C218.2 30.66 228.3 30.25 234.8 36.25z"/>
46
+ </symbol>
47
+
48
+ <symbol viewBox="0 0 16 16" id="qld__icon__close">
49
+ <title>Icon close</title>
50
+ <path d="M9.54688 8L14.375 3.21875L15.3594 2.23438C15.5 2.09375 15.5 1.85938 15.3594 1.67188L14.3281 0.640625C14.1406 0.5 13.9062 0.5 13.7656 0.640625L8 6.45312L2.1875 0.640625C2.04688 0.5 1.8125 0.5 1.625 0.640625L0.59375 1.67188C0.453125 1.85938 0.453125 2.09375 0.59375 2.23438L6.40625 8L0.59375 13.8125C0.453125 13.9531 0.453125 14.1875 0.59375 14.375L1.625 15.4062C1.8125 15.5469 2.04688 15.5469 2.1875 15.4062L8 9.59375L12.7812 14.4219L13.7656 15.4062C13.9062 15.5469 14.1406 15.5469 14.3281 15.4062L15.3594 14.375C15.5 14.1875 15.5 13.9531 15.3594 13.8125L9.54688 8Z" fill="currentColor"></path>
51
+ </symbol>
52
+
53
+ <symbol viewBox="0 0 384 512" id="qld__icon__close-hover">
54
+ <title>Icon close hover</title>
55
+ <path fill="currentColor" d="M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM175 208.1L222.1 255.1L175 303C165.7 312.4 165.7 327.6 175 336.1C184.4 346.3 199.6 346.3 208.1 336.1L255.1 289.9L303 336.1C312.4 346.3 327.6 346.3 336.1 336.1C346.3 327.6 346.3 312.4 336.1 303L289.9 255.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175C327.6 165.7 312.4 165.7 303 175L255.1 222.1L208.1 175C199.6 165.7 184.4 165.7 175 175C165.7 184.4 165.7 199.6 175 208.1V208.1z"/>
56
+ </symbol>
57
+
58
+ <symbol viewBox="0 0 512 512" id="qld__icon__error">
59
+ <title>Icon error</title>
60
+ <path fill="currentColor" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480zM362.4 131.8c-6.688-5.75-16.8-4.938-22.55 1.75L256 231.4l-83.86-97.84C166.4 126.9 156.3 126.2 149.6 131.8c-6.719 5.75-7.5 15.88-1.734 22.56L234.9 256l-87.08 101.6c-5.766 6.688-4.984 16.81 1.734 22.56C152.6 382.8 156.3 384 160 384c4.5 0 8.984-1.906 12.14-5.594L256 280.6l83.86 97.84C343 382.1 347.5 384 352 384c3.688 0 7.391-1.281 10.41-3.844c6.719-5.75 7.5-15.88 1.734-22.56L277.1 256l87.08-101.6C369.9 147.7 369.1 137.6 362.4 131.8z"/>
61
+ </symbol>
62
+
63
+ <symbol viewBox="0 0 512 512" id="qld__icon__success">
64
+ <title>Icon success</title>
65
+ <path fill="currentColor" d="M235.3 331.3C229.1 337.6 218.9 337.6 212.7 331.3L148.7 267.3C142.4 261.1 142.4 250.9 148.7 244.7C154.9 238.4 165.1 238.4 171.3 244.7L224 297.4L340.7 180.7C346.9 174.4 357.1 174.4 363.3 180.7C369.6 186.9 369.6 197.1 363.3 203.3L235.3 331.3zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 32C132.3 32 32 132.3 32 256C32 379.7 132.3 480 256 480C379.7 480 480 379.7 480 256C480 132.3 379.7 32 256 32z"></path>
66
+ </symbol>
67
+
68
+ <symbol viewBox="0 0 512 512" id="qld__icon__warning">
69
+ <title>Icon warning</title>
70
+ <path fill="currentColor" d="M256 360c-13.25 0-23.1 10.74-23.1 24c0 13.25 10.75 24 23.1 24c13.25 0 23.1-10.75 23.1-24C280 370.7 269.3 360 256 360zM256 320c8.843 0 15.1-7.156 15.1-16V160c0-8.844-7.155-16-15.1-16S240 151.2 240 160v144C240 312.8 247.2 320 256 320zM504.3 397.3L304.5 59.38C294.4 42.27 276.2 32.03 256 32C235.8 32 217.7 42.22 207.5 59.36l-199.9 338c-10.05 16.97-10.2 37.34-.4218 54.5C17.29 469.5 35.55 480 56.1 480h399.9c20.51 0 38.75-10.53 48.81-28.17C514.6 434.7 514.4 414.3 504.3 397.3zM476.1 435.1C472.7 443.5 464.8 448 455.1 448H56.1c-8.906 0-16.78-4.484-21.08-12c-4.078-7.156-4.015-15.3 .1562-22.36L235.1 75.66C239.4 68.36 247.2 64 256 64c0 0-.0156 0 0 0c8.765 .0156 16.56 4.359 20.86 11.64l199.9 338C480.1 420.7 481.1 428.8 476.1 435.1z"></path>
71
+ </symbol>
72
+
73
+ <symbol viewBox="0 0 20 20" id="qld__icon__critical">
74
+ <title>Icon critical</title>
75
+ <path fill="currentColor" d="M18.4727 6.30859L13.6914 1.52734C13.375 1.21094 12.9531 1 12.4961 1H7.46875C7.01172 1 6.58984 1.21094 6.27344 1.52734L1.49219 6.30859C1.17578 6.625 1 7.04688 1 7.50391V12.5312C1 12.9883 1.17578 13.4102 1.49219 13.7266L6.27344 18.5078C6.58984 18.8242 7.01172 19 7.46875 19H12.4961C12.9531 19 13.375 18.8242 13.6914 18.5078L18.5078 13.7266C18.8242 13.4102 19 12.9883 19 12.5312V7.50391C19 7.04688 18.7891 6.625 18.4727 6.30859ZM17.3125 12.5312L12.4961 17.3125H7.46875L2.6875 12.5312V7.50391L7.46875 2.6875H12.4961L17.3125 7.50391V12.5312Z"></path>
76
+ <path fill="currentColor" d="M9.14286 5.24648C9.14286 5.10563 9.21429 5 9.35714 5H10.6071C10.75 5 10.8214 5.10563 10.8214 5.24648L10.5714 11.7606C10.5714 11.8662 10.4643 11.9366 10.3571 11.9366H9.60714C9.5 11.9366 9.39286 11.8662 9.39286 11.7606L9.14286 5.24648Z"></path>
77
+ <path fill="currentColor" d="M9 14.0141C9 13.4859 9.42857 13.0282 10 13.0282C10.5357 13.0282 11 13.4859 11 14.0141C11 14.5775 10.5357 15 10 15C9.42857 15 9 14.5775 9 14.0141Z"></path>
78
+ </symbol>
79
+
80
+ <symbol viewBox="0 0 18 18" id="qld__icon__info">
81
+ <title>Icon info</title>
82
+ <path fill="currentColor" d="M16.0714 0H1.92857C0.84375 0 0 0.883929 0 1.92857V16.0714C0 17.1563 0.84375 18 1.92857 18H16.0714C17.1161 18 18 17.1563 18 16.0714V1.92857C18 0.883929 17.1161 0 16.0714 0ZM16.7143 16.0714C16.7143 16.433 16.3929 16.7143 16.0714 16.7143H1.92857C1.56696 16.7143 1.28571 16.433 1.28571 16.0714V1.92857C1.28571 1.60714 1.56696 1.28571 1.92857 1.28571H16.0714C16.3929 1.28571 16.7143 1.60714 16.7143 1.92857V16.0714ZM7.55357 12.8571C7.27232 12.8571 7.07143 13.0982 7.07143 13.3393V13.6607C7.07143 13.942 7.27232 14.1429 7.55357 14.1429H10.4464C10.6875 14.1429 10.9286 13.942 10.9286 13.6607V13.3393C10.9286 13.0982 10.6875 12.8571 10.4464 12.8571H9.96429V7.23214C9.96429 6.99107 9.72322 6.75 9.48214 6.75H7.55357C7.27232 6.75 7.07143 6.99107 7.07143 7.23214V7.55357C7.07143 7.83482 7.27232 8.03572 7.55357 8.03572H8.03572V12.8571H7.55357ZM9 3.21429C8.27679 3.21429 7.71429 3.81696 7.71429 4.5C7.71429 5.22321 8.27679 5.78571 9 5.78571C9.68304 5.78571 10.2857 5.22321 10.2857 4.5C10.2857 3.81696 9.68304 3.21429 9 3.21429Z"></path>
83
+ </symbol>
84
+
85
+ <symbol viewBox="0 0 30 31" id="qld__icon__search">
86
+ <title>Search icon</title>
87
+ <path fill="currentColor" d="M29.7802 28.256L22.2179 20.6937C22.1006 20.5765 21.9248 20.5178 21.7489 20.5178H21.1041C23.1558 18.2902 24.3869 15.4177 24.3869 12.1935C24.3869 5.5105 18.8764 0 12.1935 0C5.45188 0 0 5.5105 0 12.1935C0 18.935 5.45188 24.3869 12.1935 24.3869C15.3591 24.3869 18.2902 23.1558 20.4592 21.1627V21.7489C20.4592 21.9834 20.5178 22.1593 20.6351 22.2765L28.1974 29.8388C28.4905 30.1319 28.9008 30.1319 29.1939 29.8388L29.7802 29.2526C30.0733 28.9594 30.0733 28.5491 29.7802 28.256ZM12.1935 22.511C6.44846 22.511 1.87592 17.9384 1.87592 12.1935C1.87592 6.50708 6.44846 1.87592 12.1935 1.87592C17.8798 1.87592 22.511 6.50708 22.511 12.1935C22.511 17.9384 17.8798 22.511 12.1935 22.511Z"></path>
88
+ </symbol>
89
+
90
+ <symbol viewBox="0 0 448 512" id="qld__icon__mobile-menu">
91
+ <title>Mobile Menu icon</title>
92
+ <path fill="currentColor" d="M0 80C0 71.16 7.164 64 16 64H432C440.8 64 448 71.16 448 80C448 88.84 440.8 96 432 96H16C7.164 96 0 88.84 0 80zM0 240C0 231.2 7.164 224 16 224H432C440.8 224 448 231.2 448 240C448 248.8 440.8 256 432 256H16C7.164 256 0 248.8 0 240zM432 416H16C7.164 416 0 408.8 0 400C0 391.2 7.164 384 16 384H432C440.8 384 448 391.2 448 400C448 408.8 440.8 416 432 416z"></path>
93
+ </symbol>
94
+
95
+ <symbol viewBox="0 0 576 512" id="qld__icon__home">
96
+ <title>Home Icon</title>
97
+ <path fill="currentColor" d="M541 229.16l-61-49.83v-77.4a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v51.33L308.19 39.14a32.16 32.16 0 0 0-40.38 0L35 229.16a8 8 0 0 0-1.16 11.24l10.1 12.41a8 8 0 0 0 11.2 1.19L96 220.62v243a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-128l64 .3V464a16 16 0 0 0 16 16l128-.33a16 16 0 0 0 16-16V220.62L520.86 254a8 8 0 0 0 11.25-1.16l10.1-12.41a8 8 0 0 0-1.21-11.27zm-93.11 218.59h.1l-96 .3V319.88a16.05 16.05 0 0 0-15.95-16l-96-.27a16 16 0 0 0-16.05 16v128.14H128V194.51L288 63.94l160 130.57z"></path>
98
+ </symbol>
99
+
100
+ <symbol viewBox="0 0 448 512" id="qld__icon__ellipsis">
101
+ <title>Ellipsis Icon</title>
102
+ <path fill="currentColor" d="M352 256C352 238.3 366.3 224 384 224C401.7 224 416 238.3 416 256C416 273.7 401.7 288 384 288C366.3 288 352 273.7 352 256zM192 256C192 238.3 206.3 224 224 224C241.7 224 256 238.3 256 256C256 273.7 241.7 288 224 288C206.3 288 192 273.7 192 256zM96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224C81.67 224 96 238.3 96 256z"></path>
103
+ </symbol>
104
+
105
+
106
+
107
+ <symbol viewBox="0 0 320 512" id="accordionChevron">
108
+ <path d="M168.5 164.2l148 146.8c4.7 4.7 4.7 12.3 0 17l-19.8 19.8c-4.7 4.7-12.3 4.7-17 0L160 229.3 40.3 347.8c-4.7 4.7-12.3 4.7-17 0L3.5 328c-4.7-4.7-4.7-12.3 0-17l148-146.8c4.7-4.7 12.3-4.7 17 0z"></path>
109
+ </symbol>
110
+
111
+ <symbol viewBox="0 0 20 20" id="mobileMenuOpenIcon">
112
+ <title>Menu Open Icon</title>
113
+ <path d="M16.4 9h-12.8c-0.552 0-0.6 0.447-0.6 1s0.048 1 0.6 1h12.8c0.552 0 0.6-0.447 0.6-1s-0.048-1-0.6-1zM16.4 13h-12.8c-0.552 0-0.6 0.447-0.6 1s0.048 1 0.6 1h12.8c0.552 0 0.6-0.447 0.6-1s-0.048-1-0.6-1zM3.6 7h12.8c0.552 0 0.6-0.447 0.6-1s-0.048-1-0.6-1h-12.8c-0.552 0-0.6 0.447-0.6 1s0.048 1 0.6 1z"></path>
114
+ </symbol>
115
+
116
+ <symbol viewBox="0 0 16 16" id="mobileMenuCloseIcon">
117
+ <title>Menu Close Icon</title>
118
+ <path d="M9.54688 8L14.375 3.21875L15.3594 2.23438C15.5 2.09375 15.5 1.85938 15.3594 1.67188L14.3281 0.640625C14.1406 0.5 13.9062 0.5 13.7656 0.640625L8 6.45312L2.1875 0.640625C2.04688 0.5 1.8125 0.5 1.625 0.640625L0.59375 1.67188C0.453125 1.85938 0.453125 2.09375 0.59375 2.23438L6.40625 8L0.59375 13.8125C0.453125 13.9531 0.453125 14.1875 0.59375 14.375L1.625 15.4062C1.8125 15.5469 2.04688 15.5469 2.1875 15.4062L8 9.59375L12.7812 14.4219L13.7656 15.4062C13.9062 15.5469 14.1406 15.5469 14.3281 15.4062L15.3594 14.375C15.5 14.1875 15.5 13.9531 15.3594 13.8125L9.54688 8Z" fill="currentColor"></path>
119
+ </symbol>
120
+
121
+
122
+
123
+ <symbol viewBox="0 0 12 21" id="socialIconFacebook">
124
+ <title>Facebook icon</title>
125
+ <path d="M3.85156 20.5H7.52344V11.5547H10.375L10.8438 8H7.52344V5.53906C7.52344 4.99219 7.60156 4.5625 7.83594 4.28906C8.07031 3.97656 8.57812 3.82031 9.28125 3.82031H11.1562V0.65625C10.4531 0.578125 9.51562 0.5 8.42188 0.5C7.01562 0.5 5.92188 0.929688 5.10156 1.75C4.24219 2.57031 3.85156 3.70312 3.85156 5.1875V8H0.84375V11.5547H3.85156V20.5Z" fill="currentColor"></path>
126
+ </symbol>
127
+
128
+ <symbol viewBox="0 0 20 17" id="socialIconTwitter">
129
+ <title>Twitter icon</title>
130
+ <path d="M17.9297 4.4375C18.7109 3.85156 19.4141 3.14844 20 2.28906C19.2188 2.64062 18.4375 2.875 17.6562 2.95312C18.5156 2.40625 19.1406 1.66406 19.4531 0.6875C18.6328 1.15625 17.7734 1.50781 16.8359 1.66406C16.4453 1.27344 15.9766 0.960938 15.4688 0.726562C14.9609 0.492188 14.4141 0.375 13.8281 0.375C13.0859 0.375 12.4219 0.570312 11.7969 0.921875C11.1719 1.3125 10.6641 1.82031 10.3125 2.44531C9.92188 3.07031 9.76562 3.77344 9.76562 4.47656C9.76562 4.78906 9.76562 5.10156 9.84375 5.41406C8.16406 5.33594 6.60156 4.94531 5.11719 4.16406C3.63281 3.42188 2.42188 2.40625 1.40625 1.11719C1.01562 1.78125 0.820312 2.48438 0.820312 3.1875C0.820312 3.89062 0.976562 4.55469 1.32812 5.14062C1.64062 5.76562 2.10938 6.23438 2.65625 6.625C1.99219 6.625 1.36719 6.42969 0.820312 6.07812V6.15625C0.820312 7.13281 1.13281 7.99219 1.75781 8.73438C2.38281 9.51562 3.16406 9.98438 4.10156 10.1797C3.71094 10.2578 3.35938 10.2969 3.00781 10.2969C2.77344 10.2969 2.5 10.2969 2.26562 10.2578C2.5 11.0781 2.96875 11.7422 3.67188 12.2891C4.375 12.8359 5.15625 13.0703 6.09375 13.0703C4.57031 14.2422 2.85156 14.8281 0.976562 14.8281C0.585938 14.8281 0.273438 14.8281 0 14.7891C1.875 16.0391 3.98438 16.625 6.28906 16.625C8.67188 16.625 10.7812 16.0391 12.6562 14.7891C14.3359 13.6953 15.6641 12.25 16.6016 10.375C17.5 8.65625 17.9688 6.82031 17.9688 4.94531C17.9688 4.71094 17.9297 4.55469 17.9297 4.4375Z" fill="currentColor"></path>
131
+ </symbol>
132
+
133
+ <symbol viewBox="0 0 18 19" id="socialIconLinkedIn">
134
+ <title>LinkedIn icon</title>
135
+ <path d="M4.15625 18.25V6.57031H0.523438V18.25H4.15625ZM2.35938 4.96875C2.90625 4.96875 3.41406 4.77344 3.84375 4.34375C4.23438 3.95312 4.46875 3.44531 4.46875 2.85938C4.46875 2.3125 4.23438 1.80469 3.84375 1.375C3.41406 0.984375 2.90625 0.75 2.35938 0.75C1.77344 0.75 1.26562 0.984375 0.875 1.375C0.445312 1.80469 0.25 2.3125 0.25 2.85938C0.25 3.44531 0.445312 3.95312 0.875 4.34375C1.26562 4.77344 1.77344 4.96875 2.35938 4.96875ZM17.75 18.25V11.8438C17.75 10.0469 17.4766 8.71875 16.9688 7.85938C16.2656 6.80469 15.0938 6.25781 13.4141 6.25781C12.5547 6.25781 11.8516 6.49219 11.2266 6.88281C10.6406 7.23438 10.2109 7.66406 9.97656 8.17188H9.9375V6.57031H6.46094V18.25H10.0547V12.4688C10.0547 11.5703 10.1719 10.8672 10.4453 10.3984C10.7578 9.77344 11.3438 9.46094 12.2031 9.46094C13.0234 9.46094 13.5703 9.8125 13.8828 10.5156C14.0391 10.9453 14.1172 11.6094 14.1172 12.5469V18.25H17.75Z" fill="currentColor"></path>
136
+ </symbol>
137
+
138
+ <symbol viewBox="0 0 22 15" id="socialIconYouTube">
139
+ <title>Youtube icon</title>
140
+ <path d="M21.2344 2.34375C21.3906 3.04688 21.5469 4.14062 21.625 5.54688L21.6641 7.5L21.625 9.45312C21.5469 10.9375 21.3906 11.9922 21.2344 12.6953C21.0781 13.1641 20.8438 13.5547 20.5312 13.8672C20.1797 14.2188 19.7891 14.4531 19.3203 14.5703C18.6172 14.7656 17.0547 14.8828 14.5547 14.9609L11 15L7.44531 14.9609C4.94531 14.8828 3.34375 14.7656 2.67969 14.5703C2.21094 14.4531 1.78125 14.2188 1.46875 13.8672C1.11719 13.5547 0.882812 13.1641 0.765625 12.6953C0.570312 11.9922 0.453125 10.9375 0.375 9.45312L0.335938 7.5C0.335938 6.95312 0.335938 6.28906 0.375 5.54688C0.453125 4.14062 0.570312 3.04688 0.765625 2.34375C0.882812 1.875 1.11719 1.48438 1.46875 1.13281C1.78125 0.820312 2.21094 0.585938 2.67969 0.429688C3.34375 0.273438 4.94531 0.117188 7.44531 0.0390625L11 0L14.5547 0.0390625C17.0547 0.117188 18.6172 0.273438 19.3203 0.429688C19.7891 0.585938 20.1797 0.820312 20.5312 1.13281C20.8438 1.48438 21.0781 1.875 21.2344 2.34375ZM8.8125 10.7031L14.3984 7.5L8.8125 4.33594V10.7031Z" fill="currentColor"></path>
141
+ </symbol>
142
+
143
+ <symbol viewBox="0 0 18 19" id="socialIconInstagram">
144
+ <title>Instagram icon</title>
145
+ <path d="M9 5.00781C9.78125 5.00781 10.5234 5.24219 11.2266 5.63281C11.9297 6.02344 12.4766 6.57031 12.8672 7.27344C13.2578 7.97656 13.4922 8.71875 13.4922 9.5C13.4922 10.3203 13.2578 11.0625 12.8672 11.7656C12.4766 12.4688 11.9297 13.0156 11.2266 13.4062C10.5234 13.7969 9.78125 13.9922 9 13.9922C8.17969 13.9922 7.4375 13.7969 6.73438 13.4062C6.03125 13.0156 5.48438 12.4688 5.09375 11.7656C4.70312 11.0625 4.50781 10.3203 4.50781 9.5C4.50781 8.71875 4.70312 7.97656 5.09375 7.27344C5.48438 6.57031 6.03125 6.02344 6.73438 5.63281C7.4375 5.24219 8.17969 5.00781 9 5.00781ZM9 12.4297C9.78125 12.4297 10.4844 12.1562 11.0703 11.5703C11.6172 11.0234 11.9297 10.3203 11.9297 9.5C11.9297 8.71875 11.6172 8.01562 11.0703 7.42969C10.4844 6.88281 9.78125 6.57031 9 6.57031C8.17969 6.57031 7.47656 6.88281 6.92969 7.42969C6.34375 8.01562 6.07031 8.71875 6.07031 9.5C6.07031 10.3203 6.34375 11.0234 6.92969 11.5703C7.47656 12.1562 8.17969 12.4297 9 12.4297ZM14.7422 4.8125C14.7422 4.53906 14.625 4.30469 14.4297 4.07031C14.1953 3.875 13.9609 3.75781 13.6875 3.75781C13.375 3.75781 13.1406 3.875 12.9453 4.07031C12.7109 4.30469 12.6328 4.53906 12.6328 4.8125C12.6328 5.125 12.7109 5.35938 12.9453 5.55469C13.1406 5.78906 13.375 5.86719 13.6875 5.86719C13.9609 5.86719 14.1953 5.78906 14.3906 5.55469C14.5859 5.35938 14.7031 5.125 14.7422 4.8125ZM17.7109 5.86719C17.7109 6.60938 17.75 7.82031 17.75 9.5C17.75 11.2188 17.7109 12.4297 17.6719 13.1719C17.6328 13.9141 17.5156 14.5391 17.3594 15.0859C17.125 15.75 16.7344 16.3359 16.2656 16.8047C15.7969 17.2734 15.2109 17.625 14.5859 17.8594C14.0391 18.0547 13.375 18.1719 12.6328 18.2109C11.8906 18.25 10.6797 18.25 9 18.25C7.28125 18.25 6.07031 18.25 5.32812 18.2109C4.58594 18.1719 3.96094 18.0547 3.41406 17.8203C2.75 17.625 2.16406 17.2734 1.69531 16.8047C1.22656 16.3359 0.875 15.75 0.640625 15.0859C0.445312 14.5391 0.328125 13.9141 0.289062 13.1719C0.25 12.4297 0.25 11.2188 0.25 9.5C0.25 7.82031 0.25 6.60938 0.289062 5.86719C0.328125 5.125 0.445312 4.46094 0.640625 3.91406C0.875 3.28906 1.22656 2.70312 1.69531 2.23438C2.16406 1.76562 2.75 1.375 3.41406 1.14062C3.96094 0.984375 4.58594 0.867188 5.32812 0.828125C6.07031 0.789062 7.28125 0.75 9 0.75C10.6797 0.75 11.8906 0.789062 12.6328 0.828125C13.375 0.867188 14.0391 0.984375 14.5859 1.14062C15.2109 1.375 15.7969 1.76562 16.2656 2.23438C16.7344 2.70312 17.125 3.28906 17.3594 3.91406C17.5156 4.46094 17.6328 5.125 17.7109 5.86719ZM15.8359 14.6562C15.9922 14.2266 16.0703 13.5234 16.1484 12.5469C16.1484 12 16.1875 11.1797 16.1875 10.125V8.875C16.1875 7.82031 16.1484 7 16.1484 6.45312C16.0703 5.47656 15.9922 4.77344 15.8359 4.34375C15.5234 3.5625 14.9375 2.97656 14.1562 2.66406C13.7266 2.50781 13.0234 2.42969 12.0469 2.35156C11.4609 2.35156 10.6406 2.3125 9.625 2.3125H8.375C7.32031 2.3125 6.5 2.35156 5.95312 2.35156C4.97656 2.42969 4.27344 2.50781 3.84375 2.66406C3.02344 2.97656 2.47656 3.5625 2.16406 4.34375C2.00781 4.77344 1.89062 5.47656 1.85156 6.45312C1.8125 7.03906 1.8125 7.85938 1.8125 8.875V10.125C1.8125 11.1797 1.8125 12 1.85156 12.5469C1.89062 13.5234 2.00781 14.2266 2.16406 14.6562C2.47656 15.4766 3.0625 16.0234 3.84375 16.3359C4.27344 16.4922 4.97656 16.6094 5.95312 16.6484C6.5 16.6875 7.32031 16.6875 8.375 16.6875H9.625C10.6797 16.6875 11.5 16.6875 12.0469 16.6484C13.0234 16.6094 13.7266 16.4922 14.1562 16.3359C14.9375 16.0234 15.5234 15.4375 15.8359 14.6562Z" fill="currentColor"></path>
146
+ </symbol>
147
+
148
+
149
+
150
+ <symbol viewBox="0 0 448 512" id="ctaIcon">
151
+ <path d="M218.101 38.101L198.302 57.9c-4.686 4.686-4.686 12.284 0 16.971L353.432 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h341.432l-155.13 155.13c-4.686 4.686-4.686 12.284 0 16.971l19.799 19.799c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L235.071 38.101c-4.686-4.687-12.284-4.687-16.97 0z">
152
+ </path>
153
+ </symbol>
154
+ </defs>
155
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="98" height="98" viewBox="0 0 98 98" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M48.8745 97.1772C75.6323 97.1772 97.312 75.4976 97.312 48.7397C97.312 21.9819 75.6323 0.302246 48.8745 0.302246C22.1167 0.302246 0.437012 21.9819 0.437012 48.7397C0.437012 75.4976 22.1167 97.1772 48.8745 97.1772ZM6.68701 48.7397C6.68701 25.6929 25.437 6.55225 48.8745 6.55225C71.9214 6.55225 91.062 25.4976 91.062 48.7397C91.062 71.9819 72.1167 90.9272 48.8745 90.9272C25.6323 90.9272 6.68701 72.1772 6.68701 48.7397ZM71.3354 45.2241L36.9604 24.3257C33.8354 22.7632 30.1245 24.9116 30.1245 28.4272V69.0522C30.1245 72.7632 33.8354 74.9116 36.9604 73.1538L71.3354 53.4272C74.6558 51.6694 74.6558 47.1772 71.3354 45.2241ZM36.3745 64.3647V33.3101C36.3745 32.5288 37.3511 31.9429 38.1323 32.3335L64.3042 48.3491C65.0854 48.7397 65.0854 49.9116 64.3042 50.3022L38.1323 65.3413C37.3511 65.9272 36.3745 65.3413 36.3745 64.3647Z" fill="#008733"/>
3
+ </svg>
Binary file
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by Fontastic.me</metadata>
5
+ <defs>
6
+ <font id="slick" horiz-adv-x="512">
7
+ <font-face font-family="slick" units-per-em="512" ascent="480" descent="-32"/>
8
+ <missing-glyph horiz-adv-x="512" />
9
+
10
+ <glyph unicode="&#8594;" d="M241 113l130 130c4 4 6 8 6 13 0 5-2 9-6 13l-130 130c-3 3-7 5-12 5-5 0-10-2-13-5l-29-30c-4-3-6-7-6-12 0-5 2-10 6-13l87-88-87-88c-4-3-6-8-6-13 0-5 2-9 6-12l29-30c3-3 8-5 13-5 5 0 9 2 12 5z m234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
11
+ <glyph unicode="&#8592;" d="M296 113l29 30c4 3 6 7 6 12 0 5-2 10-6 13l-87 88 87 88c4 3 6 8 6 13 0 5-2 9-6 12l-29 30c-3 3-8 5-13 5-5 0-9-2-12-5l-130-130c-4-4-6-8-6-13 0-5 2-9 6-13l130-130c3-3 7-5 12-5 5 0 10 2 13 5z m179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
12
+ <glyph unicode="&#8226;" d="M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
13
+ <glyph unicode="&#97;" d="M475 439l0-128c0-5-1-9-5-13-4-4-8-5-13-5l-128 0c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57 0-20 4-39 11-57 8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3 3 0 5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17-27 12-51 27-70 47-20 19-35 43-47 70-12 27-17 55-17 85 0 30 5 58 17 85 12 27 27 51 47 70 19 20 43 35 70 47 27 12 55 17 85 17 28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z"/>
14
+ </font></defs></svg>
Binary file
Binary file