@qld-gov-au/qgds-bootstrap5 2.0.6 → 2.0.8

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 (210) hide show
  1. package/.esbuild/plugins/qgds-plugin-build-log.js +2 -2
  2. package/.esbuild/plugins/qgds-plugin-copy-assets.js +0 -3
  3. package/.esbuild/plugins/qgds-plugin-handlebar-partial-builder.js +76 -66
  4. package/.storybook/README.md +10 -0
  5. package/.storybook/{main.js → main.mjs} +4 -5
  6. package/.storybook/modes.js +3 -12
  7. package/.storybook/preview.js +14 -11
  8. package/dist/assets/components/bs5/footer/footer.hbs +20 -18
  9. package/dist/assets/components/bs5/head/head.hbs +1 -1
  10. package/dist/assets/components/bs5/header/header.hbs +40 -52
  11. package/dist/assets/components/bs5/header/headerBrand.hbs +9 -10
  12. package/dist/assets/components/bs5/logo/logo.hbs +2 -0
  13. package/dist/assets/components/bs5/logo/logoCOADeliveringForQLD.hbs +49 -0
  14. package/dist/assets/components/bs5/logo/logoCOALandscape.hbs +55 -109
  15. package/dist/assets/components/bs5/logo/logoCOALandscape2Lines.hbs +55 -55
  16. package/dist/assets/components/bs5/searchInput/searchInput.hbs +5 -5
  17. package/dist/assets/css/qld.bootstrap.css +1 -1
  18. package/dist/assets/css/qld.bootstrap.css.map +3 -3
  19. package/dist/assets/css/qld.bootstrap.legacy.css +1 -1
  20. package/dist/assets/css/qld.bootstrap.legacy.css.map +3 -3
  21. package/dist/assets/img/coa-delivering-for-qld.svg +47 -0
  22. package/dist/assets/img/coa-delivering-for-qld.svg.old +58 -0
  23. package/dist/assets/img/coa-landscape-2lines.svg +63 -0
  24. package/dist/assets/img/coa-landscape-web.svg +56 -0
  25. package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
  26. package/dist/assets/js/handlebars.helpers.bundle.js.map +3 -3
  27. package/dist/assets/js/handlebars.init.min.js +1329 -1344
  28. package/dist/assets/js/handlebars.init.min.js.map +4 -4
  29. package/dist/assets/js/handlebars.partials.js +2383 -136
  30. package/dist/assets/js/handlebars.partials.js.map +7 -0
  31. package/dist/assets/js/qld.bootstrap.min.js +3 -3
  32. package/dist/assets/js/qld.bootstrap.min.js.map +3 -3
  33. package/dist/assets/node/handlebars.init.min.js +219 -198
  34. package/dist/assets/node/handlebars.init.min.js.map +3 -3
  35. package/dist/components/bs5/footer/footer.hbs +20 -18
  36. package/dist/components/bs5/head/head.hbs +1 -1
  37. package/dist/components/bs5/header/header.hbs +40 -52
  38. package/dist/components/bs5/header/headerBrand.hbs +9 -10
  39. package/dist/components/bs5/logo/logo.hbs +2 -0
  40. package/dist/components/bs5/logo/logoCOADeliveringForQLD.hbs +49 -0
  41. package/dist/components/bs5/logo/logoCOALandscape.hbs +55 -109
  42. package/dist/components/bs5/logo/logoCOALandscape2Lines.hbs +55 -55
  43. package/dist/components/bs5/searchInput/searchInput.hbs +5 -5
  44. package/dist/package.json +27 -29
  45. package/dist/sample-data/correctincorrect/correctincorrect.data.json +1 -0
  46. package/dist/sample-data/header/header.variant.coBrand.data.json +5 -8
  47. package/dist/sample-data/header/header.variant.endorsed.data.json +3 -6
  48. package/dist/sample-data/header/header.variant.masterBrand.data.json +1 -6
  49. package/dist/sample-data/header/header.variant.standAlone.data.json +3 -6
  50. package/dist/sample-data/header/header.variant.subBrand.data.json +5 -8
  51. package/dist/sample-data/tabs/tabs.data.json +1 -2
  52. package/dist/sample-data/typography/typography.data.json +1 -0
  53. package/esbuild.js +16 -4
  54. package/package.json +27 -29
  55. package/pom.xml +3 -3
  56. package/src/components/bs5/accordion/Accordion.mdx +1 -1
  57. package/src/components/bs5/accordion/accordion.stories.js +17 -22
  58. package/src/components/bs5/backToTop/backToTop.mdx +1 -1
  59. package/src/components/bs5/banner/Banner.mdx +1 -1
  60. package/src/components/bs5/banner/banner.scss +2 -2
  61. package/src/components/bs5/blockquote/Blockquote.mdx +1 -1
  62. package/src/components/bs5/blockquote/manifest.json +1 -0
  63. package/src/components/bs5/breadcrumbs/Breadcrumbs.mdx +1 -1
  64. package/src/components/bs5/breadcrumbs/breadcrumbs.scss +7 -2
  65. package/src/components/bs5/breadcrumbs/breadcrumbs.stories.js +19 -10
  66. package/src/components/bs5/breadcrumbs/manifest.json +1 -0
  67. package/src/components/bs5/breadcumbsWrapper/manifest.json +1 -0
  68. package/src/components/bs5/button/Button.mdx +1 -1
  69. package/src/components/bs5/button/manifest.json +1 -0
  70. package/src/components/bs5/callToAction/callToAction.mdx +1 -1
  71. package/src/components/bs5/callToAction/callToAction.stories.js +15 -50
  72. package/src/components/bs5/callout/Callout.mdx +1 -1
  73. package/src/components/bs5/callout/callout.stories.js +7 -26
  74. package/src/components/bs5/callout/manifest.json +1 -0
  75. package/src/components/bs5/card/Card.mdx +1 -1
  76. package/src/components/bs5/card/card.scss +1 -1
  77. package/src/components/bs5/card/manifest.json +1 -0
  78. package/src/components/bs5/contentFooter/manifest.json +1 -0
  79. package/src/components/bs5/contentFooterWrapper/manifest.json +1 -0
  80. package/src/components/bs5/contentWrapper/manifest.json +1 -0
  81. package/src/components/bs5/correctincorrect/correctincorrect.data.json +1 -0
  82. package/src/components/bs5/correctincorrect/manifest.json +1 -0
  83. package/src/components/bs5/dateinput/Dateinput.stories.js +23 -31
  84. package/src/components/bs5/dateinput/manifest.json +1 -0
  85. package/src/components/bs5/directionLinks/DirectionLinks.mdx +1 -1
  86. package/src/components/bs5/directionLinks/directionLinks.stories.js +14 -12
  87. package/src/components/bs5/footer/Footer.mdx +1 -1
  88. package/src/components/bs5/footer/footer.hbs +20 -18
  89. package/src/components/bs5/footer/footer.scss +7 -5
  90. package/src/components/bs5/formcheck/manifest.json +1 -0
  91. package/src/components/bs5/formcheck/stories/checkbox/Checkbox.mdx +1 -1
  92. package/src/components/bs5/formcheck/stories/checkbox/checkbox.stories.js +44 -87
  93. package/src/components/bs5/formcheck/stories/radio/Radio.mdx +1 -1
  94. package/src/components/bs5/formcheck/stories/radio/radio.stories.js +9 -36
  95. package/src/components/bs5/fullPageWrapper/manifest.json +1 -0
  96. package/src/components/bs5/globalAlert/GlobalAlert.mdx +1 -1
  97. package/src/components/bs5/globalAlert/globalAlert.test.js +3 -3
  98. package/src/components/bs5/globalAlert/manifest.json +1 -0
  99. package/src/components/bs5/head/manifest.json +1 -0
  100. package/src/components/bs5/header/Header.js +25 -0
  101. package/src/components/bs5/header/Header.mdx +1 -1
  102. package/src/components/bs5/header/_header-variables.scss +61 -247
  103. package/src/components/bs5/header/header.functions.js +10 -15
  104. package/src/components/bs5/header/header.hbs +40 -52
  105. package/src/components/bs5/header/header.scss +166 -158
  106. package/src/components/bs5/header/header.stories.js +35 -233
  107. package/src/components/bs5/header/header.variant.coBrand.data.json +5 -8
  108. package/src/components/bs5/header/header.variant.endorsed.data.json +3 -6
  109. package/src/components/bs5/header/header.variant.masterBrand.data.json +1 -6
  110. package/src/components/bs5/header/header.variant.standAlone.data.json +3 -6
  111. package/src/components/bs5/header/header.variant.subBrand.data.json +5 -8
  112. package/src/components/bs5/header/headerBrand.hbs +9 -10
  113. package/src/components/bs5/header/manifest.json +1 -0
  114. package/src/components/bs5/icons/Icons.mdx +1 -1
  115. package/src/components/bs5/icons/manifest.json +1 -0
  116. package/src/components/bs5/icons/mdx/_IconsSizes.mdx +1 -1
  117. package/src/components/bs5/image/Image.mdx +1 -1
  118. package/src/components/bs5/inpageAlert/InpageAlert.mdx +1 -1
  119. package/src/components/bs5/inpageAlert/inpageAlert.scss +107 -120
  120. package/src/components/bs5/inpageAlert/inpageAlert.stories.js +7 -23
  121. package/src/components/bs5/inpageAlert/manifest.json +1 -0
  122. package/src/components/bs5/inpagenav/Inpagenav.mdx +1 -1
  123. package/src/components/bs5/inpagenav/inpagenav.stories.js +4 -6
  124. package/src/components/bs5/inpagenav/manifest.json +1 -0
  125. package/src/components/bs5/link/link.mdx +1 -1
  126. package/src/components/bs5/link/link.stories.js +4 -6
  127. package/src/components/bs5/linkColumns/linkColumns.mdx +1 -1
  128. package/src/components/bs5/linkColumns/linkColumns.scss +18 -25
  129. package/src/components/bs5/logo/Logo.mdx +1 -1
  130. package/src/components/bs5/logo/logo.hbs +2 -0
  131. package/src/components/bs5/logo/logoCOADeliveringForQLD.hbs +49 -0
  132. package/src/components/bs5/logo/logoCOALandscape.hbs +55 -109
  133. package/src/components/bs5/logo/logoCOALandscape2Lines.hbs +55 -55
  134. package/src/components/bs5/mainContainerWrapper/manifest.json +1 -0
  135. package/src/components/bs5/metaDcTerms/manifest.json +1 -0
  136. package/src/components/bs5/metaOpenGraph/manifest.json +1 -0
  137. package/src/components/bs5/modal/Modal.mdx +1 -1
  138. package/src/components/bs5/modal/manifest.json +1 -0
  139. package/src/components/bs5/navbar/navbar.scss +36 -14
  140. package/src/components/bs5/pagination/Pagination.mdx +1 -1
  141. package/src/components/bs5/pagination/manifest.json +1 -0
  142. package/src/components/bs5/pagination/pagination.stories.js +12 -21
  143. package/src/components/bs5/promotionalPanel/PromotionalPanel.mdx +1 -1
  144. package/src/components/bs5/quickexit/manifest.json +1 -0
  145. package/src/components/bs5/searchInput/SearchInput.js +3 -5
  146. package/src/components/bs5/searchInput/SearchInput.mdx +1 -1
  147. package/src/components/bs5/searchInput/__snapshots__/searchInput.test.js.snap +5 -5
  148. package/src/components/bs5/searchInput/manifest.json +1 -0
  149. package/src/components/bs5/searchInput/searchInput.hbs +5 -5
  150. package/src/components/bs5/searchInput/searchInput.scss +13 -0
  151. package/src/components/bs5/searchInput/searchInput.stories.js +10 -12
  152. package/src/components/bs5/select/manifest.json +1 -0
  153. package/src/components/bs5/sidenav/Sidenav.mdx +1 -1
  154. package/src/components/bs5/sidenav/manifest.json +1 -0
  155. package/src/components/bs5/sidenav/sidenav.stories.js +4 -7
  156. package/src/components/bs5/sidenavWrapper/manifest.json +1 -0
  157. package/src/components/bs5/skiplinks/SkipLinks.mdx +1 -1
  158. package/src/components/bs5/spinner/manifest.json +1 -0
  159. package/src/components/bs5/table/Table.mdx +1 -1
  160. package/src/components/bs5/table/manifest.json +1 -0
  161. package/src/components/bs5/tabs/Tabs.mdx +1 -1
  162. package/src/components/bs5/tabs/tabs.data.json +1 -2
  163. package/src/components/bs5/tabs/tabs.stories.js +38 -215
  164. package/src/components/bs5/tag/Tag.mdx +1 -1
  165. package/src/components/bs5/tag/manifest.json +1 -0
  166. package/src/components/bs5/tag/tag--large.stories.js +53 -0
  167. package/src/components/bs5/tag/tag--standard.stories.js +39 -0
  168. package/src/components/bs5/tag/tag--status.stories.js +97 -0
  169. package/src/components/bs5/tag/tag.scss +67 -36
  170. package/src/components/bs5/tag/tag.stories.js +69 -106
  171. package/src/components/bs5/textarea/manifest.json +1 -0
  172. package/src/components/bs5/textbox/manifest.json +1 -0
  173. package/src/components/bs5/typography/Typography.mdx +1 -1
  174. package/src/components/bs5/typography/manifest.json +1 -0
  175. package/src/components/bs5/typography/typography.data.json +1 -0
  176. package/src/components/bs5/typography/typography.stories.js +6 -24
  177. package/src/components/bs5/video/Video.mdx +1 -1
  178. package/src/components/bs5/video/manifest.json +1 -0
  179. package/src/components/bs5/video/video.stories.js +6 -24
  180. package/src/css/main.scss +2 -2
  181. package/src/css/mixins/_index.scss +1 -0
  182. package/src/css/mixins/focusable.scss +6 -5
  183. package/src/css/mixins/make-link.scss +40 -0
  184. package/src/css/qld-print.scss +426 -304
  185. package/src/css/qld-theme.scss +16 -8
  186. package/src/css/qld-type.scss +3 -73
  187. package/src/css/variables/animation.scss +5 -0
  188. package/src/img/coa-delivering-for-qld.svg +47 -0
  189. package/src/img/coa-delivering-for-qld.svg.old +58 -0
  190. package/src/img/coa-landscape-2lines.svg +63 -0
  191. package/src/img/coa-landscape-web.svg +56 -0
  192. package/src/js/handlebars.helpers.js +51 -38
  193. package/src/js/handlebars.partials.js +12 -10
  194. package/src/stories/Introduction.mdx +1 -1
  195. package/vite.config.js +17 -0
  196. package/.eslintrc.cjs +0 -52
  197. package/dist/assets/img/_coa_header-logo-qgov--stacked.svg +0 -171
  198. package/dist/assets/img/_coa_header-logo-qgov-masterbrand.svg +0 -56
  199. package/dist/assets/img/_coa_preheader-logo-qgov.svg +0 -56
  200. package/dist/assets/js/bootstrap.js +0 -6312
  201. package/dist/assets/js/handlebars.helpers.js +0 -292
  202. package/dist/assets/js/handlebars.init.cjs +0 -6
  203. package/dist/assets/js/handlebars.init.js +0 -34
  204. package/dist/components/handlebars.helpers.js +0 -292
  205. package/dist/components/handlebars.init.cjs +0 -6
  206. package/dist/components/handlebars.init.js +0 -34
  207. package/dist/components/handlebars.partials.js +0 -136
  208. package/src/img/_coa_header-logo-qgov--stacked.svg +0 -171
  209. package/src/img/_coa_header-logo-qgov-masterbrand.svg +0 -56
  210. package/src/img/_coa_preheader-logo-qgov.svg +0 -56
@@ -1,136 +0,0 @@
1
- /* global Handlebars */
2
- /** THIS IS A GENERATED FILE **/
3
-
4
- import accordion from "../components/bs5/accordion/accordion.hbs?raw";
5
- import backToTop from "../components/bs5/backToTop/backToTop.hbs?raw";
6
- import banner from "../components/bs5/banner/banner.hbs?raw";
7
- import blockquote from "../components/bs5/blockquote/blockquote.hbs?raw";
8
- import breadcrumbs from "../components/bs5/breadcrumbs/breadcrumbs.hbs?raw";
9
- import breadcrumbsWrapper from "../components/bs5/breadcumbsWrapper/breadcrumbsWrapper.hbs?raw";
10
- import button from "../components/bs5/button/button.hbs?raw";
11
- import callToAction from "../components/bs5/callToAction/callToAction.hbs?raw";
12
- import callout from "../components/bs5/callout/callout.hbs?raw";
13
- import card from "../components/bs5/card/card.hbs?raw";
14
- import containerLayout from "../components/bs5/containerLayout/containerLayout.hbs?raw";
15
- import contentFooter from "../components/bs5/contentFooter/contentFooter.hbs?raw";
16
- import contentFooterWrapper from "../components/bs5/contentFooterWrapper/contentFooterWrapper.hbs?raw";
17
- import contentWrapper from "../components/bs5/contentWrapper/contentWrapper.hbs?raw";
18
- import correctincorrect from "../components/bs5/correctincorrect/correctincorrect.hbs?raw";
19
- import dateinput from "../components/bs5/dateinput/dateinput.hbs?raw";
20
- import directionLinks from "../components/bs5/directionLinks/directionLinks.hbs?raw";
21
- import customLinks from "../components/bs5/footer/customLinks.hbs?raw";
22
- import feedbackForm from "../components/bs5/footer/feedbackForm.hbs?raw";
23
- import followLinks from "../components/bs5/footer/followLinks.hbs?raw";
24
- import footer from "../components/bs5/footer/footer.hbs?raw";
25
- import formcheck from "../components/bs5/formcheck/formcheck.hbs?raw";
26
- import fullPage from "../components/bs5/fullPageWrapper/fullPage.hbs?raw";
27
- import globalAlert from "../components/bs5/globalAlert/globalAlert.hbs?raw";
28
- import head from "../components/bs5/head/head.hbs?raw";
29
- import header from "../components/bs5/header/header.hbs?raw";
30
- import headerBrand from "../components/bs5/header/headerBrand.hbs?raw";
31
- import icon from "../components/bs5/icons/icon.hbs?raw";
32
- import image from "../components/bs5/image/image.hbs?raw";
33
- import inpageAlert from "../components/bs5/inpageAlert/inpageAlert.hbs?raw";
34
- import inpagenav from "../components/bs5/inpagenav/inpagenav.hbs?raw";
35
- import link from "../components/bs5/link/link.hbs?raw";
36
- import linkColumns from "../components/bs5/linkColumns/linkColumns.hbs?raw";
37
- import logo from "../components/bs5/logo/logo.hbs?raw";
38
- import logoCOALandscape from "../components/bs5/logo/logoCOALandscape.hbs?raw";
39
- import logoCOALandscape2Lines from "../components/bs5/logo/logoCOALandscape2Lines.hbs?raw";
40
- import mainContainerWrapper from "../components/bs5/mainContainerWrapper/mainContainerWrapper.hbs?raw";
41
- import metaDcTerms from "../components/bs5/metaDcTerms/metaDcTerms.hbs?raw";
42
- import metaOpenGraph from "../components/bs5/metaOpenGraph/metaOpenGraph.hbs?raw";
43
- import modal from "../components/bs5/modal/modal.hbs?raw";
44
- import navbar from "../components/bs5/navbar/navbar.hbs?raw";
45
- import contentPageWithForm from "../components/bs5/pageLayout/templates/contentPageWithForm.hbs?raw";
46
- import contentPageWithSideNavigation from "../components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs?raw";
47
- import homePage from "../components/bs5/pageLayout/templates/homePage.hbs?raw";
48
- import pagination from "../components/bs5/pagination/pagination.hbs?raw";
49
- import promotionalPanel from "../components/bs5/promotionalPanel/promotionalPanel.hbs?raw";
50
- import quickexit from "../components/bs5/quickexit/quickexit.hbs?raw";
51
- import searchInput from "../components/bs5/searchInput/searchInput.hbs?raw";
52
- import select from "../components/bs5/select/select.hbs?raw";
53
- import sidenav from "../components/bs5/sidenav/sidenav.hbs?raw";
54
- import sidenavWrapper from "../components/bs5/sidenavWrapper/sidenavWrapper.hbs?raw";
55
- import skipLinks from "../components/bs5/skiplinks/skipLinks.hbs?raw";
56
- import spinner from "../components/bs5/spinner/spinner.hbs?raw";
57
- import table from "../components/bs5/table/table.hbs?raw";
58
- import tabs from "../components/bs5/tabs/tabs.hbs?raw";
59
- import tag from "../components/bs5/tag/tag.hbs?raw";
60
- import textarea from "../components/bs5/textarea/textarea.hbs?raw";
61
- import textbox from "../components/bs5/textbox/textbox.hbs?raw";
62
- import typography from "../components/bs5/typography/typography.hbs?raw";
63
- import video from "../components/bs5/video/video.hbs?raw";
64
-
65
-
66
- /**
67
- * Registers Handlebars Partials
68
- * @param {Handlebars} handlebars Templating engine
69
- * @returns {void} Result of the helper operation
70
- */
71
- export default function handlebarsPartials(handlebars) {
72
- handlebars.registerPartial("accordion", accordion);
73
- handlebars.registerPartial("backToTop", backToTop);
74
- handlebars.registerPartial("banner", banner);
75
- handlebars.registerPartial("blockquote", blockquote);
76
- handlebars.registerPartial("breadcrumbs", breadcrumbs);
77
- handlebars.registerPartial("breadcrumbsWrapper", breadcrumbsWrapper);
78
- handlebars.registerPartial("button", button);
79
- handlebars.registerPartial("callToAction", callToAction);
80
- handlebars.registerPartial("callout", callout);
81
- handlebars.registerPartial("card", card);
82
- handlebars.registerPartial("containerLayout", containerLayout);
83
- handlebars.registerPartial("contentFooter", contentFooter);
84
- handlebars.registerPartial("contentFooterWrapper", contentFooterWrapper);
85
- handlebars.registerPartial("contentWrapper", contentWrapper);
86
- handlebars.registerPartial("correctincorrect", correctincorrect);
87
- handlebars.registerPartial("dateinput", dateinput);
88
- handlebars.registerPartial("directionLinks", directionLinks);
89
- handlebars.registerPartial("customLinks", customLinks);
90
- handlebars.registerPartial("feedbackForm", feedbackForm);
91
- handlebars.registerPartial("followLinks", followLinks);
92
- handlebars.registerPartial("footer", footer);
93
- handlebars.registerPartial("formcheck", formcheck);
94
- handlebars.registerPartial("fullPage", fullPage);
95
- handlebars.registerPartial("globalAlert", globalAlert);
96
- handlebars.registerPartial("head", head);
97
- handlebars.registerPartial("header", header);
98
- handlebars.registerPartial("headerBrand", headerBrand);
99
- handlebars.registerPartial("icon", icon);
100
- handlebars.registerPartial("image", image);
101
- handlebars.registerPartial("inpageAlert", inpageAlert);
102
- handlebars.registerPartial("inpagenav", inpagenav);
103
- handlebars.registerPartial("link", link);
104
- handlebars.registerPartial("linkColumns", linkColumns);
105
- handlebars.registerPartial("logo", logo);
106
- handlebars.registerPartial("logoCOALandscape", logoCOALandscape);
107
- handlebars.registerPartial("logoCOALandscape2Lines", logoCOALandscape2Lines);
108
- handlebars.registerPartial("mainContainerWrapper", mainContainerWrapper);
109
- handlebars.registerPartial("metaDcTerms", metaDcTerms);
110
- handlebars.registerPartial("metaOpenGraph", metaOpenGraph);
111
- handlebars.registerPartial("modal", modal);
112
- handlebars.registerPartial("navbar", navbar);
113
- handlebars.registerPartial("contentPageWithForm", contentPageWithForm);
114
- handlebars.registerPartial("contentPageWithSideNavigation", contentPageWithSideNavigation);
115
- handlebars.registerPartial("homePage", homePage);
116
- handlebars.registerPartial("pagination", pagination);
117
- handlebars.registerPartial("promotionalPanel", promotionalPanel);
118
- handlebars.registerPartial("quickexit", quickexit);
119
- handlebars.registerPartial("searchInput", searchInput);
120
- handlebars.registerPartial("select", select);
121
- handlebars.registerPartial("sidenav", sidenav);
122
- handlebars.registerPartial("sidenavWrapper", sidenavWrapper);
123
- handlebars.registerPartial("skipLinks", skipLinks);
124
- handlebars.registerPartial("spinner", spinner);
125
- handlebars.registerPartial("table", table);
126
- handlebars.registerPartial("tabs", tabs);
127
- handlebars.registerPartial("tag", tag);
128
- handlebars.registerPartial("textarea", textarea);
129
- handlebars.registerPartial("textbox", textbox);
130
- handlebars.registerPartial("typography", typography);
131
- handlebars.registerPartial("video", video);
132
-
133
- }
134
- if(typeof(Handlebars) !== 'undefined') {
135
- handlebarsPartials(Handlebars);
136
- }
@@ -1,171 +0,0 @@
1
- <svg width="171" height="56" viewBox="0 0 171 56" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_34781_3586)">
3
- <path
4
- d="M60.223 21.2597C60.0296 21.3111 59.5613 21.455 59.256 21.4962C59.8362 20.9205 60.1823 20.2216 60.1823 19.6459C59.9074 19.7385 59.4086 19.9235 58.9506 20.0263C59.8565 19.2451 60.3451 18.3508 60.1314 17.1584C59.8565 17.3023 59.4595 17.5285 59.0727 17.6929C59.8667 16.4697 59.8565 15.3802 59.5308 14.7429C59.1745 15.0821 58.747 15.4727 58.2991 15.7502C58.5943 14.3317 58.5739 13.4169 57.9835 12.7693C57.3829 13.9205 56.8638 14.7634 56.0189 15.781C56.0902 14.8457 55.9884 13.6739 55.3776 13.0571C55.3776 13.0571 55.2046 14.3625 54.7465 14.784C54.6345 13.4991 54.2477 12.8001 53.6675 12.1114C53.6675 12.1114 53.6268 13.4477 53.2705 14.27C52.9651 13.1496 52.3951 12.2862 51.6723 11.4639C51.7232 13.9308 51.0412 18.5769 49.0868 21.7017C48.8526 23.552 48.649 26.3478 45.6665 27.9925C45.2389 27.6841 44.4755 27.2935 43.4168 27.3552C43.1318 25.9572 44.9437 24.6827 46.5114 23.6753C48.0892 22.6474 48.7814 21.7737 48.7407 20.3963C48.6999 18.8956 47.6922 18.2788 46.6539 18.2377C45.188 18.1658 43.9869 19.5123 43.7019 20.0777C43.2743 20.2832 42.0223 20.6738 41.5031 20.8178C40.9331 20.9719 40.2816 21.2084 39.8744 21.5476C40.1187 21.7017 40.8007 21.7531 41.0756 21.712C41.5744 21.6401 43.1623 21.342 44.6791 21.157C45.2389 21.455 46.1246 21.969 45.1779 22.6269C43.8851 23.4595 43.3252 23.6753 41.5031 24.6415C38.6223 26.1628 39.5588 29.9969 40.2612 30.2847C40.2612 31.5799 41.4115 33.9132 42.1851 34.7252C42.5312 36.3493 42.0732 38.7752 41.5845 39.7825C41.1875 38.7957 40.4852 36.5138 40.0373 35.1775C40.5055 32.6489 39.7523 31.5387 39.2229 31.1173C38.6936 30.6753 37.8589 30.7987 37.3194 31.6724C38.1541 31.5799 38.4289 32.6592 38.4086 33.7693C38.3882 35.1056 38.0523 36.1746 37.126 36.1848C37.1972 37.3258 38.4188 37.6547 39.0295 37.0997C39.1211 37.3567 39.6097 38.8574 40.078 40.1937C40.3528 40.9851 40.6175 41.7149 40.8007 42.0953C40.9941 42.5167 42.3989 42.5887 42.5618 42.0953C42.7857 41.4477 42.9588 40.9543 43.315 40.1937C43.5797 39.618 43.9563 38.8779 44.5162 37.7884C44.8928 38.4462 45.4018 39.4844 45.6868 40.1937C45.8192 40.5123 45.921 40.7796 45.9311 40.9029C46.0431 41.9925 45.982 45.8574 45.6868 48.1702C42.5414 47.3067 41.6558 48.8588 41.9306 50.0101C42.3887 49.5064 42.9689 49.5681 43.3354 49.8354C43.2438 50.6782 43.4779 51.295 44.333 51.5519C45.2389 49.1364 48.476 49.6709 48.7814 49.8765C48.7915 49.4139 49.2293 48.2524 47.5598 48.0057C47.6209 45.9191 47.8347 43.3596 47.9161 42.8251C47.9874 42.2906 48.0485 41.9616 47.794 41.129C47.7227 40.8823 47.6311 40.574 47.5395 40.2039C47.3257 39.3611 47.1018 38.2612 47.0814 37.0586C47.3664 37.3464 48.0586 37.5828 48.5371 37.4697C48.9035 39.0527 49.4329 38.5901 49.7077 39.248C49.8502 39.5872 49.8807 39.9058 49.9215 40.1937C49.952 40.4712 49.9927 40.7076 50.1454 40.9132C51.2651 40.944 52.2118 40.6768 52.8938 40.1937C53.1076 40.0395 53.2807 39.875 53.4435 39.69C53.1687 38.0145 52.7004 37.1819 51.8352 36.1643C51.6112 34.7869 50.9699 33.5329 50.1047 32.4227C51.2041 32.063 52.3136 31.1584 52.904 30.5417C53.4333 30.5006 54.0339 30.0586 54.0746 29.1951C54.38 29.154 54.6447 29.1437 54.8788 29.0923C54.8483 28.8559 54.7872 28.4962 54.7567 28.2803C55.1638 28.2803 55.5405 28.2597 55.9273 28.2289C55.8153 27.9103 55.6728 27.5813 55.5608 27.3449C55.968 27.3449 56.4668 27.3141 56.874 27.2935C56.6602 26.8824 56.4973 26.5329 56.3752 26.1731C56.8434 26.132 57.556 26.0086 58.1464 25.875C57.953 25.6694 57.7392 25.4639 57.4237 25.1452C58.9608 24.6827 59.6224 23.6136 59.7038 23.1408C59.4799 23.1408 59.0116 23.2436 58.7368 23.223C59.5613 22.7091 60.1416 22.0101 60.223 21.2597Z"
5
- fill="currentColor" />
6
- <path
7
- d="M38.7751 24.7339H29.2676H19.7498H19.3936V25.0936V31.96C19.4852 32.0114 19.5666 32.0834 19.6582 32.1656V25.0423H38.938V31.6619C39.0092 31.7339 39.0703 31.8264 39.1314 31.9497V25.1039V24.7442H38.7751V24.7339Z"
8
- fill="currentColor" />
9
- <path
10
- d="M29.2386 49.64C20.6879 46.4227 19.5987 39.3404 19.5681 36.1334C19.558 36.1334 19.5478 36.1334 19.5376 36.1231C19.5478 36.0409 19.558 35.9689 19.5681 35.8867C19.5681 35.1877 19.619 34.7149 19.6496 34.5504C19.6292 34.0879 19.558 33.7384 19.4867 33.4609C19.4663 33.4095 19.4256 33.3478 19.4053 33.2964V36.6268C19.4053 40.3581 20.7693 43.5754 23.4363 46.1862C25.7776 48.4785 28.4038 49.5475 29.1571 49.8147L29.2793 49.8558L29.4014 49.8147C30.1547 49.5475 32.781 48.4785 35.1222 46.1862C37.7892 43.5754 39.1431 40.3478 39.1431 36.6268V36.0203C39.082 36.1334 39.0108 36.1951 38.9293 36.2876C38.8581 37.963 38.5527 40.5636 37.4431 42.5166C36.1198 45.2714 34.0941 47.5225 29.2386 49.64Z"
11
- fill="currentColor" />
12
- <path
13
- d="M25.8158 18.3403C24.4823 18.4226 23.1691 20.17 23.729 22.1641C23.5356 22.2361 22.9554 22.2258 22.7619 21.8249C22.6194 22.4725 21.3165 23.2229 20.3596 23.1201C20.8889 22.5445 21.235 21.2493 22.2733 20.5606C23.3116 19.8719 23.7799 19.4094 24.1362 18.2376C23.6577 18.4637 21.1638 19.1113 20.4614 18.3301C22.1003 18.0937 24.0344 17.1583 24.9912 16.5518L24.6044 16.1509C23.5763 16.7368 22.2021 17.2199 21.5099 17.4358C21.2656 15.3697 23.22 15.452 23.3625 16.007C24.1667 15.0408 23.6068 13.6531 23.0062 13.4989C23.617 11.8543 23.0062 10.8367 22.4871 10.2199C22.3649 11.9777 20.4309 12.2552 20.1967 13.6017C20.1153 12.5327 20.0542 9.64432 19.9626 8.2361C19.8099 5.61496 16.5423 4.7104 16.0435 4.7104C13.9059 4.81319 13.7023 4.52538 13.7532 3.52832C12.6742 4.77208 13.0406 5.88221 13.9568 6.41672C13.8346 7.16708 12.6436 7.74271 11.9209 7.90717C13.6616 9.53125 15.6771 8.56503 16.634 7.63992C16.7052 7.57824 16.7765 7.51657 16.8477 7.4549C17.1938 8.07164 17.4483 9.20232 17.4483 9.8499C15.8196 9.75739 15.5346 11.032 15.5346 11.4843C17.601 10.6208 17.8249 14.6091 18.3644 15.2567C17.8351 15.2258 16.9088 13.9923 15.5346 13.8998C13.8855 13.797 13.3053 14.681 12.6335 14.6502C12.7556 15.822 14.1807 16.4901 15.0969 16.634C14.6286 17.8367 15.046 18.659 16.013 18.9571C16.013 17.8572 17.3974 17.5078 18.8836 18.3917C20.665 19.4402 21.5811 19.5327 23.0062 19.0907C22.7721 19.6149 22.1206 19.6663 21.3368 20.4475C20.2273 21.5474 20.1967 22.9865 18.9549 23.5107C20.4105 24.2097 22.5889 23.2332 22.9045 22.6678C23.5152 23.0481 24.299 22.822 24.5026 22.4314C23.5254 20.2317 25.1745 18.9263 25.8259 18.9571C25.8463 18.9776 26.1313 18.3198 25.8158 18.3403ZM18.2627 17.4358C17.5297 17.1377 16.41 16.9424 15.7789 17.8367C15.4328 17.2405 15.9418 16.3359 16.2573 16.0687C14.6592 16.0892 13.7532 15.6061 13.5191 15.1127C14.1095 14.7838 15.6058 14.239 16.8274 15.1436C17.6723 15.7603 18.0998 16.0687 19.0974 16.3976C19.4536 16.0276 19.3213 16.192 19.4435 16.0892C18.6291 15.5239 18.2627 11.1245 16.6543 10.96C16.8884 10.405 17.713 10.4564 18.3746 10.6311C18.4255 9.64432 18.0183 8.02024 17.4178 7.08485C18.3441 6.59146 18.9854 7.12597 19.3111 8.29777C19.6572 9.54153 19.2501 12.6458 20.0542 15.4417L20.553 14.9688C20.2985 13.3345 22.0697 12.7383 22.4566 11.9263C22.6093 13.0261 22.3853 13.5092 22.0799 13.9101C22.7212 13.9923 23.0062 14.6194 22.9045 15.0716C21.3572 14.8352 20.4614 16.4079 20.8075 17.6517C19.6776 17.8984 18.8938 17.7031 18.2627 17.4358ZM13.8855 5.2038C15.107 5.81026 15.4939 4.70013 17.774 6.19058C16.2675 6.67369 15.107 8.55475 13.4071 8.07164C14.6286 7.4549 14.4963 6.56062 15.2088 6.10835C14.7508 6.04667 13.8753 5.84109 13.8855 5.2038Z"
14
- fill="currentColor" />
15
- <path
16
- d="M41.6553 12.3068C41.6553 9.86037 41.5637 7.84568 41.5332 7.20839C41.6248 7.22894 41.7164 7.25978 41.8284 7.3009C43.569 7.91764 43.966 10.0351 47.5594 7.62983C45.6355 7.85596 45.5337 6.21132 44.6582 6.17021C45.9917 5.40956 46.0833 3.65186 46.0833 3.65186C44.9636 4.55641 42.3781 4.61808 41.8691 4.91617C41.1972 5.32733 40.3524 5.82072 39.7823 6.13937C38.2859 6.96169 39.3242 11.4433 39.1817 13.0777C38.3776 10.6416 36.7387 11.0013 35.8836 9.60339C35.2423 10.7649 35.9243 12.7282 36.189 13.2833C35.2627 14.0439 35.507 15.4624 35.7309 15.8325C36.5249 15.2568 37.7566 15.4007 38.1231 16.367C37.0848 17.0145 35.3339 17.1276 34.1429 15.9558L33.7154 16.4389C34.5603 17.5696 36.6674 18.0013 38.235 17.0865C38.2249 17.3435 38.174 17.6313 38.0722 17.9499C37.2578 18.3817 36.2093 18.6181 34.998 18.1966C35.1609 19.4198 36.5656 20.3449 37.8889 20.715C37.4411 21.0645 36.8812 21.2084 36.4842 21.157C36.7285 21.8662 36.871 22.8119 36.3417 23.5623C35.68 23.1203 35.3237 22.668 35.0693 20.9514C34.8148 19.2245 33.5831 17.4668 32.6262 17.1173C32.5753 17.7238 32.5753 17.4565 32.6771 17.8574C35.2118 19.7385 33.7765 23.1305 36.4231 24.3537C37.3902 23.2333 37.4003 22.8427 37.2578 21.7943C38.2147 21.5373 38.9272 20.7253 39.1817 20.0982C38.2758 20.53 36.8405 19.7693 36.4435 19.1731C38.0111 19.1217 39.4668 17.9294 40.9631 16.3567C42.2966 14.9485 44.0678 15.1643 43.9253 16.2642C44.8415 16.1306 45.2079 14.856 44.9025 14.0439C46.2462 13.6225 47.3151 12.6049 47.4576 11.0322C45.666 11.9676 43.3655 10.4565 41.6553 12.3068ZM43.8337 13.6328C44.5463 14.2187 44.3121 15.0615 44.1391 15.2568C43.5181 14.157 41.5026 14.5476 39.5278 16.7987C39.3853 16.9632 39.2021 17.1585 38.9883 17.3538C39.141 14.6607 36.9524 14.6093 36.3111 14.8868C36.3824 14.1056 36.8608 13.5814 37.1153 13.4991C36.474 12.7488 36.3315 11.8031 36.2602 11.1144C37.3291 11.577 38.9069 12.8413 39.1817 15.0101L39.8739 14.5373C39.6703 10.7444 39.7111 10.7546 39.6907 8.17461C39.6805 7.81485 39.7009 6.97197 40.841 7.06448C40.8817 8.02043 41.0344 10.5696 40.9835 14.1056H41.3907C41.7571 13.1188 43.0499 11.9676 44.5564 12.0601C45.5947 12.132 45.9408 12.1012 46.5312 11.8442C46.0426 13.0366 44.2918 13.5505 43.8337 13.6328ZM40.8817 6.40663C41.6146 5.8824 42.0727 5.64598 42.4595 5.41984C43.0906 5.4404 44.1696 5.36845 44.8211 5.03952C44.1391 5.8824 44.0678 6.18049 42.9583 6.30384C44.3936 6.43746 44.9942 7.73262 45.7067 7.92792C43.3044 8.65772 43.0601 6.26272 40.8817 6.40663Z"
17
- fill="currentColor" />
18
- <path
19
- d="M31.8744 20.6534C31.7522 20.6534 31.6403 20.7151 31.569 20.8076C31.4367 20.7871 31.2942 20.7665 31.1415 20.746L31.1516 19.9545C31.2942 19.8928 31.3858 19.7592 31.3858 19.5947C31.3858 19.3788 31.2127 19.2041 30.999 19.2041C30.7852 19.2041 30.6121 19.3891 30.6121 19.5947C30.6121 19.7489 30.6936 19.8722 30.8157 19.9339L30.8055 20.6946C30.6732 20.6843 30.5409 20.6637 30.3984 20.6534C30.3373 20.5198 30.205 20.417 30.0421 20.417C29.8283 20.417 29.6553 20.5815 29.6553 20.8076C29.6553 21.0235 29.8283 21.1982 30.0421 21.1982C30.1744 21.1982 30.3068 21.1263 30.3678 21.0132C30.5205 21.0338 30.663 21.044 30.8055 21.0646L30.7954 22.2158C30.6732 22.2775 30.5918 22.4111 30.5918 22.5653C30.5918 22.7812 30.7648 22.9559 30.9786 22.9559C31.1924 22.9559 31.3654 22.7812 31.3654 22.5653C31.3654 22.4009 31.2738 22.2672 31.1313 22.2056L31.1415 21.1057C31.2738 21.1263 31.3858 21.1468 31.5079 21.1674C31.569 21.3216 31.7013 21.4346 31.8744 21.4346C32.0881 21.4346 32.2612 21.2599 32.2612 21.044C32.2612 20.8282 32.0881 20.6534 31.8744 20.6534Z"
20
- fill="currentColor" />
21
- <path
22
- d="M28.5033 20.4273C28.3404 20.4273 28.2081 20.5198 28.147 20.6637C28.0147 20.674 27.8722 20.6843 27.7398 20.7048L27.7297 19.9442C27.8518 19.8825 27.9332 19.7489 27.9332 19.605C27.9332 19.3891 27.7602 19.2144 27.5464 19.2144C27.3327 19.2144 27.1596 19.3994 27.1596 19.605C27.1596 19.7694 27.2512 19.903 27.3937 19.9647L27.4039 20.7562C27.2614 20.7665 27.1087 20.7973 26.9764 20.8179C26.9153 20.7254 26.8033 20.6637 26.671 20.6637C26.4572 20.6637 26.2842 20.8487 26.2842 21.0543C26.2842 21.2702 26.4572 21.4449 26.671 21.4449C26.844 21.4449 26.9866 21.3318 27.0375 21.1776C27.1596 21.1571 27.2818 21.1365 27.4039 21.116L27.4141 22.2158C27.2818 22.2672 27.1901 22.4111 27.1901 22.5756C27.1901 22.7914 27.3632 22.9662 27.577 22.9662C27.7907 22.9662 27.9638 22.7914 27.9638 22.5756C27.9638 22.4214 27.8722 22.2981 27.75 22.2261L27.7398 21.0749C27.8722 21.0543 28.0249 21.044 28.1674 21.0235C28.2386 21.1365 28.3608 21.2085 28.4931 21.2085C28.7069 21.2085 28.8799 21.0337 28.8799 20.8179C28.8901 20.602 28.7171 20.4273 28.5033 20.4273Z"
23
- fill="currentColor" />
24
- <path
25
- d="M33.6647 23.7986C33.4305 22.2156 32.8605 17.7854 32.7994 16.2949L32.1276 16.3258C32.1377 16.5827 32.1683 16.9117 32.1988 17.3023C31.3947 17.0658 30.3462 16.8911 29.2672 16.8911C28.1983 16.8911 27.1397 17.0556 26.3355 17.3023C26.366 16.9117 26.3966 16.5827 26.4068 16.3258L25.7349 16.2949C25.6738 17.7751 25.1038 22.2053 24.8697 23.7986C24.4625 23.9528 24.208 24.3639 24.208 25.0835C24.208 25.0835 27.8522 25.1349 29.2672 25.1349C30.6719 25.1349 34.3161 25.0835 34.3161 25.0835C34.3263 24.3537 34.0617 23.9528 33.6647 23.7986ZM29.2672 23.7575C28.6869 24.8779 27.6079 24.8368 26.6714 24.2097C26.2948 23.9631 25.908 23.7986 25.5517 23.7369C25.7146 22.6371 25.9792 20.5607 26.1828 18.803C27.3942 18.2479 28.9007 18.1246 29.2672 19.5328C29.6336 18.1246 31.13 18.2479 32.3515 18.803C32.5449 20.5607 32.8198 22.6268 32.9826 23.7369C32.6264 23.7986 32.2395 23.9631 31.8629 24.2097C30.9264 24.8368 29.8474 24.8676 29.2672 23.7575Z"
26
- fill="currentColor" />
27
- <path
28
- d="M49.7183 51.7886C49.3009 51.9223 48.792 51.9942 48.0183 51.9942H47.0717C43.7939 51.9223 40.4347 50.9457 38.3683 48.8077C41.2185 45.909 37.8695 43.514 36.0576 45.981C35.4977 46.7519 35.0396 47.2967 34.6528 48.0471C34.3271 48.6535 34.5714 49.2497 35.2839 50.1748C35.6707 50.6785 36.6378 51.47 37.4216 51.9942H21.0633C21.8471 51.47 22.8142 50.6888 23.201 50.1748C23.9034 49.2497 24.1477 48.6433 23.8321 48.0471C23.4351 47.2967 22.9872 46.7519 22.4172 45.981C20.6053 43.514 17.2562 45.909 20.1065 48.8077C18.0401 50.9355 14.6809 51.9223 11.4031 51.9942H10.5073C9.74386 51.9942 9.22471 51.9223 8.80735 51.7886C8.13551 51.6242 7.98282 51.9223 8.34928 53.0941C8.60377 53.8753 8.79717 55.1601 8.88879 56.0441H49.647C49.7285 55.1704 49.9321 53.8855 50.1865 53.0941C50.553 51.9223 50.4003 51.6242 49.7183 51.7886ZM36.9635 46.0838C37.4929 45.3643 38.2767 45.5596 38.6024 46.166C38.9485 46.8033 38.4497 47.6051 37.7677 48.2218C36.8414 47.2042 36.7396 46.3922 36.9635 46.0838ZM35.6097 49.4656C35.2839 48.9927 35.172 48.7255 35.345 48.2732C35.5079 47.8312 35.8642 47.4406 36.2204 46.8958C36.7905 49.1366 40.1395 51.2747 42.6233 51.9942H38.6737C37.6455 51.4391 36.3629 50.5243 35.6097 49.4656ZM19.8825 46.166C20.2083 45.5596 20.9819 45.3745 21.5112 46.0838C21.7352 46.3922 21.6436 47.2042 20.7071 48.2218C20.0352 47.6051 19.5364 46.8033 19.8825 46.166ZM22.2747 46.8958C22.6411 47.4406 22.9872 47.8312 23.1501 48.2732C23.3232 48.7255 23.2112 49.003 22.8854 49.4656C22.1322 50.5243 20.8496 51.4289 19.8214 51.9942H15.882C18.3556 51.285 21.7046 49.1469 22.2747 46.8958ZM48.9447 55.3965H9.59117C9.40794 54.1322 9.17381 53.3305 8.96004 52.6418H49.5656C49.3518 53.3305 49.1177 54.1425 48.9447 55.3965Z"
29
- fill="currentColor" />
30
- <path
31
- d="M14.926 54.502C14.9362 54.502 14.9464 54.5123 14.9464 54.5226L15.0482 54.8104C15.0584 54.8412 15.0482 54.8618 15.0278 54.872C15.0075 54.872 14.9973 54.872 14.9973 54.8926C14.9973 54.9132 15.0278 54.9132 15.0686 54.9132H15.5063C15.5877 54.9132 15.6081 54.9132 15.6081 54.8926C15.6081 54.872 15.5979 54.872 15.5775 54.872C15.547 54.872 15.5164 54.872 15.4757 54.8618C15.4248 54.8515 15.3536 54.8206 15.2721 54.6048C15.1194 54.245 14.753 53.2891 14.7021 53.1554C14.6716 53.1041 14.6614 53.0835 14.641 53.0835C14.6207 53.0835 14.6003 53.1143 14.5799 53.176L13.9895 54.6562C13.9488 54.7795 13.8979 54.8515 13.7961 54.8618C13.7758 54.8618 13.7452 54.8618 13.7249 54.8618C13.7045 54.8618 13.6943 54.8618 13.6943 54.8823C13.6943 54.9029 13.7147 54.9029 13.7351 54.9029H14.0099H14.2644C14.2847 54.9029 14.3051 54.9029 14.3051 54.8823C14.3051 54.8618 14.2949 54.8618 14.2644 54.8618H14.2338C14.1626 54.8618 14.1422 54.8309 14.1422 54.7898C14.1422 54.7693 14.1524 54.7076 14.1728 54.6562L14.2237 54.5226C14.2338 54.502 14.2338 54.502 14.244 54.502H14.926ZM14.2949 54.3889C14.2847 54.3889 14.2847 54.3786 14.2847 54.3684L14.5799 53.5769C14.5799 53.5666 14.5901 53.5563 14.5901 53.5563C14.6003 53.5563 14.6003 53.5666 14.6003 53.5769L14.8955 54.3684C14.8955 54.3786 14.8955 54.3889 14.8853 54.3889H14.2949Z"
32
- fill="currentColor" />
33
- <path
34
- d="M16.0847 54.1524C16.0847 54.4916 16.1763 54.6766 16.2985 54.7794C16.4613 54.9336 16.6853 54.9336 16.8074 54.9336C16.9601 54.9336 17.1332 54.9131 17.2961 54.7691C17.4895 54.6047 17.52 54.3169 17.52 54.0599V53.8132C17.52 53.4534 17.52 53.3918 17.52 53.3198C17.5302 53.2376 17.5404 53.1965 17.6014 53.1862C17.632 53.1862 17.6523 53.1759 17.6727 53.1759C17.7032 53.1759 17.7134 53.1656 17.7134 53.1553C17.7134 53.1348 17.7032 53.1348 17.6625 53.1348C17.5709 53.1348 17.4284 53.1451 17.3979 53.1451C17.3979 53.1451 17.2452 53.1348 17.1332 53.1348C17.1026 53.1348 17.0823 53.1348 17.0823 53.1553C17.0823 53.1656 17.0925 53.1759 17.123 53.1759C17.1434 53.1759 17.1841 53.1862 17.2044 53.1862C17.2757 53.2067 17.2961 53.2376 17.3062 53.3198C17.3062 53.3918 17.3062 53.4534 17.3062 53.8132V54.101C17.3062 54.358 17.2961 54.5636 17.1739 54.6869C17.0823 54.7897 16.95 54.8103 16.8482 54.8103C16.7667 54.8103 16.6649 54.8 16.553 54.7178C16.441 54.6252 16.3697 54.4711 16.3697 54.1319V53.8029C16.3697 53.4432 16.3697 53.3815 16.3799 53.3095C16.3799 53.2273 16.4003 53.1862 16.4613 53.1759C16.4919 53.1759 16.5021 53.1656 16.5326 53.1656C16.553 53.1656 16.5733 53.1553 16.5733 53.1451C16.5733 53.1245 16.553 53.1245 16.5224 53.1245C16.441 53.1245 16.2883 53.1348 16.2374 53.1348C16.1661 53.1348 16.0236 53.1245 15.9015 53.1245C15.8709 53.1245 15.8506 53.1245 15.8506 53.1451C15.8506 53.1553 15.8608 53.1656 15.8913 53.1656C15.9218 53.1656 15.9626 53.1759 15.9829 53.1759C16.0644 53.1965 16.0847 53.2273 16.0847 53.3095C16.0847 53.3815 16.0847 53.4432 16.0847 53.8029V54.1524Z"
35
- fill="currentColor" />
36
- <path
37
- d="M18.507 54.2244C18.507 54.4402 18.507 54.6355 18.4968 54.728C18.4866 54.8 18.4765 54.8514 18.4256 54.8514C18.4052 54.8617 18.3747 54.8617 18.334 54.8617C18.3034 54.8617 18.2932 54.8719 18.2932 54.8822C18.2932 54.9028 18.3034 54.9028 18.3441 54.9028H18.6393C18.7513 54.9028 18.9651 54.9233 19.1381 54.9233C19.5657 54.9233 19.7998 54.7589 19.9118 54.6458C20.0441 54.5122 20.1662 54.2758 20.1662 53.9879C20.1662 53.7104 20.0543 53.5048 19.9321 53.3918C19.6878 53.1245 19.2908 53.1245 19.0058 53.1245C18.8633 53.1245 18.7208 53.1348 18.6495 53.1348C18.5783 53.1348 18.4357 53.1245 18.3136 53.1245C18.2831 53.1245 18.2627 53.1245 18.2627 53.1451C18.2627 53.1553 18.2729 53.1656 18.3034 53.1656C18.3339 53.1656 18.3747 53.1759 18.395 53.1759C18.4663 53.1965 18.4968 53.2273 18.4968 53.3095C18.507 53.3815 18.507 53.4432 18.507 53.8029V54.2244ZM18.8022 53.7721C18.8022 53.5871 18.8022 53.3815 18.8022 53.2993C18.8022 53.2787 18.8124 53.2581 18.8327 53.2479C18.8531 53.2376 18.9345 53.2273 18.9854 53.2273C19.1687 53.2273 19.4435 53.2581 19.6471 53.4637C19.7489 53.5562 19.871 53.7515 19.871 54.0496C19.871 54.286 19.8201 54.5122 19.6776 54.6458C19.5351 54.7692 19.3824 54.8103 19.1483 54.8103C18.9651 54.8103 18.8735 54.7589 18.8429 54.7178C18.8327 54.6972 18.8226 54.5944 18.8226 54.5327C18.8124 54.4916 18.8124 54.2963 18.8124 54.0599V53.7721H18.8022Z"
38
- fill="currentColor" />
39
- <path
40
- d="M21.7131 54.502C21.7233 54.502 21.7335 54.5123 21.7335 54.5226L21.8455 54.8104C21.8557 54.8412 21.8353 54.8618 21.8251 54.872C21.7946 54.872 21.7844 54.872 21.7844 54.8926C21.7844 54.9132 21.8149 54.9132 21.8557 54.9132H22.2934C22.385 54.9132 22.4053 54.9132 22.4053 54.8926C22.4053 54.872 22.3952 54.872 22.3748 54.872C22.3545 54.872 22.3137 54.872 22.273 54.8618C22.2221 54.8515 22.161 54.8206 22.0694 54.6048C21.9167 54.245 21.5503 53.2891 21.4892 53.1554C21.4688 53.1041 21.4485 53.0835 21.4281 53.0835C21.4078 53.0835 21.3976 53.1143 21.3671 53.176L20.7868 54.6562C20.7359 54.7795 20.6952 54.8515 20.5832 54.8618C20.5731 54.8618 20.5323 54.8618 20.512 54.8618C20.4916 54.8618 20.4814 54.8618 20.4814 54.8823C20.4814 54.9029 20.4916 54.9029 20.5222 54.9029H20.797H21.0413C21.0718 54.9029 21.082 54.9029 21.082 54.8823C21.082 54.8618 21.0718 54.8618 21.0515 54.8618H21.0108C20.9395 54.8618 20.9192 54.8309 20.9192 54.7898C20.9192 54.7693 20.9293 54.7076 20.9497 54.6562L21.0006 54.5226C21.0006 54.502 21.0108 54.502 21.021 54.502H21.7131ZM21.082 54.3889C21.0718 54.3889 21.0718 54.3786 21.0718 54.3684L21.3671 53.5769C21.3671 53.5666 21.3772 53.5563 21.3772 53.5563C21.3874 53.5563 21.3874 53.5666 21.3874 53.5769L21.6724 54.3684C21.6724 54.3786 21.6724 54.3889 21.6623 54.3889H21.082Z"
41
- fill="currentColor" />
42
- <path
43
- d="M23.9952 53.3819C24.0664 53.2689 24.1173 53.2072 24.1682 53.1969C24.1987 53.1866 24.2293 53.1866 24.2496 53.1866C24.27 53.1866 24.2904 53.1763 24.2904 53.1661C24.2904 53.1455 24.2802 53.1455 24.2496 53.1455C24.158 53.1455 24.0664 53.1558 24.0155 53.1558C23.9748 53.1558 23.873 53.1455 23.7814 53.1455C23.7509 53.1455 23.7305 53.1558 23.7305 53.1661C23.7305 53.1763 23.7509 53.1866 23.761 53.1866C23.7814 53.1866 23.8119 53.1866 23.8323 53.1969C23.8526 53.2072 23.873 53.2175 23.873 53.238C23.873 53.2586 23.8628 53.2997 23.8526 53.3408C23.8221 53.4025 23.6083 53.7314 23.5371 53.8342C23.4455 53.68 23.3437 53.5053 23.2419 53.31C23.2215 53.2894 23.2215 53.2586 23.2215 53.238C23.2215 53.2277 23.2317 53.2175 23.2521 53.1969C23.2724 53.1969 23.303 53.1866 23.3131 53.1866C23.3335 53.1866 23.3437 53.1763 23.3437 53.1661C23.3437 53.1455 23.3335 53.1455 23.303 53.1455C23.2113 53.1455 23.0892 53.1558 23.0485 53.1558C22.9365 53.1558 22.7533 53.1455 22.6922 53.1455C22.6617 53.1455 22.6413 53.1455 22.6413 53.1661C22.6413 53.1866 22.6515 53.1866 22.6617 53.1866C22.682 53.1866 22.7227 53.1969 22.7635 53.2072C22.8449 53.2277 22.8958 53.2791 22.9569 53.3819L23.364 54.0501L22.9161 54.6976C22.8347 54.8107 22.794 54.8518 22.7227 54.8724C22.682 54.8827 22.6515 54.8827 22.6311 54.8827C22.6108 54.8827 22.6006 54.8929 22.6006 54.9032C22.6006 54.9238 22.6108 54.9238 22.6413 54.9238H22.682H22.8754H23.0892H23.1299C23.1605 54.9238 23.1808 54.9238 23.1808 54.9032C23.1808 54.8929 23.1706 54.8827 23.1503 54.8827C23.1299 54.8827 23.1096 54.8827 23.0994 54.8827C23.079 54.8724 23.0587 54.8621 23.0587 54.8415C23.0587 54.821 23.0688 54.7799 23.0892 54.749L23.4353 54.1837C23.5371 54.3584 23.6796 54.5948 23.8119 54.821C23.8323 54.8518 23.8221 54.8724 23.8018 54.8724C23.7814 54.8827 23.7712 54.8827 23.7712 54.8929C23.7712 54.9032 23.7916 54.9238 23.8526 54.9238H24.27H24.3413C24.3616 54.9238 24.382 54.9238 24.382 54.9032C24.382 54.8827 24.3718 54.8827 24.3514 54.8827C24.3311 54.8827 24.3005 54.8827 24.2598 54.8724C24.1987 54.8621 24.158 54.8313 24.1275 54.7696C24.0766 54.6976 23.6898 54.0603 23.6185 53.937L23.9952 53.3819Z"
44
- fill="currentColor" />
45
- <path
46
- d="M27.8006 54.502C27.8108 54.502 27.821 54.5123 27.821 54.5226L27.9228 54.8104C27.933 54.8412 27.9228 54.8618 27.9024 54.872C27.8821 54.872 27.8719 54.872 27.8719 54.8926C27.8719 54.9132 27.9024 54.9132 27.9431 54.9132H28.391C28.4725 54.9132 28.4928 54.9132 28.4928 54.8926C28.4928 54.872 28.4826 54.872 28.4623 54.872C28.4419 54.872 28.4012 54.872 28.3707 54.8618C28.3198 54.8515 28.2485 54.8206 28.1671 54.6048C28.0144 54.245 27.6479 53.2891 27.5869 53.1554C27.5665 53.1041 27.5461 53.0835 27.5258 53.0835C27.5054 53.0835 27.4952 53.1143 27.4647 53.176L26.8845 54.6562C26.8438 54.7795 26.7929 54.8515 26.6809 54.8618C26.6605 54.8618 26.63 54.8618 26.6096 54.8618C26.5893 54.8618 26.5791 54.8618 26.5791 54.8823C26.5791 54.9029 26.5893 54.9029 26.6198 54.9029H26.8947H27.139C27.1695 54.9029 27.1797 54.9029 27.1797 54.8823C27.1797 54.8618 27.1695 54.8618 27.1491 54.8618H27.1186C27.0474 54.8618 27.027 54.8309 27.027 54.7898C27.027 54.7693 27.0372 54.7076 27.0677 54.6562L27.1186 54.5226C27.1084 54.5123 27.1186 54.502 27.1186 54.502H27.8006ZM27.1695 54.3889C27.1593 54.3889 27.1593 54.3786 27.1593 54.3684L27.4443 53.5769C27.4545 53.5666 27.4545 53.5563 27.4647 53.5563C27.4647 53.5563 27.4749 53.5666 27.4749 53.5769L27.7701 54.3684C27.7701 54.3786 27.7701 54.3787 27.7599 54.3787H27.1695V54.3889Z"
47
- fill="currentColor" />
48
- <path
49
- d="M29.2364 54.2244C29.2364 54.4403 29.2364 54.6356 29.2263 54.7281C29.2161 54.8001 29.2059 54.8515 29.155 54.8515C29.1346 54.8617 29.1041 54.8617 29.0736 54.8617C29.043 54.8617 29.0329 54.8617 29.0329 54.8823C29.0329 54.9029 29.0532 54.9029 29.0838 54.9029H29.379H29.7454C29.7658 54.9029 29.7861 54.9029 29.7861 54.8823C29.7861 54.872 29.776 54.8617 29.7454 54.8617C29.7149 54.8617 29.664 54.8617 29.6334 54.8515C29.5622 54.8412 29.5418 54.7898 29.5418 54.7281C29.5316 54.6253 29.5316 54.4403 29.5316 54.2142V53.2685L29.8268 53.2788C30.0304 53.2891 30.0915 53.3507 30.1017 53.4124V53.433C30.1119 53.4638 30.1119 53.4741 30.122 53.4741C30.1322 53.4741 30.1424 53.4638 30.1424 53.4432C30.1424 53.3816 30.1526 53.2171 30.1526 53.1657C30.1526 53.1349 30.1526 53.1143 30.1322 53.1143C30.1119 53.1143 30.061 53.1349 29.9083 53.1349H28.9921C28.9107 53.1349 28.8293 53.1246 28.758 53.1246C28.6969 53.1143 28.6766 53.0938 28.6562 53.0938C28.646 53.0938 28.6359 53.104 28.6257 53.1349C28.6155 53.1554 28.585 53.3713 28.585 53.4021C28.585 53.433 28.585 53.4432 28.6053 53.4432C28.6257 53.4432 28.6257 53.433 28.6359 53.4124C28.6359 53.3918 28.6562 53.361 28.6766 53.3302C28.7173 53.2685 28.7682 53.2685 28.9005 53.2582L29.2466 53.2479V54.2244H29.2364Z"
50
- fill="currentColor" />
51
- <path
52
- d="M33.2897 54.0398C33.2897 54.0295 33.2897 54.0295 33.31 54.0295C33.3507 54.0295 33.595 54.0295 33.6561 54.0398C33.7274 54.0501 33.7681 54.0912 33.7783 54.1118C33.7884 54.1426 33.7884 54.1734 33.7884 54.194C33.7884 54.2043 33.7986 54.2248 33.8088 54.2248C33.8292 54.2248 33.8292 54.194 33.8292 54.1734C33.8292 54.1529 33.8393 54.0501 33.8393 54.009C33.8495 53.937 33.8597 53.8753 33.8597 53.8651C33.8597 53.8548 33.8597 53.8445 33.8495 53.8445C33.8292 53.8445 33.8292 53.8548 33.819 53.8651C33.7986 53.8856 33.7681 53.9062 33.7172 53.9062C33.6867 53.9165 33.6459 53.9165 33.6154 53.9165H33.3202C33.2998 53.9165 33.2998 53.9062 33.2998 53.8959V53.31C33.2998 53.2792 33.31 53.2792 33.3202 53.2792H33.6765C33.7681 53.2792 33.819 53.3203 33.8292 53.3511C33.8495 53.382 33.8495 53.4231 33.8495 53.4436C33.8495 53.4745 33.8597 53.4847 33.8699 53.4847C33.8801 53.4847 33.8902 53.4745 33.8902 53.4539C33.9004 53.4333 33.9004 53.2894 33.9004 53.2586C33.9106 53.1969 33.9208 53.1661 33.9208 53.1558C33.9208 53.1455 33.9106 53.1353 33.9106 53.1353C33.9004 53.1353 33.8902 53.1455 33.8699 53.1558C33.8495 53.1558 33.819 53.1558 33.7681 53.1661C33.7172 53.1661 33.2388 53.1661 33.1573 53.1661C33.0861 53.1661 32.9436 53.1558 32.8214 53.1558C32.7807 53.1558 32.7705 53.1558 32.7705 53.1764C32.7705 53.1866 32.7807 53.1969 32.8112 53.1969C32.8418 53.1969 32.8825 53.2072 32.9028 53.2072C32.9843 53.2278 32.9945 53.2586 33.0046 53.3408C33.0148 53.4128 33.0148 53.4745 33.0148 53.8342V54.2454C33.0148 54.4818 33.0148 54.6565 33.0046 54.7491C32.9945 54.821 32.9843 54.8724 32.9334 54.8724C32.913 54.8827 32.8825 54.8827 32.8418 54.8827C32.8112 54.8827 32.8112 54.893 32.8112 54.9032C32.8112 54.9238 32.8214 54.9238 32.8621 54.9238H33.1573H33.5136C33.5543 54.9238 33.5645 54.9238 33.5645 54.9032C33.5645 54.893 33.5543 54.8827 33.534 54.8827C33.4932 54.8827 33.4423 54.8827 33.4118 54.8724C33.3406 54.8621 33.3304 54.821 33.3202 54.7491C33.31 54.6463 33.31 54.4818 33.31 54.2454V54.0398H33.2897Z"
53
- fill="currentColor" />
54
- <path
55
- d="M34.7846 54.2248C34.7846 54.4612 34.7846 54.636 34.7745 54.7491C34.7643 54.8107 34.7541 54.8518 34.7032 54.8621C34.6828 54.8724 34.6523 54.8724 34.6218 54.8724C34.5912 54.8724 34.5811 54.8724 34.5811 54.893C34.5811 54.9135 34.6014 54.9135 34.632 54.9135H34.9272H35.2936C35.314 54.9135 35.3343 54.9135 35.3343 54.893C35.3343 54.8827 35.3242 54.8724 35.2936 54.8724C35.2529 54.8724 35.202 54.8724 35.1715 54.8621C35.1002 54.8518 35.0798 54.8107 35.0798 54.7491C35.0697 54.6463 35.0697 54.4612 35.0697 54.2248V53.8137C35.0697 53.4539 35.0697 53.3922 35.0697 53.3203C35.0697 53.2278 35.09 53.1969 35.1613 53.1867C35.1816 53.1867 35.202 53.1764 35.2325 53.1764C35.2529 53.1764 35.2733 53.1661 35.2733 53.1558C35.2733 53.1455 35.2529 53.1353 35.2224 53.1353C35.1307 53.1353 34.9984 53.1455 34.9373 53.1455C34.8763 53.1455 34.7236 53.1353 34.6421 53.1353C34.6014 53.1353 34.5912 53.1353 34.5912 53.1558C34.5912 53.1764 34.6014 53.1764 34.632 53.1764C34.6625 53.1764 34.6828 53.1867 34.7134 53.1867C34.7643 53.2072 34.7846 53.238 34.7948 53.3203C34.7948 53.3922 34.7948 53.4539 34.7948 53.8137V54.2248H34.7846Z"
56
- fill="currentColor" />
57
- <path
58
- d="M36.1789 54.2244C36.1789 54.4402 36.1789 54.6355 36.1687 54.728C36.1585 54.8 36.1483 54.8514 36.0974 54.8514C36.0771 54.8617 36.0465 54.8617 36.0058 54.8617C35.9855 54.8617 35.9651 54.8719 35.9651 54.8822C35.9651 54.9028 35.9855 54.9028 36.016 54.9028H36.3112C36.4232 54.9028 36.6369 54.9233 36.81 54.9233C37.2375 54.9233 37.4818 54.7589 37.5938 54.6458C37.7261 54.5122 37.8483 54.2758 37.8483 53.9879C37.8483 53.7104 37.7363 53.5048 37.6142 53.3918C37.3597 53.1245 36.9729 53.1245 36.6777 53.1245C36.5453 53.1245 36.3926 53.1348 36.3214 53.1348C36.2603 53.1348 36.1076 53.1245 35.9855 53.1245C35.9447 53.1245 35.9346 53.1245 35.9346 53.1451C35.9346 53.1553 35.9448 53.1656 35.9753 53.1656C35.9956 53.1656 36.0465 53.1759 36.0669 53.1759C36.1382 53.1965 36.1585 53.2273 36.1687 53.3095C36.1687 53.3815 36.1687 53.4432 36.1687 53.8029V54.2244H36.1789ZM36.4639 53.7721V53.2993C36.4639 53.2787 36.4741 53.2581 36.5046 53.2479C36.525 53.2376 36.6064 53.2273 36.6471 53.2273C36.8304 53.2273 37.1052 53.2581 37.319 53.4637C37.4106 53.5562 37.5327 53.7515 37.5327 54.0496C37.5327 54.286 37.492 54.5122 37.3393 54.6458C37.1968 54.7692 37.0441 54.8103 36.81 54.8103C36.6268 54.8103 36.5352 54.7589 36.5046 54.7178C36.4843 54.6972 36.4843 54.5944 36.4741 54.5327C36.4639 54.4916 36.4639 54.2963 36.4639 54.0599V53.7721Z"
59
- fill="currentColor" />
60
- <path
61
- d="M38.6635 54.2244C38.6635 54.4402 38.6636 54.6355 38.6534 54.728C38.6432 54.8 38.633 54.8514 38.5923 54.8514C38.5719 54.8617 38.5414 54.8617 38.5007 54.8617C38.4701 54.8617 38.46 54.8617 38.46 54.8822C38.46 54.9028 38.4803 54.9028 38.5109 54.9028H38.8061C38.9384 54.9028 39.1013 54.9131 39.4474 54.9131C39.539 54.9131 39.5593 54.9131 39.5695 54.8514C39.5797 54.8 39.6001 54.6458 39.6001 54.5841C39.6001 54.5636 39.6001 54.5327 39.5797 54.5327C39.5593 54.5327 39.5593 54.5533 39.5593 54.5738C39.539 54.6664 39.5186 54.728 39.4575 54.7486C39.3965 54.7794 39.3049 54.7794 39.2438 54.7794C39.0096 54.7794 38.9689 54.7383 38.9689 54.5841V54.2141V54.0291C38.9689 54.0188 38.9689 54.0085 38.9893 54.0085C39.0402 54.0085 39.2641 54.0085 39.315 54.0188C39.3965 54.0291 39.4372 54.0599 39.4474 54.1113C39.4575 54.1421 39.4575 54.173 39.4575 54.1935C39.4575 54.2141 39.4575 54.2141 39.4779 54.2141C39.4983 54.2141 39.4983 54.1832 39.4983 54.173C39.4983 54.1627 39.5084 54.0599 39.5084 54.0188C39.5186 53.8954 39.5288 53.8543 39.5288 53.844C39.5288 53.8235 39.5186 53.8235 39.5084 53.8235C39.4983 53.8235 39.4881 53.8338 39.4779 53.8543C39.4575 53.8749 39.427 53.8852 39.3659 53.8852C39.315 53.8954 39.0402 53.8954 38.9995 53.8954C38.9791 53.8954 38.9791 53.8852 38.9791 53.8646V53.2787C38.9791 53.2581 38.9791 53.2581 38.9995 53.2581C39.0402 53.2581 39.2845 53.2581 39.3252 53.2581C39.4372 53.2787 39.4677 53.2993 39.4779 53.3507C39.4881 53.3815 39.4983 53.4226 39.4983 53.4432C39.4983 53.4637 39.5084 53.474 39.5186 53.474C39.539 53.474 39.539 53.4637 39.5492 53.4534C39.5593 53.4226 39.5593 53.3198 39.5593 53.2993C39.5695 53.1965 39.5797 53.1656 39.5797 53.1451C39.5797 53.1348 39.5797 53.1245 39.5695 53.1245C39.5593 53.1245 39.539 53.1348 39.539 53.1348C39.5186 53.1451 39.4881 53.1451 39.4372 53.1451C39.3965 53.1451 38.9282 53.1451 38.857 53.1451C38.7959 53.1451 38.6432 53.1348 38.5312 53.1348C38.4905 53.1348 38.4803 53.1348 38.4803 53.1553C38.4803 53.1656 38.4905 53.1759 38.521 53.1759C38.5516 53.1759 38.5923 53.1862 38.6127 53.1862C38.6941 53.2067 38.7144 53.2376 38.7144 53.3198C38.7144 53.3918 38.7144 53.4534 38.7144 53.8132V54.2244H38.6635Z"
62
- fill="currentColor" />
63
- <path
64
- d="M40.7701 53.8137C40.7701 53.4539 40.7701 53.3922 40.7701 53.3203C40.7701 53.238 40.7905 53.1969 40.8516 53.1867C40.8821 53.1867 40.9228 53.1764 40.9432 53.1764C40.9737 53.1764 40.9839 53.1661 40.9839 53.1558C40.9839 53.1353 40.9737 53.1353 40.933 53.1353C40.8414 53.1353 40.6683 53.1455 40.6174 53.1455C40.5564 53.1455 40.4138 53.1353 40.3019 53.1353C40.2612 53.1353 40.251 53.1353 40.251 53.1558C40.251 53.1661 40.2612 53.1764 40.2917 53.1764C40.3222 53.1764 40.3528 53.1867 40.3731 53.1867C40.4444 53.2072 40.4647 53.238 40.4749 53.3203C40.4749 53.3922 40.4749 53.4539 40.4749 53.8137V54.2248C40.4749 54.451 40.4749 54.636 40.4647 54.7285C40.4546 54.8005 40.4444 54.8518 40.3935 54.8518C40.3731 54.8621 40.3426 54.8621 40.3019 54.8621C40.2815 54.8621 40.2713 54.8724 40.2713 54.8827C40.2713 54.9032 40.2815 54.9032 40.3222 54.9032H40.6174C40.8007 54.9032 40.9635 54.9135 41.2995 54.9135C41.4216 54.9135 41.4318 54.9032 41.4521 54.8416C41.4725 54.7799 41.4827 54.5949 41.4827 54.564C41.4827 54.5332 41.4827 54.5229 41.4623 54.5229C41.442 54.5229 41.442 54.5332 41.442 54.564C41.4318 54.6052 41.4114 54.6771 41.3809 54.7079C41.33 54.7696 41.2384 54.7696 41.106 54.7696C40.9228 54.7696 40.8719 54.7593 40.8312 54.7182C40.7905 54.6771 40.7905 54.5126 40.7905 54.2043V53.8137H40.7701Z"
65
- fill="currentColor" />
66
- <path
67
- d="M42.2265 54.2248C42.2265 54.4612 42.2265 54.636 42.2163 54.7491C42.2061 54.8107 42.1959 54.8518 42.145 54.8621C42.1247 54.8724 42.0941 54.8724 42.0534 54.8724C42.0229 54.8724 42.0127 54.8724 42.0127 54.893C42.0127 54.9135 42.0331 54.9135 42.0636 54.9135H42.3588H42.7253C42.7456 54.9135 42.766 54.9135 42.766 54.893C42.766 54.8827 42.7558 54.8724 42.7253 54.8724C42.6947 54.8724 42.6438 54.8724 42.6133 54.8621C42.542 54.8518 42.5217 54.8107 42.5217 54.7491C42.5115 54.6463 42.5115 54.4612 42.5115 54.2248V53.8137C42.5115 53.4539 42.5115 53.3922 42.5217 53.3203C42.5318 53.2278 42.542 53.1969 42.6133 53.1867C42.6438 53.1867 42.654 53.1764 42.6845 53.1764C42.7049 53.1764 42.7151 53.1661 42.7151 53.1558C42.7151 53.1455 42.6947 53.1353 42.6744 53.1353C42.5827 53.1353 42.4504 53.1455 42.3893 53.1455C42.3181 53.1455 42.1756 53.1353 42.084 53.1353C42.0534 53.1353 42.0331 53.1353 42.0331 53.1558C42.0331 53.1764 42.0432 53.1764 42.0636 53.1764C42.0941 53.1764 42.1247 53.1867 42.1552 53.1867C42.2061 53.2072 42.2366 53.238 42.2366 53.3203C42.2468 53.3922 42.2468 53.4539 42.2468 53.8137V54.2248H42.2265Z"
68
- fill="currentColor" />
69
- <path
70
- d="M43.8351 54.9439C43.9572 54.9439 44.0895 54.9234 44.2117 54.8514C44.3746 54.7486 44.4255 54.5739 44.4255 54.4403C44.4255 54.2141 44.3237 54.0599 44.0488 53.8338L43.9776 53.7824C43.7943 53.6385 43.7333 53.546 43.7333 53.4535C43.7333 53.3096 43.8351 53.2068 44.0081 53.2068C44.1608 53.2068 44.2219 53.2787 44.2524 53.3301C44.3033 53.3815 44.3135 53.4638 44.3135 53.4843C44.3135 53.5049 44.3237 53.5254 44.3338 53.5254C44.344 53.5254 44.3542 53.5049 44.3542 53.4638C44.3542 53.2685 44.3644 53.2068 44.3644 53.176C44.3644 53.1554 44.3542 53.1451 44.3338 53.1451C44.2728 53.1246 44.171 53.104 44.0285 53.104C43.7027 53.104 43.489 53.289 43.489 53.546C43.489 53.7413 43.5806 53.9058 43.8351 54.1011L43.947 54.1833C44.1404 54.3375 44.171 54.4506 44.171 54.5636C44.171 54.687 44.0692 54.8309 43.8554 54.8309C43.7129 54.8309 43.5806 54.7692 43.5297 54.5945C43.5195 54.5533 43.5093 54.5019 43.5093 54.4814C43.5093 54.4608 43.5093 54.4403 43.489 54.4403C43.4686 54.4403 43.4686 54.4711 43.4584 54.5019C43.4584 54.5431 43.4482 54.687 43.4482 54.8103C43.4482 54.8617 43.4584 54.8823 43.489 54.8926C43.5908 54.9337 43.6925 54.9439 43.8351 54.9439Z"
71
- fill="currentColor" />
72
- <path
73
- d="M36.8212 6.54027C36.8416 6.19078 36.1901 5.92353 36.0374 5.90297C35.7626 5.88241 35.4267 6.45804 35.0704 6.82808C34.7548 5.13205 34.9177 4.41252 35.1009 3.66215C35.8033 4.9573 36.7601 5.23484 37.2691 5.17316C35.559 3.79578 35.8542 2.55202 35.335 2.49035C35.0398 2.45951 34.8261 2.48007 34.6734 2.48007C34.083 2.48007 34.0015 3.64159 33.9201 4.1761C33.5333 3.44629 33.1566 2.85011 32.495 2.00723C31.8639 0.383152 31.1004 0.794312 30.3166 0.0542243C30.9274 0.979334 30.4286 1.55496 31.8435 2.23337C32.21 2.58286 32.6375 3.12764 32.9225 3.57992C32.6884 3.88829 32.5255 4.07331 32.3118 4.28917C32.1387 4.55642 32.0471 5.56376 31.5076 6.32441C32.3118 5.96465 32.6273 5.47125 32.9123 4.98814C35.4572 6.92059 33.3908 11.8751 32.8105 12.9646C32.2507 12.5843 31.5381 12.3685 30.8765 12.2554L30.8052 12.0293L30.2046 10.0762H30.4795C30.795 10.0762 30.8663 9.86038 30.8256 9.68564L32.5764 10.2304L33.3501 10.4771L32.8818 9.80899L32.0675 8.66802L32.8818 7.53733L33.3501 6.8692L32.5764 7.10561L30.9986 7.599C30.8866 7.23924 30.5914 7.0645 30.2657 7.02338L30.795 5.21428L31.019 4.44335L30.3777 4.91619L29.2579 5.73851L28.128 4.91619L27.4867 4.44335L27.7107 5.21428L28.24 7.02338C27.9143 7.07478 27.6292 7.23924 27.5071 7.599L25.9293 7.10561L25.176 6.8692L25.6443 7.53733L26.4586 8.66802L25.6443 9.80899L25.176 10.4771L25.9496 10.2304L27.7107 9.68564C27.6598 9.86038 27.7209 10.0762 28.0466 10.0762H28.3214L27.7209 12.0293L27.6598 12.2554C26.9879 12.3787 26.255 12.5946 25.685 12.9955C23.9748 9.64452 24.4533 6.25246 25.8886 5.12177C25.8682 5.83102 26.479 6.79724 26.7742 7.00282C26.5808 6.27302 26.9167 4.9573 26.5299 4.62838C26.2652 4.40224 25.8682 4.28917 25.4407 4.29945C25.7359 3.81634 26.1329 3.20988 26.8047 2.30532C27.8125 1.82221 28.1077 0.640127 28.352 0.0439453C27.2526 0.455105 26.4484 1.02045 26.2754 1.95584C25.8886 2.46979 25.461 3.08653 24.9826 3.80606C25.003 2.93234 24.5245 2.62397 23.8934 2.58286C22.0408 2.97346 22.1833 4.32001 20.6055 5.24512C21.6845 5.62544 23.3844 3.23043 23.9647 3.49769C24.0563 4.96758 23.7204 6.12911 23.7204 6.93087C23.4455 6.6225 23.303 6.40664 23.0689 6.3758C22.8449 6.33469 22.224 6.38608 21.8066 6.85892C21.6845 7.59901 21.715 8.99695 21.0228 10.6827C22.0509 9.72676 22.5396 7.85598 22.7126 7.32147C22.9773 7.68124 23.2623 8.49328 23.3234 9.18197C23.4455 10.5182 24.2599 12.7488 24.9622 13.8281C24.7688 14.1981 24.7179 14.6196 24.779 15.0924C24.2395 15.4933 24.1784 16.0586 24.3617 16.4389C24.5652 16.8501 25.0946 17.1174 25.7155 16.8809L25.9089 16.7987C26.5604 16.5314 27.7819 16.0175 29.2579 16.0175C30.734 16.0175 31.9555 16.5314 32.607 16.7987L32.8004 16.8809C33.4213 17.1276 33.9506 16.8604 34.144 16.4389C34.3375 16.0586 34.2764 15.4933 33.7369 15.0924C33.8081 14.5887 33.7369 14.1364 33.5027 13.7458L33.5231 13.7664C34.7853 11.947 34.8668 8.483 35.9153 7.48594C36.0069 8.69886 36.6482 9.7062 37.2793 9.8501C36.7907 8.96611 36.7907 7.30091 36.8212 6.54027ZM31.0393 8.15407L31.9657 7.86626L31.5076 8.49328L31.3956 8.65774L31.5178 8.8222L31.9758 9.4595L30.795 9.08946C30.8968 8.84276 30.9884 8.56523 31.0393 8.15407ZM26.5706 9.44922L27.0287 8.81193L27.1508 8.64746L27.0287 8.483L26.5706 7.85598L27.4969 8.14379C27.5478 8.55495 27.6394 8.8222 27.7412 9.0689L26.5706 9.44922ZM30.2759 9.14085H29.5328L29.6244 7.81486C30.7238 7.33175 30.622 8.35965 30.2759 9.14085ZM30.0519 11.392L29.4208 10.9294L29.2681 10.8163L29.1053 10.9294L28.4843 11.392L28.8915 10.066H29.6448L30.0519 11.392ZM29.1053 6.29357L29.2681 6.40664L29.4208 6.29357L30.0621 5.83102L29.6957 7.07478C29.6855 7.08506 29.6753 7.08506 29.6651 7.08506C29.604 6.93087 29.4412 6.82808 29.2681 6.82808C29.0951 6.82808 28.9424 6.93087 28.8813 7.08506C28.8711 7.08506 28.8508 7.08506 28.8406 7.07478L28.4741 5.83102L29.1053 6.29357ZM28.2705 9.14085C27.9143 8.35965 27.8125 7.32147 28.9118 7.81486L29.0035 9.14085H28.2705ZM29.2681 11.4947L30.1436 12.132C29.7669 12.0909 29.4514 12.0909 29.2681 12.0909C29.0747 12.0909 28.7592 12.1012 28.3927 12.132L29.2681 11.4947ZM25.6646 16.1203L25.4814 16.2025C25.2167 16.3053 25.0437 16.2231 24.9826 16.0997C24.9113 15.9661 24.9521 15.74 25.2778 15.5344C25.3185 15.5138 25.3694 15.483 25.4101 15.4624L26.0311 15.9764C25.8886 16.0278 25.7664 16.0792 25.6646 16.1203ZM27.7718 15.4419L27.1305 14.7943C27.6598 14.6607 28.2196 14.5682 28.7693 14.527L29.1561 15.2877C28.6574 15.298 28.1993 15.3596 27.7718 15.4419ZM31.3447 15.5755L30.9681 14.7018C31.5483 14.8149 32.098 14.9793 32.5764 15.1849L32.8004 16.0895C32.4339 15.9353 31.9453 15.74 31.3447 15.5755ZM29.2681 13.8384C28.0466 13.8384 26.6724 14.1364 25.6137 14.599C25.6341 14.3626 25.7155 14.157 25.858 13.972C26.4688 13.2216 28.0771 12.9544 29.2681 12.9544C30.4489 12.9544 32.0573 13.2216 32.668 13.972C32.8207 14.1467 32.9022 14.3626 32.9123 14.5887C31.8639 14.1262 30.51 13.8384 29.2681 13.8384Z"
74
- fill="currentColor" />
75
- <path
76
- d="M20.8688 34.8179C20.4006 34.8179 20.0952 34.8282 20.0952 34.8282C19.9832 36.1953 20.0341 37.439 20.2173 38.5697C20.6958 37.7679 21.1844 36.9662 21.164 36.4008C21.1335 35.8149 21.0011 35.2907 20.8688 34.8179Z"
77
- fill="currentColor" />
78
- <path
79
- d="M21.2069 34.8178C21.3392 35.2907 21.4614 35.8046 21.4817 36.3802C21.5021 37.0484 21.0135 37.8707 20.4943 38.7444C20.4333 38.8472 20.3722 38.95 20.3213 39.0528C21.8278 46.505 28.9636 48.9926 28.9636 48.9926V34.8281C28.9636 34.8281 23.5889 34.8075 21.2069 34.8178ZM26.5612 43.6783C26.205 43.7503 25.6451 43.7914 25.2685 43.7914C24.8918 43.7914 24.3218 43.7503 23.9757 43.6783C24.0164 43.5241 24.0673 43.3083 24.108 43.0924C23.8434 43.0616 23.5685 42.9691 23.3547 42.8868C23.4667 42.4962 23.6398 42.1159 23.7823 41.5917C24.2607 41.7047 24.729 41.7356 25.2685 41.7356C25.808 41.7356 26.2762 41.6945 26.7547 41.5917C26.8972 42.1159 27.0702 42.4962 27.1822 42.8868C26.9684 42.9691 26.6936 43.0616 26.4289 43.0924C26.4798 43.3083 26.5307 43.5241 26.5612 43.6783ZM23.6398 40.5741C23.9044 40.4815 24.9529 40.4199 25.2685 40.4199C25.5738 40.4199 26.6223 40.4815 26.8972 40.5741C26.9277 40.7077 26.9277 40.9133 26.9073 41.0572C26.5002 41.1805 25.7978 41.2422 25.2685 41.2422C24.7391 41.2422 24.0368 41.1805 23.6296 41.0572C23.6092 40.903 23.6092 40.7077 23.6398 40.5741ZM27.6097 37.7782C27.2127 38.7341 26.8259 39.7209 26.7139 40.019C26.5002 39.9882 26.2762 39.9676 26.0523 39.9573C26.3169 39.1247 26.6427 37.9324 26.9175 37.182C27.1008 36.6578 27.9762 36.8839 27.6097 37.7782ZM25.2685 36.3802C25.3295 35.9382 26.5714 35.856 26.3373 36.8325C26.1032 37.809 25.808 38.9603 25.584 39.947C25.4822 39.947 25.3703 39.9368 25.2685 39.9368C25.1667 39.9368 25.0547 39.947 24.9529 39.947C24.729 38.9603 24.4338 37.8193 24.1996 36.8325C23.9655 35.856 25.2074 35.9382 25.2685 36.3802ZM23.6398 37.182C23.9044 37.9324 24.2403 39.1247 24.505 39.9573C24.2709 39.9676 24.0469 39.9882 23.8434 40.019C23.7212 39.7209 23.3344 38.7341 22.9374 37.7782C22.5506 36.8839 23.4464 36.6578 23.6398 37.182Z"
80
- fill="currentColor" />
81
- <path
82
- d="M36.8006 36.2156L36.7802 35.8661H37.1365C37.6048 35.8661 37.8389 35.4036 37.9712 34.8691C36.1389 34.8588 29.5732 34.8794 29.5732 34.8794V41.7149C30.1229 41.3037 30.6421 40.9748 31.3343 40.7487V39.5666V39.2479H31.6397H32.0163C32.057 37.6033 32.4438 36.4007 33.2073 35.6092L33.4312 35.3728L33.6552 35.6092C34.4186 36.4007 34.8054 37.593 34.8462 39.2479H35.2533H35.5587V39.5666V40.8515C36.312 41.1598 36.8108 41.6429 37.1976 42.1569C37.8185 40.8823 38.2766 39.4124 38.4395 37.7061C38.4089 37.7061 38.3784 37.7164 38.3377 37.7164C37.615 37.7061 36.8617 37.1921 36.8006 36.2156Z"
83
- fill="currentColor" />
84
- <path
85
- d="M38.4387 34.8691C38.4387 34.8691 38.3776 34.8691 38.3064 34.8691C38.1435 35.6503 37.7872 36.1848 37.1357 36.1951C37.1866 36.9763 37.7669 37.3772 38.3267 37.3772C38.3674 37.3772 38.4183 37.3669 38.4591 37.3567C38.51 36.5652 38.5201 35.7531 38.4387 34.8691Z"
86
- fill="currentColor" />
87
- <path
88
- d="M33.421 41.0879C31.4361 41.0879 30.6624 41.6532 29.5732 42.4961V49.0336C29.5732 49.0336 34.2965 47.3889 36.8719 42.7839C36.2713 41.8794 35.406 41.0879 33.421 41.0879ZM35.0497 43.7296L34.4492 43.0409L33.4312 43.9557L33.8486 44.4388C33.8486 44.4388 34.2761 44.2333 34.6528 44.6753C34.3677 44.922 33.8791 45.3537 33.5839 45.6106C33.2073 45.1686 33.4719 44.778 33.4719 44.778L33.0546 44.2949L31.8127 45.4256L31.4055 44.9528L32.678 43.8735L32.2199 43.339C32.2199 43.339 32.057 43.4932 31.8025 43.709C31.4361 43.2876 31.151 42.7325 31.4157 42.0233C32.1384 41.8588 32.6474 42.2289 33.0139 42.64C32.7696 42.8559 32.5965 43.0101 32.5965 43.0101L33.0546 43.5548L34.0929 42.6709L33.5228 41.9616C34.0623 41.8999 34.5306 42.085 34.7953 42.3933C35.0599 42.7017 35.1821 43.1951 35.0497 43.7296Z"
89
- fill="currentColor" />
90
- <path
91
- d="M20.3621 31.3126C20.8608 31.7238 21.0543 32.0321 20.9016 33.4403C20.8812 33.6151 20.9728 33.944 21.0746 34.3038H38.0538C38.0742 34.1188 38.0844 33.9337 38.0844 33.7795C38.0945 33.0086 37.9622 32.4022 37.7077 32.1452C37.6263 32.063 37.5347 32.0218 37.382 32.0218C37.3718 32.0218 37.3616 32.0218 37.3616 32.0218L36.6796 32.0938L37.0461 31.5079C37.4023 30.9323 37.9113 30.6033 38.4508 30.5622V25.4741H20.1279V31.1584C20.189 31.1995 20.2603 31.2304 20.3112 31.2715L20.3621 31.3126ZM31.1522 30.6342V30.2744L30.3175 30.2641C30.5211 29.3801 32.2312 28.2495 32.9947 27.9822C32.954 27.016 34.206 26.6973 35.224 26.6665C36.476 26.6356 36.7712 27.9925 36.7712 28.4139C36.7712 28.969 36.6287 30.2127 35.9365 30.5931C34.9288 31.1481 34.0737 30.3772 34.0737 29.6885C34.0737 28.9279 34.603 28.4756 35.4988 28.5784C36.4048 28.6812 36.3335 28.1672 35.6515 27.9925C35.3156 27.9102 33.8803 27.828 33.4018 28.9073C33.127 28.9176 32.8318 28.8045 32.6587 28.6298C32.4755 28.8765 32.1803 29.0409 31.7833 29.154C32.1294 29.8735 32.842 29.7502 33.2695 29.411C33.2593 29.5035 33.2492 29.6063 33.2492 29.7193C33.2492 31.4771 35.112 31.9293 36.2622 31.2715C36.0688 31.8368 36.1605 32.5666 36.2419 33.0497H31.7324C31.8139 32.5563 32.4043 32.0116 32.9132 31.6518L32.5162 31.0145C32.0276 31.2304 31.5696 31.4257 31.0402 31.5696C29.7882 31.8985 29.8594 31.0042 31.1522 30.6342ZM27.9762 32.0732C27.8032 32.3302 26.7343 32.6591 26.4697 32.4947C26.0218 32.2171 25.7978 31.6312 25.9098 31.3743C26.0422 31.0453 27.2128 30.7164 27.5894 30.8398C27.9559 30.9734 28.1187 31.8574 27.9762 32.0732ZM21.7261 29.2671C22.7237 28.7017 23.2326 28.2803 23.762 27.4374C23.365 27.2421 22.9069 26.8926 22.5608 26.3992C24.4542 26.9337 25.411 27.2113 27.6301 26.4095C27.2637 26.9954 26.7242 27.3449 26.2661 27.6327C26.7751 28.4756 27.2739 29.4315 27.4469 30.2025C26.7751 30.1511 26.0218 30.3155 25.4823 30.8089C24.6476 30.85 23.5991 31.1173 23.0087 29.2054C22.7135 29.3596 22.4081 29.5652 22.4081 29.5652C22.744 30.8089 23.3752 31.6621 25.0344 31.4873C25.126 31.8882 25.1973 32.1144 25.4009 32.4433C24.7188 32.8442 23.0087 33.8618 21.7057 32.69V29.2671H21.7261Z"
92
- fill="currentColor" />
93
- <path
94
- d="M20.1279 31.5493V34.2938H20.7285C20.6267 33.934 20.5351 33.6154 20.5656 33.3893C20.7183 32.0119 20.5147 31.868 20.1279 31.5493Z"
95
- fill="currentColor" />
96
- <path
97
- d="M38.4391 34.2935V30.8809C38.0421 30.922 37.6349 31.1687 37.3193 31.6723C37.3499 31.6621 37.3906 31.6621 37.4211 31.6621C38.1744 31.6621 38.4289 32.7002 38.4187 33.7693C38.4187 33.944 38.4085 34.1187 38.3882 34.2935H38.4391Z"
98
- fill="currentColor" />
99
- <path
100
- d="M24.5756 29.6268C24.8911 29.781 25.2779 29.6063 25.6851 29.6577C25.6037 29.4829 25.5223 29.3493 25.5732 29.1026C25.6749 28.6092 25.2779 28.4756 25.0947 28.4961C24.6366 28.5167 24.372 28.6298 23.8936 28.4961C24.2295 28.8045 24.1379 29.411 24.5756 29.6268Z"
101
- fill="currentColor" />
102
- <path
103
- d="M20.5946 33.3685C20.7575 31.95 20.5335 31.8369 20.1263 31.4977C19.7701 31.1996 19.1898 31.1071 18.6096 30.7062C18.1923 30.4184 18.0803 29.997 17.5611 29.4316C17.6629 28.2393 18.5078 26.7694 19.1389 26.4404C19.2306 26.389 19.2 24.5388 19.2 24.5388C19.2 24.5388 19.6174 24.5183 19.5767 24.4977C19.0168 24.1482 18.3449 24.4155 17.8563 24.9911C17.3779 25.3817 16.2989 26.1115 15.5558 26.3685C14.548 25.505 12.9702 24.7547 11.8098 23.5829C11.8098 23.5829 13.3367 23.5623 14.0391 23.2745C14.2223 23.1614 14.7109 22.37 14.5175 21.6196C14.2834 21.5374 13.9373 21.3523 13.6014 21.1673C13.184 20.9206 12.7768 20.6636 12.5936 20.5197C11.9319 20.0161 11.6673 19.5741 10.517 19.2863C10.5883 18.7517 10.7002 18.8751 11.2092 18.5359C11.8505 18.0939 12.2068 17.5697 12.4714 17.0557C12.675 16.6446 12.4409 15.812 11.9218 16.8707C11.7385 17.251 11.2397 17.7444 10.6799 17.8986C10.7206 17.5697 10.7409 17.3744 10.7409 17.1996C12.4205 16.0073 12.2577 14.9485 12.1253 13.9617C12.0541 13.3861 11.484 13.1497 11.5146 13.7459C11.5248 14.1365 11.8709 15.2569 10.7308 15.9147C10.7104 15.4214 10.5679 15.1952 10.4661 14.9382C11.484 13.5814 11.0565 12.2657 10.629 11.6695C10.3541 11.2892 9.68229 11.1556 9.98768 11.762C10.232 12.2554 10.6392 13.602 9.88588 14.1468C9.62122 13.8178 9.32602 13.6945 9.22422 13.2525C9.29548 11.7723 9.20386 10.878 9.02063 10.3538C8.8374 9.8707 8.37933 9.56233 8.40987 10.2819C8.45059 11.1042 8.52184 12.1321 8.44041 12.204C8.36915 12.2657 7.29014 11.2481 6.84225 10.95C6.39435 10.6416 5.87521 10.7547 6.39435 11.3612C6.85243 11.8957 8.22664 12.9236 8.05359 13.2628C7.94162 13.4683 6.95422 12.646 6.44525 12.4713C5.9261 12.2863 5.76323 12.5741 6.20095 12.9338C6.90332 13.5197 7.37157 13.9001 8.53202 14.2907C9.68229 14.6813 10.2625 16.2951 9.89606 18.6078C9.88588 18.7209 9.68229 18.7004 9.57032 18.6592C9.51942 17.7752 9.36673 16.7165 9.15297 16.254C8.87812 15.6475 8.33862 15.6372 8.53202 16.4595C8.68471 17.1071 8.77633 17.8164 8.66436 18.7004C7.70749 18.5359 7.34104 18.2789 6.94404 18.0322C6.90332 17.5902 7.12727 16.8501 7.16799 16.1923C7.22906 15.5447 6.85243 15.1335 6.63866 15.9559C6.43507 16.7371 6.29256 17.1174 6.17041 17.6725C5.89556 17.5799 5.61054 17.4566 5.47821 17.3024C5.41713 17.2305 5.47821 16.3465 5.40695 15.7194C5.34588 14.9999 5.07103 15.0205 4.85727 15.6578C4.75547 15.9456 4.68422 16.3362 4.65368 16.809C4.31776 16.6034 4.08363 16.2026 4.0531 15.8942C4.10399 15.1438 4.22615 14.3421 4.31776 13.8487C4.37884 13.4889 4.14471 12.7694 3.85969 13.6431C3.6561 14.2701 3.6052 14.7943 3.48305 15.2363C3.23875 15.2158 2.92318 13.787 2.75014 12.8824C2.67888 12.461 2.33278 11.9882 2.2717 12.9133C2.20045 13.9309 2.41422 14.9588 2.65852 15.4214C2.16991 15.37 1.70166 14.4757 1.36574 13.9617C1.06036 13.4992 0.917847 13.9823 0.948385 14.1673C1.23341 15.9867 2.6687 16.6343 3.32018 16.7576C4.32794 18.2172 6.25184 18.8443 7.87036 19.5535C5.75305 19.533 5.20337 20.3861 4.23633 19.831C4.27704 20.6328 4.67404 21.0131 5.05068 21.1982C5.32552 21.3215 5.59018 21.3626 5.71234 21.3832C5.88538 22.3597 6.81171 22.3083 7.58534 22.3597C7.38175 24.2613 7.61588 26.7796 9.27512 28.6607C9.22422 29.6269 9.16315 30.9015 9.17333 31.7341C7.81947 33.0087 6.60812 35.671 6.12969 37.1511C5.77341 38.251 5.2339 39.1144 4.40937 39.5153C5.09139 40.2451 6.08897 39.8854 6.6692 39.4742C6.70991 40.1218 6.86261 40.5843 6.9644 40.9647C6.57758 41.5506 6.31292 41.9514 6.35364 42.671C5.91592 42.7943 5.61054 43.0616 5.37642 43.3699C5.22372 43.555 5.39677 44.439 5.56982 44.809C6.10933 46.0322 5.69198 48.787 5.59018 49.6093C5.81413 49.6196 6.23148 49.6401 6.3231 49.3009C6.45543 49.4243 6.79135 49.6607 6.94404 50.1952C6.90332 50.3905 6.77099 51.2334 7.2087 51.3464C7.56498 51.439 9.08171 51.3876 9.2853 51.1203C9.13261 50.9353 8.86794 50.5344 8.70507 50.1335C8.70507 49.7121 8.66436 49.2084 8.55238 48.9823C8.37933 48.6739 7.94162 47.9647 7.6566 47.6871C7.59552 47.1834 7.54462 44.9324 7.77875 44.0689C8.17575 43.7914 10.8529 41.7767 11.4128 39.8545C11.9014 40.019 11.7487 41.3655 11.7487 43.1027C11.7487 43.5652 12.3086 43.8017 12.6445 43.8531C13.3672 43.9456 14.4055 44.6343 15.5558 46.3714C15.7797 46.135 16.0749 45.8986 16.0749 45.8986C16.2276 46.1042 16.4007 46.6078 16.5025 46.9162C16.6246 47.1526 17.5611 47.2965 18.2737 47.0704C18.5078 46.9882 18.6503 46.947 18.803 46.6901C17.8971 45.0865 17.3474 44.0278 16.1869 43.1438C15.6474 42.7326 14.9247 42.5271 14.3241 42.1365C14.7313 41.3758 15.8408 37.7987 15.169 36.483C14.945 36.0513 14.1001 35.6196 13.072 35.8149C13.9271 34.7664 15.6678 32.7106 15.9019 32.0836C16.1055 32.3303 17.1336 32.1556 17.8971 32.4639C18.1719 32.577 18.9557 33.5946 18.9964 33.9544C19.0677 34.5814 19.0982 35.342 18.6605 37.0689C18.9659 37.0175 18.9252 36.997 19.2204 36.8736C19.2713 37.3362 19.1288 37.6959 18.7318 38.3949C18.8336 39.0219 19.1084 39.9779 19.4036 40.1629C19.7904 39.0014 21.2257 37.3362 21.185 36.3699C21.1341 35.0542 20.5233 33.9441 20.5946 33.3685Z"
104
- fill="currentColor" />
105
- <path
106
- d="M79.0031 32.1249C79.0031 32.1249 78.5858 32.3819 77.7103 32.3819C76.5804 32.3819 75.5727 31.7035 75.0331 31.3437C74.341 30.8812 73.211 30.2233 72.0811 29.8636C69.9027 29.8636 68.4776 29.2468 67.3681 27.7872C66.2585 26.3481 65.6885 24.4876 65.6885 22.3393C65.6885 19.1734 66.8795 16.6037 68.9764 15.4627C69.8315 15.0001 70.9003 14.7432 71.9895 14.7432C75.8577 14.7432 78.2498 17.6007 78.2498 22.2057C78.2498 25.4025 77.1199 27.7872 75.3793 28.9487C75.7762 29.1029 76.3463 29.4832 76.6822 29.6888C77.2014 30.0075 77.8325 30.3056 78.484 30.3056C79.1151 30.3056 79.7767 30.2028 79.7767 30.2028L79.0031 32.1249ZM74.5038 18.8959C74.2697 18.1558 73.4961 17.0354 71.9488 17.0354C70.9614 17.0354 70.1063 17.539 69.689 18.3305C69.1902 19.2865 68.9561 20.5714 68.9561 22.3496C68.9561 24.8885 69.3734 26.4715 70.2488 27.1088C70.7171 27.448 71.2973 27.6125 71.9895 27.6125C74.0152 27.6125 74.8805 26.0501 74.8805 22.3085C74.8805 20.7975 74.7583 19.7182 74.5038 18.8959Z"
107
- fill="currentColor" />
108
- <path
109
- d="M87.4947 29.9248C87.1385 29.6678 86.8433 29.3081 86.66 28.8661C85.9678 29.5445 84.9601 29.9042 83.8302 29.9042C82.3236 29.9042 81.0207 29.1847 80.6746 28.1465C80.5117 27.6531 80.4404 27.0878 80.4404 25.9879V19.0496L83.199 18.5254V25.4843C83.199 26.4505 83.2907 26.9644 83.4332 27.2625C83.5859 27.5606 83.993 27.7662 84.4206 27.7662C85.1128 27.7662 85.9475 27.2625 86.1612 26.728V19.1113L88.8384 18.5459V26.8103C88.8384 27.5298 89.0726 28.2699 89.4899 28.7735L87.4947 29.9248Z"
110
- fill="currentColor" />
111
- <path
112
- d="M94.1614 25.1043V25.1968C94.1614 26.862 94.9757 27.818 96.4212 27.818C97.3883 27.818 98.284 27.4582 99.1493 26.7387L100.238 28.4347C99.0068 29.442 97.7038 29.9354 96.1973 29.9354C93.1231 29.9354 91.1279 27.7357 91.1279 24.3334C91.1279 22.3907 91.5249 21.0955 92.4716 20.0368C93.347 19.0397 94.4159 18.5771 95.841 18.5771C97.0727 18.5771 98.2535 18.9986 98.9355 19.7181C99.9229 20.7357 100.361 22.1954 100.361 24.4567V25.1146H94.1614V25.1043ZM97.4493 22.9046C97.4493 22.1028 97.3679 21.6814 97.1134 21.2805C96.8386 20.8591 96.4416 20.6432 95.8817 20.6432C94.8129 20.6432 94.2021 21.4861 94.2021 22.9868V23.028H97.4493V22.9046Z"
113
- fill="currentColor" />
114
- <path
115
- d="M104.748 25.1043V25.1968C104.748 26.862 105.562 27.818 107.008 27.818C107.964 27.818 108.87 27.4582 109.725 26.7387L110.815 28.4347C109.583 29.442 108.28 29.9354 106.773 29.9354C103.699 29.9354 101.704 27.7357 101.704 24.3334C101.704 22.3907 102.101 21.0955 103.048 20.0368C103.933 19.0397 104.992 18.5771 106.417 18.5771C107.649 18.5771 108.83 18.9986 109.512 19.7181C110.499 20.7357 110.937 22.1954 110.937 24.4567V25.1146H104.748V25.1043ZM108.036 22.9046C108.036 22.1028 107.954 21.6814 107.7 21.2805C107.425 20.8591 107.028 20.6432 106.468 20.6432C105.399 20.6432 104.788 21.4861 104.788 22.9868V23.028H108.036V22.9046Z"
116
- fill="currentColor" />
117
- <path
118
- d="M118.623 29.6267V22.5856C118.623 21.3624 118.409 21.0026 117.676 21.0026C117.116 21.0026 116.384 21.383 115.732 21.9791V29.6267H112.923V21.7838C112.923 20.8484 112.8 19.9645 112.546 19.2449L115.04 18.5254C115.294 18.9777 115.437 19.4402 115.437 19.8822C115.854 19.5841 116.21 19.3374 116.669 19.0805C117.239 18.7824 117.972 18.6179 118.603 18.6179C119.794 18.6179 120.842 19.2552 121.178 20.1803C121.321 20.5812 121.392 21.054 121.392 21.7222V29.6267H118.623Z"
119
- fill="currentColor" />
120
- <path
121
- d="M127.488 29.966C126.164 29.966 124.719 29.5445 123.151 28.7222L124.159 26.6458C125.014 27.1804 126.5 27.869 127.722 27.869C128.516 27.869 129.147 27.3345 129.147 26.6458C129.147 25.9058 128.628 25.5254 127.498 25.3199L126.236 25.0834C125.523 24.9601 124.648 24.4461 124.271 23.9836C123.894 23.521 123.66 22.7398 123.66 22.0306C123.66 19.9234 125.32 18.5049 127.803 18.5049C129.524 18.5049 130.654 19.0291 131.631 19.5225L130.715 21.4241C129.646 20.8691 128.872 20.6429 128.078 20.6429C127.264 20.6429 126.714 21.0644 126.714 21.7017C126.714 22.2567 127.07 22.5445 128.058 22.8015L129.351 23.1407C130.674 23.4799 131.112 23.8808 131.488 24.3639C131.885 24.8676 132.079 25.4843 132.079 26.2038C132.079 28.4447 130.236 29.966 127.488 29.966Z"
122
- fill="currentColor" />
123
- <path
124
- d="M136.792 29.8841C135.601 29.8841 134.634 29.3187 134.298 28.4039C134.085 27.8488 134.044 27.5199 134.044 25.9678V17.8885C134.044 16.47 134.003 15.5962 133.901 14.63L136.772 13.9722C136.874 14.5581 136.914 15.257 136.914 16.7886V25.2277C136.914 27.0882 136.935 27.3451 137.098 27.633C137.199 27.818 137.434 27.931 137.658 27.931C137.759 27.931 137.831 27.931 137.973 27.8899L138.452 29.586C137.993 29.7813 137.403 29.8841 136.792 29.8841Z"
125
- fill="currentColor" />
126
- <path
127
- d="M147.095 30.1822C146.444 29.9046 145.864 29.4215 145.589 28.8665C145.385 29.0823 145.151 29.2879 144.947 29.4318C144.418 29.8121 143.665 30.028 142.789 30.028C140.397 30.028 139.104 28.8048 139.104 26.6462C139.104 24.1073 140.845 22.9252 144.255 22.9252C144.469 22.9252 144.652 22.9252 144.886 22.9458V22.5038C144.886 21.3011 144.652 20.9002 143.634 20.9002C142.728 20.9002 141.69 21.3422 140.53 22.1235L139.339 20.0882C139.909 19.7284 140.326 19.5229 141.079 19.1939C142.128 18.7519 143.024 18.5566 144.011 18.5566C145.813 18.5566 147.044 19.2351 147.462 20.4377C147.604 20.8797 147.676 21.2189 147.645 22.3804L147.584 26.0192C147.564 27.2013 147.645 27.7152 148.592 28.4348L147.095 30.1822ZM144.703 24.8988C142.759 24.8988 142.087 25.2585 142.087 26.5434C142.087 27.3863 142.606 27.9619 143.319 27.9619C143.838 27.9619 144.367 27.6844 144.785 27.2218L144.825 24.8988H144.703Z"
128
- fill="currentColor" />
129
- <path
130
- d="M156.234 29.6267V22.5856C156.234 21.3624 156.021 21.0026 155.288 21.0026C154.718 21.0026 153.985 21.383 153.343 21.9791V29.6267H150.534V21.7838C150.534 20.8484 150.412 19.9645 150.157 19.2449L152.651 18.5254C152.906 18.9777 153.048 19.4402 153.048 19.8822C153.466 19.5841 153.822 19.3374 154.28 19.0805C154.84 18.7824 155.583 18.6179 156.214 18.6179C157.405 18.6179 158.453 19.2552 158.789 20.1803C158.932 20.5812 159.003 21.054 159.003 21.7222V29.6267H156.234Z"
131
- fill="currentColor" />
132
- <path
133
- d="M168.369 29.627C168.287 29.4626 168.246 29.2878 168.206 28.9898C167.514 29.6065 166.699 29.8943 165.732 29.8943C163.014 29.8943 161.294 27.7563 161.294 24.395C161.294 21.0133 163.157 18.6902 165.875 18.6902C166.648 18.6902 167.259 18.8855 167.778 19.3069C167.737 19.0705 167.697 18.3304 167.697 17.7034V13.9824L170.486 14.4244V25.6696C170.486 28.3319 170.7 29.2056 170.883 29.627H168.369ZM167.737 21.6608C167.218 21.1983 166.709 20.9619 166.211 20.9619C164.959 20.9619 164.409 22.0206 164.409 24.4259C164.409 26.7489 164.887 27.5199 166.353 27.5199C166.872 27.5199 167.463 27.1601 167.737 26.8209V21.6608Z"
134
- fill="currentColor" />
135
- <path
136
- d="M72.3057 50.3289C70.5039 50.3289 68.977 49.6916 67.8878 48.5095C66.6765 47.1835 66.1064 45.3847 66.1064 42.8869C66.1064 40.1218 66.8394 38.1482 68.3256 36.8017C69.3537 35.8663 70.5854 35.4243 72.0716 35.4243C73.5985 35.4243 74.9218 35.9074 76.011 36.8634L75.2374 37.9427C74.0667 37.1409 73.232 36.8223 72.1225 36.8223C70.4429 36.8223 69.1297 37.6035 68.5393 39.2687C68.1627 40.348 67.9794 41.5712 67.9794 42.9485C67.9794 44.8502 68.3357 46.392 68.9872 47.348C69.6387 48.3039 71.1045 48.8898 72.4584 48.8898C73.3643 48.8898 74.138 48.7048 74.7386 48.3245V43.9045H71.8476L71.5117 42.4654H76.3469V49.229C75.3188 49.9074 73.7715 50.3289 72.3057 50.3289Z"
137
- fill="currentColor" />
138
- <path
139
- d="M83.6663 50.3699C80.7957 50.3699 79.167 48.2422 79.167 44.7679C79.167 41.345 80.8669 39.248 83.6052 39.248C85.3459 39.248 86.4758 40.0498 87.1884 41.088C87.8398 42.0439 88.1452 43.2877 88.1452 45.0043C88.1452 48.5094 86.2824 50.3699 83.6663 50.3699ZM85.804 41.9514C85.3662 41.016 84.4399 40.5946 83.5848 40.5946C82.6585 40.5946 81.8035 41.0366 81.4472 41.7356C81.1113 42.3934 80.9484 43.2363 80.9484 44.4801C80.9484 45.9602 81.2029 47.2759 81.5999 47.9235C81.9765 48.5608 82.8112 48.9823 83.7172 48.9823C84.8064 48.9823 85.6207 48.4169 85.977 47.3993C86.2111 46.7414 86.2926 46.1555 86.2926 45.1174C86.2824 43.6475 86.1399 42.6504 85.804 41.9514Z"
140
- fill="currentColor" />
141
- <path
142
- d="M94.6483 50.2053H93.04L89.2939 39.6591L90.9735 39.2993L93.4064 46.5563C93.7016 47.4197 93.9052 48.3551 93.9052 48.3551H93.9459C93.9459 48.3551 94.1088 47.5328 94.4447 46.5768L96.8369 39.5768H98.5775L94.6483 50.2053Z"
143
- fill="currentColor" />
144
- <path
145
- d="M101.796 45.107V45.3639C101.796 46.361 101.918 47.1217 102.284 47.6664C102.865 48.571 103.832 48.9616 104.88 48.9616C105.888 48.9616 106.702 48.6429 107.435 47.9645L108.066 49.0233C107.14 49.8661 105.888 50.3287 104.544 50.3287C101.653 50.3287 99.9229 48.2215 99.9229 44.7267C99.9229 42.9484 100.299 41.8074 101.175 40.7487C102.01 39.7516 103.038 39.2891 104.29 39.2891C105.42 39.2891 106.407 39.6899 107.12 40.43C108.015 41.3551 108.311 42.3522 108.311 44.8706V45.107H101.796ZM106.092 41.5093C105.735 40.944 105.002 40.5842 104.208 40.5842C102.722 40.5842 101.887 41.6841 101.796 43.8632H106.57C106.55 42.7222 106.407 42.0233 106.092 41.5093Z"
146
- fill="currentColor" />
147
- <path
148
- d="M115.67 41.1496C115.568 41.1085 115.375 41.0674 115.212 41.0674C114.581 41.0674 113.96 41.3347 113.471 41.828C112.993 42.3112 112.871 42.6298 112.871 43.5035V50.1026H111.242V41.9822C111.242 40.4404 110.886 39.7414 110.886 39.7414L112.514 39.2994C112.514 39.2994 112.911 40.1217 112.85 41.016C113.604 39.9367 114.713 39.2583 115.782 39.2583C116.057 39.2583 116.342 39.3611 116.342 39.3611L115.67 41.1496Z"
149
- fill="currentColor" />
150
- <path
151
- d="M123.916 50.0922V42.9689C123.916 41.8485 123.834 41.5709 123.539 41.2112C123.305 40.9439 122.867 40.7692 122.389 40.7692C121.554 40.7692 120.251 41.4476 119.498 42.2494V50.0922H117.91V41.9718C117.91 40.4711 117.513 39.7516 117.513 39.7516L119.101 39.3096C119.101 39.3096 119.477 40.0908 119.477 40.9542C120.567 39.8544 121.656 39.3301 122.765 39.3301C123.895 39.3301 124.903 39.9469 125.32 40.872C125.483 41.2523 125.575 41.6737 125.575 42.0952V50.0922H123.916Z"
152
- fill="currentColor" />
153
- <path
154
- d="M140.151 50.0923V42.3111C140.151 41.2935 139.693 40.7692 138.808 40.7692C137.861 40.7692 137.128 41.386 136.039 42.3933V50.0923H134.39V42.6092C134.39 41.9719 134.329 41.5504 134.095 41.2524C133.84 40.9543 133.504 40.8309 133.026 40.8309C132.232 40.8309 131.458 41.2318 130.369 42.2289V50.0923H128.801V41.9308C128.801 40.4095 128.425 39.6899 128.425 39.6899L130.013 39.3096C130.013 39.3096 130.389 40.1319 130.389 40.872C131.082 40.0908 132.354 39.2891 133.423 39.2891C134.451 39.2891 135.479 39.9264 135.856 41.0468C136.864 39.9675 138.136 39.2891 139.205 39.2891C140.752 39.2891 141.821 40.4711 141.821 42.1466V50.0923H140.151Z"
155
- fill="currentColor" />
156
- <path
157
- d="M146.32 45.107V45.3639C146.32 46.361 146.442 47.1217 146.798 47.6664C147.389 48.571 148.345 48.9616 149.394 48.9616C150.402 48.9616 151.216 48.6429 151.949 47.9645L152.58 49.0233C151.664 49.8661 150.402 50.3287 149.058 50.3287C146.167 50.3287 144.437 48.2215 144.437 44.7267C144.437 42.9484 144.813 41.8074 145.689 40.7487C146.523 39.7516 147.551 39.2891 148.814 39.2891C149.944 39.2891 150.931 39.6899 151.644 40.43C152.539 41.3551 152.835 42.3522 152.835 44.8706V45.107H146.32ZM150.605 41.5093C150.249 40.944 149.516 40.5842 148.722 40.5842C147.236 40.5842 146.401 41.6841 146.31 43.8632H151.084C151.073 42.7222 150.921 42.0233 150.605 41.5093Z"
158
- fill="currentColor" />
159
- <path
160
- d="M161.761 50.0922V42.9689C161.761 41.8485 161.68 41.5709 161.385 41.2112C161.15 40.9439 160.713 40.7692 160.234 40.7692C159.4 40.7692 158.097 41.4476 157.343 42.2494V50.0922H155.755V41.9718C155.755 40.4711 155.358 39.7516 155.358 39.7516L156.946 39.3096C156.946 39.3096 157.323 40.0908 157.323 40.9542C158.412 39.8544 159.501 39.3301 160.611 39.3301C161.741 39.3301 162.749 39.9469 163.166 40.872C163.329 41.2523 163.42 41.6737 163.42 42.0952V50.0922H161.761Z"
161
- fill="currentColor" />
162
- <path
163
- d="M170.447 40.8103H168.268V47.5944C168.268 48.756 168.584 49.1568 169.612 49.1568C170.07 49.1568 170.345 49.0952 170.64 48.941L170.874 49.9997C170.355 50.2772 169.765 50.4211 169.032 50.4211C168.482 50.4211 168.065 50.3184 167.668 50.1231C166.935 49.7633 166.66 49.0849 166.66 48.0261V40.8H165.296V39.5563H166.66C166.66 38.5386 166.823 36.894 166.823 36.894L168.533 36.5137C168.533 36.5137 168.329 38.1583 168.329 39.5563H170.945L170.447 40.8103Z"
164
- fill="currentColor" />
165
- </g>
166
- <defs>
167
- <clipPath id="clip0_34781_3586">
168
- <rect width="170" height="56" fill="white" transform="translate(0.944336)" />
169
- </clipPath>
170
- </defs>
171
- </svg>