@eeacms/volto-eea-design-system 0.2.1

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 (263) hide show
  1. package/.coverage.babel.config.js +13 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +50 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +50 -0
  4. package/.github/workflows/node.js.yml +59 -0
  5. package/.prettierignore +4 -0
  6. package/.project.eslintrc.js +45 -0
  7. package/.release-it.json +17 -0
  8. package/.storybook/manager.js +15 -0
  9. package/CHANGELOG.md +1025 -0
  10. package/DEVELOP.md +51 -0
  11. package/LICENSE.md +9 -0
  12. package/README.md +196 -0
  13. package/bootstrap +41 -0
  14. package/cypress.json +17 -0
  15. package/jest-addon.config.js +36 -0
  16. package/locales/volto.pot +0 -0
  17. package/mockups/README.md +1 -0
  18. package/package.json +49 -0
  19. package/razzle.extend.js +23 -0
  20. package/src/helpers/index.js +2 -0
  21. package/src/helpers/useClickOutside.js +30 -0
  22. package/src/helpers/usePrevious.js +9 -0
  23. package/src/i18n.js +180 -0
  24. package/src/index.js +6 -0
  25. package/src/semantic.less +262 -0
  26. package/src/ui/Avatar/Avatar.jsx +32 -0
  27. package/src/ui/Avatar/Avatar.stories.jsx +61 -0
  28. package/src/ui/AvatarGrid/AvatarGrid.jsx +49 -0
  29. package/src/ui/AvatarGrid/AvatarGrid.stories.jsx +66 -0
  30. package/src/ui/Banner/Banner.jsx +59 -0
  31. package/src/ui/Banner/Banner.stories.jsx +121 -0
  32. package/src/ui/Blockquote/Blockquote.jsx +16 -0
  33. package/src/ui/Blockquote/Blockquote.stories.jsx +48 -0
  34. package/src/ui/Breadcrumbs/Breadcrumb.stories.jsx +76 -0
  35. package/src/ui/Breadcrumbs/Breadcrumbs.jsx +67 -0
  36. package/src/ui/Breadcrumbs/Breadcrumbs.stories.jsx +30 -0
  37. package/src/ui/Button/Button.stories.jsx +169 -0
  38. package/src/ui/Divider/Divider.jsx +7 -0
  39. package/src/ui/Footer/Contact.jsx +28 -0
  40. package/src/ui/Footer/Footer.jsx +52 -0
  41. package/src/ui/Footer/FooterActions.jsx +22 -0
  42. package/src/ui/Footer/FooterHeader.jsx +10 -0
  43. package/src/ui/Footer/FooterSites.jsx +33 -0
  44. package/src/ui/Footer/Social.jsx +25 -0
  45. package/src/ui/Footer/SubFooter.jsx +9 -0
  46. package/src/ui/FormFieldWrapper/FormFieldWrapper.jsx +51 -0
  47. package/src/ui/Header/Header.jsx +224 -0
  48. package/src/ui/Header/HeaderMenuPopUp.js +79 -0
  49. package/src/ui/Header/HeaderSearchPopUp.js +33 -0
  50. package/src/ui/InpageNavigation/InpageNavigation.jsx +61 -0
  51. package/src/ui/InpageNavigation/InpageNavigation.stories.jsx +166 -0
  52. package/src/ui/KeyContent/KeyContent.jsx +22 -0
  53. package/src/ui/KeyContent/KeyContent.stories.jsx +62 -0
  54. package/src/ui/Loader/Loader.stories.jsx +45 -0
  55. package/src/ui/Logo/Logo.jsx +31 -0
  56. package/src/ui/Popup/Popup.stories.jsx +97 -0
  57. package/src/ui/PublicationCard/PublicationCard.jsx +27 -0
  58. package/src/ui/PublicationCard/PublicationCard.stories.jsx +69 -0
  59. package/src/ui/Pullquote/Pullquote.jsx +44 -0
  60. package/src/ui/Pullquote/Pullquote.stories.jsx +101 -0
  61. package/src/ui/RelatedContent/RelatedContent.jsx +90 -0
  62. package/src/ui/RelatedContent/RelatedContent.stories.jsx +80 -0
  63. package/src/ui/Segment/Segment.stories.jsx +163 -0
  64. package/src/ui/Tag/Tag.jsx +13 -0
  65. package/src/ui/Tag/Tag.stories.jsx +21 -0
  66. package/src/ui/TagList/TagList.jsx +23 -0
  67. package/src/ui/TagList/TagList.stories.jsx +63 -0
  68. package/src/ui/Testimonial/Testimonial.jsx +53 -0
  69. package/src/ui/Testimonial/Testimonial.stories.jsx +51 -0
  70. package/src/ui/Timeline/Timeline.jsx +44 -0
  71. package/src/ui/Timeline/Timeline.stories.jsx +322 -0
  72. package/src/ui/index.js +31 -0
  73. package/templates/eea.hbs +50 -0
  74. package/theme/theme.config +122 -0
  75. package/theme/theme.less +64 -0
  76. package/theme/themes/eea/assets/images/EEA_Logo_Vertical.png +0 -0
  77. package/theme/themes/eea/assets/images/Footer/EEALogo.png +0 -0
  78. package/theme/themes/eea/assets/images/Footer/EULogo.png +0 -0
  79. package/theme/themes/eea/assets/images/Footer/Extras/Logo1.png +0 -0
  80. package/theme/themes/eea/assets/images/Footer/Extras/Logo10.png +0 -0
  81. package/theme/themes/eea/assets/images/Footer/Extras/Logo2.png +0 -0
  82. package/theme/themes/eea/assets/images/Footer/Extras/Logo3.png +0 -0
  83. package/theme/themes/eea/assets/images/Footer/Extras/Logo4.png +0 -0
  84. package/theme/themes/eea/assets/images/Footer/Extras/Logo5.png +0 -0
  85. package/theme/themes/eea/assets/images/Footer/Extras/Logo6.png +0 -0
  86. package/theme/themes/eea/assets/images/Footer/Extras/Logo7.png +0 -0
  87. package/theme/themes/eea/assets/images/Footer/Extras/Logo8.png +0 -0
  88. package/theme/themes/eea/assets/images/Footer/Extras/Logo9.png +0 -0
  89. package/theme/themes/eea/assets/images/Footer/Extras/abstract-visual.svg +32 -0
  90. package/theme/themes/eea/assets/images/Footer/Extras/footervisual.svg +1755 -0
  91. package/theme/themes/eea/assets/images/Footer/Vector1.png +0 -0
  92. package/theme/themes/eea/assets/images/Footer/Vector2.png +0 -0
  93. package/theme/themes/eea/assets/images/Header/EeaLogo.png +0 -0
  94. package/theme/themes/eea/assets/images/Header/Vector.png +0 -0
  95. package/theme/themes/eea/assets/images/Header/close-line.svg +1 -0
  96. package/theme/themes/eea/assets/images/Header/close.png +0 -0
  97. package/theme/themes/eea/assets/images/Header/down-arrow.png +0 -0
  98. package/theme/themes/eea/assets/images/Header/eea-logo.svg +14 -0
  99. package/theme/themes/eea/assets/images/Header/eea.png +0 -0
  100. package/theme/themes/eea/assets/images/Header/eeaIcon.png +0 -0
  101. package/theme/themes/eea/assets/images/Header/global-line.svg +1 -0
  102. package/theme/themes/eea/assets/images/Header/globeIcon.png +0 -0
  103. package/theme/themes/eea/assets/images/Header/hamburgerMenuIcon.png +0 -0
  104. package/theme/themes/eea/assets/images/Header/menu-left-arrow.svg +3 -0
  105. package/theme/themes/eea/assets/images/Header/menu-line.svg +1 -0
  106. package/theme/themes/eea/assets/images/Header/search-line.svg +1 -0
  107. package/theme/themes/eea/assets/images/Header/search.png +0 -0
  108. package/theme/themes/eea/assets/images/Header/searchIcon.png +0 -0
  109. package/theme/themes/eea/assets/images/arrow-down.svg +10 -0
  110. package/theme/themes/eea/assets/images/avatar.png +0 -0
  111. package/theme/themes/eea/assets/images/banner.png +0 -0
  112. package/theme/themes/eea/assets/images/eea-logo.png +0 -0
  113. package/theme/themes/eea/assets/images/eea_icon.png +0 -0
  114. package/theme/themes/eea/assets/images/europe-flag.svg +4 -0
  115. package/theme/themes/eea/assets/images/home-icon.svg +3 -0
  116. package/theme/themes/eea/assets/images/loaderImage.png +0 -0
  117. package/theme/themes/eea/assets/images/mega-menu-arrow.svg +3 -0
  118. package/theme/themes/eea/assets/logo/EEA-Logo-White-2.svg +9 -0
  119. package/theme/themes/eea/assets/logo/EEA-Logo-white.svg +9 -0
  120. package/theme/themes/eea/assets/logo/EIONETLogo.png +0 -0
  121. package/theme/themes/eea/assets/logo/bise.svg +47 -0
  122. package/theme/themes/eea/assets/logo/cca.svg +20 -0
  123. package/theme/themes/eea/assets/logo/copernicus.svg +62 -0
  124. package/theme/themes/eea/assets/logo/energy.svg +77 -0
  125. package/theme/themes/eea/assets/logo/fise.svg +37 -0
  126. package/theme/themes/eea/assets/logo/freshwater.svg +48 -0
  127. package/theme/themes/eea/assets/logo/industry.svg +40 -0
  128. package/theme/themes/eea/assets/logo/insitu.svg +43 -0
  129. package/theme/themes/eea/assets/logo/ipchem.svg +23 -0
  130. package/theme/themes/eea/assets/logo/marine.svg +63 -0
  131. package/theme/themes/eea/collections/breadcrumb.overrides +44 -0
  132. package/theme/themes/eea/collections/breadcrumb.variables +49 -0
  133. package/theme/themes/eea/collections/form.overrides +56 -0
  134. package/theme/themes/eea/collections/form.variables +211 -0
  135. package/theme/themes/eea/collections/grid.overrides +17 -0
  136. package/theme/themes/eea/collections/grid.variables +103 -0
  137. package/theme/themes/eea/collections/menu.overrides +84 -0
  138. package/theme/themes/eea/collections/menu.variables +471 -0
  139. package/theme/themes/eea/collections/message.overrides +34 -0
  140. package/theme/themes/eea/collections/message.variables +142 -0
  141. package/theme/themes/eea/collections/table.overrides +30 -0
  142. package/theme/themes/eea/collections/table.variables +249 -0
  143. package/theme/themes/eea/definitions/elements/icon.less +499 -0
  144. package/theme/themes/eea/elements/button.overrides +199 -0
  145. package/theme/themes/eea/elements/button.variables +405 -0
  146. package/theme/themes/eea/elements/container.overrides +98 -0
  147. package/theme/themes/eea/elements/container.variables +66 -0
  148. package/theme/themes/eea/elements/divider.overrides +17 -0
  149. package/theme/themes/eea/elements/divider.variables +53 -0
  150. package/theme/themes/eea/elements/flag.overrides +1235 -0
  151. package/theme/themes/eea/elements/flag.variables +13 -0
  152. package/theme/themes/eea/elements/header.overrides +205 -0
  153. package/theme/themes/eea/elements/header.variables +151 -0
  154. package/theme/themes/eea/elements/icon.overrides +5589 -0
  155. package/theme/themes/eea/elements/icon.variables +95 -0
  156. package/theme/themes/eea/elements/image.overrides +3 -0
  157. package/theme/themes/eea/elements/image.variables +44 -0
  158. package/theme/themes/eea/elements/input.overrides +83 -0
  159. package/theme/themes/eea/elements/input.variables +104 -0
  160. package/theme/themes/eea/elements/label.overrides +49 -0
  161. package/theme/themes/eea/elements/label.variables +267 -0
  162. package/theme/themes/eea/elements/list.overrides +28 -0
  163. package/theme/themes/eea/elements/list.variables +233 -0
  164. package/theme/themes/eea/elements/loader.overrides +3 -0
  165. package/theme/themes/eea/elements/loader.variables +73 -0
  166. package/theme/themes/eea/elements/placeholder.overrides +3 -0
  167. package/theme/themes/eea/elements/placeholder.variables +55 -0
  168. package/theme/themes/eea/elements/rail.overrides +3 -0
  169. package/theme/themes/eea/elements/rail.variables +34 -0
  170. package/theme/themes/eea/elements/reveal.overrides +3 -0
  171. package/theme/themes/eea/elements/reveal.variables +18 -0
  172. package/theme/themes/eea/elements/segment.overrides +8 -0
  173. package/theme/themes/eea/elements/segment.variables +154 -0
  174. package/theme/themes/eea/elements/step.overrides +18 -0
  175. package/theme/themes/eea/elements/step.variables +130 -0
  176. package/theme/themes/eea/extras/avatar.less +97 -0
  177. package/theme/themes/eea/extras/avatar.variables +34 -0
  178. package/theme/themes/eea/extras/avatarGrid.less +43 -0
  179. package/theme/themes/eea/extras/avatarGrid.variables +20 -0
  180. package/theme/themes/eea/extras/banner.less +213 -0
  181. package/theme/themes/eea/extras/banner.variables +77 -0
  182. package/theme/themes/eea/extras/blockquote.less +89 -0
  183. package/theme/themes/eea/extras/blockquote.variables +35 -0
  184. package/theme/themes/eea/extras/custom.overrides +0 -0
  185. package/theme/themes/eea/extras/custom.variables +0 -0
  186. package/theme/themes/eea/extras/divider.less +14 -0
  187. package/theme/themes/eea/extras/divider.variables +9 -0
  188. package/theme/themes/eea/extras/footer.less +273 -0
  189. package/theme/themes/eea/extras/footer.variables +109 -0
  190. package/theme/themes/eea/extras/header.less +691 -0
  191. package/theme/themes/eea/extras/header.variables +149 -0
  192. package/theme/themes/eea/extras/inpageNavigation.less +57 -0
  193. package/theme/themes/eea/extras/inpageNavigation.variables +30 -0
  194. package/theme/themes/eea/extras/keyContent.less +36 -0
  195. package/theme/themes/eea/extras/keyContent.variables +18 -0
  196. package/theme/themes/eea/extras/main.overrides +31 -0
  197. package/theme/themes/eea/extras/main.variables +33 -0
  198. package/theme/themes/eea/extras/publicationCard.less +62 -0
  199. package/theme/themes/eea/extras/publicationCard.variables +24 -0
  200. package/theme/themes/eea/extras/pullquote.less +76 -0
  201. package/theme/themes/eea/extras/pullquote.variables +34 -0
  202. package/theme/themes/eea/extras/select.overrides +0 -0
  203. package/theme/themes/eea/extras/select.variables +0 -0
  204. package/theme/themes/eea/extras/tag.less +37 -0
  205. package/theme/themes/eea/extras/tag.variables +22 -0
  206. package/theme/themes/eea/extras/tagList.less +50 -0
  207. package/theme/themes/eea/extras/tagList.variables +13 -0
  208. package/theme/themes/eea/extras/testimonial.less +28 -0
  209. package/theme/themes/eea/extras/testimonial.variables +13 -0
  210. package/theme/themes/eea/extras/timeline.less +114 -0
  211. package/theme/themes/eea/extras/timeline.variables +40 -0
  212. package/theme/themes/eea/globals/reset.overrides +454 -0
  213. package/theme/themes/eea/globals/reset.variables +6 -0
  214. package/theme/themes/eea/globals/site.overrides +27 -0
  215. package/theme/themes/eea/globals/site.variables +1135 -0
  216. package/theme/themes/eea/modules/accordion.overrides +83 -0
  217. package/theme/themes/eea/modules/accordion.variables +114 -0
  218. package/theme/themes/eea/modules/chatroom.overrides +3 -0
  219. package/theme/themes/eea/modules/chatroom.variables +3 -0
  220. package/theme/themes/eea/modules/checkbox.overrides +67 -0
  221. package/theme/themes/eea/modules/checkbox.variables +194 -0
  222. package/theme/themes/eea/modules/dimmer.overrides +3 -0
  223. package/theme/themes/eea/modules/dimmer.variables +58 -0
  224. package/theme/themes/eea/modules/dropdown.overrides +53 -0
  225. package/theme/themes/eea/modules/dropdown.variables +390 -0
  226. package/theme/themes/eea/modules/embed.overrides +3 -0
  227. package/theme/themes/eea/modules/embed.variables +53 -0
  228. package/theme/themes/eea/modules/modal.overrides +3 -0
  229. package/theme/themes/eea/modules/modal.variables +193 -0
  230. package/theme/themes/eea/modules/nag.overrides +3 -0
  231. package/theme/themes/eea/modules/nag.variables +74 -0
  232. package/theme/themes/eea/modules/popup.overrides +83 -0
  233. package/theme/themes/eea/modules/popup.variables +153 -0
  234. package/theme/themes/eea/modules/progress.overrides +3 -0
  235. package/theme/themes/eea/modules/progress.variables +113 -0
  236. package/theme/themes/eea/modules/rating.overrides +74 -0
  237. package/theme/themes/eea/modules/rating.variables +103 -0
  238. package/theme/themes/eea/modules/search.overrides +3 -0
  239. package/theme/themes/eea/modules/search.variables +163 -0
  240. package/theme/themes/eea/modules/shape.overrides +3 -0
  241. package/theme/themes/eea/modules/shape.variables +40 -0
  242. package/theme/themes/eea/modules/sidebar.overrides +3 -0
  243. package/theme/themes/eea/modules/sidebar.variables +45 -0
  244. package/theme/themes/eea/modules/sticky.overrides +3 -0
  245. package/theme/themes/eea/modules/sticky.variables +7 -0
  246. package/theme/themes/eea/modules/tab.overrides +13 -0
  247. package/theme/themes/eea/modules/tab.variables +17 -0
  248. package/theme/themes/eea/modules/transition.overrides +1087 -0
  249. package/theme/themes/eea/modules/transition.variables +10 -0
  250. package/theme/themes/eea/modules/video.overrides +3 -0
  251. package/theme/themes/eea/modules/video.variables +16 -0
  252. package/theme/themes/eea/views/ad.overrides +3 -0
  253. package/theme/themes/eea/views/ad.variables +13 -0
  254. package/theme/themes/eea/views/card.overrides +73 -0
  255. package/theme/themes/eea/views/card.variables +237 -0
  256. package/theme/themes/eea/views/comment.overrides +3 -0
  257. package/theme/themes/eea/views/comment.variables +98 -0
  258. package/theme/themes/eea/views/feed.overrides +3 -0
  259. package/theme/themes/eea/views/feed.variables +141 -0
  260. package/theme/themes/eea/views/item.overrides +8 -0
  261. package/theme/themes/eea/views/item.variables +157 -0
  262. package/theme/themes/eea/views/statistic.overrides +19 -0
  263. package/theme/themes/eea/views/statistic.variables +105 -0
@@ -0,0 +1,1755 @@
1
+ <svg width="1366" height="900" viewBox="0 0 1366 900" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g opacity="0.4">
3
+ <path d="M1047.18 324.921C1047.58 325.109 1048.03 325.173 1048.47 325.106C1048.91 325.038 1049.32 324.842 1049.64 324.543C1049.97 324.243 1050.2 323.853 1050.31 323.422C1050.41 322.991 1050.39 322.538 1050.24 322.122C1050.08 321.705 1049.81 321.343 1049.45 321.081C1049.09 320.819 1048.67 320.669 1048.22 320.65C1047.78 320.632 1047.34 320.745 1046.96 320.976C1046.58 321.207 1046.28 321.545 1046.1 321.947C1045.85 322.486 1045.82 323.101 1046.02 323.658C1046.23 324.216 1046.64 324.67 1047.18 324.921Z" fill="white"/>
4
+ <path d="M987.504 292.156C987.888 292.337 988.316 292.399 988.736 292.335C989.155 292.272 989.546 292.085 989.859 291.798C990.172 291.512 990.393 291.139 990.494 290.726C990.594 290.314 990.57 289.881 990.424 289.483C990.278 289.085 990.017 288.738 989.674 288.489C989.332 288.239 988.922 288.096 988.498 288.08C988.074 288.063 987.655 288.173 987.293 288.395C986.932 288.617 986.644 288.942 986.468 289.327C986.233 289.84 986.21 290.425 986.404 290.955C986.598 291.485 986.993 291.916 987.504 292.156V292.156Z" fill="white"/>
5
+ <path d="M1024.06 242.022C1024.23 242.116 1024.44 242.155 1024.64 242.133C1024.84 242.111 1025.03 242.029 1025.18 241.898C1025.33 241.768 1025.45 241.594 1025.5 241.399C1025.55 241.205 1025.55 240.998 1025.48 240.807C1025.42 240.616 1025.3 240.449 1025.14 240.327C1024.98 240.205 1024.78 240.134 1024.58 240.123C1024.38 240.112 1024.18 240.162 1024.01 240.266C1023.83 240.37 1023.7 240.524 1023.61 240.707C1023.5 240.942 1023.49 241.209 1023.57 241.453C1023.65 241.698 1023.83 241.901 1024.06 242.022Z" fill="white"/>
6
+ <path d="M960.443 239.165C960.678 239.274 960.941 239.311 961.197 239.271C961.454 239.231 961.692 239.116 961.883 238.94C962.074 238.765 962.209 238.536 962.27 238.284C962.331 238.032 962.315 237.767 962.226 237.524C962.137 237.28 961.977 237.069 961.767 236.916C961.558 236.763 961.307 236.676 961.048 236.665C960.789 236.655 960.532 236.721 960.311 236.857C960.09 236.992 959.913 237.19 959.805 237.426C959.731 237.581 959.689 237.75 959.681 237.923C959.674 238.095 959.7 238.267 959.76 238.429C959.819 238.591 959.91 238.739 960.027 238.866C960.145 238.992 960.286 239.094 960.443 239.165V239.165Z" fill="white"/>
7
+ <path d="M904.797 184.543C905.029 184.653 905.289 184.692 905.544 184.656C905.798 184.62 906.036 184.509 906.229 184.339C906.421 184.168 906.559 183.945 906.625 183.697C906.692 183.448 906.684 183.186 906.602 182.942C906.521 182.698 906.37 182.484 906.167 182.325C905.965 182.167 905.72 182.071 905.464 182.05C905.208 182.03 904.951 182.085 904.726 182.209C904.501 182.333 904.317 182.52 904.198 182.748C904.117 182.905 904.069 183.076 904.055 183.252C904.042 183.428 904.064 183.604 904.12 183.772C904.175 183.939 904.264 184.093 904.38 184.226C904.497 184.358 904.639 184.466 904.797 184.543V184.543Z" fill="white"/>
8
+ <path d="M924.003 237.042C924.239 237.151 924.501 237.188 924.758 237.148C925.014 237.108 925.253 236.993 925.444 236.817C925.635 236.641 925.769 236.413 925.83 236.161C925.891 235.909 925.876 235.644 925.787 235.4C925.697 235.157 925.537 234.945 925.328 234.793C925.118 234.64 924.868 234.552 924.609 234.542C924.349 234.531 924.093 234.598 923.871 234.733C923.65 234.869 923.474 235.067 923.365 235.302C923.219 235.618 923.205 235.978 923.324 236.304C923.444 236.63 923.688 236.895 924.003 237.042Z" fill="white"/>
9
+ <path d="M974.78 228.676C975.152 228.847 975.567 228.903 975.971 228.839C976.376 228.774 976.752 228.591 977.053 228.313C977.353 228.035 977.564 227.674 977.66 227.275C977.756 226.877 977.731 226.46 977.59 226.075C977.448 225.691 977.196 225.357 976.865 225.116C976.534 224.874 976.139 224.737 975.73 224.72C975.321 224.703 974.916 224.807 974.566 225.02C974.216 225.233 973.937 225.545 973.764 225.916C973.534 226.417 973.512 226.989 973.702 227.506C973.893 228.023 974.28 228.444 974.78 228.676V228.676Z" fill="white"/>
10
+ <path d="M1000.3 260.132C1000.53 260.238 1000.79 260.273 1001.04 260.232C1001.3 260.19 1001.53 260.075 1001.72 259.901C1001.91 259.727 1002.04 259.501 1002.1 259.252C1002.16 259.002 1002.14 258.741 1002.05 258.5C1001.97 258.26 1001.81 258.051 1001.6 257.899C1001.4 257.748 1001.15 257.661 1000.89 257.65C1000.64 257.638 1000.38 257.702 1000.16 257.835C999.944 257.967 999.768 258.161 999.659 258.393C999.513 258.708 999.498 259.068 999.618 259.395C999.738 259.721 999.982 259.986 1000.3 260.132V260.132Z" fill="white"/>
11
+ <path d="M1006.72 307.591C1007.04 307.734 1007.4 307.747 1007.72 307.628C1008.05 307.508 1008.31 307.266 1008.46 306.953C1008.57 306.718 1008.61 306.455 1008.57 306.199C1008.53 305.943 1008.41 305.704 1008.24 305.513C1008.06 305.322 1007.83 305.188 1007.58 305.126C1007.33 305.065 1007.07 305.081 1006.82 305.17C1006.58 305.259 1006.37 305.419 1006.21 305.629C1006.06 305.838 1005.97 306.089 1005.96 306.348C1005.95 306.607 1006.02 306.864 1006.15 307.085C1006.29 307.306 1006.49 307.483 1006.72 307.591V307.591Z" fill="white"/>
12
+ <path d="M1002.95 342.908C1003.19 343.021 1003.47 343.032 1003.73 342.938C1003.98 342.845 1004.19 342.654 1004.3 342.408C1004.42 342.163 1004.43 341.882 1004.33 341.628C1004.24 341.374 1004.05 341.168 1003.8 341.055C1003.55 340.958 1003.27 340.965 1003.02 341.072C1002.78 341.179 1002.58 341.38 1002.48 341.63C1002.38 341.863 1002.38 342.123 1002.47 342.36C1002.55 342.597 1002.72 342.792 1002.95 342.908V342.908Z" fill="white"/>
13
+ <path d="M942.31 372.584C942.625 372.726 942.985 372.739 943.31 372.62C943.635 372.501 943.901 372.258 944.049 371.945C944.158 371.71 944.195 371.447 944.155 371.191C944.115 370.935 944 370.696 943.825 370.505C943.649 370.314 943.42 370.18 943.168 370.119C942.916 370.058 942.652 370.073 942.408 370.162C942.164 370.251 941.953 370.411 941.8 370.621C941.647 370.83 941.56 371.081 941.549 371.34C941.539 371.599 941.606 371.856 941.741 372.077C941.876 372.299 942.074 372.475 942.31 372.584V372.584Z" fill="white"/>
14
+ <path d="M875.161 317.665C875.334 317.746 875.527 317.773 875.715 317.743C875.904 317.714 876.079 317.629 876.22 317.499C876.36 317.37 876.459 317.202 876.503 317.017C876.548 316.831 876.537 316.637 876.471 316.458C876.405 316.279 876.288 316.124 876.133 316.011C875.979 315.899 875.795 315.835 875.605 315.828C875.414 315.82 875.225 315.869 875.063 315.969C874.9 316.068 874.771 316.214 874.691 316.387C874.587 316.62 874.578 316.883 874.666 317.122C874.754 317.361 874.932 317.556 875.161 317.665V317.665Z" fill="white"/>
15
+ <path d="M784.356 322.81C784.669 322.954 785.027 322.969 785.351 322.851C785.676 322.734 785.941 322.493 786.089 322.181C786.173 322.024 786.225 321.851 786.241 321.673C786.256 321.495 786.236 321.316 786.18 321.147C786.124 320.977 786.034 320.821 785.915 320.688C785.797 320.554 785.652 320.446 785.491 320.371C785.329 320.295 785.154 320.253 784.975 320.248C784.797 320.242 784.619 320.273 784.453 320.339C784.287 320.404 784.136 320.503 784.01 320.629C783.883 320.754 783.784 320.905 783.717 321.07C783.644 321.226 783.602 321.395 783.594 321.568C783.586 321.74 783.613 321.912 783.672 322.074C783.732 322.236 783.823 322.384 783.94 322.51C784.057 322.637 784.199 322.739 784.356 322.81V322.81Z" fill="white"/>
16
+ <path d="M777.84 367.087C778.151 367.212 778.498 367.213 778.81 367.09C779.121 366.967 779.374 366.729 779.516 366.426C779.658 366.122 779.679 365.776 779.574 365.458C779.469 365.14 779.246 364.874 778.951 364.715C778.794 364.631 778.621 364.579 778.443 364.563C778.265 364.548 778.086 364.569 777.917 364.625C777.747 364.681 777.591 364.771 777.458 364.889C777.324 365.008 777.216 365.152 777.141 365.314C777.065 365.475 777.023 365.651 777.018 365.829C777.012 366.007 777.043 366.185 777.109 366.351C777.174 366.517 777.273 366.668 777.399 366.795C777.524 366.921 777.675 367.02 777.84 367.087Z" fill="white"/>
17
+ <path d="M725.303 379.212C725.614 379.337 725.96 379.338 726.272 379.215C726.584 379.092 726.836 378.854 726.978 378.551C727.12 378.248 727.141 377.901 727.036 377.583C726.931 377.265 726.708 377 726.413 376.841C726.097 376.695 725.736 376.679 725.409 376.797C725.081 376.916 724.814 377.158 724.664 377.473C724.519 377.788 724.504 378.148 724.624 378.474C724.743 378.801 724.988 379.066 725.303 379.212Z" fill="white"/>
18
+ <path d="M680.582 319.487C680.898 319.629 681.257 319.642 681.583 319.523C681.908 319.404 682.173 319.161 682.322 318.848C682.403 318.691 682.451 318.519 682.463 318.343C682.476 318.167 682.453 317.99 682.396 317.823C682.338 317.655 682.247 317.502 682.129 317.37C682.011 317.239 681.867 317.133 681.706 317.059C681.546 316.985 681.372 316.944 681.196 316.938C681.019 316.933 680.843 316.963 680.678 317.027C680.514 317.092 680.364 317.189 680.238 317.312C680.111 317.436 680.012 317.584 679.944 317.747C679.801 318.063 679.788 318.422 679.908 318.747C680.027 319.073 680.269 319.338 680.582 319.487V319.487Z" fill="white"/>
19
+ <path d="M985.205 325.771C985.52 325.914 985.88 325.927 986.205 325.808C986.53 325.688 986.796 325.446 986.944 325.133C987.053 324.897 987.09 324.635 987.05 324.379C987.01 324.122 986.895 323.884 986.72 323.693C986.544 323.502 986.315 323.367 986.063 323.306C985.811 323.245 985.546 323.26 985.303 323.35C985.059 323.439 984.848 323.599 984.695 323.808C984.542 324.018 984.455 324.268 984.444 324.528C984.434 324.787 984.5 325.043 984.636 325.265C984.771 325.486 984.969 325.662 985.205 325.771V325.771Z" fill="white"/>
20
+ <path d="M1082.79 380.158C1083.03 380.268 1083.29 380.304 1083.55 380.265C1083.8 380.225 1084.04 380.109 1084.23 379.934C1084.42 379.758 1084.56 379.529 1084.62 379.277C1084.68 379.025 1084.66 378.761 1084.58 378.517C1084.49 378.273 1084.33 378.062 1084.12 377.909C1083.91 377.756 1083.66 377.669 1083.4 377.659C1083.14 377.648 1082.88 377.715 1082.66 377.85C1082.44 377.985 1082.26 378.183 1082.15 378.419C1082.01 378.735 1082 379.094 1082.12 379.419C1082.24 379.744 1082.48 380.01 1082.79 380.158V380.158Z" fill="white"/>
21
+ <path d="M1006.1 368.638C1006.26 368.712 1006.42 368.754 1006.6 368.762C1006.77 368.769 1006.94 368.743 1007.1 368.683C1007.27 368.624 1007.41 368.533 1007.54 368.416C1007.67 368.298 1007.77 368.157 1007.84 368C1007.95 367.764 1007.99 367.502 1007.95 367.246C1007.91 366.989 1007.79 366.751 1007.61 366.56C1007.44 366.369 1007.21 366.234 1006.96 366.173C1006.71 366.112 1006.44 366.127 1006.2 366.217C1005.95 366.306 1005.74 366.466 1005.59 366.675C1005.44 366.885 1005.35 367.135 1005.34 367.395C1005.33 367.654 1005.4 367.911 1005.53 368.132C1005.67 368.353 1005.86 368.529 1006.1 368.638V368.638Z" fill="white"/>
22
+ <path d="M928.905 340.486C929.218 340.615 929.569 340.619 929.884 340.496C930.199 340.373 930.455 340.132 930.597 339.825C930.739 339.518 930.757 339.168 930.647 338.848C930.537 338.528 930.307 338.262 930.006 338.108C929.849 338.027 929.677 337.979 929.501 337.966C929.325 337.953 929.148 337.977 928.981 338.034C928.813 338.091 928.66 338.182 928.529 338.3C928.397 338.419 928.291 338.563 928.217 338.723C928.143 338.883 928.102 339.057 928.096 339.234C928.091 339.41 928.121 339.586 928.185 339.751C928.25 339.916 928.347 340.066 928.47 340.192C928.594 340.318 928.742 340.418 928.905 340.486Z" fill="white"/>
23
+ <path d="M949.509 298.11C949.744 298.219 950.007 298.256 950.263 298.216C950.519 298.176 950.758 298.061 950.949 297.885C951.14 297.71 951.274 297.481 951.335 297.229C951.396 296.977 951.381 296.712 951.292 296.469C951.203 296.225 951.043 296.014 950.833 295.861C950.624 295.708 950.373 295.621 950.114 295.61C949.855 295.6 949.598 295.666 949.377 295.802C949.155 295.937 948.979 296.135 948.87 296.37C948.725 296.686 948.71 297.046 948.83 297.372C948.949 297.698 949.194 297.964 949.509 298.11V298.11Z" fill="white"/>
24
+ <path d="M965.746 268.362C965.98 268.474 966.243 268.513 966.5 268.474C966.758 268.436 966.998 268.322 967.19 268.147C967.382 267.972 967.518 267.744 967.581 267.492C967.643 267.24 967.629 266.974 967.54 266.73C967.451 266.485 967.292 266.273 967.082 266.119C966.872 265.966 966.622 265.878 966.362 265.867C966.102 265.856 965.845 265.923 965.623 266.059C965.402 266.194 965.225 266.393 965.116 266.629C965.042 266.784 964.999 266.952 964.99 267.123C964.982 267.295 965.008 267.467 965.066 267.628C965.125 267.79 965.215 267.938 965.332 268.064C965.448 268.19 965.589 268.291 965.746 268.362Z" fill="white"/>
25
+ <path d="M920.437 271.42C920.902 271.634 921.42 271.707 921.925 271.627C922.431 271.548 922.902 271.32 923.278 270.973C923.654 270.626 923.919 270.175 924.04 269.678C924.16 269.18 924.13 268.658 923.954 268.178C923.778 267.697 923.463 267.28 923.049 266.978C922.636 266.676 922.142 266.504 921.631 266.483C921.12 266.461 920.613 266.592 920.176 266.858C919.739 267.124 919.391 267.514 919.175 267.979C918.888 268.603 918.86 269.315 919.097 269.959C919.333 270.604 919.815 271.129 920.437 271.42V271.42Z" fill="white"/>
26
+ <path d="M878.02 227.662C878.255 227.773 878.518 227.812 878.775 227.774C879.032 227.736 879.272 227.622 879.464 227.447C879.657 227.272 879.793 227.044 879.855 226.792C879.917 226.539 879.903 226.274 879.814 226.03C879.726 225.785 879.566 225.573 879.357 225.419C879.147 225.265 878.896 225.178 878.636 225.167C878.377 225.156 878.119 225.223 877.898 225.359C877.676 225.494 877.499 225.693 877.391 225.929C877.246 226.242 877.231 226.6 877.349 226.925C877.467 227.249 877.708 227.514 878.02 227.662Z" fill="white"/>
27
+ <path d="M881.453 281.56C881.764 281.684 882.111 281.685 882.423 281.562C882.734 281.439 882.987 281.202 883.129 280.899C883.271 280.595 883.292 280.249 883.186 279.931C883.081 279.613 882.858 279.347 882.563 279.188C882.406 279.104 882.234 279.052 882.056 279.036C881.878 279.021 881.699 279.041 881.53 279.097C881.36 279.153 881.204 279.243 881.071 279.362C880.937 279.48 880.829 279.625 880.754 279.786C880.678 279.948 880.636 280.123 880.631 280.302C880.625 280.48 880.656 280.658 880.721 280.824C880.787 280.99 880.886 281.141 881.011 281.267C881.137 281.394 881.288 281.493 881.453 281.56V281.56Z" fill="white"/>
28
+ <path d="M915.875 311.105C916.19 311.25 916.55 311.265 916.876 311.145C917.203 311.025 917.468 310.781 917.614 310.466C917.688 310.31 917.73 310.141 917.738 309.969C917.745 309.797 917.719 309.624 917.659 309.463C917.6 309.301 917.509 309.152 917.392 309.026C917.274 308.899 917.133 308.798 916.976 308.726C916.663 308.597 916.312 308.593 915.997 308.717C915.682 308.84 915.426 309.08 915.284 309.387C915.142 309.694 915.124 310.044 915.234 310.365C915.344 310.685 915.574 310.95 915.875 311.105V311.105Z" fill="white"/>
29
+ <path d="M848.187 293.975C848.599 294.165 849.059 294.229 849.507 294.157C849.956 294.086 850.373 293.884 850.706 293.576C851.04 293.268 851.275 292.868 851.381 292.426C851.487 291.985 851.461 291.522 851.304 291.095C851.147 290.669 850.868 290.299 850.501 290.031C850.134 289.764 849.696 289.611 849.242 289.592C848.788 289.574 848.339 289.69 847.952 289.926C847.564 290.162 847.255 290.508 847.063 290.92C846.936 291.194 846.864 291.491 846.852 291.793C846.839 292.095 846.886 292.397 846.991 292.681C847.095 292.965 847.254 293.225 847.46 293.447C847.665 293.669 847.912 293.849 848.187 293.975Z" fill="white"/>
30
+ <path d="M800 271.675C800.235 271.784 800.498 271.821 800.754 271.781C801.011 271.741 801.249 271.626 801.44 271.45C801.631 271.275 801.766 271.046 801.827 270.794C801.888 270.542 801.873 270.277 801.783 270.034C801.694 269.79 801.534 269.579 801.325 269.426C801.115 269.273 800.865 269.186 800.605 269.175C800.346 269.165 800.089 269.231 799.868 269.367C799.647 269.502 799.471 269.7 799.362 269.935C799.288 270.091 799.246 270.26 799.238 270.433C799.231 270.605 799.257 270.777 799.317 270.939C799.376 271.101 799.467 271.249 799.584 271.376C799.702 271.502 799.843 271.604 800 271.675V271.675Z" fill="white"/>
31
+ <path d="M766.438 284.664C766.67 284.775 766.937 284.788 767.18 284.703C767.423 284.617 767.622 284.439 767.734 284.207C767.788 284.09 767.819 283.964 767.825 283.836C767.83 283.707 767.81 283.579 767.766 283.458C767.722 283.337 767.655 283.226 767.568 283.131C767.481 283.037 767.376 282.96 767.26 282.906C767.143 282.851 767.017 282.82 766.888 282.815C766.76 282.809 766.632 282.829 766.511 282.873C766.39 282.917 766.279 282.985 766.184 283.071C766.089 283.158 766.013 283.263 765.958 283.38C765.853 283.614 765.844 283.88 765.934 284.12C766.024 284.361 766.205 284.556 766.438 284.664V284.664Z" fill="white"/>
32
+ <path d="M883.406 353.655C883.87 353.866 884.398 353.884 884.875 353.707C885.352 353.53 885.74 353.171 885.953 352.709C886.167 352.246 886.188 351.718 886.012 351.24C885.835 350.762 885.477 350.374 885.014 350.16C884.552 349.947 884.024 349.926 883.546 350.102C883.068 350.278 882.68 350.637 882.466 351.099C882.255 351.563 882.236 352.092 882.412 352.57C882.588 353.049 882.945 353.438 883.406 353.655V353.655Z" fill="white"/>
33
+ <path d="M822.265 301.205C822.499 301.311 822.758 301.345 823.011 301.304C823.264 301.263 823.499 301.148 823.687 300.974C823.875 300.799 824.007 300.573 824.067 300.324C824.127 300.075 824.111 299.814 824.023 299.573C823.935 299.332 823.777 299.123 823.571 298.972C823.364 298.821 823.117 298.734 822.861 298.722C822.605 298.711 822.351 298.775 822.132 298.907C821.912 299.04 821.737 299.234 821.627 299.465C821.553 299.621 821.511 299.79 821.504 299.963C821.496 300.135 821.523 300.307 821.582 300.469C821.641 300.631 821.732 300.779 821.85 300.906C821.967 301.032 822.108 301.134 822.265 301.205Z" fill="white"/>
34
+ <path d="M1035.32 350.471C1035.55 350.581 1035.81 350.618 1036.07 350.578C1036.33 350.538 1036.57 350.422 1036.76 350.247C1036.95 350.071 1037.08 349.843 1037.14 349.59C1037.2 349.338 1037.19 349.074 1037.1 348.83C1037.01 348.587 1036.85 348.375 1036.64 348.222C1036.43 348.069 1036.18 347.982 1035.92 347.972C1035.66 347.961 1035.41 348.028 1035.18 348.163C1034.96 348.298 1034.79 348.496 1034.68 348.732C1034.53 349.047 1034.52 349.407 1034.64 349.734C1034.76 350.06 1035 350.325 1035.32 350.471V350.471Z" fill="white"/>
35
+ <path d="M541.842 469.909C542.096 470.024 542.38 470.056 542.654 470.002C542.995 469.933 543.295 469.732 543.488 469.442C543.681 469.152 543.751 468.798 543.682 468.457C543.614 468.115 543.412 467.815 543.123 467.623C542.833 467.43 542.478 467.36 542.137 467.429C541.855 467.474 541.596 467.61 541.397 467.815C541.199 468.02 541.072 468.284 541.036 468.567C541 468.85 541.056 469.137 541.197 469.386C541.338 469.634 541.555 469.83 541.816 469.945L541.842 469.909Z" fill="white"/>
36
+ <path d="M609.316 460.896C609.567 461.013 609.849 461.049 610.121 460.998C610.461 460.927 610.759 460.726 610.95 460.436C611.141 460.147 611.21 459.794 611.142 459.454C611.102 459.254 611.016 459.067 610.891 458.907C610.765 458.747 610.604 458.619 610.419 458.533C610.17 458.411 609.886 458.375 609.614 458.431C609.444 458.464 609.282 458.531 609.139 458.627C608.995 458.724 608.872 458.849 608.778 458.994C608.673 459.151 608.603 459.329 608.574 459.516C608.545 459.702 608.557 459.893 608.609 460.075C608.661 460.256 608.752 460.424 608.876 460.567C608.999 460.71 609.152 460.824 609.325 460.902L609.316 460.896Z" fill="white"/>
37
+ <path d="M609.288 521.84C609.542 521.955 609.826 521.988 610.1 521.933C610.268 521.901 610.428 521.835 610.571 521.74C610.713 521.645 610.835 521.522 610.93 521.38C611.121 521.088 611.19 520.732 611.12 520.39C611.082 520.19 610.997 520.002 610.871 519.842C610.745 519.682 610.583 519.554 610.398 519.469C610.144 519.354 609.86 519.321 609.586 519.376C609.417 519.409 609.257 519.476 609.114 519.572C608.971 519.668 608.848 519.791 608.753 519.935C608.659 520.078 608.593 520.239 608.561 520.408C608.529 520.577 608.53 520.751 608.566 520.92C608.604 521.119 608.69 521.307 608.815 521.467C608.941 521.628 609.103 521.755 609.288 521.84Z" fill="white"/>
38
+ <path d="M573.966 517.956C574.16 518.051 574.38 518.081 574.592 518.041C574.857 517.978 575.09 517.821 575.247 517.598C575.326 517.474 575.377 517.335 575.398 517.19C575.419 517.044 575.408 516.896 575.368 516.755C575.328 516.614 575.258 516.483 575.164 516.371C575.069 516.259 574.952 516.168 574.82 516.104C574.625 516.016 574.407 515.992 574.197 516.034C574.064 516.06 573.937 516.113 573.824 516.189C573.711 516.265 573.615 516.363 573.542 516.477C573.466 516.587 573.413 516.71 573.387 516.841C573.361 516.971 573.363 517.105 573.391 517.235C573.421 517.393 573.489 517.542 573.589 517.667C573.689 517.793 573.819 517.892 573.966 517.956V517.956Z" fill="white"/>
39
+ <path d="M507.14 504.78C507.389 504.902 507.673 504.938 507.946 504.882C508.287 504.811 508.587 504.609 508.781 504.319C508.973 504.027 509.042 503.672 508.972 503.329C508.929 503.131 508.841 502.946 508.716 502.786C508.591 502.627 508.432 502.498 508.25 502.408C507.995 502.296 507.712 502.264 507.438 502.315C507.096 502.385 506.795 502.588 506.602 502.878C506.499 503.036 506.431 503.214 506.403 503.4C506.374 503.586 506.387 503.776 506.439 503.957C506.491 504.138 506.581 504.306 506.703 504.449C506.826 504.592 506.978 504.707 507.149 504.786L507.14 504.78Z" fill="white"/>
40
+ <path d="M495.671 406.989C495.954 407.141 496.284 407.18 496.595 407.099C496.906 407.019 497.176 406.824 497.349 406.554C497.448 406.412 497.517 406.252 497.551 406.083C497.585 405.914 497.585 405.739 497.549 405.57C497.521 405.401 497.459 405.238 497.368 405.093C497.276 404.947 497.157 404.821 497.016 404.722C496.876 404.623 496.717 404.552 496.549 404.515C496.381 404.478 496.207 404.474 496.038 404.504C495.868 404.537 495.706 404.603 495.563 404.7C495.419 404.797 495.296 404.922 495.202 405.067C495.097 405.224 495.028 405.402 494.999 405.589C494.969 405.776 494.981 405.966 495.033 406.148C495.085 406.33 495.176 406.498 495.3 406.641C495.424 406.783 495.577 406.898 495.749 406.975L495.671 406.989Z" fill="white"/>
41
+ <path d="M662.33 486.793C662.578 486.911 662.858 486.945 663.126 486.889C663.296 486.856 663.458 486.789 663.602 486.692C663.745 486.596 663.868 486.471 663.962 486.326C664.059 486.183 664.126 486.023 664.16 485.854C664.194 485.685 664.195 485.511 664.162 485.342C664.134 485.173 664.072 485.01 663.981 484.865C663.889 484.719 663.77 484.593 663.629 484.494C663.489 484.395 663.33 484.324 663.162 484.287C662.994 484.25 662.82 484.246 662.651 484.276C662.363 484.314 662.096 484.445 661.892 484.651C661.687 484.856 661.556 485.123 661.519 485.411C661.483 485.698 661.542 485.99 661.689 486.24C661.836 486.49 662.061 486.685 662.33 486.793V486.793Z" fill="white"/>
42
+ <path d="M739.589 497.644C739.783 497.736 740.003 497.76 740.212 497.713C740.344 497.688 740.469 497.637 740.581 497.562C740.692 497.488 740.788 497.392 740.861 497.279C740.944 497.158 741 497.019 741.024 496.874C741.047 496.728 741.039 496.58 740.999 496.438C740.959 496.296 740.889 496.165 740.793 496.053C740.697 495.941 740.577 495.852 740.443 495.791C740.247 495.697 740.024 495.67 739.811 495.716C739.678 495.738 739.552 495.787 739.438 495.858C739.324 495.93 739.226 496.023 739.149 496.133C739.071 496.243 739.016 496.367 738.987 496.498C738.957 496.629 738.954 496.765 738.977 496.897C739.01 497.062 739.083 497.217 739.189 497.347C739.296 497.478 739.433 497.58 739.589 497.644V497.644Z" fill="white"/>
43
+ <path d="M692.968 466.941C693.251 467.093 693.581 467.132 693.892 467.052C694.203 466.971 694.472 466.776 694.646 466.506C694.745 466.366 694.813 466.207 694.846 466.039C694.88 465.872 694.877 465.699 694.839 465.532C694.801 465.332 694.716 465.144 694.591 464.982C694.467 464.821 694.307 464.69 694.124 464.602C693.87 464.486 693.585 464.454 693.312 464.509C693.024 464.546 692.757 464.678 692.552 464.883C692.348 465.088 692.217 465.356 692.18 465.643C692.143 465.931 692.203 466.222 692.349 466.473C692.496 466.723 692.722 466.917 692.99 467.025L692.968 466.941Z" fill="white"/>
44
+ <path d="M656.756 505.275C657.233 505.499 657.776 505.541 658.282 505.393C658.788 505.245 659.223 504.917 659.504 504.471C659.818 503.986 659.932 503.398 659.824 502.831C659.758 502.496 659.614 502.181 659.402 501.912C659.191 501.644 658.919 501.43 658.608 501.288C658.19 501.086 657.715 501.031 657.262 501.134C656.982 501.186 656.716 501.295 656.479 501.453C656.242 501.612 656.04 501.816 655.886 502.056C655.709 502.316 655.591 502.612 655.541 502.923C655.491 503.234 655.509 503.552 655.594 503.855C655.679 504.158 655.83 504.439 656.035 504.678C656.24 504.917 656.495 505.108 656.781 505.239L656.756 505.275Z" fill="white"/>
45
+ <path d="M625.574 487.45C625.856 487.586 626.179 487.613 626.479 487.527C626.78 487.441 627.039 487.248 627.207 486.983C627.311 486.827 627.38 486.65 627.409 486.465C627.438 486.279 627.427 486.089 627.376 485.909C627.325 485.728 627.235 485.56 627.113 485.418C626.991 485.275 626.84 485.16 626.669 485.082C626.419 484.959 626.136 484.923 625.863 484.98C625.576 485.017 625.309 485.149 625.104 485.354C624.899 485.559 624.768 485.826 624.732 486.114C624.695 486.402 624.755 486.693 624.901 486.943C625.048 487.193 625.273 487.388 625.542 487.496L625.574 487.45Z" fill="white"/>
46
+ <path d="M584.032 460.084C584.508 460.312 585.044 460.377 585.56 460.271C586.072 460.164 586.537 459.899 586.89 459.515C587.243 459.13 587.467 458.644 587.53 458.126C587.593 457.607 587.492 457.082 587.241 456.624C586.991 456.166 586.603 455.798 586.132 455.571C585.714 455.379 585.251 455.305 584.794 455.36C584.337 455.414 583.905 455.594 583.544 455.88C583.184 456.166 582.909 456.546 582.751 456.978C582.594 457.41 582.559 457.877 582.651 458.328C582.727 458.709 582.891 459.066 583.131 459.372C583.371 459.677 583.68 459.921 584.032 460.084Z" fill="white"/>
47
+ <path d="M566.592 428.032C566.84 428.15 567.12 428.184 567.389 428.127C567.559 428.095 567.72 428.028 567.864 427.931C568.007 427.834 568.13 427.71 568.225 427.565C568.323 427.425 568.392 427.266 568.425 427.098C568.458 426.93 568.456 426.757 568.418 426.59C568.379 426.39 568.294 426.202 568.17 426.041C568.046 425.879 567.886 425.749 567.702 425.66C567.448 425.545 567.164 425.513 566.89 425.567C566.603 425.605 566.336 425.736 566.131 425.942C565.926 426.147 565.795 426.414 565.759 426.702C565.722 426.989 565.781 427.281 565.928 427.531C566.075 427.781 566.3 427.976 566.569 428.084L566.592 428.032Z" fill="white"/>
48
+ <path d="M597.997 368.517C598.245 368.635 598.524 368.669 598.793 368.612C599.081 368.575 599.348 368.443 599.552 368.238C599.757 368.033 599.888 367.765 599.925 367.478C599.962 367.19 599.902 366.899 599.755 366.649C599.609 366.399 599.383 366.204 599.114 366.096C598.866 365.978 598.587 365.944 598.318 366C598.048 366.056 597.804 366.196 597.618 366.399C597.432 366.602 597.315 366.858 597.283 367.132C597.251 367.405 597.306 367.681 597.44 367.921C597.574 368.162 597.78 368.354 598.029 368.471L597.997 368.517Z" fill="white"/>
49
+ <path d="M684.543 372.712C684.797 372.827 685.081 372.86 685.355 372.805C685.642 372.768 685.909 372.636 686.114 372.431C686.319 372.225 686.45 371.958 686.487 371.67C686.523 371.383 686.464 371.091 686.317 370.841C686.17 370.591 685.945 370.397 685.676 370.288C685.425 370.171 685.143 370.135 684.87 370.186C684.531 370.263 684.233 370.463 684.035 370.749C683.94 370.892 683.874 371.052 683.843 371.221C683.811 371.389 683.814 371.562 683.85 371.73C683.879 371.937 683.957 372.134 684.077 372.305C684.198 372.476 684.357 372.615 684.543 372.712V372.712Z" fill="white"/>
50
+ <path d="M754.779 315.159C755.03 315.277 755.312 315.313 755.585 315.261C755.924 315.191 756.222 314.989 756.414 314.7C756.605 314.411 756.674 314.057 756.605 313.718C756.567 313.518 756.481 313.33 756.355 313.17C756.23 313.01 756.068 312.882 755.883 312.797C755.633 312.674 755.35 312.639 755.077 312.695C754.907 312.728 754.745 312.794 754.602 312.891C754.458 312.988 754.336 313.112 754.241 313.257C754.136 313.415 754.067 313.593 754.038 313.779C754.008 313.966 754.02 314.157 754.072 314.338C754.124 314.52 754.215 314.688 754.339 314.831C754.463 314.974 754.616 315.088 754.788 315.166L754.779 315.159Z" fill="white"/>
51
+ <path d="M733.831 275.588C734.081 275.711 734.365 275.747 734.637 275.69C734.807 275.658 734.969 275.591 735.112 275.494C735.256 275.398 735.379 275.273 735.473 275.128C735.578 274.971 735.648 274.793 735.677 274.606C735.706 274.419 735.694 274.229 735.642 274.047C735.59 273.865 735.499 273.697 735.375 273.554C735.252 273.411 735.098 273.297 734.926 273.22C734.678 273.101 734.398 273.068 734.129 273.124C733.96 273.152 733.797 273.214 733.652 273.306C733.506 273.397 733.38 273.517 733.281 273.657C733.182 273.798 733.111 273.956 733.074 274.124C733.037 274.292 733.033 274.466 733.063 274.635C733.101 274.846 733.192 275.043 733.326 275.21C733.46 275.376 733.634 275.506 733.831 275.588V275.588Z" fill="white"/>
52
+ <path d="M840.379 256.428C840.627 256.546 840.907 256.58 841.176 256.524C841.519 256.462 841.824 256.268 842.025 255.984C842.225 255.699 842.306 255.347 842.248 255.003C842.203 254.806 842.115 254.621 841.99 254.462C841.865 254.303 841.707 254.173 841.526 254.082C841.274 253.972 840.993 253.942 840.723 253.996C840.555 254.027 840.394 254.092 840.252 254.188C840.109 254.283 839.987 254.406 839.894 254.549C839.797 254.692 839.73 254.852 839.696 255.021C839.662 255.19 839.661 255.364 839.694 255.533C839.734 255.724 839.816 255.904 839.934 256.059C840.053 256.214 840.205 256.34 840.379 256.428V256.428Z" fill="white"/>
53
+ <path d="M772.807 469.119C773.055 469.237 773.335 469.271 773.604 469.214C773.774 469.182 773.935 469.115 774.079 469.018C774.222 468.922 774.345 468.797 774.439 468.652C774.629 468.362 774.701 468.01 774.639 467.668C774.594 467.471 774.506 467.287 774.381 467.127C774.256 466.968 774.098 466.839 773.917 466.748C773.661 466.638 773.379 466.605 773.105 466.655C772.816 466.691 772.547 466.823 772.341 467.029C772.135 467.236 772.003 467.505 771.967 467.795C771.932 468.084 771.993 468.377 772.143 468.628C772.292 468.878 772.521 469.072 772.793 469.178L772.807 469.119Z" fill="white"/>
54
+ <path d="M729.101 478.368C729.458 478.54 729.863 478.589 730.251 478.507C730.641 478.432 730.996 478.235 731.267 477.945C731.537 477.655 731.709 477.286 731.756 476.893C731.803 476.499 731.724 476.1 731.53 475.754C731.336 475.408 731.038 475.132 730.677 474.967C730.311 474.803 729.905 474.755 729.511 474.831C729.025 474.93 728.598 475.218 728.324 475.632C728.05 476.045 727.952 476.551 728.051 477.037C728.107 477.327 728.232 477.599 728.414 477.83C728.597 478.062 728.833 478.246 729.101 478.368V478.368Z" fill="white"/>
55
+ <path d="M591.259 431.329C591.447 431.413 591.656 431.436 591.857 431.395C591.982 431.374 592.101 431.329 592.208 431.262C592.315 431.195 592.407 431.107 592.48 431.004C592.553 430.901 592.604 430.785 592.631 430.661C592.659 430.538 592.661 430.411 592.639 430.287C592.615 430.137 592.555 429.995 592.462 429.875C592.37 429.755 592.249 429.659 592.11 429.598C591.923 429.512 591.713 429.489 591.511 429.533C591.387 429.555 591.268 429.602 591.163 429.671C591.057 429.741 590.967 429.831 590.897 429.936C590.825 430.042 590.775 430.162 590.75 430.288C590.725 430.414 590.725 430.544 590.751 430.669C590.78 430.811 590.841 430.943 590.929 431.058C591.017 431.172 591.13 431.265 591.259 431.329Z" fill="white"/>
56
+ <path d="M480.454 445.111C480.615 445.189 480.797 445.211 480.971 445.174C481.191 445.129 481.385 445 481.513 444.815C481.633 444.629 481.675 444.402 481.629 444.184C481.613 444.074 481.575 443.968 481.517 443.874C481.458 443.779 481.382 443.697 481.291 443.633C481.2 443.569 481.097 443.524 480.988 443.501C480.879 443.478 480.767 443.477 480.658 443.499C480.438 443.537 480.243 443.661 480.115 443.843C479.986 444.025 479.935 444.251 479.973 444.47C479.989 444.61 480.043 444.743 480.127 444.856C480.211 444.968 480.324 445.056 480.454 445.111V445.111Z" fill="white"/>
57
+ <path d="M548.538 410.207C548.955 410.404 549.425 410.461 549.877 410.37C550.437 410.254 550.928 409.922 551.243 409.446C551.559 408.969 551.673 408.387 551.561 407.827C551.497 407.493 551.354 407.179 551.144 406.912C550.934 406.645 550.664 406.432 550.354 406.29C549.934 406.106 549.468 406.054 549.018 406.143C548.573 406.232 548.167 406.46 547.859 406.794C547.551 407.127 547.356 407.55 547.303 408.001C547.249 408.452 547.34 408.908 547.562 409.305C547.784 409.701 548.126 410.017 548.538 410.207V410.207Z" fill="white"/>
58
+ <path d="M627.79 386.435C628.041 386.555 628.323 386.591 628.596 386.537C628.937 386.466 629.236 386.263 629.429 385.972C629.621 385.681 629.691 385.326 629.623 384.985C629.581 384.786 629.493 384.601 629.366 384.442C629.24 384.284 629.078 384.158 628.894 384.073C628.644 383.951 628.361 383.915 628.088 383.971C627.748 384.041 627.451 384.243 627.259 384.532C627.068 384.821 626.999 385.175 627.068 385.514C627.106 385.714 627.192 385.902 627.317 386.062C627.443 386.222 627.605 386.35 627.79 386.435Z" fill="white"/>
59
+ <path d="M656.431 350.346C656.853 350.534 657.323 350.588 657.777 350.499C658.224 350.405 658.631 350.173 658.94 349.835C659.249 349.498 659.444 349.072 659.498 348.617C659.552 348.163 659.462 347.703 659.24 347.303C659.019 346.902 658.678 346.581 658.264 346.385C657.842 346.197 657.372 346.143 656.919 346.232C656.637 346.286 656.37 346.396 656.132 346.556C655.894 346.716 655.692 346.922 655.535 347.163C655.359 347.423 655.241 347.719 655.191 348.03C655.14 348.341 655.158 348.659 655.244 348.962C655.329 349.265 655.48 349.546 655.685 349.785C655.89 350.024 656.144 350.215 656.431 350.346V350.346Z" fill="white"/>
60
+ <path d="M736.7 355.624C737.131 355.821 737.617 355.859 738.074 355.732C738.53 355.605 738.927 355.32 739.193 354.928C739.483 354.486 739.586 353.948 739.481 353.43C739.42 353.094 739.273 352.779 739.054 352.517C738.836 352.254 738.553 352.052 738.234 351.931C737.914 351.81 737.569 351.773 737.231 351.825C736.893 351.876 736.574 352.014 736.306 352.225C736.037 352.436 735.827 352.712 735.696 353.028C735.566 353.344 735.519 353.688 735.561 354.027C735.602 354.367 735.731 354.689 735.934 354.964C736.137 355.239 736.407 355.457 736.719 355.597L736.7 355.624Z" fill="white"/>
61
+ <path d="M536.098 441.376C536.353 441.491 536.637 441.523 536.91 441.469C537.252 441.409 537.555 441.217 537.755 440.934C537.955 440.65 538.034 440.3 537.976 439.958C537.948 439.788 537.886 439.626 537.795 439.48C537.703 439.335 537.584 439.209 537.443 439.11C537.303 439.01 537.144 438.94 536.976 438.903C536.808 438.865 536.634 438.862 536.465 438.892C536.296 438.922 536.135 438.987 535.993 439.082C535.85 439.177 535.728 439.301 535.636 439.446C535.444 439.737 535.375 440.093 535.445 440.436C535.473 440.632 535.547 440.82 535.66 440.983C535.774 441.147 535.924 441.281 536.098 441.376V441.376Z" fill="white"/>
62
+ <g opacity="0.3">
63
+ <path opacity="0.3" d="M457.853 416.169L459.075 468.67L430.968 468.13L431.179 468.278L459.335 482.652L461.01 554.852L460.822 555.118L461.061 554.916L552.692 582.513L552.614 582.76L552.795 582.504L605.139 557.703L601.877 592.352L601.935 592.27L655.447 563.712L671.302 574.291L699.921 549.448L752.396 547.426L787.588 575.938L838.308 539.828L838.086 539.85L776.035 546.406L726.467 526.299L629.318 546.174L608.04 528.272L610.054 506.884L610.1 506.82L610.054 506.787L588.429 463.417L598.539 414.081L645.749 404.998L665.315 384.414L727.251 393.014L760.757 370.439L783.446 407.537L858.629 397.473L858.674 397.409L858.747 397.461L858.692 397.422L942.857 324.512L1008.84 391.746L1045.86 385.107L1088.59 426.97L1088.52 426.757L1095.69 390.314L1178.64 429.618L1221.93 408.031L1284.75 456.017L1284.63 455.781L1242.66 372.511L1201.48 369.767L1187.61 344.077L1185.59 293.965L1220.44 254.807L1220.36 254.749L1165.7 246.909L1153.76 228.304L1153.79 228.249L1153.75 228.313L1080.98 234.261L1081.03 234.187L1080.98 234.252L1061.04 158.203L998.862 157.292L998.954 157.357L987.132 186.504L972.66 173.032L972.601 173.114L961.14 250.424L863.969 210.689L863.956 210.378L863.867 210.699L809.141 263.377L833.285 321.553L780.176 357.336L728.824 317.824L728.723 317.656L727.847 362.767L691.423 356.771L665.508 384.043L606.544 375.604L606.48 375.559L606.435 375.623L579.054 417.496L532.287 426.494L532.004 426.294L532.202 426.557L510.119 469.533L458.011 416.061L457.898 415.871L457.853 416.169ZM727.774 362.852L727.196 392.839L691.567 356.956L727.774 362.852ZM728.765 318.043L759.242 367.862L727.901 362.75L728.765 318.043ZM779.998 357.375L763.429 368.538L759.4 367.891L728.932 318.079L779.998 357.375ZM763.277 368.637L760.858 370.277L759.487 368.021L763.277 368.637ZM1177.48 393.578L1221.83 408.001L1178.7 429.52L1177.48 393.578ZM1177.48 393.457L1179.81 382.109L1221.52 407.772L1177.48 393.457ZM843.849 352.623L833.434 321.672L855.678 329.708L856.408 345.708L843.849 352.623ZM856.423 345.842L858.76 396.976L843.868 352.732L856.423 345.842ZM1059.81 337.054L1072.15 281.05L1108.43 323.207L1059.81 337.054ZM1072.2 280.986L1072.28 280.643L1135.15 283.845L1108.54 323.238L1072.2 280.986ZM1080.8 234.477L1072.13 280.275L1053.59 258.07L1080.8 234.477ZM1053.5 258.158L1072.09 280.426L1038.34 271.314L1053.5 258.158ZM1038.2 271.266L992.85 259.019L1017.62 215.153L1053.36 257.989L1038.2 271.266ZM1071.99 280.523L1015.59 291.049L1038.26 271.377L1071.99 280.523ZM1015.38 291.069L986.811 269.682L992.782 259.135L1038.09 271.366L1015.38 291.069ZM986.71 269.611L961.405 250.651L992.671 259.098L986.71 269.611ZM986.645 269.702L967.876 302.809L961.187 250.649L986.645 269.702ZM967.768 302.884L929.542 281.572L961.022 250.669L967.768 302.884ZM961.183 250.44L1017.42 215.244L992.65 258.933L961.183 250.44ZM1017.76 215.184L1080.68 234.287L1053.43 257.929L1017.76 215.184ZM1080.86 234.385L1106.86 258.002L1072.21 280.414L1072.14 280.369L1080.86 234.385ZM1106.96 258.089L1135.08 283.625L1072.39 280.431L1106.96 258.089ZM1107.03 257.998L1131.56 242.137L1135.13 283.527L1107.03 257.998ZM1131.67 242.109L1148.19 244.483L1135.25 283.362L1131.67 242.109ZM1135.17 283.817L1143.85 320.36L1108.61 323.137L1135.17 283.817ZM1143.88 320.476L1146.93 333.299L1108.84 323.249L1143.88 320.476ZM1146.96 333.431L1154.82 366.528L1108.78 323.34L1146.96 333.431ZM1059.62 336.893L1015.41 291.113L1071.95 280.562L1071.91 280.795L1071.99 280.853L1059.62 336.893ZM1015.15 291.053L967.865 302.843L986.648 269.718L1015.15 291.053ZM967.571 302.91L929.735 310.759L918.393 292.362L929.354 281.605L967.571 302.91ZM918.324 292.245L902.553 266.652L929.247 281.543L918.324 292.245ZM929.62 310.746L908.316 302.331L918.358 292.489L929.62 310.746ZM908.169 302.268L869.913 287.163L869.047 276.238L902.372 266.578L918.262 292.352L908.169 302.268ZM833.346 321.487L853.356 280.943L855.599 329.529L833.346 321.487ZM853.489 281.106L873.631 336.048L855.719 329.572L853.489 281.106ZM869.811 287.132L853.619 280.745L868.945 276.303L869.811 287.132ZM908.1 302.384L873.799 336.043L869.94 287.319L908.1 302.384ZM873.641 335.684L853.522 280.786L869.803 287.222L873.641 335.684ZM873.582 336.137L856.475 345.632L855.739 329.738L873.582 336.137ZM843.669 352.606L803.28 374.866L833.283 321.634L843.669 352.606ZM833.501 320.897L863.763 210.982L868.964 276.179L853.453 280.669L853.353 280.598L853.435 280.656L833.501 320.897ZM863.869 210.852L902.301 266.446L869.044 276.085L863.869 210.852ZM863.94 210.751L960.919 250.446L929.349 281.437L902.426 266.424L863.94 210.751ZM961.147 250.278L986.96 186.67L1017.49 215.062L961.147 250.278ZM1017.7 215.043L1035.43 191.711L1080.58 234.135L1017.7 215.043ZM1081.01 234.352L1131.47 242.088L1106.97 257.928L1081.01 234.352ZM1131.83 242.026L1153.58 228.455L1148.28 244.395L1131.83 242.026ZM1153.64 228.606L1155.41 245.423L1148.38 244.411L1153.64 228.606ZM1155.41 245.544L1159.06 280.269L1135.31 283.625L1148.34 244.521L1155.41 245.544ZM1159.07 280.388L1163.09 318.885L1143.98 320.394L1135.29 283.774L1159.07 280.388ZM1159.19 280.375L1184.7 276.764L1163.27 318.694L1159.19 280.375ZM1184.7 276.941L1185.38 293.882L1163.45 318.534L1184.7 276.941ZM1160.04 336.785L1147.08 333.362L1144.03 320.498L1163.1 318.988L1160.04 336.785ZM1160.02 336.909L1154.93 366.429L1147.12 333.485L1160.02 336.909ZM1179.71 382.038L1177.39 393.361L1155.28 367.004L1179.71 382.038ZM1155.23 366.828L1182.46 368.645L1179.77 381.946L1155.23 366.828ZM1177.27 393.349L1111.64 373.885L1155.03 366.814L1177.27 393.349ZM1111.37 373.804L1099.57 370.334L1108.6 323.395L1154.85 366.716L1111.37 373.804ZM1099.47 370.269L1083.03 365.39L1108.43 323.536L1099.47 370.269ZM1111.09 373.837L1098.5 375.931L1099.59 370.49L1111.09 373.837ZM1098.42 375.873L1074.24 379.898L1083.01 365.514L1099.5 370.394L1098.42 375.873ZM1098.39 376.006L1095.7 390.072L1074.35 379.935L1098.39 376.006ZM1067.86 360.958L1082.86 365.41L1074.13 379.74L1067.86 360.958ZM1074.03 379.781L1002.15 341.427L1067.74 360.889L1074.03 379.781ZM1067.81 360.813L1059.88 337.049L1108.48 323.32L1082.94 365.357L1067.81 360.813ZM1059.54 336.819L968.011 302.986L1015.31 291.185L1059.54 336.819ZM967.634 302.995L943.07 324.21L929.886 310.797L967.634 302.995ZM929.634 310.824L874.076 335.923L908.234 302.41L929.634 310.824ZM858.886 396.914L856.526 345.695L873.697 336.246L858.886 396.914ZM858.741 397.237L803.283 375.019L843.739 352.779L858.741 397.237ZM780.099 357.446L802.88 374.968L763.586 368.567L780.099 357.446ZM780.17 357.345L833.07 321.703L803.045 374.947L780.17 357.345ZM809.14 263.321L863.658 210.84L833.235 321.313L809.14 263.321ZM986.873 186.541L961.155 249.954L972.541 173.181L986.873 186.541ZM998.848 157.351L1035.32 191.618L1017.58 214.959L987.01 186.541L998.848 157.351ZM998.97 157.314L1060.72 158.21L1035.4 191.523L998.97 157.314ZM1080.64 234.037L1035.45 191.587L1060.77 158.264L1080.64 234.037ZM1081.29 234.247L1153.37 228.347L1131.57 241.95L1081.29 234.247ZM1165.46 246.822L1155.5 245.4L1153.69 228.508L1165.46 246.822ZM1184.6 276.612L1159.13 280.209L1155.48 245.515L1165.55 246.968L1184.6 276.612ZM1165.72 246.987L1220.06 254.825L1184.79 276.58L1165.72 246.987ZM1185.51 293.795L1184.82 276.783L1219.92 255.123L1185.51 293.795ZM1187.45 344.058L1160.17 336.86L1163.25 318.995L1185.4 294.103L1187.45 344.058ZM1182.5 368.478L1155.08 366.653L1160.2 336.91L1187.49 344.115L1182.5 368.478ZM1201.33 369.735L1182.58 368.536L1187.55 344.306L1201.33 369.735ZM1221.86 407.843L1179.87 382.001L1182.6 368.677L1201.41 369.924L1221.86 407.843ZM1221.99 407.94L1201.52 369.977L1242.54 372.709L1221.99 407.94ZM1284.48 455.727L1222.31 408.231L1222.43 408.315L1222.06 408.057L1242.62 372.799L1284.48 455.727ZM1095.76 390.213L1098.47 376.064L1111.34 373.961L1177.36 393.55L1178.58 429.524L1095.76 390.213ZM1088.67 426.497L1074.19 380.115L1095.61 390.287L1088.67 426.497ZM1046.24 385.058L1074.09 380.1L1088.59 426.56L1046.24 385.058ZM1046.12 384.974L1001.85 341.6L1073.9 379.989L1046.12 384.974ZM1009.1 391.563L967.933 303.096L1059.68 337.116L1067.62 360.871L1001.29 341.19L1001.49 341.332L1045.97 384.976L1009.1 391.563ZM943.12 324.451L967.768 303.117L1008.84 391.376L943.12 324.451ZM942.933 324.443L858.887 397.244L873.777 336.288L873.823 336.321L873.777 336.288L929.762 310.915L942.933 324.443ZM760.924 370.378L763.487 368.689L803.067 375.168L858.55 397.391L783.551 407.447L760.924 370.378ZM760.757 370.343L727.32 392.858L727.897 362.871L759.322 368.001L760.757 370.343ZM665.571 384.128L691.377 356.972L727.086 392.898L665.571 384.128ZM492.93 499.64L514.269 510.494L461.394 554.561L492.93 499.64ZM553.038 582.14L568.366 527.253L589.6 533.823L553.038 582.14ZM568.394 527.136L575.706 500.94L599.356 520.885L589.633 533.737L568.394 527.136ZM510.019 469.888L514.28 510.186L500.276 486.813L510.019 469.888ZM575.63 500.639L565.273 478.123L588.36 463.437L575.63 500.639ZM565.223 478.02L559.557 465.712L588.234 463.362L565.223 478.02ZM565.158 478.111L514.431 510.361L510.15 469.761L559.448 465.731L565.158 478.111ZM532.259 426.748L554.562 455.001L559.446 465.578L510.235 469.602L532.259 426.748ZM532.497 426.916L560.838 445.383L554.585 454.949L532.497 426.916ZM560.939 445.454L588.185 463.218L554.704 455.033L560.939 445.454ZM588.146 463.273L559.547 465.609L554.717 455.111L588.146 463.273ZM588.533 463.464L610.07 506.648L575.794 500.796L588.533 463.464ZM610.094 506.788L599.508 520.786L575.914 500.936L610.094 506.788ZM568.326 527.116L514.532 510.433L565.19 478.202L575.594 500.806L568.326 527.116ZM493.06 499.553L500.291 486.987L514.276 510.348L493.06 499.553ZM492.959 499.482L459.585 482.512L459.267 468.806L489.786 469.387L500.232 486.837L492.959 499.482ZM489.922 469.388L510.047 469.771L500.301 486.72L489.922 469.388ZM489.822 469.317L458.281 416.649L509.999 469.723L489.822 469.317ZM578.954 417.755L560.916 445.273L532.404 426.659L578.954 417.755ZM598.645 413.813L579.184 417.506L606.338 375.994L598.645 413.813ZM645.947 404.658L606.769 375.791L665.395 384.223L645.947 404.658ZM598.802 413.746L606.586 375.798L645.819 404.705L598.802 413.746ZM588.595 463.22L561.141 445.323L579.251 417.703L598.719 413.961L588.595 463.22ZM608.226 528.047L599.689 520.86L610.218 506.944L608.226 528.047ZM607.177 539.102L589.906 533.778L599.596 520.972L608.206 528.211L607.177 539.102ZM608.316 528.288L629.321 545.956L607.297 539.145L608.316 528.288ZM629.151 546.138L629.362 546.15L605.575 557.435L607.294 539.267L629.227 546.069L629.151 546.138ZM787.98 575.693L776.504 546.422L838.256 539.901L787.98 575.693ZM752.946 547.348L776.37 546.437L787.652 575.516L752.946 547.348ZM752.799 547.244L727.2 526.445L776.146 546.306L752.799 547.244ZM700.435 549.263L726.829 526.349L752.593 547.264L700.435 549.263ZM700.236 549.273L681.31 550.01L630.122 546.123L726.632 526.415L700.236 549.273ZM700.126 549.429L671.817 574.01L681.344 550.157L700.126 549.429ZM655.98 563.676L681.171 550.227L671.627 574.123L655.98 563.676ZM655.861 563.592L629.894 546.251L681.083 550.138L655.861 563.592ZM655.744 563.661L602.296 592.03L629.507 546.197L655.744 563.661ZM605.635 557.641L629.519 546.316L602.4 591.98L605.635 557.641ZM605.525 557.564L553.29 582.346L589.917 533.937L607.243 539.299L605.525 557.564ZM553.099 582.306L514.748 510.612L568.468 527.244L553.099 582.306ZM553.034 582.398L461.504 554.871L514.628 510.665L553.034 582.398ZM459.538 482.617L492.851 499.557L461.207 554.553L459.538 482.617ZM459.091 468.764L459.407 482.414L431.516 468.228L459.091 468.764ZM457.993 416.378L489.653 469.225L459.193 468.658L457.993 416.378Z" fill="white"/>
64
+ <path opacity="0.3" d="M1241.05 375.307C1241.59 375.634 1242.21 375.793 1242.83 375.764C1243.46 375.736 1244.07 375.521 1244.57 375.147C1245.08 374.773 1245.46 374.258 1245.67 373.666C1245.88 373.074 1245.91 372.433 1245.75 371.825C1245.6 371.216 1245.26 370.668 1244.8 370.249C1244.33 369.831 1243.74 369.562 1243.12 369.476C1242.5 369.39 1241.87 369.491 1241.3 369.767C1240.74 370.043 1240.27 370.481 1239.95 371.025C1239.53 371.738 1239.41 372.589 1239.62 373.391C1239.82 374.193 1240.34 374.882 1241.05 375.307V375.307Z" fill="white"/>
65
+ <path opacity="0.3" d="M1161.69 321.532C1162.21 321.831 1162.8 321.972 1163.39 321.937C1163.98 321.901 1164.55 321.691 1165.02 321.332C1165.5 320.974 1165.85 320.483 1166.05 319.922C1166.24 319.361 1166.26 318.755 1166.12 318.181C1165.97 317.606 1165.65 317.089 1165.21 316.694C1164.76 316.3 1164.21 316.045 1163.62 315.963C1163.04 315.881 1162.44 315.976 1161.9 316.234C1161.37 316.492 1160.92 316.903 1160.62 317.415C1160.22 318.104 1160.11 318.923 1160.31 319.694C1160.51 320.465 1161.01 321.125 1161.69 321.532Z" fill="white"/>
66
+ <path opacity="0.3" d="M1219.54 256.075C1219.86 256.263 1220.25 256.314 1220.61 256.218C1220.97 256.122 1221.28 255.887 1221.47 255.563C1221.61 255.321 1221.68 255.044 1221.66 254.766C1221.64 254.488 1221.54 254.221 1221.37 253.999C1221.2 253.778 1220.97 253.611 1220.71 253.521C1220.45 253.431 1220.16 253.421 1219.89 253.492C1219.62 253.563 1219.38 253.712 1219.19 253.921C1219.01 254.13 1218.89 254.389 1218.85 254.665C1218.81 254.941 1218.86 255.223 1218.98 255.474C1219.1 255.724 1219.3 255.934 1219.54 256.075V256.075Z" fill="white"/>
67
+ <path opacity="0.3" d="M1130.73 243.665C1131.04 243.85 1131.41 243.938 1131.77 243.917C1132.14 243.895 1132.49 243.766 1132.78 243.545C1133.07 243.324 1133.29 243.022 1133.41 242.676C1133.53 242.33 1133.55 241.956 1133.45 241.602C1133.36 241.247 1133.17 240.929 1132.89 240.686C1132.62 240.443 1132.28 240.287 1131.91 240.238C1131.55 240.188 1131.18 240.248 1130.85 240.409C1130.52 240.569 1130.25 240.824 1130.07 241.141C1129.82 241.563 1129.75 242.066 1129.88 242.539C1130 243.012 1130.31 243.417 1130.73 243.665V243.665Z" fill="white"/>
68
+ <path opacity="0.3" d="M1059.96 159.773C1060.27 159.955 1060.64 160.04 1061 160.017C1061.36 159.993 1061.71 159.863 1062 159.643C1062.29 159.422 1062.5 159.12 1062.62 158.777C1062.74 158.433 1062.75 158.062 1062.66 157.71C1062.56 157.359 1062.37 157.044 1062.1 156.803C1061.82 156.563 1061.49 156.409 1061.13 156.36C1060.77 156.312 1060.4 156.372 1060.07 156.531C1059.75 156.691 1059.47 156.944 1059.29 157.258C1059.17 157.467 1059.09 157.698 1059.06 157.937C1059.03 158.177 1059.04 158.421 1059.1 158.654C1059.17 158.888 1059.27 159.107 1059.42 159.299C1059.57 159.491 1059.75 159.652 1059.96 159.773V159.773Z" fill="white"/>
69
+ <path opacity="0.3" d="M1079.91 235.883C1080.23 236.069 1080.59 236.157 1080.96 236.135C1081.32 236.114 1081.68 235.985 1081.97 235.764C1082.26 235.543 1082.48 235.24 1082.6 234.894C1082.72 234.548 1082.73 234.174 1082.64 233.82C1082.55 233.466 1082.35 233.147 1082.08 232.905C1081.8 232.662 1081.46 232.506 1081.1 232.457C1080.74 232.407 1080.37 232.467 1080.04 232.627C1079.71 232.788 1079.44 233.043 1079.25 233.36C1079.01 233.782 1078.94 234.285 1079.06 234.758C1079.19 235.231 1079.49 235.635 1079.91 235.883V235.883Z" fill="white"/>
70
+ <path opacity="0.3" d="M1152.22 230.853C1152.72 231.143 1153.29 231.279 1153.87 231.243C1154.45 231.207 1155 231.001 1155.46 230.651C1155.92 230.301 1156.27 229.822 1156.45 229.275C1156.64 228.729 1156.66 228.138 1156.52 227.579C1156.37 227.02 1156.06 226.517 1155.63 226.134C1155.2 225.751 1154.66 225.504 1154.09 225.425C1153.51 225.347 1152.93 225.44 1152.41 225.692C1151.89 225.945 1151.46 226.346 1151.16 226.845C1150.77 227.517 1150.67 228.316 1150.86 229.067C1151.06 229.818 1151.55 230.46 1152.22 230.853V230.853Z" fill="white"/>
71
+ <path opacity="0.3" d="M1183.86 278.31C1184.17 278.495 1184.53 278.583 1184.9 278.562C1185.27 278.54 1185.62 278.411 1185.91 278.19C1186.2 277.969 1186.42 277.667 1186.54 277.321C1186.66 276.975 1186.67 276.601 1186.58 276.247C1186.49 275.892 1186.29 275.574 1186.02 275.331C1185.75 275.088 1185.41 274.932 1185.04 274.883C1184.68 274.834 1184.31 274.893 1183.98 275.054C1183.65 275.214 1183.38 275.469 1183.19 275.786C1182.95 276.209 1182.88 276.711 1183.01 277.183C1183.13 277.655 1183.44 278.06 1183.86 278.31V278.31Z" fill="white"/>
72
+ <path opacity="0.3" d="M1186.6 345.7C1186.92 345.885 1187.28 345.973 1187.65 345.952C1188.01 345.93 1188.36 345.801 1188.66 345.58C1188.95 345.359 1189.17 345.057 1189.29 344.711C1189.41 344.365 1189.42 343.991 1189.33 343.637C1189.24 343.282 1189.04 342.964 1188.77 342.721C1188.49 342.478 1188.15 342.322 1187.79 342.273C1187.43 342.224 1187.06 342.283 1186.73 342.444C1186.4 342.604 1186.13 342.859 1185.94 343.176C1185.7 343.598 1185.63 344.101 1185.75 344.574C1185.88 345.047 1186.18 345.452 1186.6 345.7V345.7Z" fill="white"/>
73
+ <path opacity="0.3" d="M1176.69 394.737C1176.94 394.879 1177.22 394.945 1177.5 394.927C1177.79 394.909 1178.06 394.808 1178.28 394.636C1178.51 394.464 1178.68 394.23 1178.77 393.962C1178.86 393.694 1178.87 393.405 1178.8 393.131C1178.73 392.857 1178.58 392.61 1178.36 392.422C1178.15 392.234 1177.89 392.113 1177.61 392.074C1177.33 392.035 1177.04 392.08 1176.79 392.204C1176.53 392.327 1176.32 392.523 1176.18 392.767C1175.98 393.097 1175.93 393.489 1176.03 393.858C1176.13 394.227 1176.36 394.543 1176.69 394.737V394.737Z" fill="white"/>
74
+ <path opacity="0.3" d="M1087.75 428.329C1088.07 428.515 1088.43 428.602 1088.8 428.581C1089.17 428.559 1089.52 428.429 1089.81 428.207C1090.1 427.985 1090.32 427.682 1090.44 427.335C1090.56 426.988 1090.57 426.614 1090.48 426.26C1090.38 425.905 1090.19 425.587 1089.91 425.345C1089.63 425.103 1089.29 424.948 1088.93 424.901C1088.57 424.853 1088.2 424.914 1087.87 425.077C1087.54 425.24 1087.27 425.496 1087.09 425.814C1086.84 426.237 1086.78 426.738 1086.9 427.209C1087.03 427.68 1087.33 428.082 1087.75 428.329V428.329Z" fill="white"/>
75
+ <path opacity="0.3" d="M1000.83 342.484C1000.98 342.575 1001.15 342.634 1001.33 342.659C1001.51 342.684 1001.68 342.673 1001.86 342.629C1002.03 342.584 1002.19 342.506 1002.33 342.399C1002.47 342.292 1002.59 342.158 1002.68 342.004C1002.77 341.851 1002.83 341.682 1002.85 341.506C1002.87 341.33 1002.86 341.152 1002.82 340.98C1002.77 340.809 1002.69 340.648 1002.59 340.507C1002.48 340.366 1002.34 340.247 1002.19 340.158C1002.04 340.069 1001.87 340.011 1001.69 339.987C1001.52 339.964 1001.34 339.975 1001.17 340.02C1001 340.065 1000.84 340.144 1000.69 340.251C1000.55 340.359 1000.43 340.493 1000.35 340.646C1000.26 340.798 1000.2 340.967 1000.17 341.142C1000.15 341.318 1000.16 341.496 1000.2 341.667C1000.25 341.838 1000.33 341.999 1000.44 342.139C1000.54 342.279 1000.68 342.397 1000.83 342.484Z" fill="white"/>
76
+ <path opacity="0.3" d="M872.835 337.764C873.151 337.947 873.515 338.033 873.88 338.01C874.245 337.987 874.595 337.856 874.885 337.634C875.176 337.412 875.394 337.109 875.512 336.763C875.631 336.417 875.644 336.044 875.55 335.69C875.457 335.337 875.26 335.019 874.986 334.777C874.712 334.535 874.372 334.38 874.01 334.331C873.648 334.282 873.279 334.342 872.95 334.503C872.622 334.663 872.348 334.918 872.165 335.234C872.042 335.444 871.962 335.676 871.93 335.917C871.897 336.158 871.913 336.403 871.975 336.638C872.037 336.873 872.145 337.093 872.293 337.286C872.44 337.48 872.625 337.642 872.835 337.764V337.764Z" fill="white"/>
77
+ <path opacity="0.3" d="M857.883 398.979C858.303 399.188 858.787 399.228 859.237 399.093C859.686 398.958 860.067 398.657 860.303 398.251C860.539 397.845 860.611 397.365 860.506 396.907C860.401 396.45 860.125 396.05 859.736 395.788C859.526 395.647 859.289 395.55 859.04 395.504C858.791 395.458 858.535 395.463 858.289 395.52C858.042 395.577 857.81 395.684 857.606 395.834C857.402 395.984 857.231 396.175 857.104 396.394C856.977 396.612 856.896 396.855 856.867 397.107C856.837 397.358 856.86 397.613 856.933 397.855C857.006 398.098 857.128 398.322 857.291 398.516C857.454 398.709 857.656 398.867 857.883 398.979V398.979Z" fill="white"/>
78
+ <path opacity="0.3" d="M782.619 409.063C782.934 409.248 783.298 409.336 783.664 409.315C784.029 409.294 784.38 409.164 784.672 408.944C784.964 408.723 785.184 408.42 785.304 408.074C785.424 407.728 785.438 407.354 785.345 407C785.252 406.646 785.056 406.327 784.782 406.084C784.508 405.842 784.168 405.686 783.805 405.636C783.443 405.587 783.073 405.646 782.744 405.807C782.415 405.968 782.142 406.223 781.957 406.539C781.712 406.962 781.643 407.465 781.767 407.938C781.891 408.41 782.197 408.815 782.619 409.063V409.063Z" fill="white"/>
79
+ <path opacity="0.3" d="M727.776 319.428C728.092 319.614 728.455 319.702 728.821 319.68C729.186 319.659 729.537 319.53 729.829 319.309C730.121 319.088 730.341 318.785 730.461 318.439C730.581 318.093 730.595 317.719 730.502 317.365C730.409 317.011 730.214 316.692 729.94 316.45C729.665 316.207 729.325 316.051 728.963 316.002C728.6 315.952 728.231 316.012 727.902 316.172C727.573 316.333 727.299 316.588 727.115 316.904C726.869 317.327 726.8 317.83 726.924 318.303C727.048 318.776 727.355 319.18 727.776 319.428V319.428Z" fill="white"/>
80
+ <path opacity="0.3" d="M997.938 158.877C998.254 159.061 998.617 159.146 998.982 159.123C999.347 159.1 999.697 158.969 999.988 158.747C1000.28 158.525 1000.5 158.222 1000.62 157.876C1000.73 157.53 1000.75 157.157 1000.65 156.804C1000.56 156.45 1000.36 156.132 1000.09 155.89C999.815 155.649 999.475 155.493 999.113 155.445C998.75 155.396 998.382 155.455 998.053 155.616C997.725 155.776 997.451 156.031 997.267 156.347C997.145 156.557 997.065 156.789 997.033 157.03C997 157.271 997.015 157.516 997.078 157.751C997.14 157.986 997.248 158.206 997.395 158.4C997.543 158.593 997.727 158.755 997.938 158.877Z" fill="white"/>
81
+ <path opacity="0.3" d="M971.88 174.237C972.184 174.41 972.543 174.457 972.881 174.367C973.219 174.277 973.509 174.057 973.686 173.756C973.862 173.453 973.91 173.092 973.82 172.753C973.73 172.414 973.509 172.125 973.205 171.949C973.055 171.857 972.888 171.797 972.713 171.77C972.539 171.744 972.361 171.753 972.191 171.796C972.02 171.839 971.859 171.917 971.719 172.023C971.578 172.129 971.46 172.262 971.372 172.415C971.283 172.567 971.226 172.736 971.204 172.911C971.182 173.086 971.195 173.263 971.242 173.433C971.289 173.603 971.37 173.762 971.48 173.9C971.589 174.038 971.725 174.153 971.88 174.237V174.237Z" fill="white"/>
82
+ <path opacity="0.3" d="M1154.05 368.342C1154.37 368.528 1154.73 368.615 1155.1 368.594C1155.46 368.573 1155.81 368.444 1156.11 368.223C1156.4 368.002 1156.62 367.699 1156.74 367.353C1156.86 367.007 1156.87 366.633 1156.78 366.279C1156.69 365.925 1156.49 365.606 1156.22 365.364C1155.94 365.121 1155.6 364.965 1155.24 364.916C1154.88 364.866 1154.51 364.926 1154.18 365.086C1153.85 365.247 1153.58 365.502 1153.39 365.818C1153.15 366.241 1153.08 366.744 1153.2 367.217C1153.32 367.69 1153.63 368.094 1154.05 368.342Z" fill="white"/>
83
+ <path opacity="0.3" d="M1283.72 457.458C1284.04 457.643 1284.4 457.731 1284.77 457.71C1285.13 457.689 1285.48 457.559 1285.78 457.338C1286.07 457.117 1286.29 456.815 1286.41 456.469C1286.53 456.123 1286.54 455.749 1286.45 455.395C1286.36 455.041 1286.16 454.722 1285.89 454.479C1285.61 454.237 1285.27 454.081 1284.91 454.031C1284.55 453.982 1284.18 454.041 1283.85 454.202C1283.52 454.363 1283.25 454.617 1283.06 454.934C1282.94 455.143 1282.85 455.374 1282.82 455.614C1282.79 455.855 1282.8 456.1 1282.86 456.335C1282.92 456.57 1283.03 456.79 1283.18 456.983C1283.33 457.176 1283.51 457.337 1283.72 457.458V457.458Z" fill="white"/>
84
+ <path opacity="0.3" d="M1177.7 431.204C1178.02 431.391 1178.38 431.481 1178.75 431.462C1179.11 431.443 1179.46 431.315 1179.76 431.095C1180.05 430.875 1180.27 430.573 1180.39 430.227C1180.51 429.881 1180.53 429.506 1180.44 429.152C1180.35 428.797 1180.15 428.477 1179.88 428.233C1179.6 427.99 1179.26 427.833 1178.9 427.783C1178.54 427.733 1178.17 427.793 1177.84 427.953C1177.51 428.114 1177.23 428.369 1177.05 428.686C1176.8 429.107 1176.74 429.608 1176.86 430.079C1176.98 430.55 1177.28 430.954 1177.7 431.204V431.204Z" fill="white"/>
85
+ <path opacity="0.3" d="M1073.16 381.582C1073.47 381.764 1073.84 381.849 1074.2 381.825C1074.56 381.802 1074.91 381.672 1075.2 381.451C1075.49 381.231 1075.7 380.929 1075.82 380.585C1075.94 380.242 1075.95 379.87 1075.86 379.519C1075.76 379.168 1075.57 378.852 1075.3 378.612C1075.02 378.372 1074.69 378.218 1074.33 378.169C1073.97 378.121 1073.6 378.18 1073.27 378.34C1072.95 378.5 1072.68 378.753 1072.49 379.067C1072.37 379.276 1072.29 379.507 1072.26 379.746C1072.23 379.986 1072.24 380.229 1072.31 380.463C1072.37 380.696 1072.47 380.915 1072.62 381.107C1072.77 381.299 1072.95 381.46 1073.16 381.582V381.582Z" fill="white"/>
86
+ <path opacity="0.3" d="M1107.59 324.832C1107.91 325.016 1108.27 325.101 1108.63 325.078C1109 325.055 1109.35 324.924 1109.64 324.702C1109.93 324.48 1110.15 324.177 1110.27 323.831C1110.38 323.485 1110.4 323.112 1110.3 322.759C1110.21 322.405 1110.01 322.088 1109.74 321.846C1109.47 321.604 1109.13 321.449 1108.76 321.4C1108.4 321.351 1108.03 321.41 1107.7 321.571C1107.38 321.732 1107.1 321.986 1106.92 322.302C1106.8 322.512 1106.72 322.744 1106.68 322.985C1106.65 323.226 1106.67 323.471 1106.73 323.706C1106.79 323.941 1106.9 324.162 1107.05 324.355C1107.19 324.548 1107.38 324.71 1107.59 324.832V324.832Z" fill="white"/>
87
+ <path opacity="0.3" d="M1134.33 285.308C1134.65 285.493 1135.01 285.581 1135.37 285.56C1135.74 285.538 1136.09 285.409 1136.38 285.188C1136.68 284.967 1136.9 284.665 1137.02 284.319C1137.14 283.973 1137.15 283.599 1137.06 283.245C1136.96 282.891 1136.77 282.572 1136.49 282.329C1136.22 282.086 1135.88 281.93 1135.52 281.881C1135.15 281.832 1134.78 281.891 1134.46 282.052C1134.13 282.213 1133.85 282.467 1133.67 282.784C1133.43 283.207 1133.36 283.709 1133.48 284.181C1133.61 284.653 1133.91 285.058 1134.33 285.308Z" fill="white"/>
88
+ <path opacity="0.3" d="M1070.38 283.651C1071 284.013 1071.71 284.184 1072.43 284.141C1073.15 284.099 1073.84 283.845 1074.41 283.412C1074.98 282.98 1075.41 282.387 1075.65 281.709C1075.89 281.03 1075.92 280.297 1075.74 279.601C1075.56 278.905 1075.18 278.277 1074.65 277.797C1074.12 277.316 1073.45 277.004 1072.74 276.9C1072.03 276.797 1071.3 276.905 1070.65 277.213C1070.01 277.52 1069.46 278.013 1069.09 278.629C1068.84 279.042 1068.68 279.501 1068.61 279.978C1068.54 280.455 1068.56 280.942 1068.68 281.41C1068.8 281.877 1069.01 282.316 1069.3 282.701C1069.59 283.086 1069.96 283.409 1070.38 283.651V283.651Z" fill="white"/>
89
+ <path opacity="0.3" d="M1016.69 216.679C1016.9 216.802 1017.13 216.883 1017.37 216.916C1017.61 216.949 1017.86 216.935 1018.09 216.873C1018.33 216.812 1018.55 216.705 1018.74 216.558C1018.93 216.411 1019.1 216.227 1019.22 216.018C1019.4 215.702 1019.49 215.338 1019.47 214.973C1019.45 214.607 1019.32 214.256 1019.1 213.964C1018.88 213.672 1018.57 213.452 1018.23 213.333C1017.88 213.213 1017.51 213.198 1017.15 213.291C1016.8 213.384 1016.48 213.58 1016.24 213.854C1016 214.128 1015.84 214.468 1015.79 214.831C1015.74 215.194 1015.8 215.563 1015.96 215.892C1016.12 216.221 1016.38 216.495 1016.69 216.679V216.679Z" fill="white"/>
90
+ <path opacity="0.3" d="M1014.41 292.709C1014.72 292.895 1015.08 292.983 1015.45 292.962C1015.82 292.94 1016.17 292.811 1016.46 292.59C1016.75 292.369 1016.97 292.066 1017.09 291.72C1017.21 291.374 1017.22 291.001 1017.13 290.647C1017.04 290.292 1016.84 289.974 1016.57 289.731C1016.29 289.488 1015.95 289.332 1015.59 289.283C1015.23 289.233 1014.86 289.293 1014.53 289.454C1014.2 289.614 1013.93 289.869 1013.74 290.186C1013.5 290.608 1013.43 291.111 1013.55 291.584C1013.68 292.057 1013.98 292.462 1014.41 292.709V292.709Z" fill="white"/>
91
+ <path opacity="0.3" d="M1058.79 338.662C1059.1 338.846 1059.47 338.931 1059.83 338.908C1060.2 338.885 1060.55 338.754 1060.84 338.532C1061.13 338.31 1061.35 338.007 1061.46 337.661C1061.58 337.316 1061.6 336.942 1061.5 336.589C1061.41 336.235 1061.21 335.918 1060.94 335.676C1060.66 335.434 1060.32 335.279 1059.96 335.23C1059.6 335.181 1059.23 335.24 1058.9 335.401C1058.57 335.562 1058.3 335.816 1058.12 336.132C1057.99 336.342 1057.91 336.574 1057.88 336.815C1057.85 337.056 1057.86 337.301 1057.93 337.536C1057.99 337.771 1058.1 337.992 1058.24 338.185C1058.39 338.378 1058.58 338.54 1058.79 338.662Z" fill="white"/>
92
+ <path opacity="0.3" d="M966.168 305.775C966.721 306.097 967.358 306.248 967.997 306.209C968.637 306.169 969.25 305.941 969.76 305.553C970.27 305.165 970.653 304.635 970.861 304.029C971.07 303.424 971.094 302.77 970.93 302.15C970.767 301.531 970.424 300.974 969.944 300.549C969.464 300.125 968.869 299.852 968.235 299.766C967.6 299.68 966.954 299.784 966.378 300.065C965.802 300.345 965.323 300.791 965 301.344C964.786 301.712 964.646 302.118 964.588 302.539C964.531 302.961 964.558 303.39 964.666 303.801C964.774 304.213 964.963 304.599 965.221 304.937C965.478 305.276 965.8 305.561 966.168 305.775V305.775Z" fill="white"/>
93
+ <path opacity="0.3" d="M901.495 268.114C901.811 268.299 902.174 268.387 902.54 268.366C902.905 268.345 903.256 268.215 903.548 267.994C903.84 267.773 904.06 267.471 904.18 267.125C904.3 266.779 904.314 266.405 904.221 266.051C904.129 265.697 903.933 265.378 903.659 265.135C903.385 264.892 903.045 264.737 902.682 264.687C902.319 264.638 901.95 264.697 901.621 264.858C901.292 265.019 901.018 265.273 900.834 265.59C900.588 266.013 900.52 266.515 900.644 266.988C900.768 267.461 901.074 267.866 901.495 268.114V268.114Z" fill="white"/>
94
+ <path opacity="0.3" d="M852.744 281.909C852.9 282.002 853.073 282.063 853.252 282.088C853.432 282.114 853.615 282.103 853.79 282.057C853.966 282.011 854.13 281.93 854.274 281.82C854.418 281.71 854.539 281.572 854.629 281.415C854.767 281.179 854.832 280.908 854.815 280.636C854.799 280.364 854.702 280.103 854.537 279.886C854.373 279.668 854.147 279.505 853.889 279.416C853.632 279.327 853.353 279.316 853.089 279.385C852.826 279.455 852.588 279.601 852.407 279.805C852.226 280.009 852.11 280.262 852.073 280.532C852.036 280.802 852.08 281.077 852.2 281.323C852.319 281.568 852.509 281.772 852.744 281.909Z" fill="white"/>
95
+ <path opacity="0.3" d="M1007.69 393.995C1008.15 394.264 1008.68 394.39 1009.22 394.357C1009.75 394.324 1010.26 394.134 1010.69 393.81C1011.11 393.486 1011.43 393.044 1011.6 392.539C1011.78 392.033 1011.8 391.488 1011.66 390.971C1011.52 390.454 1011.24 389.99 1010.84 389.636C1010.44 389.283 1009.94 389.056 1009.41 388.984C1008.88 388.913 1008.34 389 1007.86 389.235C1007.38 389.47 1006.98 389.842 1006.71 390.304C1006.54 390.61 1006.42 390.948 1006.37 391.3C1006.32 391.652 1006.34 392.009 1006.43 392.353C1006.52 392.696 1006.68 393.018 1006.9 393.3C1007.11 393.582 1007.38 393.818 1007.69 393.995V393.995Z" fill="white"/>
96
+ <path opacity="0.3" d="M928.838 312.457C929.152 312.639 929.514 312.724 929.877 312.701C930.239 312.678 930.587 312.548 930.876 312.327C931.164 312.106 931.381 311.805 931.499 311.461C931.616 311.117 931.629 310.746 931.536 310.395C931.442 310.044 931.247 309.728 930.975 309.488C930.702 309.247 930.364 309.093 930.004 309.045C929.644 308.997 929.277 309.056 928.951 309.216C928.625 309.376 928.353 309.629 928.17 309.943C927.928 310.365 927.862 310.866 927.987 311.337C928.112 311.808 928.418 312.211 928.838 312.457V312.457Z" fill="white"/>
97
+ <path opacity="0.3" d="M1221.06 409.582C1221.37 409.768 1221.74 409.856 1222.1 409.834C1222.47 409.813 1222.82 409.684 1223.11 409.463C1223.4 409.242 1223.62 408.939 1223.74 408.593C1223.86 408.247 1223.88 407.874 1223.78 407.519C1223.69 407.165 1223.49 406.847 1223.22 406.604C1222.95 406.361 1222.61 406.205 1222.24 406.156C1221.88 406.106 1221.51 406.166 1221.18 406.327C1220.85 406.487 1220.58 406.742 1220.4 407.059C1220.15 407.481 1220.08 407.984 1220.21 408.457C1220.33 408.93 1220.64 409.335 1221.06 409.582V409.582Z" fill="white"/>
98
+ <path opacity="0.3" d="M513.454 512.059C513.835 512.28 514.282 512.358 514.715 512.279C515.148 512.2 515.538 511.968 515.816 511.627C516.122 511.248 516.266 510.764 516.218 510.279C516.188 509.989 516.089 509.71 515.93 509.466C515.77 509.223 515.554 509.02 515.301 508.877C514.967 508.673 514.576 508.585 514.188 508.627C513.701 508.682 513.255 508.926 512.948 509.308C512.64 509.689 512.496 510.177 512.545 510.664C512.573 510.952 512.671 511.23 512.829 511.473C512.987 511.716 513.201 511.917 513.454 512.059V512.059Z" fill="white"/>
99
+ <path opacity="0.3" d="M609.224 508.315C609.645 508.523 610.129 508.564 610.578 508.428C611.028 508.293 611.409 507.992 611.645 507.586C611.88 507.18 611.953 506.7 611.848 506.243C611.742 505.785 611.467 505.385 611.078 505.123C610.739 504.927 610.347 504.843 609.958 504.882C609.474 504.942 609.03 505.183 608.715 505.555C608.413 505.938 608.271 506.424 608.322 506.91C608.351 507.199 608.448 507.477 608.605 507.721C608.761 507.965 608.974 508.168 609.224 508.315V508.315Z" fill="white"/>
100
+ <path opacity="0.3" d="M601.173 593.761C601.468 593.931 601.805 594.016 602.145 594.007C602.486 593.997 602.818 593.894 603.104 593.708C603.389 593.522 603.618 593.261 603.765 592.953C603.912 592.646 603.97 592.303 603.935 591.964C603.904 591.677 603.805 591.4 603.647 591.158C603.489 590.915 603.276 590.714 603.026 590.569C602.645 590.348 602.198 590.27 601.765 590.35C601.332 590.429 600.942 590.66 600.664 591.001C600.511 591.19 600.398 591.406 600.33 591.639C600.263 591.872 600.242 592.116 600.27 592.356C600.299 592.645 600.396 592.923 600.553 593.167C600.71 593.411 600.922 593.614 601.173 593.761V593.761Z" fill="white"/>
101
+ <path opacity="0.3" d="M552.185 583.622C552.446 583.779 552.752 583.845 553.054 583.81C553.243 583.793 553.426 583.738 553.593 583.649C553.76 583.559 553.907 583.436 554.026 583.288C554.154 583.126 554.247 582.939 554.297 582.739C554.347 582.538 554.353 582.33 554.316 582.127C554.279 581.923 554.198 581.731 554.08 581.561C553.962 581.392 553.809 581.25 553.631 581.144C553.37 580.988 553.065 580.922 552.762 580.957C552.574 580.975 552.391 581.03 552.224 581.12C552.057 581.209 551.91 581.331 551.791 581.479C551.662 581.64 551.57 581.828 551.52 582.028C551.47 582.228 551.463 582.437 551.501 582.64C551.538 582.843 551.618 583.036 551.737 583.205C551.855 583.375 552.008 583.517 552.185 583.622V583.622Z" fill="white"/>
102
+ <path opacity="0.3" d="M460.2 556.39C460.581 556.611 461.028 556.689 461.461 556.61C461.894 556.531 462.285 556.3 462.562 555.958C462.715 555.77 462.829 555.553 462.896 555.32C462.964 555.088 462.984 554.844 462.956 554.603C462.93 554.314 462.834 554.035 462.677 553.79C462.52 553.546 462.306 553.343 462.054 553.199C461.673 552.978 461.226 552.9 460.793 552.979C460.36 553.059 459.969 553.29 459.691 553.631C459.539 553.819 459.425 554.036 459.358 554.269C459.29 554.501 459.27 554.745 459.298 554.986C459.324 555.275 459.42 555.554 459.577 555.799C459.734 556.043 459.948 556.246 460.2 556.39Z" fill="white"/>
103
+ <path opacity="0.3" d="M457.005 417.739C457.3 417.909 457.635 417.994 457.975 417.986C458.314 417.978 458.645 417.876 458.931 417.692C459.216 417.508 459.446 417.249 459.594 416.943C459.742 416.637 459.803 416.297 459.77 415.959C459.739 415.668 459.641 415.389 459.483 415.144C459.324 414.899 459.111 414.695 458.859 414.548C458.52 414.353 458.128 414.269 457.739 414.307C457.498 414.33 457.265 414.403 457.053 414.519C456.84 414.636 456.654 414.795 456.506 414.986C456.351 415.174 456.235 415.391 456.165 415.624C456.095 415.857 456.072 416.102 456.097 416.344C456.125 416.632 456.222 416.91 456.381 417.153C456.539 417.395 456.753 417.597 457.005 417.739Z" fill="white"/>
104
+ <path opacity="0.3" d="M680.173 551.624C680.554 551.844 681.001 551.922 681.434 551.843C681.867 551.764 682.257 551.533 682.535 551.191C682.702 550.984 682.823 550.743 682.888 550.485C682.954 550.226 682.963 549.957 682.914 549.695C682.866 549.433 682.761 549.184 682.608 548.966C682.455 548.748 682.256 548.566 682.026 548.432C681.687 548.237 681.296 548.153 680.907 548.191C680.521 548.234 680.158 548.397 679.87 548.658C679.581 548.918 679.383 549.263 679.301 549.643C679.22 550.023 679.261 550.418 679.417 550.774C679.573 551.129 679.838 551.427 680.173 551.624V551.624Z" fill="white"/>
105
+ <path opacity="0.3" d="M787.082 577.006C787.346 577.165 787.654 577.233 787.96 577.2C788.338 577.159 788.685 576.969 788.923 576.672C789.16 576.376 789.274 575.999 789.239 575.62C789.215 575.395 789.138 575.179 789.015 574.989C788.891 574.799 788.724 574.642 788.528 574.529C788.267 574.372 787.962 574.306 787.659 574.341C787.472 574.36 787.29 574.417 787.125 574.508C786.959 574.598 786.814 574.721 786.697 574.869C786.575 575.014 786.484 575.181 786.429 575.362C786.375 575.543 786.358 575.734 786.38 575.921C786.401 576.145 786.476 576.361 786.598 576.55C786.721 576.739 786.887 576.895 787.082 577.006V577.006Z" fill="white"/>
106
+ <path opacity="0.3" d="M725.759 527.83C726.139 528.051 726.586 528.128 727.019 528.049C727.452 527.97 727.843 527.739 728.121 527.397C728.276 527.211 728.391 526.994 728.458 526.761C728.526 526.528 728.545 526.283 728.514 526.043C728.485 525.754 728.388 525.476 728.232 525.232C728.075 524.988 727.862 524.784 727.612 524.638C727.272 524.44 726.877 524.358 726.486 524.406C726.099 524.446 725.735 524.607 725.445 524.867C725.155 525.127 724.956 525.472 724.875 525.853C724.794 526.234 724.836 526.63 724.995 526.985C725.154 527.341 725.421 527.636 725.759 527.83Z" fill="white"/>
107
+ <path opacity="0.3" d="M669.906 576.777C670.47 577.105 671.121 577.248 671.77 577.187C672.578 577.096 673.316 576.691 673.828 576.06C674.108 575.713 674.31 575.31 674.419 574.878C674.528 574.446 674.542 573.995 674.46 573.557C674.377 573.119 674.2 572.704 673.941 572.341C673.682 571.979 673.347 571.677 672.96 571.456C672.325 571.091 671.582 570.964 670.862 571.097C670.142 571.23 669.494 571.615 669.032 572.183C668.753 572.53 668.553 572.933 668.445 573.364C668.337 573.796 668.325 574.245 668.408 574.682C668.491 575.119 668.668 575.533 668.927 575.895C669.185 576.256 669.52 576.558 669.906 576.777V576.777Z" fill="white"/>
108
+ <path opacity="0.3" d="M628.525 547.687C628.906 547.908 629.353 547.985 629.786 547.906C630.219 547.827 630.61 547.596 630.888 547.254C631.043 547.066 631.159 546.848 631.227 546.613C631.296 546.379 631.316 546.133 631.287 545.891C631.257 545.603 631.159 545.326 631.001 545.083C630.843 544.841 630.63 544.639 630.379 544.495C629.958 544.287 629.474 544.246 629.025 544.381C628.575 544.517 628.194 544.818 627.958 545.224C627.723 545.63 627.65 546.11 627.755 546.567C627.861 547.024 628.136 547.425 628.525 547.687Z" fill="white"/>
109
+ <path opacity="0.3" d="M573.893 503.844C574.453 504.169 575.093 504.333 575.741 504.317C576.388 504.302 577.019 504.107 577.563 503.755C578.107 503.403 578.542 502.907 578.822 502.322C579.101 501.738 579.213 501.087 579.145 500.443C579.08 499.898 578.886 499.377 578.579 498.922C578.273 498.468 577.862 498.092 577.382 497.828C576.822 497.502 576.182 497.338 575.535 497.354C574.887 497.37 574.256 497.564 573.712 497.916C573.169 498.269 572.733 498.764 572.454 499.349C572.174 499.934 572.063 500.584 572.13 501.229C572.197 501.773 572.392 502.293 572.698 502.748C573.004 503.202 573.414 503.578 573.893 503.844V503.844Z" fill="white"/>
110
+ <path opacity="0.3" d="M553.659 456.614C553.998 456.81 554.389 456.894 554.778 456.855C555.019 456.831 555.253 456.759 555.465 456.642C555.677 456.525 555.863 456.366 556.012 456.175C556.166 455.988 556.28 455.773 556.349 455.541C556.418 455.31 556.441 455.067 556.414 454.827C556.386 454.538 556.289 454.26 556.132 454.016C555.975 453.772 555.763 453.569 555.512 453.422C555.175 453.224 554.782 453.14 554.393 453.181C554.007 453.224 553.644 453.387 553.356 453.648C553.068 453.908 552.869 454.253 552.788 454.633C552.707 455.013 552.747 455.408 552.903 455.764C553.06 456.12 553.324 456.417 553.659 456.614V456.614Z" fill="white"/>
111
+ <path opacity="0.3" d="M605.51 377.303C605.85 377.501 606.246 377.582 606.636 377.535C607.067 377.484 607.466 377.282 607.762 376.963C608.057 376.645 608.23 376.232 608.248 375.799C608.267 375.365 608.13 374.939 607.863 374.597C607.596 374.254 607.216 374.018 606.791 373.931C606.366 373.843 605.924 373.91 605.543 374.119C605.163 374.328 604.869 374.666 604.715 375.072C604.561 375.477 604.556 375.925 604.702 376.334C604.848 376.743 605.134 377.086 605.51 377.303V377.303Z" fill="white"/>
112
+ <path opacity="0.3" d="M726.331 394.573C726.752 394.782 727.236 394.822 727.685 394.687C728.134 394.552 728.516 394.251 728.751 393.845C728.987 393.439 729.06 392.959 728.954 392.501C728.849 392.044 728.574 391.644 728.184 391.382C727.846 391.186 727.454 391.101 727.065 391.141C726.824 391.164 726.59 391.237 726.378 391.354C726.166 391.47 725.98 391.629 725.831 391.82C725.677 392.008 725.561 392.225 725.491 392.458C725.421 392.691 725.397 392.936 725.422 393.178C725.451 393.466 725.548 393.744 725.706 393.987C725.864 394.229 726.079 394.431 726.331 394.573V394.573Z" fill="white"/>
113
+ <path opacity="0.3" d="M832.36 323.136C832.696 323.339 833.09 323.424 833.479 323.377C833.72 323.352 833.954 323.279 834.166 323.164C834.379 323.048 834.567 322.892 834.719 322.703C834.871 322.515 834.984 322.298 835.052 322.066C835.12 321.833 835.142 321.59 835.116 321.349C835.088 321.06 834.991 320.783 834.833 320.54C834.675 320.297 834.46 320.096 834.207 319.954C833.868 319.758 833.477 319.674 833.088 319.713C832.847 319.739 832.614 319.812 832.403 319.929C832.191 320.046 832.004 320.203 831.854 320.393C831.686 320.598 831.564 320.838 831.498 321.095C831.432 321.352 831.422 321.621 831.47 321.882C831.519 322.143 831.623 322.391 831.777 322.607C831.931 322.824 832.13 323.004 832.36 323.136V323.136Z" fill="white"/>
114
+ <path opacity="0.3" d="M808.189 264.942C808.528 265.138 808.92 265.222 809.309 265.183C809.549 265.158 809.783 265.085 809.995 264.968C810.207 264.851 810.393 264.693 810.542 264.503C810.697 264.315 810.813 264.098 810.883 263.865C810.953 263.632 810.976 263.388 810.951 263.146C810.923 262.857 810.826 262.58 810.668 262.337C810.509 262.094 810.295 261.893 810.043 261.75C809.705 261.552 809.313 261.468 808.923 261.509C808.537 261.552 808.174 261.715 807.886 261.976C807.598 262.236 807.399 262.581 807.318 262.961C807.237 263.341 807.277 263.737 807.434 264.092C807.59 264.448 807.854 264.745 808.189 264.942V264.942Z" fill="white"/>
115
+ <path opacity="0.3" d="M862.901 212.266C863.241 212.46 863.632 212.544 864.021 212.506C864.506 212.452 864.949 212.207 865.255 211.827C865.407 211.64 865.522 211.424 865.591 211.193C865.66 210.961 865.682 210.719 865.657 210.478C865.629 210.19 865.531 209.912 865.373 209.67C865.215 209.427 865.001 209.226 864.748 209.083C864.411 208.885 864.018 208.801 863.629 208.842C863.143 208.894 862.698 209.135 862.39 209.514C862.081 209.893 861.935 210.378 861.984 210.864C862.014 211.154 862.113 211.432 862.272 211.676C862.432 211.92 862.648 212.122 862.901 212.266Z" fill="white"/>
116
+ <path opacity="0.3" d="M960.14 252.077C960.477 252.275 960.87 252.359 961.259 252.318C961.645 252.275 962.008 252.112 962.296 251.851C962.584 251.591 962.783 251.246 962.864 250.866C962.945 250.487 962.905 250.091 962.749 249.735C962.592 249.38 962.328 249.082 961.993 248.885C961.654 248.691 961.263 248.607 960.874 248.645C960.633 248.668 960.399 248.74 960.187 248.857C959.975 248.974 959.789 249.133 959.64 249.324C959.486 249.511 959.372 249.726 959.303 249.958C959.234 250.189 959.211 250.432 959.237 250.673C959.266 250.961 959.363 251.239 959.52 251.483C959.677 251.727 959.889 251.931 960.14 252.077V252.077Z" fill="white"/>
117
+ <path opacity="0.3" d="M837.376 541.364C837.67 541.536 838.006 541.623 838.347 541.615C838.687 541.607 839.019 541.505 839.305 541.32C839.59 541.134 839.819 540.873 839.965 540.565C840.111 540.258 840.169 539.915 840.131 539.577C840.103 539.288 840.006 539.011 839.848 538.768C839.69 538.525 839.475 538.324 839.223 538.182C838.886 537.98 838.493 537.896 838.103 537.941C837.861 537.969 837.626 538.044 837.412 538.164C837.199 538.284 837.012 538.445 836.862 538.638C836.712 538.831 836.602 539.052 836.538 539.288C836.474 539.524 836.458 539.771 836.491 540.013C836.523 540.291 836.62 540.558 836.774 540.793C836.928 541.028 837.134 541.223 837.376 541.364V541.364Z" fill="white"/>
118
+ <path opacity="0.3" d="M774.904 548.613C775.39 548.889 775.95 549.006 776.506 548.947C776.851 548.916 777.186 548.815 777.491 548.651C777.796 548.486 778.064 548.261 778.279 547.99C778.499 547.721 778.664 547.411 778.762 547.077C778.861 546.744 778.891 546.394 778.852 546.049C778.81 545.631 778.669 545.229 778.44 544.877C778.212 544.525 777.902 544.232 777.537 544.024C777.049 543.746 776.486 543.627 775.926 543.683C775.374 543.744 774.854 543.977 774.442 544.35C774.029 544.723 773.745 545.216 773.629 545.759C773.512 546.303 773.571 546.869 773.795 547.378C774.019 547.887 774.397 548.312 774.877 548.594L774.904 548.613Z" fill="white"/>
119
+ <path opacity="0.3" d="M587.809 464.473C587.963 464.563 588.134 464.622 588.311 464.646C588.488 464.67 588.668 464.659 588.841 464.613C589.014 464.568 589.176 464.489 589.318 464.38C589.461 464.272 589.58 464.137 589.67 463.983C589.76 463.828 589.819 463.657 589.843 463.48C589.867 463.303 589.856 463.123 589.81 462.95C589.765 462.777 589.686 462.615 589.578 462.473C589.469 462.33 589.334 462.211 589.18 462.121C588.931 461.975 588.64 461.914 588.354 461.95C587.996 461.988 587.668 462.166 587.442 462.445C587.329 462.584 587.244 462.744 587.194 462.915C587.143 463.087 587.128 463.267 587.148 463.445C587.169 463.656 587.24 463.86 587.355 464.038C587.47 464.217 587.625 464.366 587.809 464.473V464.473Z" fill="white"/>
120
+ <path opacity="0.3" d="M430.642 469.216C430.857 469.341 431.105 469.396 431.353 469.375C431.509 469.363 431.662 469.317 431.8 469.242C431.938 469.167 432.058 469.064 432.154 468.939C432.272 468.811 432.358 468.658 432.407 468.491C432.455 468.325 432.464 468.149 432.433 467.978C432.402 467.807 432.332 467.646 432.228 467.507C432.124 467.368 431.989 467.255 431.833 467.177C431.615 467.05 431.364 466.992 431.113 467.012C430.865 467.039 430.632 467.144 430.447 467.311C430.262 467.479 430.134 467.7 430.082 467.944C430.03 468.188 430.056 468.442 430.156 468.671C430.257 468.899 430.427 469.09 430.642 469.216V469.216Z" fill="white"/>
121
+ <path opacity="0.3" d="M530.706 429.244C531.262 429.572 531.91 429.711 532.552 429.641C533.35 429.557 534.082 429.162 534.59 428.541C534.846 428.226 535.038 427.865 535.155 427.476C535.271 427.087 535.31 426.68 535.268 426.276C535.22 425.799 535.06 425.341 534.8 424.938C534.54 424.536 534.189 424.201 533.774 423.96C533.215 423.633 532.565 423.497 531.922 423.573C531.123 423.661 530.392 424.062 529.887 424.687C529.382 425.312 529.144 426.111 529.225 426.91C529.267 427.389 529.423 427.851 529.681 428.257C529.939 428.664 530.29 429.002 530.706 429.244V429.244Z" fill="white"/>
122
+ <path opacity="0.3" d="M644.978 406.306C645.398 406.514 645.882 406.555 646.331 406.42C646.781 406.284 647.162 405.983 647.398 405.577C647.634 405.171 647.706 404.691 647.601 404.234C647.495 403.776 647.22 403.376 646.831 403.114C646.493 402.916 646.101 402.832 645.711 402.873C645.321 402.909 644.952 403.069 644.659 403.329C644.366 403.589 644.163 403.936 644.081 404.319C644 404.703 644.042 405.102 644.203 405.46C644.365 405.817 644.636 406.114 644.978 406.306V406.306Z" fill="white"/>
123
+ <path opacity="0.3" d="M689.846 359.513C690.335 359.801 690.895 359.948 691.463 359.936C692.031 359.924 692.584 359.754 693.061 359.445C693.537 359.136 693.919 358.701 694.162 358.188C694.406 357.675 694.502 357.105 694.439 356.54C694.382 356.021 694.193 355.526 693.89 355.101C693.587 354.676 693.181 354.336 692.71 354.112C692.238 353.888 691.718 353.789 691.197 353.823C690.676 353.857 690.173 354.024 689.735 354.308C689.297 354.591 688.939 354.982 688.695 355.443C688.45 355.904 688.328 356.42 688.339 356.941C688.35 357.463 688.494 357.973 688.758 358.423C689.022 358.873 689.396 359.249 689.846 359.513V359.513Z" fill="white"/>
124
+ <path opacity="0.3" d="M801.708 377.486C802.224 377.784 802.82 377.912 803.412 377.852C803.777 377.813 804.13 377.703 804.452 377.528C804.774 377.352 805.057 377.114 805.286 376.828C805.521 376.545 805.696 376.217 805.801 375.864C805.906 375.512 805.938 375.142 805.897 374.776C805.852 374.34 805.704 373.92 805.466 373.552C805.227 373.183 804.905 372.877 804.525 372.657C804.01 372.359 803.414 372.231 802.821 372.291C802.234 372.351 801.68 372.595 801.24 372.989C800.8 373.383 800.496 373.906 800.373 374.483C800.249 375.061 800.312 375.663 800.552 376.202C800.792 376.742 801.197 377.192 801.708 377.486V377.486Z" fill="white"/>
125
+ <path opacity="0.3" d="M509.147 471.303C509.488 471.499 509.883 471.58 510.273 471.535C510.757 471.478 511.2 471.234 511.506 470.855C511.811 470.476 511.956 469.992 511.909 469.507C511.88 469.218 511.782 468.941 511.624 468.699C511.466 468.456 511.252 468.255 511.001 468.111C510.651 467.892 510.238 467.793 509.826 467.832C509.586 467.858 509.353 467.931 509.141 468.048C508.93 468.165 508.743 468.322 508.593 468.511C508.439 468.698 508.325 468.913 508.255 469.145C508.186 469.377 508.164 469.62 508.19 469.86C508.221 470.16 508.324 470.448 508.491 470.699C508.657 470.951 508.883 471.158 509.147 471.303V471.303Z" fill="white"/>
126
+ </g>
127
+ <g opacity="0.5">
128
+ <path opacity="0.5" d="M1113.8 95.4175L1113.88 95.6374L1122.27 174.246L1072.31 163.205L1072.24 162.865L1072.19 163.218L1033.26 195.272L980.62 189.304L980.547 189.252L980.502 189.316L947.534 243.077L907.796 245.785L888.035 279.481L850.671 249.712L850.738 249.91L848.244 318.472L783.192 337.586L752.091 278.618L672.159 287.636L671.837 287.491L672.102 287.678L638.863 393.764L522.972 212.365L522.871 212.294L569.196 371.7L412.812 237.561L412.8 237.443L496.191 412.843L544.717 480.495L544.671 480.463L544.753 480.521L490.691 535.779L490.646 535.843L490.719 535.895L497.816 558.21L467.328 608.027L467.264 608.119L522.729 606.175L562.235 641.734L573.83 670.39L548.232 705.826L587.604 796.51L587.721 796.771L591.034 713.124L637.9 692.415L661.834 598.2L696.228 617.109L696.359 617.312L691.097 554.184L721.557 528.5L711.314 429.284L827.638 409.932L827.703 409.977L827.761 409.895L827.854 409.879L827.799 409.84L886.811 355.343L871.908 311.777L912.933 299.717L912.979 299.653L947.502 243.356L977.518 241.306L1016.8 208.941L1063.86 234.042L1063.93 234.087L1084.66 281.022L1084.62 281.077L1084.68 281.123L1103.47 293.921L1103.69 323.36L1021.88 389.099L1004.78 443.093L957.488 489.284L957.346 489.486L1021.05 472.534L1021.58 424.572L1058.69 383.157L1098.29 376.62L1100.36 356.599L1160.03 332.156L1160.15 332.112L1129.69 311.356L1185.33 285.439L1185.65 285.457L1185.39 285.347L1215.25 163.382L1215.57 163.319L1215.24 163.263L1167.11 141.661L1196.83 132.19L1196.89 131.915L1155.92 132.013L1113.94 95.5457L1113.8 95.4175ZM907.811 246.056L912.948 299.385L888.11 279.589L907.811 246.056ZM887.998 279.592L870.987 308.59L850.96 250.081L887.998 279.592ZM850.884 250.247L870.893 308.743L868.705 312.467L848.407 318.435L850.884 250.247ZM870.951 308.894L871.84 311.523L868.878 312.397L870.951 308.894ZM637.834 692.217L591.18 712.802L609.387 666.9L637.834 692.217ZM591.174 712.441L598.42 661.098L609.245 666.868L591.174 712.441ZM787.272 372.792L774.742 361.389L783.216 337.823L801.415 367.228L787.272 372.792ZM801.465 367.332L827.476 409.365L787.389 372.861L801.465 367.332ZM598.668 563.069L588.85 505.04L642.78 532.75L598.668 563.069ZM598.546 563.107L548.451 558.195L588.332 504.88L588.634 505.094L598.546 563.107ZM582.621 474.299L588.201 504.404L544.996 480.527L582.621 474.299ZM603.716 470.799L588.343 504.476L582.746 474.278L603.716 470.799ZM582.725 474.152L571.957 416.07L624.435 425.42L603.782 470.667L582.725 474.152ZM603.872 470.772L635.161 465.711L588.434 504.541L603.872 470.772ZM603.956 470.653L624.602 425.456L637.233 427.713L635.29 465.528L603.956 470.653ZM624.646 425.335L638.896 394.144L637.252 427.589L624.646 425.335ZM639.035 393.967L677.04 434.668L637.299 427.677L639.035 393.967ZM639.106 393.867L685.625 389.07L677.178 434.628L639.106 393.867ZM624.522 425.317L572.14 415.966L638.822 393.9L624.522 425.317ZM582.514 474.237L544.835 480.482L571.777 416.286L582.514 474.237ZM588.152 504.63L588.198 504.662L546.519 517.784L544.828 480.628L588.152 504.63ZM588.074 504.877L548.313 558.138L546.484 517.951L588.074 504.877ZM548.188 558.16L516.858 527.284L546.364 518.003L548.188 558.16ZM547.986 558.154L507.532 542.432L516.778 527.378L547.986 558.154ZM598.41 563.299L572.32 590.158L548.399 558.405L598.41 563.299ZM598.329 563.571L580.796 601.417L572.395 590.266L598.329 563.571ZM598.495 563.51L602.557 630.303L580.88 601.532L598.495 563.51ZM588.71 504.928L588.698 504.809L588.487 504.661L635.302 465.687L642.757 532.666L588.71 504.928ZM637.253 427.782L676.952 434.852L635.439 465.414L637.253 427.782ZM685.655 389.105L701.838 387.434L709.198 409.084L677.218 434.669L685.655 389.105ZM685.68 388.972L691.586 357.147L701.792 387.306L685.68 388.972ZM701.972 387.419L716.771 385.883L709.237 408.933L701.972 387.419ZM701.926 387.29L691.654 356.934L722.052 336.296L730.354 344.36L716.821 385.754L701.926 387.29ZM774.576 361.313L736.482 326.668L783.039 337.725L774.576 361.313ZM774.498 361.423L767.736 380.423L736.542 326.875L774.498 361.423ZM722.121 336.179L736.099 326.686L730.432 344.25L722.121 336.179ZM730.433 344.443L767.541 380.505L716.976 385.768L730.433 344.443ZM730.511 344.333L736.273 326.713L767.421 380.228L730.511 344.333ZM774.614 361.532L787.075 372.859L767.836 380.494L774.614 361.532ZM783.249 337.777L846.909 349.281L801.5 367.205L783.249 337.777ZM736.273 326.479L736.181 326.415L736.11 326.515L721.964 336.11L672.315 287.883L782.367 337.471L736.273 326.479ZM721.925 336.165L691.586 356.777L672.234 287.881L721.925 336.165ZM691.553 356.863L685.597 388.954L638.954 393.828L672.117 287.949L691.553 356.863ZM571.91 415.941L569.344 371.86L638.706 393.831L571.91 415.941ZM544.835 480.249L540.746 414.836L571.75 416.13L544.835 480.249ZM546.415 517.834L516.88 527.176L544.677 480.824L546.415 517.834ZM507.46 542.34L490.881 535.899L516.642 527.338L507.46 542.34ZM507.382 542.45L503.457 548.87L490.942 536.065L507.382 542.45ZM507.483 542.521L548.161 558.333L529.384 575.428L503.538 548.969L507.483 542.521ZM548.271 558.411L572.255 590.25L558.106 604.807L529.471 575.517L548.271 558.411ZM557.911 604.793L509.247 593.923L529.376 575.614L557.911 604.793ZM557.601 604.862L522.681 606.087L509.346 594.075L557.601 604.862ZM558.209 604.894L572.337 590.349L580.753 601.538L574.782 614.416L558.209 604.894ZM580.846 601.658L602.408 630.28L574.905 614.475L580.846 601.658ZM602.659 630.897L609.214 666.737L598.416 660.986L602.659 630.897ZM598.291 660.911L585.632 654.163L602.545 630.747L598.291 660.911ZM602.716 630.525L637.803 599.972L609.326 666.637L602.716 630.525ZM602.704 630.366L598.645 563.355L643 587.782L637.899 599.738L602.704 630.366ZM598.919 563.356L650.213 570.924L643.078 587.631L598.919 563.356ZM643.142 587.813L648.313 590.652L638.147 599.542L643.142 587.813ZM643.219 587.703L650.38 570.96L667.993 573.562L648.446 590.58L643.219 587.703ZM668.043 573.666L661.901 597.931L648.537 590.645L668.043 573.666ZM668.031 573.411L650.443 570.812L656.954 555.572L668.031 573.411ZM657.017 555.424L685.478 488.802L668.127 573.314L657.017 555.424ZM650.3 570.78L598.751 563.224L642.811 532.882L656.869 555.498L650.3 570.78ZM635.448 465.557L677.036 434.966L642.888 532.539L635.448 465.557ZM709.244 409.254L711.291 429.063L677.385 434.705L709.244 409.254ZM716.957 385.891L767.396 380.691L709.411 409.056L716.957 385.891ZM767.919 380.552L787.234 372.944L827.386 409.493L767.919 380.552ZM801.6 367.276L847.155 349.359L827.803 409.582L801.6 367.276ZM868.627 312.617L847.299 348.98L848.404 318.557L868.627 312.617ZM847.167 349.148L783.467 337.643L848.275 318.603L847.167 349.148ZM783.044 337.523L672.423 287.671L751.938 278.757L783.044 337.523ZM522.961 212.536L638.393 393.652L569.312 371.769L522.961 212.536ZM569.155 371.836L571.714 415.967L540.692 414.66L412.79 237.71L569.155 371.836ZM540.555 414.66L496.288 412.802L412.632 237.777L540.555 414.66ZM496.294 412.93L540.561 414.787L544.64 480.331L496.294 412.93ZM516.68 527.186L490.859 535.774L544.368 480.99L516.68 527.186ZM490.798 536.211L503.368 549.055L497.786 558.175L490.798 536.211ZM497.838 558.335L503.45 549.153L529.258 575.586L509.122 593.848L497.838 558.335ZM509.044 593.958L467.447 608.015L497.772 558.467L509.044 593.958ZM467.735 608.053L509.131 594.088L522.558 606.164L467.735 608.053ZM522.83 606.246L558.075 605.046L574.718 614.604L562.158 641.707L522.83 606.246ZM562.266 641.729L574.833 614.617L602.541 630.539L585.479 654.165L562.266 641.729ZM562.311 641.898L585.434 654.229L573.803 670.33L562.311 641.898ZM573.859 670.465L585.541 654.291L598.262 661.069L590.963 712.759L573.859 670.465ZM548.261 705.902L573.749 670.621L590.868 712.952L548.261 705.902ZM548.252 706.032L590.973 713.095L590.904 713.581L591.001 713.444L587.749 796.187L548.252 706.032ZM637.853 692.19L609.344 666.883L637.987 599.827L648.423 590.729L661.782 598.08L637.853 692.19ZM661.907 598.059L668.1 573.721L696.122 616.87L661.907 598.059ZM696.236 616.786L668.154 573.566L691.021 554.253L696.236 616.786ZM668.171 573.387L685.558 488.707L691.07 554.028L668.171 573.387ZM691.13 554.001L685.648 488.25L685.626 487.988L656.844 555.357L642.856 532.818L677.102 435.027L721.451 528.398L691.13 554.001ZM721.501 528.035L677.258 434.904L711.305 429.238L721.501 528.035ZM709.327 409.175L767.695 380.655L767.75 380.694L767.789 380.639L827.548 409.69L711.404 429.019L709.327 409.175ZM886.734 355.179L827.839 409.511L847.211 349.261L868.724 312.576L871.833 311.669L886.734 355.179ZM870.995 308.774L888.067 279.668L912.871 299.495L871.921 311.525L870.995 308.774ZM913.074 299.323L907.886 245.93L947.465 243.233L913.074 299.323ZM1214.83 163.302L1152.74 205.27L1158.31 180.549L1214.83 163.302ZM1120.86 282.487L1129.85 260.723L1184.96 285.327L1120.86 282.487ZM1120.72 282.471L1103.72 281.701L1103.51 248.947L1129.83 260.654L1120.72 282.471ZM1142.89 177.945L1152.5 205.158L1122.55 174.431L1142.89 177.945ZM1064.31 233.957L1091.91 225.037L1103.26 248.692L1064.31 233.957ZM1064.34 233.815L1085.63 212.016L1091.83 224.939L1064.34 233.815ZM1085.75 211.883L1122.34 174.41L1152.56 205.325L1091.99 224.856L1085.75 211.883ZM1122.22 174.351L1085.69 211.757L1080.36 200.646L1072.36 163.366L1122.22 174.351ZM1080.21 200.598L1068.19 199.234L1072.24 163.692L1080.21 200.598ZM1080.19 200.722L1064.24 233.542L1068.18 199.365L1080.19 200.722ZM1080.3 200.8L1085.6 211.836L1064.38 233.567L1080.3 200.8ZM1103.32 248.812L1084.91 280.746L1064.26 234.006L1103.32 248.812ZM1103.35 249.015L1103.63 281.677L1084.99 280.876L1103.35 249.015ZM1103.53 248.768L1092.14 225.015L1152.65 205.495L1129.9 260.538L1103.53 248.768ZM1152.7 205.132L1143.08 177.928L1158.22 180.515L1152.7 205.132ZM1143.07 177.769L1135.9 157.461L1156.04 132.193L1167.01 141.711L1158.29 180.383L1143.07 177.769ZM1142.92 177.747L1122.52 174.25L1135.82 157.565L1142.92 177.747ZM1122.45 174.126L1114.13 96.1322L1135.76 157.429L1122.45 174.126ZM1072.22 163.39L1068.11 199.198L1033.46 195.326L1072.22 163.39ZM980.887 189.451L1033.07 195.369L1016.92 208.664L980.887 189.451ZM947.68 243.084L980.479 189.602L977.559 241.033L947.68 243.084ZM977.695 240.937L980.639 189.413L1016.84 208.718L977.695 240.937ZM1017.07 208.702L1033.28 195.35L1068.03 199.286L1064.07 233.758L1017.07 208.702ZM1085.11 280.928L1103.62 281.848L1103.71 293.663L1085.11 280.928ZM1103.78 293.659L1103.69 281.762L1120.68 282.511L1113.38 300.196L1103.78 293.659ZM1113.33 300.31L1104 322.88L1103.78 293.812L1113.33 300.31ZM1104.09 322.985L1113.44 300.387L1129.41 311.268L1104.13 323.036L1104.26 322.853L1104.09 322.985ZM957.892 489.062L1004.93 443.165L1021.01 472.34L957.892 489.062ZM1021.08 472.062L1005.04 443.025L1021.6 424.536L1021.08 472.062ZM1005.16 442.836L1022.04 389.523L1021.65 424.431L1005.16 442.836ZM1021.78 424.288L1022.17 389.147L1058.69 383.101L1021.78 424.288ZM1022.32 389.008L1103.65 323.658L1072.23 368.005L1072.2 368.051L1058.81 382.983L1022.32 389.008ZM1072.31 368.113L1098.18 376.471L1059.01 382.876L1072.31 368.113ZM1098.4 376.409L1072.47 368.037L1100.45 356.582L1098.4 376.409ZM1072.47 367.9L1103.88 323.545L1100.44 356.368L1072.47 367.9ZM1104.03 323.391L1159.78 332.168L1100.61 356.378L1104.03 323.391ZM1159.74 332.03L1104.19 323.283L1129.55 311.468L1159.74 332.03ZM1113.49 300.37L1120.83 282.614L1185.05 285.472L1129.52 311.249L1113.49 300.37ZM1129.92 260.622L1152.66 205.589L1185.18 285.295L1129.92 260.622ZM1152.78 205.423L1215.13 163.419L1185.34 285.212L1152.78 205.423ZM1215.02 163.229L1158.37 180.442L1167.08 141.843L1215.02 163.229ZM1196.7 132.478L1166.96 141.591L1156.04 132.106L1196.7 132.478ZM1155.9 132.146L1135.8 157.365L1114.11 95.8547L1155.9 132.146Z" fill="white"/>
129
+ <path opacity="0.5" d="M551.48 706.471C551.375 707.128 551.077 707.74 550.624 708.228C550.171 708.716 549.584 709.058 548.936 709.212C548.288 709.366 547.609 709.324 546.986 709.091C546.362 708.858 545.821 708.446 545.432 707.906C545.043 707.366 544.823 706.722 544.8 706.057C544.776 705.391 544.952 704.734 545.302 704.168C545.653 703.602 546.164 703.153 546.771 702.878C547.377 702.603 548.051 702.514 548.708 702.623C549.585 702.768 550.369 703.254 550.888 703.975C551.408 704.696 551.621 705.593 551.48 706.471Z" fill="white"/>
130
+ <path opacity="0.5" d="M561.275 605.467C561.172 606.087 560.887 606.663 560.457 607.122C560.026 607.581 559.469 607.902 558.857 608.045C558.244 608.187 557.603 608.145 557.014 607.924C556.425 607.702 555.915 607.311 555.548 606.8C555.182 606.288 554.975 605.68 554.954 605.051C554.933 604.422 555.098 603.801 555.43 603.267C555.762 602.732 556.244 602.308 556.817 602.047C557.389 601.787 558.026 601.702 558.647 601.803C559.481 601.942 560.225 602.405 560.718 603.092C561.21 603.779 561.411 604.633 561.275 605.467V605.467Z" fill="white"/>
131
+ <path opacity="0.5" d="M468.726 608.341C468.678 608.635 468.545 608.907 468.342 609.124C468.139 609.341 467.876 609.494 467.587 609.561C467.298 609.629 466.995 609.61 466.717 609.506C466.439 609.401 466.198 609.217 466.024 608.976C465.851 608.734 465.753 608.447 465.743 608.15C465.733 607.853 465.811 607.56 465.968 607.308C466.124 607.055 466.352 606.855 466.623 606.732C466.893 606.609 467.194 606.569 467.487 606.617C467.88 606.682 468.231 606.9 468.464 607.223C468.696 607.546 468.79 607.948 468.726 608.341V608.341Z" fill="white"/>
132
+ <path opacity="0.5" d="M518.688 527.587C518.624 527.967 518.45 528.32 518.186 528.6C517.922 528.881 517.581 529.077 517.205 529.165C516.83 529.252 516.437 529.226 516.077 529.09C515.716 528.954 515.404 528.714 515.18 528.401C514.955 528.088 514.828 527.715 514.816 527.33C514.803 526.945 514.904 526.565 515.107 526.237C515.31 525.91 515.605 525.65 515.956 525.49C516.307 525.33 516.697 525.278 517.077 525.34C517.587 525.429 518.041 525.714 518.342 526.134C518.643 526.554 518.768 527.076 518.688 527.587V527.587Z" fill="white"/>
133
+ <path opacity="0.5" d="M498.118 413.201C498.056 413.582 497.881 413.936 497.617 414.217C497.354 414.499 497.012 414.696 496.636 414.783C496.26 414.871 495.867 414.845 495.506 414.709C495.145 414.572 494.832 414.332 494.608 414.018C494.383 413.704 494.257 413.331 494.245 412.945C494.233 412.559 494.336 412.178 494.54 411.851C494.745 411.524 495.041 411.264 495.393 411.106C495.745 410.947 496.136 410.897 496.517 410.961C497.026 411.046 497.481 411.33 497.781 411.75C498.081 412.17 498.202 412.692 498.118 413.201V413.201Z" fill="white"/>
134
+ <path opacity="0.5" d="M546.674 480.889C546.611 481.27 546.437 481.623 546.173 481.905C545.909 482.186 545.568 482.383 545.192 482.471C544.816 482.558 544.423 482.532 544.062 482.396C543.7 482.26 543.388 482.019 543.163 481.705C542.939 481.392 542.813 481.018 542.801 480.632C542.789 480.247 542.891 479.866 543.096 479.538C543.3 479.211 543.597 478.952 543.949 478.793C544.301 478.635 544.692 478.584 545.073 478.648C545.582 478.733 546.036 479.017 546.337 479.437C546.637 479.857 546.758 480.379 546.674 480.889V480.889Z" fill="white"/>
135
+ <path opacity="0.5" d="M493.727 536.453C493.626 537.058 493.348 537.621 492.928 538.068C492.508 538.516 491.964 538.829 491.366 538.968C490.768 539.107 490.142 539.065 489.568 538.849C488.994 538.632 488.496 538.25 488.139 537.75C487.782 537.251 487.581 536.657 487.561 536.043C487.541 535.43 487.704 534.824 488.028 534.303C488.353 533.782 488.825 533.368 489.384 533.115C489.944 532.862 490.565 532.781 491.171 532.881C491.982 533.018 492.706 533.471 493.185 534.14C493.664 534.809 493.859 535.641 493.727 536.453V536.453Z" fill="white"/>
136
+ <path opacity="0.5" d="M511.035 594.307C510.972 594.687 510.797 595.041 510.533 595.323C510.27 595.604 509.928 595.801 509.552 595.889C509.176 595.976 508.783 595.95 508.422 595.814C508.061 595.678 507.748 595.437 507.524 595.123C507.299 594.809 507.173 594.436 507.161 594.05C507.149 593.664 507.252 593.284 507.456 592.956C507.661 592.629 507.957 592.37 508.309 592.211C508.661 592.053 509.052 592.002 509.433 592.066C509.686 592.107 509.928 592.198 510.145 592.333C510.363 592.468 510.552 592.644 510.701 592.853C510.85 593.061 510.956 593.297 511.013 593.546C511.07 593.796 511.078 594.054 511.035 594.307Z" fill="white"/>
137
+ <path opacity="0.5" d="M564.113 642.084C564.048 642.465 563.872 642.817 563.607 643.097C563.342 643.377 563 643.573 562.624 643.658C562.248 643.744 561.855 643.716 561.494 643.579C561.134 643.441 560.823 643.2 560.6 642.885C560.376 642.57 560.252 642.197 560.241 641.811C560.23 641.425 560.334 641.045 560.539 640.719C560.745 640.392 561.042 640.134 561.394 639.977C561.747 639.819 562.138 639.77 562.518 639.834C562.771 639.876 563.013 639.967 563.231 640.103C563.448 640.239 563.637 640.417 563.785 640.626C563.934 640.836 564.039 641.072 564.095 641.322C564.151 641.573 564.158 641.832 564.113 642.084V642.084Z" fill="white"/>
138
+ <path opacity="0.5" d="M610.794 667.14C610.744 667.438 610.607 667.714 610.4 667.933C610.193 668.153 609.925 668.306 609.631 668.373C609.337 668.44 609.03 668.419 608.748 668.311C608.466 668.203 608.222 668.015 608.048 667.768C607.873 667.522 607.776 667.23 607.767 666.928C607.759 666.627 607.841 666.329 608.002 666.074C608.162 665.819 608.396 665.617 608.671 665.494C608.947 665.372 609.253 665.334 609.55 665.385C609.946 665.456 610.298 665.68 610.531 666.008C610.764 666.336 610.858 666.743 610.794 667.14V667.14Z" fill="white"/>
139
+ <path opacity="0.5" d="M698.293 617.331C698.229 617.711 698.055 618.064 697.791 618.345C697.527 618.625 697.186 618.822 696.81 618.909C696.435 618.996 696.042 618.97 695.682 618.834C695.321 618.698 695.009 618.458 694.785 618.145C694.56 617.832 694.433 617.459 694.42 617.074C694.408 616.689 694.509 616.309 694.712 615.981C694.915 615.654 695.211 615.394 695.561 615.234C695.912 615.074 696.302 615.022 696.682 615.084C696.936 615.125 697.179 615.216 697.397 615.351C697.615 615.487 697.805 615.664 697.955 615.873C698.104 616.082 698.211 616.318 698.269 616.568C698.327 616.818 698.336 617.078 698.293 617.331V617.331Z" fill="white"/>
140
+ <path opacity="0.5" d="M687.027 488.454C686.966 488.828 686.758 489.161 686.451 489.382C686.144 489.602 685.762 489.692 685.388 489.63C685.015 489.569 684.682 489.362 684.461 489.054C684.241 488.747 684.151 488.365 684.213 487.992C684.243 487.807 684.309 487.63 684.408 487.471C684.507 487.312 684.636 487.174 684.788 487.064C684.94 486.955 685.113 486.877 685.295 486.834C685.477 486.792 685.666 486.785 685.851 486.816C686.036 486.846 686.213 486.913 686.372 487.011C686.531 487.11 686.669 487.239 686.778 487.391C686.888 487.544 686.966 487.716 687.008 487.898C687.051 488.08 687.057 488.27 687.027 488.454V488.454Z" fill="white"/>
141
+ <path opacity="0.5" d="M769.66 380.901C769.596 381.281 769.421 381.634 769.157 381.915C768.894 382.196 768.552 382.392 768.177 382.479C767.802 382.566 767.409 382.54 767.048 382.404C766.688 382.268 766.376 382.029 766.151 381.715C765.927 381.402 765.8 381.03 765.787 380.644C765.774 380.259 765.876 379.879 766.079 379.552C766.282 379.224 766.577 378.964 766.928 378.805C767.278 378.645 767.669 378.593 768.049 378.654C768.302 378.695 768.545 378.786 768.764 378.922C768.982 379.057 769.172 379.234 769.321 379.443C769.471 379.652 769.578 379.888 769.636 380.138C769.694 380.389 769.702 380.648 769.66 380.901V380.901Z" fill="white"/>
142
+ <path opacity="0.5" d="M829.675 410.079C829.612 410.459 829.437 410.812 829.173 411.092C828.909 411.373 828.568 411.57 828.193 411.657C827.817 411.744 827.425 411.718 827.064 411.582C826.704 411.446 826.391 411.206 826.167 410.893C825.942 410.58 825.816 410.207 825.803 409.822C825.79 409.437 825.891 409.057 826.094 408.729C826.297 408.402 826.593 408.142 826.944 407.982C827.294 407.822 827.684 407.77 828.065 407.832C828.575 407.918 829.031 408.202 829.333 408.623C829.635 409.044 829.758 409.568 829.675 410.079V410.079Z" fill="white"/>
143
+ <path opacity="0.5" d="M888.743 355.541C888.68 355.922 888.505 356.275 888.242 356.557C887.978 356.839 887.636 357.036 887.26 357.123C886.884 357.211 886.491 357.185 886.13 357.048C885.769 356.912 885.456 356.672 885.232 356.358C885.007 356.044 884.881 355.67 884.869 355.285C884.857 354.899 884.96 354.518 885.164 354.191C885.369 353.863 885.666 353.604 886.017 353.446C886.369 353.287 886.76 353.236 887.141 353.3C887.394 353.341 887.636 353.432 887.854 353.567C888.071 353.702 888.26 353.879 888.409 354.087C888.558 354.295 888.664 354.531 888.721 354.781C888.778 355.03 888.786 355.289 888.743 355.541V355.541Z" fill="white"/>
144
+ <path opacity="0.5" d="M852.721 250.267C852.657 250.647 852.482 250.999 852.219 251.28C851.955 251.561 851.614 251.757 851.238 251.844C850.863 251.931 850.47 251.905 850.11 251.769C849.749 251.633 849.437 251.394 849.212 251.081C848.988 250.768 848.861 250.395 848.848 250.01C848.835 249.625 848.937 249.244 849.14 248.917C849.343 248.589 849.638 248.329 849.989 248.17C850.34 248.01 850.73 247.958 851.11 248.019C851.364 248.061 851.606 248.152 851.825 248.287C852.043 248.422 852.233 248.599 852.382 248.808C852.532 249.017 852.639 249.253 852.697 249.504C852.755 249.754 852.763 250.013 852.721 250.267V250.267Z" fill="white"/>
145
+ <path opacity="0.5" d="M414.675 237.97C414.612 238.35 414.437 238.702 414.173 238.983C413.909 239.264 413.568 239.46 413.193 239.547C412.817 239.634 412.425 239.608 412.064 239.473C411.704 239.337 411.391 239.097 411.167 238.784C410.942 238.471 410.816 238.098 410.803 237.713C410.79 237.328 410.891 236.947 411.094 236.62C411.297 236.292 411.593 236.032 411.944 235.873C412.294 235.713 412.684 235.661 413.065 235.723C413.575 235.808 414.031 236.093 414.333 236.514C414.635 236.935 414.758 237.458 414.675 237.97V237.97Z" fill="white"/>
146
+ <path opacity="0.5" d="M524.311 212.664C524.266 212.937 524.141 213.191 523.951 213.393C523.762 213.596 523.517 213.737 523.247 213.8C522.977 213.863 522.695 213.845 522.436 213.748C522.176 213.65 521.952 213.478 521.79 213.253C521.629 213.027 521.537 212.76 521.528 212.483C521.519 212.206 521.592 211.932 521.738 211.697C521.885 211.461 522.097 211.275 522.35 211.16C522.602 211.046 522.883 211.009 523.156 211.054C523.338 211.084 523.511 211.149 523.668 211.246C523.824 211.343 523.96 211.47 524.067 211.62C524.174 211.769 524.251 211.938 524.293 212.117C524.335 212.297 524.341 212.482 524.311 212.664V212.664Z" fill="white"/>
147
+ <path opacity="0.5" d="M604.578 630.837C604.516 631.217 604.343 631.571 604.08 631.853C603.818 632.135 603.477 632.333 603.102 632.422C602.727 632.511 602.334 632.487 601.973 632.352C601.611 632.218 601.298 631.979 601.072 631.667C600.846 631.354 600.718 630.982 600.704 630.597C600.69 630.211 600.79 629.831 600.992 629.502C601.194 629.174 601.489 628.913 601.839 628.752C602.19 628.591 602.58 628.538 602.961 628.599C603.471 628.683 603.927 628.966 604.23 629.385C604.533 629.804 604.658 630.326 604.578 630.837V630.837Z" fill="white"/>
148
+ <path opacity="0.5" d="M589.574 796.747C589.508 797.127 589.332 797.478 589.067 797.758C588.802 798.037 588.46 798.232 588.085 798.317C587.709 798.402 587.317 798.374 586.957 798.237C586.597 798.1 586.286 797.859 586.063 797.545C585.84 797.231 585.714 796.859 585.703 796.474C585.691 796.089 585.794 795.709 585.998 795.382C586.202 795.056 586.498 794.797 586.849 794.638C587.2 794.479 587.59 794.428 587.97 794.491C588.224 794.533 588.467 794.625 588.685 794.761C588.903 794.897 589.093 795.075 589.242 795.285C589.391 795.495 589.497 795.732 589.554 795.983C589.611 796.234 589.618 796.494 589.574 796.747V796.747Z" fill="white"/>
149
+ <path opacity="0.5" d="M639.848 692.608C639.784 692.988 639.609 693.341 639.345 693.622C639.082 693.903 638.74 694.099 638.365 694.186C637.99 694.273 637.597 694.247 637.237 694.111C636.876 693.975 636.564 693.736 636.339 693.422C636.115 693.109 635.988 692.737 635.975 692.352C635.962 691.966 636.064 691.586 636.267 691.259C636.47 690.931 636.765 690.671 637.116 690.512C637.466 690.352 637.857 690.299 638.237 690.361C638.748 690.447 639.204 690.732 639.506 691.153C639.807 691.574 639.93 692.097 639.848 692.608V692.608Z" fill="white"/>
150
+ <path opacity="0.5" d="M670.001 573.827C669.915 574.338 669.63 574.794 669.208 575.094C668.787 575.395 668.263 575.516 667.752 575.43C667.242 575.344 666.786 575.06 666.485 574.638C666.184 574.216 666.064 573.692 666.149 573.182C666.192 572.929 666.284 572.687 666.419 572.469C666.555 572.252 666.733 572.063 666.942 571.915C667.15 571.766 667.386 571.659 667.636 571.602C667.886 571.544 668.145 571.536 668.398 571.579C668.651 571.621 668.893 571.713 669.11 571.849C669.328 571.985 669.516 572.162 669.665 572.371C669.814 572.58 669.92 572.816 669.978 573.066C670.035 573.315 670.043 573.574 670.001 573.827Z" fill="white"/>
151
+ <path opacity="0.5" d="M600.497 563.589C600.433 563.969 600.259 564.322 599.995 564.602C599.731 564.883 599.39 565.079 599.015 565.166C598.639 565.254 598.246 565.228 597.886 565.092C597.525 564.956 597.213 564.716 596.989 564.403C596.764 564.09 596.637 563.717 596.625 563.332C596.612 562.947 596.713 562.567 596.916 562.239C597.119 561.912 597.415 561.652 597.765 561.492C598.116 561.332 598.506 561.28 598.886 561.342C599.14 561.383 599.383 561.474 599.601 561.609C599.82 561.745 600.009 561.922 600.159 562.131C600.308 562.339 600.415 562.576 600.473 562.826C600.531 563.076 600.54 563.335 600.497 563.589Z" fill="white"/>
152
+ <path opacity="0.5" d="M550.196 558.656C550.133 559.037 549.959 559.391 549.695 559.672C549.431 559.954 549.09 560.151 548.714 560.238C548.338 560.326 547.945 560.3 547.583 560.164C547.222 560.027 546.91 559.787 546.685 559.473C546.461 559.159 546.335 558.786 546.323 558.4C546.311 558.014 546.413 557.633 546.618 557.306C546.822 556.979 547.119 556.719 547.471 556.561C547.823 556.402 548.214 556.352 548.595 556.416C548.847 556.457 549.089 556.547 549.307 556.682C549.525 556.817 549.713 556.994 549.862 557.202C550.011 557.41 550.117 557.646 550.175 557.896C550.232 558.145 550.239 558.404 550.196 558.656V558.656Z" fill="white"/>
153
+ <path opacity="0.5" d="M592.073 505.407C591.946 506.158 591.599 506.855 591.077 507.41C590.554 507.964 589.879 508.351 589.136 508.522C588.394 508.693 587.617 508.64 586.905 508.37C586.192 508.1 585.576 507.625 585.133 507.005C584.69 506.384 584.442 505.647 584.418 504.885C584.394 504.124 584.596 503.372 584.999 502.725C585.402 502.079 585.988 501.566 586.682 501.252C587.377 500.938 588.148 500.837 588.9 500.961C589.91 501.131 590.811 501.694 591.406 502.528C592.001 503.362 592.241 504.397 592.073 505.407Z" fill="white"/>
154
+ <path opacity="0.5" d="M573.734 416.405C573.67 416.785 573.496 417.138 573.232 417.419C572.968 417.699 572.627 417.896 572.251 417.983C571.876 418.07 571.483 418.044 571.123 417.908C570.762 417.772 570.45 417.533 570.225 417.219C570.001 416.906 569.874 416.534 569.861 416.148C569.849 415.763 569.95 415.383 570.153 415.056C570.356 414.728 570.651 414.468 571.002 414.308C571.353 414.149 571.743 414.096 572.123 414.158C572.633 414.247 573.087 414.532 573.388 414.952C573.689 415.373 573.814 415.894 573.734 416.405V416.405Z" fill="white"/>
155
+ <path opacity="0.5" d="M637.266 465.894C637.203 466.274 637.028 466.626 636.764 466.907C636.5 467.188 636.159 467.384 635.784 467.471C635.408 467.558 635.015 467.532 634.655 467.396C634.294 467.26 633.982 467.021 633.758 466.708C633.533 466.394 633.407 466.022 633.394 465.637C633.381 465.252 633.482 464.871 633.685 464.544C633.888 464.216 634.184 463.956 634.534 463.797C634.885 463.637 635.275 463.585 635.655 463.646C635.909 463.688 636.152 463.778 636.37 463.914C636.589 464.049 636.778 464.226 636.928 464.435C637.077 464.644 637.184 464.88 637.242 465.131C637.301 465.381 637.309 465.64 637.266 465.894V465.894Z" fill="white"/>
156
+ <path opacity="0.5" d="M644.742 533.118C644.676 533.498 644.5 533.849 644.235 534.129C643.969 534.408 643.628 534.603 643.252 534.688C642.877 534.773 642.484 534.746 642.124 534.608C641.765 534.471 641.454 534.23 641.23 533.916C641.007 533.603 640.882 533.23 640.87 532.845C640.859 532.46 640.962 532.08 641.165 531.753C641.369 531.427 641.665 531.168 642.016 531.009C642.367 530.851 642.757 530.799 643.137 530.862C643.391 530.904 643.634 530.996 643.853 531.132C644.071 531.268 644.26 531.446 644.409 531.656C644.558 531.866 644.664 532.103 644.722 532.354C644.779 532.605 644.785 532.865 644.742 533.118V533.118Z" fill="white"/>
157
+ <path opacity="0.5" d="M680.509 435.387C680.397 436.056 680.089 436.676 679.624 437.17C679.16 437.663 678.559 438.008 677.899 438.16C677.238 438.313 676.547 438.266 675.913 438.026C675.279 437.786 674.73 437.364 674.336 436.812C673.942 436.26 673.72 435.604 673.699 434.926C673.678 434.249 673.858 433.58 674.216 433.005C674.575 432.429 675.096 431.973 675.714 431.694C676.332 431.414 677.018 431.324 677.687 431.435C678.132 431.509 678.558 431.669 678.941 431.908C679.324 432.147 679.656 432.458 679.918 432.825C680.18 433.193 680.367 433.608 680.469 434.047C680.57 434.487 680.584 434.942 680.509 435.387V435.387Z" fill="white"/>
158
+ <path opacity="0.5" d="M693.506 357.225C693.441 357.605 693.265 357.958 693 358.238C692.735 358.518 692.393 358.713 692.017 358.799C691.641 358.885 691.248 358.857 690.887 358.719C690.527 358.582 690.216 358.34 689.993 358.026C689.769 357.711 689.645 357.337 689.634 356.952C689.623 356.566 689.727 356.186 689.933 355.859C690.138 355.533 690.435 355.275 690.788 355.117C691.14 354.96 691.531 354.91 691.911 354.975C692.164 355.017 692.406 355.108 692.624 355.244C692.841 355.38 693.03 355.558 693.178 355.767C693.327 355.976 693.432 356.213 693.488 356.463C693.544 356.713 693.551 356.972 693.506 357.225V357.225Z" fill="white"/>
159
+ <path opacity="0.5" d="M737.71 326.794C737.665 327.082 737.536 327.35 737.338 327.564C737.141 327.778 736.884 327.928 736.601 327.996C736.318 328.064 736.021 328.046 735.748 327.945C735.475 327.843 735.238 327.663 735.068 327.427C734.898 327.19 734.801 326.909 734.792 326.618C734.782 326.327 734.859 326.039 735.013 325.792C735.167 325.545 735.391 325.349 735.656 325.23C735.922 325.11 736.217 325.072 736.504 325.121C736.693 325.151 736.874 325.219 737.037 325.319C737.2 325.42 737.342 325.552 737.454 325.707C737.566 325.863 737.646 326.039 737.69 326.225C737.734 326.412 737.741 326.605 737.71 326.794V326.794Z" fill="white"/>
160
+ <path opacity="0.5" d="M724.383 528.847C724.289 529.404 724.033 529.921 723.646 530.333C723.259 530.744 722.758 531.032 722.208 531.159C721.658 531.286 721.082 531.248 720.553 531.048C720.025 530.848 719.568 530.496 719.239 530.037C718.911 529.577 718.725 529.031 718.707 528.466C718.689 527.901 718.839 527.344 719.137 526.864C719.436 526.385 719.87 526.004 720.384 525.771C720.899 525.538 721.471 525.462 722.028 525.554C722.776 525.68 723.444 526.098 723.885 526.715C724.326 527.332 724.505 528.098 724.383 528.847V528.847Z" fill="white"/>
161
+ <path opacity="0.5" d="M711.188 409.473C711.125 409.853 710.951 410.207 710.687 410.489C710.423 410.77 710.081 410.967 709.706 411.055C709.33 411.142 708.936 411.116 708.575 410.98C708.214 410.844 707.902 410.603 707.677 410.289C707.453 409.976 707.326 409.602 707.314 409.216C707.302 408.83 707.405 408.45 707.609 408.122C707.814 407.795 708.111 407.536 708.463 407.377C708.815 407.219 709.206 407.168 709.586 407.232C709.839 407.273 710.081 407.363 710.299 407.498C710.516 407.633 710.705 407.81 710.854 408.018C711.003 408.227 711.109 408.463 711.166 408.712C711.224 408.962 711.231 409.22 711.188 409.473V409.473Z" fill="white"/>
162
+ <path opacity="0.5" d="M592.93 713.335C592.866 713.715 592.691 714.068 592.427 714.348C592.164 714.629 591.822 714.825 591.447 714.913C591.072 715 590.679 714.974 590.319 714.838C589.958 714.702 589.646 714.462 589.421 714.149C589.197 713.836 589.07 713.463 589.057 713.078C589.044 712.693 589.146 712.313 589.349 711.985C589.552 711.658 589.847 711.398 590.198 711.238C590.548 711.078 590.939 711.026 591.319 711.088C591.828 711.177 592.283 711.462 592.584 711.882C592.885 712.302 593.009 712.824 592.93 713.335V713.335Z" fill="white"/>
163
+ <path opacity="0.5" d="M1154.59 205.699C1154.51 206.156 1154.27 206.57 1153.91 206.869C1153.56 207.167 1153.11 207.331 1152.64 207.33C1152.12 207.319 1151.63 207.108 1151.26 206.74C1151.05 206.514 1150.89 206.239 1150.8 205.939C1150.71 205.639 1150.7 205.323 1150.76 205.016C1150.83 204.609 1151.03 204.233 1151.32 203.94C1151.69 203.587 1152.18 203.391 1152.69 203.393C1153.2 203.395 1153.69 203.594 1154.05 203.949C1154.28 204.174 1154.45 204.452 1154.54 204.757C1154.63 205.062 1154.65 205.385 1154.59 205.699V205.699Z" fill="white"/>
164
+ <path opacity="0.5" d="M1086.82 281.243C1086.75 281.651 1086.55 282.026 1086.26 282.313C1085.96 282.602 1085.58 282.789 1085.18 282.85C1084.77 282.91 1084.35 282.84 1083.99 282.65C1083.62 282.459 1083.33 282.158 1083.14 281.789C1082.96 281.421 1082.9 281.003 1082.97 280.597C1083.05 280.14 1083.29 279.725 1083.64 279.427C1084 279.129 1084.45 278.965 1084.91 278.966C1085.43 278.977 1085.93 279.188 1086.29 279.556C1086.51 279.776 1086.67 280.043 1086.76 280.336C1086.85 280.629 1086.87 280.94 1086.82 281.243V281.243Z" fill="white"/>
165
+ <path opacity="0.5" d="M1161.93 332.406C1161.87 332.763 1161.71 333.097 1161.47 333.37C1161.24 333.643 1160.93 333.845 1160.58 333.953C1160.24 334.061 1159.87 334.071 1159.52 333.982C1159.17 333.892 1158.85 333.707 1158.6 333.447C1158.38 333.222 1158.23 332.947 1158.14 332.647C1158.05 332.347 1158.04 332.03 1158.1 331.724C1158.17 331.316 1158.36 330.94 1158.65 330.647C1159.03 330.291 1159.53 330.093 1160.05 330.093C1160.33 330.099 1160.6 330.165 1160.86 330.287C1161.11 330.409 1161.34 330.583 1161.52 330.799C1161.7 331.015 1161.83 331.266 1161.9 331.537C1161.98 331.808 1162 332.092 1161.95 332.369L1161.93 332.406Z" fill="white"/>
166
+ <path opacity="0.5" d="M1186.81 285.633C1186.75 285.948 1186.6 286.238 1186.37 286.464C1186.23 286.607 1186.07 286.719 1185.88 286.794C1185.7 286.869 1185.5 286.905 1185.3 286.899C1185.1 286.899 1184.91 286.86 1184.73 286.784C1184.54 286.707 1184.38 286.595 1184.24 286.455C1184.07 286.284 1183.94 286.074 1183.86 285.842C1183.79 285.609 1183.77 285.362 1183.81 285.122C1183.87 284.807 1184.02 284.517 1184.25 284.29C1184.39 284.15 1184.56 284.04 1184.74 283.967C1184.93 283.893 1185.13 283.857 1185.33 283.862C1185.53 283.862 1185.72 283.901 1185.9 283.977C1186.08 284.054 1186.25 284.165 1186.39 284.306C1186.56 284.477 1186.69 284.687 1186.76 284.918C1186.83 285.149 1186.85 285.394 1186.81 285.633V285.633Z" fill="white"/>
167
+ <path opacity="0.5" d="M1217.15 163.665C1217.09 164.073 1216.89 164.449 1216.59 164.735C1216.22 165.096 1215.72 165.298 1215.21 165.296C1214.95 165.292 1214.7 165.237 1214.46 165.134C1214.22 165.031 1214.01 164.883 1213.83 164.697C1213.65 164.517 1213.51 164.303 1213.42 164.068C1213.32 163.833 1213.27 163.582 1213.28 163.328C1213.28 163.075 1213.33 162.824 1213.43 162.591C1213.53 162.357 1213.67 162.145 1213.85 161.968C1214.03 161.788 1214.25 161.645 1214.48 161.548C1214.72 161.451 1214.97 161.402 1215.22 161.403C1215.48 161.404 1215.73 161.455 1215.96 161.554C1216.2 161.652 1216.41 161.796 1216.59 161.977C1216.81 162.192 1216.98 162.458 1217.08 162.752C1217.18 163.046 1217.2 163.359 1217.15 163.665V163.665Z" fill="white"/>
168
+ <path opacity="0.5" d="M1115.87 95.9442C1115.81 96.3011 1115.65 96.6346 1115.42 96.9077C1115.18 97.1809 1114.87 97.3828 1114.53 97.4908C1114.18 97.5988 1113.81 97.6088 1113.46 97.5195C1113.11 97.4303 1112.79 97.2454 1112.54 96.9854C1112.33 96.7601 1112.17 96.4855 1112.08 96.1853C1111.99 95.8851 1111.98 95.5682 1112.04 95.262C1112.12 94.7988 1112.35 94.3774 1112.71 94.0758C1113.07 93.7742 1113.53 93.613 1114 93.6218C1114.28 93.628 1114.55 93.6943 1114.81 93.816C1115.06 93.9378 1115.28 94.1123 1115.46 94.3279C1115.65 94.5435 1115.78 94.7951 1115.85 95.0659C1115.93 95.3368 1115.94 95.6206 1115.9 95.8983L1115.87 95.9442Z" fill="white"/>
169
+ <path opacity="0.5" d="M1074.18 368.312C1074.1 368.771 1073.86 369.188 1073.5 369.486C1073.14 369.784 1072.69 369.944 1072.22 369.936C1071.94 369.934 1071.67 369.871 1071.41 369.751C1071.16 369.63 1070.93 369.456 1070.75 369.24C1070.57 369.024 1070.44 368.772 1070.37 368.5C1070.29 368.228 1070.28 367.943 1070.33 367.666C1070.4 367.255 1070.6 366.877 1070.89 366.58C1071.26 366.228 1071.75 366.033 1072.26 366.037C1072.77 366.04 1073.26 366.242 1073.62 366.599C1073.84 366.818 1074.01 367.088 1074.11 367.386C1074.21 367.684 1074.23 368.002 1074.18 368.312V368.312Z" fill="white"/>
170
+ <path opacity="0.5" d="M1022.66 472.61C1022.61 472.932 1022.45 473.228 1022.21 473.45C1022.07 473.59 1021.9 473.701 1021.72 473.776C1021.54 473.85 1021.34 473.888 1021.14 473.885C1020.92 473.885 1020.7 473.837 1020.5 473.743C1020.3 473.65 1020.12 473.513 1019.98 473.344C1019.84 473.175 1019.73 472.976 1019.68 472.762C1019.62 472.549 1019.61 472.325 1019.65 472.108C1019.7 471.748 1019.88 471.42 1020.16 471.186C1020.44 470.953 1020.8 470.83 1021.16 470.841C1021.36 470.841 1021.55 470.881 1021.73 470.957C1021.92 471.033 1022.08 471.145 1022.22 471.286C1022.39 471.455 1022.52 471.663 1022.6 471.894C1022.68 472.125 1022.69 472.37 1022.66 472.61V472.61Z" fill="white"/>
171
+ <path opacity="0.5" d="M1024 389.383C1023.93 389.794 1023.73 390.173 1023.43 390.463C1023.25 390.647 1023.03 390.793 1022.79 390.892C1022.55 390.992 1022.29 391.042 1022.03 391.041C1021.78 391.04 1021.52 390.987 1021.28 390.886C1021.04 390.784 1020.83 390.636 1020.64 390.451C1020.46 390.265 1020.32 390.045 1020.23 389.803C1020.13 389.562 1020.09 389.304 1020.09 389.045C1020.1 388.786 1020.16 388.531 1020.26 388.294C1020.37 388.058 1020.52 387.844 1020.71 387.667C1021 387.379 1021.38 387.191 1021.79 387.131C1022.2 387.07 1022.61 387.14 1022.98 387.331C1023.34 387.521 1023.64 387.822 1023.82 388.191C1024 388.56 1024.07 388.977 1024 389.383V389.383Z" fill="white"/>
172
+ <path opacity="0.5" d="M1101.64 376.967C1101.52 377.648 1101.2 378.277 1100.71 378.768C1100.1 379.369 1099.26 379.7 1098.4 379.69C1097.54 379.679 1096.72 379.326 1096.12 378.709C1095.78 378.415 1095.51 378.056 1095.32 377.653C1095.13 377.25 1095.03 376.813 1095.01 376.368C1095 375.923 1095.08 375.48 1095.24 375.067C1095.41 374.653 1095.66 374.278 1095.97 373.964C1096.29 373.65 1096.66 373.404 1097.08 373.241C1097.49 373.079 1097.94 373.004 1098.38 373.02C1098.83 373.036 1099.26 373.143 1099.66 373.335C1100.07 373.526 1100.42 373.799 1100.72 374.134C1101.09 374.496 1101.37 374.943 1101.53 375.436C1101.69 375.93 1101.73 376.455 1101.64 376.967V376.967Z" fill="white"/>
173
+ <path opacity="0.5" d="M1105.88 323.585C1105.8 324.042 1105.56 324.457 1105.2 324.755C1104.85 325.054 1104.4 325.217 1103.93 325.216C1103.41 325.205 1102.92 324.994 1102.55 324.626C1102.2 324.257 1102 323.766 1102.01 323.256C1102.01 322.746 1102.21 322.256 1102.56 321.89C1102.93 321.535 1103.42 321.337 1103.93 321.339C1104.44 321.341 1104.93 321.542 1105.3 321.9C1105.52 322.113 1105.69 322.378 1105.8 322.671C1105.9 322.965 1105.93 323.278 1105.88 323.585V323.585Z" fill="white"/>
174
+ <path opacity="0.5" d="M1107.05 249.428C1106.92 250.191 1106.56 250.893 1106 251.435C1105.66 251.776 1105.24 252.046 1104.79 252.228C1104.34 252.409 1103.85 252.5 1103.36 252.494C1102.88 252.49 1102.39 252.388 1101.95 252.195C1101.5 252.002 1101.09 251.72 1100.76 251.368C1100.31 250.914 1100 250.354 1099.83 249.741C1099.67 249.129 1099.66 248.485 1099.82 247.87C1099.97 247.256 1100.29 246.691 1100.72 246.231C1101.16 245.77 1101.7 245.429 1102.31 245.24C1102.91 245.051 1103.56 245.02 1104.18 245.15C1104.8 245.28 1105.37 245.567 1105.85 245.983C1106.33 246.399 1106.69 246.931 1106.91 247.528C1107.12 248.125 1107.18 248.766 1107.08 249.392L1107.05 249.428Z" fill="white"/>
175
+ <path opacity="0.5" d="M1082.22 200.999C1082.16 201.356 1082 201.689 1081.77 201.963C1081.53 202.236 1081.22 202.438 1080.88 202.546C1080.53 202.654 1080.16 202.664 1079.81 202.574C1079.46 202.485 1079.14 202.3 1078.89 202.04C1078.54 201.673 1078.34 201.182 1078.34 200.671C1078.35 200.161 1078.55 199.672 1078.91 199.31C1079.2 199.022 1079.58 198.834 1079.99 198.774C1080.4 198.713 1080.81 198.783 1081.18 198.974C1081.54 199.164 1081.84 199.466 1082.02 199.834C1082.2 200.203 1082.27 200.62 1082.2 201.026L1082.22 200.999Z" fill="white"/>
176
+ <path opacity="0.5" d="M982.511 189.692C982.452 190.103 982.257 190.482 981.957 190.769C981.661 191.055 981.283 191.24 980.876 191.298C980.468 191.357 980.053 191.286 979.689 191.095C979.324 190.905 979.028 190.604 978.844 190.237C978.659 189.869 978.595 189.453 978.66 189.047C978.728 188.639 978.925 188.264 979.223 187.976C979.59 187.621 980.082 187.423 980.593 187.425C981.104 187.427 981.594 187.628 981.959 187.986C982.182 188.205 982.348 188.474 982.444 188.771C982.541 189.069 982.564 189.384 982.511 189.692V189.692Z" fill="white"/>
177
+ <path opacity="0.5" d="M914.97 299.863C914.902 300.271 914.704 300.647 914.407 300.934C914.225 301.117 914.008 301.26 913.768 301.355C913.529 301.451 913.272 301.496 913.014 301.488C912.498 301.482 912.005 301.272 911.643 300.905C911.29 300.536 911.094 300.045 911.096 299.535C911.098 299.024 911.297 298.535 911.653 298.168C912.02 297.813 912.512 297.616 913.023 297.617C913.534 297.619 914.024 297.82 914.389 298.178C914.614 298.392 914.785 298.656 914.886 298.95C914.987 299.243 915.016 299.556 914.97 299.863V299.863Z" fill="white"/>
178
+ <path opacity="0.5" d="M785.071 338.034C785.012 338.445 784.817 338.824 784.517 339.11C784.15 339.465 783.658 339.662 783.148 339.658C782.638 339.655 782.149 339.451 781.787 339.092C781.568 338.868 781.408 338.593 781.321 338.293C781.234 337.992 781.222 337.674 781.288 337.368C781.347 336.957 781.542 336.578 781.842 336.291C782.21 335.936 782.701 335.738 783.212 335.74C783.723 335.742 784.213 335.943 784.578 336.301C784.798 336.526 784.958 336.802 785.044 337.105C785.13 337.407 785.139 337.727 785.071 338.034V338.034Z" fill="white"/>
179
+ <path opacity="0.5" d="M753.965 278.994C753.904 279.408 753.707 279.791 753.404 280.08C753.22 280.26 753.002 280.401 752.764 280.496C752.525 280.591 752.269 280.638 752.012 280.634C751.732 280.629 751.456 280.563 751.203 280.441C750.951 280.32 750.727 280.146 750.547 279.931C750.368 279.716 750.236 279.465 750.162 279.194C750.087 278.924 750.072 278.641 750.116 278.364C750.186 277.957 750.379 277.581 750.67 277.287C751.036 276.929 751.528 276.73 752.04 276.732C752.552 276.734 753.042 276.937 753.406 277.297C753.629 277.514 753.796 277.781 753.894 278.077C753.991 278.373 754.015 278.687 753.965 278.994V278.994Z" fill="white"/>
180
+ <path opacity="0.5" d="M674.083 288.019C674.011 288.429 673.816 288.808 673.523 289.105C673.34 289.283 673.123 289.423 672.885 289.516C672.647 289.61 672.393 289.655 672.138 289.65C671.879 289.651 671.624 289.599 671.386 289.498C671.149 289.396 670.935 289.247 670.757 289.06C670.541 288.834 670.383 288.56 670.296 288.259C670.209 287.959 670.196 287.643 670.258 287.337C670.325 286.928 670.523 286.553 670.821 286.266C671.115 285.978 671.493 285.79 671.9 285.73C672.307 285.669 672.723 285.739 673.088 285.93C673.453 286.12 673.749 286.421 673.932 286.79C674.116 287.159 674.178 287.576 674.109 287.982L674.083 288.019Z" fill="white"/>
181
+ <path opacity="0.5" d="M640.81 394.191C640.74 394.598 640.547 394.974 640.257 395.268C639.89 395.626 639.398 395.825 638.886 395.824C638.375 395.822 637.884 395.619 637.52 395.258C637.287 395.02 637.119 394.726 637.032 394.405C636.944 394.083 636.941 393.744 637.022 393.421C637.102 393.097 637.265 392.8 637.493 392.557C637.722 392.315 638.008 392.134 638.326 392.034C638.644 391.934 638.982 391.916 639.309 391.984C639.635 392.051 639.939 392.202 640.191 392.42C640.443 392.638 640.634 392.917 640.748 393.231C640.861 393.544 640.892 393.882 640.838 394.211L640.81 394.191Z" fill="white"/>
182
+ <path opacity="0.5" d="M959.614 489.577C959.533 490.034 959.294 490.448 958.938 490.747C958.582 491.045 958.132 491.208 957.668 491.208C957.148 491.197 956.653 490.986 956.287 490.618C955.932 490.251 955.736 489.759 955.739 489.249C955.743 488.739 955.946 488.25 956.306 487.888C956.671 487.531 957.163 487.332 957.675 487.336C958.186 487.339 958.675 487.545 959.036 487.907C959.26 488.117 959.431 488.379 959.531 488.67C959.632 488.961 959.66 489.272 959.614 489.577V489.577Z" fill="white"/>
183
+ <path opacity="0.5" d="M1007.72 443.544C1007.62 444.127 1007.34 444.664 1006.92 445.081C1006.39 445.599 1005.68 445.884 1004.93 445.875C1004.19 445.866 1003.48 445.563 1002.97 445.033C1002.66 444.719 1002.43 444.337 1002.3 443.918C1002.17 443.499 1002.14 443.055 1002.21 442.622C1002.31 442.036 1002.59 441.495 1003.01 441.076C1003.28 440.818 1003.59 440.615 1003.93 440.478C1004.27 440.341 1004.63 440.272 1005 440.277C1005.37 440.281 1005.73 440.358 1006.07 440.504C1006.41 440.649 1006.71 440.86 1006.97 441.124C1007.28 441.437 1007.51 441.821 1007.64 442.242C1007.77 442.663 1007.8 443.11 1007.72 443.544V443.544Z" fill="white"/>
184
+ <path opacity="0.5" d="M1065.55 234.161C1065.5 234.463 1065.36 234.742 1065.14 234.956C1064.86 235.215 1064.5 235.355 1064.12 235.345C1063.74 235.335 1063.38 235.176 1063.12 234.902C1062.96 234.742 1062.84 234.546 1062.78 234.332C1062.71 234.117 1062.69 233.889 1062.73 233.667C1062.78 233.325 1062.96 233.014 1063.22 232.793C1063.49 232.571 1063.82 232.453 1064.17 232.461C1064.37 232.459 1064.56 232.498 1064.74 232.577C1064.93 232.655 1065.09 232.77 1065.22 232.915C1065.37 233.083 1065.47 233.284 1065.53 233.5C1065.59 233.716 1065.59 233.942 1065.55 234.161V234.161Z" fill="white"/>
185
+ <path opacity="0.5" d="M1198.05 132.413C1198 132.711 1197.85 132.982 1197.62 133.176C1197.39 133.37 1197.1 133.473 1196.8 133.466C1196.63 133.464 1196.47 133.43 1196.32 133.365C1196.16 133.3 1196.03 133.206 1195.91 133.088C1195.77 132.947 1195.67 132.775 1195.61 132.586C1195.55 132.397 1195.54 132.197 1195.58 132.003C1195.62 131.738 1195.74 131.494 1195.93 131.306C1196.17 131.075 1196.49 130.949 1196.83 130.955C1197.16 130.961 1197.48 131.098 1197.71 131.338C1197.85 131.477 1197.95 131.647 1198.01 131.834C1198.07 132.021 1198.08 132.22 1198.05 132.413Z" fill="white"/>
186
+ <path opacity="0.5" d="M1075.42 163.793C1075.29 164.553 1074.89 165.241 1074.29 165.729C1073.69 166.218 1072.94 166.475 1072.17 166.454C1071.75 166.453 1071.33 166.367 1070.95 166.202C1070.56 166.037 1070.21 165.796 1069.91 165.493C1069.32 164.881 1068.99 164.058 1068.99 163.203C1069 162.347 1069.35 161.531 1069.96 160.932C1070.57 160.338 1071.4 160.011 1072.25 160.024C1073.1 160.036 1073.92 160.387 1074.51 160.999C1074.88 161.356 1075.15 161.797 1075.31 162.284C1075.47 162.771 1075.51 163.289 1075.42 163.793V163.793Z" fill="white"/>
187
+ <path opacity="0.5" d="M979.562 241.459C979.477 241.888 979.25 242.276 978.919 242.56C978.587 242.844 978.169 243.009 977.733 243.028C977.296 243.046 976.866 242.918 976.511 242.663C976.157 242.408 975.898 242.041 975.776 241.621C975.655 241.202 975.678 240.753 975.841 240.348C976.005 239.943 976.3 239.605 976.679 239.388C977.058 239.17 977.499 239.086 977.931 239.149C978.364 239.213 978.762 239.419 979.063 239.736C979.278 239.963 979.435 240.238 979.521 240.537C979.608 240.837 979.622 241.153 979.562 241.459V241.459Z" fill="white"/>
188
+ <path opacity="0.5" d="M911.029 246.432C910.897 247.197 910.495 247.889 909.895 248.383C909.295 248.876 908.538 249.138 907.762 249.119C907.294 249.113 906.833 249.006 906.41 248.805C905.988 248.604 905.613 248.314 905.313 247.955C905.013 247.596 904.793 247.176 904.67 246.725C904.547 246.273 904.523 245.801 904.599 245.339C904.731 244.574 905.134 243.881 905.734 243.388C906.333 242.894 907.09 242.633 907.867 242.651C908.292 242.651 908.713 242.737 909.105 242.904C909.496 243.072 909.849 243.317 910.142 243.625C910.501 243.99 910.769 244.434 910.923 244.922C911.077 245.409 911.114 245.927 911.029 246.432V246.432Z" fill="white"/>
189
+ <path opacity="0.5" d="M850.104 349.767C849.975 350.541 849.543 351.232 848.904 351.688C848.264 352.144 847.47 352.327 846.696 352.197C845.922 352.068 845.231 351.636 844.775 350.996C844.319 350.357 844.136 349.563 844.265 348.789C844.366 348.171 844.666 347.602 845.119 347.169C845.564 346.72 846.141 346.426 846.766 346.328C847.391 346.231 848.03 346.337 848.591 346.629C849.151 346.922 849.603 347.386 849.88 347.954C850.158 348.522 850.246 349.164 850.132 349.786L850.104 349.767Z" fill="white"/>
190
+ <path opacity="0.5" d="M1124.26 174.65C1124.19 175.058 1124 175.434 1123.71 175.727C1123.34 176.082 1122.85 176.278 1122.34 176.275C1121.83 176.271 1121.34 176.068 1120.98 175.708C1120.62 175.342 1120.42 174.85 1120.42 174.338C1120.42 173.826 1120.62 173.335 1120.99 172.972C1121.36 172.611 1121.85 172.41 1122.37 172.411C1122.63 172.415 1122.88 172.471 1123.12 172.573C1123.35 172.676 1123.56 172.825 1123.74 173.01C1123.95 173.224 1124.11 173.484 1124.2 173.769C1124.28 174.054 1124.31 174.355 1124.26 174.65V174.65Z" fill="white"/>
191
+ </g>
192
+ <path d="M906.374 200.781L906.468 200.998L918.594 279.09L868.164 270.471L868.074 270.133L868.049 270.499L830.697 304.38L777.836 300.959L777.762 300.907L777.724 300.962L747.378 356.256L707.817 360.872L689.692 395.476L650.94 367.54L651.022 367.735L651.833 436.336L587.768 458.562L553.878 401.137L474.471 413.982L474.144 413.861L474.41 414.048L446.335 521.582L356.603 355.424L356.502 355.353L375.68 503.019L257.751 363.908L257.738 363.789L304.681 547.579L356.382 612.849L356.289 612.865L356.371 612.923L58.4064 543.88L58.3676 543.935L58.4317 543.98L313.289 692.769L285.253 743.972L285.182 744.073L340.49 739.454L381.664 773.076L394.612 801.136L370.736 837.787L414.586 926.321L414.71 926.573L413.998 842.858L459.812 819.926L479.189 724.705L514.457 741.926L514.604 742.126L506.302 679.323L535.465 652.19L520.461 553.58L635.71 528.655L635.793 528.713L635.844 528.64L635.945 528.614L635.899 528.582L692.235 471.306L675.243 428.503L715.649 414.484L747.425 356.578L777.307 353.103L815.028 318.894L863.228 341.699L863.283 341.738L886.251 387.618L886.206 387.682L886.27 387.728L905.657 399.619L907.294 429.014L828.708 498.644L814.361 553.208L769.364 601.583L769.222 601.785L832.041 581.793L830.192 533.856L865.274 490.708L904.504 482.265L905.617 462.175L963.826 435.009L963.939 434.966L932.515 415.696L986.858 387.148L987.178 387.141L986.92 387.041L1021.83 291.87L1022.14 291.801L1021.8 291.754L961.716 244.438L967.49 211.478L967.54 211.212L950.132 235.348L906.45 200.945L906.374 200.781ZM707.881 361.151L715.621 414.135L689.86 395.567L707.881 361.151ZM689.698 395.603L674.055 425.443L651.239 367.97L689.698 395.603ZM651.218 368.079L674.015 425.538L672.014 429.367L652.03 436.31L651.218 368.079ZM674.082 425.696L675.118 428.291L672.196 429.303L674.082 425.696ZM459.667 819.782L414.032 842.635L430.007 795.913L459.667 819.782ZM414.033 842.225L418.809 790.593L429.897 795.835L414.033 842.225ZM593.548 493.595L580.47 482.793L587.767 458.835L607.361 487.331L593.548 493.595ZM607.473 487.465L635.477 528.188L593.661 493.688L607.473 487.465ZM414.32 692.748L401.671 635.232L456.876 660.317L414.32 692.748ZM414.191 692.794L363.937 690.266L401.201 634.983L401.542 635.141L414.191 692.794ZM394.008 604.851L401.03 634.643L356.733 612.876L394.008 604.851ZM414.895 600.381L401.154 634.758L394.114 604.857L414.895 600.381ZM394.083 604.726L380.57 547.19L433.438 554.003L414.975 600.191L394.083 604.726ZM415.034 600.301L446.058 593.613L401.267 634.714L415.034 600.301ZM415.124 600.173L433.556 554.031L446.29 555.675L446.242 593.469L415.124 600.173ZM433.609 553.918L446.331 522.073L446.26 555.544L433.609 553.918ZM446.486 521.854L486.404 560.679L446.44 555.521L446.486 521.854ZM446.564 521.744L492.793 514.713L486.523 560.627L446.564 521.744ZM433.511 553.862L380.766 547.067L446.319 521.818L433.511 553.862ZM394.006 604.699L356.671 612.75L380.489 547.324L394.006 604.699ZM401.076 634.771L401.122 634.804L360.116 649.908L356.575 612.984L401.076 634.771ZM400.998 635.018L363.85 690.137L360.099 650.088L400.998 635.018ZM363.725 690.158L330.937 660.805L359.952 650.121L363.725 690.158ZM363.523 690.153L322.355 676.395L330.842 660.902L363.523 690.153ZM414.116 692.92L389.346 720.999L363.917 690.43L414.116 692.92ZM414.05 693.189L398.344 731.83L389.446 721.11L414.05 693.189ZM414.207 693.121L421.47 759.635L398.471 731.961L414.207 693.121ZM401.646 635.091L401.618 634.975L401.417 634.833L446.188 593.623L456.877 660.14L401.646 635.091ZM446.423 555.701L486.418 560.854L446.349 593.394L446.423 555.701ZM492.911 514.74L508.951 512.339L517.33 533.596L486.597 560.678L492.911 514.74ZM492.927 514.601L497.287 482.537L508.937 512.164L492.927 514.601ZM509.105 512.296L523.829 510.049L517.439 533.44L509.105 512.296ZM509.058 512.167L497.33 482.32L526.691 460.236L535.385 467.919L523.863 509.923L509.058 512.167ZM580.378 482.729L540.653 449.95L587.7 458.775L580.378 482.729ZM580.301 482.839L574.401 502.131L540.67 450.14L580.301 482.839ZM526.758 460.16L540.269 450.008L535.386 467.782L526.758 460.16ZM535.458 468.011L574.268 502.243L523.97 509.888L535.458 468.011ZM535.535 467.901L540.44 450.019L574.138 501.959L535.535 467.901ZM580.437 482.976L593.439 493.71L574.561 502.216L580.437 482.976ZM587.883 458.807L652.025 467.236L607.48 487.319L587.883 458.807ZM540.415 449.782L540.332 449.724L540.268 449.815L526.696 460.034L474.815 414.252L587.129 458.495L540.415 449.782ZM526.612 460.154L497.336 482.215L474.692 414.329L526.612 460.154ZM497.252 482.334L492.844 514.68L446.543 521.715L474.56 414.36L497.252 482.334ZM380.585 547.091L375.893 503.183L446.236 521.8L380.585 547.091ZM356.627 612.637L349.414 547.434L380.435 547.245L356.627 612.637ZM360.005 650.104L330.933 660.734L356.457 613.093L360.005 650.104ZM322.285 676.456L58.6385 543.921L330.66 660.966L322.285 676.456ZM322.208 676.566L318.601 683.156L58.6968 544.071L322.208 676.566ZM322.318 676.643L363.701 690.484L345.758 708.456L318.673 683.289L322.318 676.643ZM363.817 690.552L389.272 721.084L375.812 736.278L345.804 708.391L363.817 690.552ZM375.675 736.414L326.581 727.847L345.798 708.593L375.675 736.414ZM375.368 736.5L340.557 739.378L326.633 728.007L375.368 736.5ZM375.978 736.491L389.438 721.296L398.391 732.055L393.047 745.211L375.978 736.491ZM398.428 732.177L421.343 759.737L393.113 745.313L398.428 732.177ZM421.632 760.339L429.828 795.719L418.768 790.496L421.632 760.339ZM418.711 790.538L405.746 784.397L421.465 760.167L418.711 790.538ZM421.67 759.954L455.242 727.757L430.005 795.72L421.67 759.954ZM421.652 759.805L414.367 693.07L459.877 715.294L455.377 727.508L421.652 759.805ZM414.638 693.055L466.243 698.14L459.921 715.174L414.638 693.055ZM459.991 715.346L465.296 717.936L455.563 727.283L459.991 715.346ZM460.062 715.246L466.403 698.185L484.126 699.932L465.419 717.859L460.062 715.246ZM484.166 700.07L479.204 724.605L465.579 717.944L484.166 700.07ZM484.136 699.802L466.444 698.049L472.214 682.519L484.136 699.802ZM472.277 682.371L497.413 614.337L484.134 699.609L472.277 682.371ZM466.314 698.04L414.486 692.92L457.029 660.507L472.127 682.389L466.314 698.04ZM446.417 593.648L486.483 561.092L456.974 660.002L446.417 593.648ZM517.41 533.831L520.41 553.516L486.824 560.784L517.41 533.831ZM523.999 510.101L574.14 502.482L517.56 533.58L523.999 510.101ZM574.65 502.362L593.605 493.786L635.47 528.334L574.65 502.362ZM607.63 487.494L652.245 467.391L635.793 528.48L607.63 487.494ZM671.947 429.676L652.404 467.009L652.044 436.581L671.947 429.676ZM652.275 467.193L588.017 458.655L651.857 436.477L652.275 467.193ZM587.672 458.659L474.779 414.186L553.874 401.395L587.672 458.659ZM356.71 355.72L445.923 521.621L375.868 503.083L356.71 355.72ZM375.726 503.051L380.392 546.995L349.34 547.19L257.785 363.918L375.726 503.051ZM349.221 547.202L304.907 547.492L257.643 364.079L349.221 547.202ZM304.926 547.601L349.249 547.318L356.464 612.577L304.926 547.601ZM330.747 660.726L58.6702 543.778L356.19 613.316L330.747 660.726ZM58.658 544.126L318.538 683.208L313.394 692.582L58.658 544.126ZM313.443 692.726L318.607 683.284L345.672 708.422L326.413 727.755L313.443 692.726ZM326.337 727.784L285.387 743.82L313.29 692.865L326.337 727.784ZM285.747 743.854L326.412 727.892L340.33 739.273L285.747 743.854ZM340.619 739.408L375.782 736.476L392.91 745.251L381.609 772.941L340.619 739.408ZM381.735 772.975L393.036 745.286L421.486 759.865L405.598 784.238L381.735 772.975ZM381.796 773.142L405.446 784.337L394.607 800.968L381.796 773.142ZM394.706 801.12L405.594 784.4L418.626 790.56L413.814 842.536L394.706 801.12ZM370.821 837.764L394.583 801.294L413.715 842.754L370.821 837.764ZM370.827 837.892L413.755 842.892L413.708 843.367L413.798 843.239L414.522 926.043L370.827 837.892ZM459.646 819.753L429.964 795.856L455.349 727.489L465.312 717.934L479.008 724.631L459.646 819.753ZM479.156 724.558L484.169 699.949L514.22 741.718L479.156 724.558ZM514.347 741.616L484.223 699.795L506.132 679.409L514.347 741.616ZM484.224 699.618L497.542 614.154L506.143 679.198L484.224 699.618ZM506.225 679.159L497.637 613.727L497.61 613.474L472.106 682.127L457.041 660.296L486.558 560.966L535.344 652.09L506.225 679.159ZM535.24 651.771L486.573 560.867L520.309 553.582L535.24 651.771ZM517.415 533.67L574.348 502.382L574.403 502.42L635.504 528.578L520.426 553.473L517.415 533.67ZM692.025 471.214L635.84 528.335L652.274 467.233L671.997 429.546L675.048 428.488L692.025 471.214ZM674.063 425.627L689.657 395.739L715.426 414.313L675.245 428.326L674.063 425.627ZM715.642 414.163L707.886 361.086L747.363 356.452L715.642 414.163ZM1021.45 291.879L950.501 308.699L954.88 283.726L1021.45 291.879ZM922.381 387.303L930.309 365.134L986.537 387.059L922.381 387.303ZM922.245 387.302L905.196 387.361L903.361 354.63L930.189 365.09L922.245 387.302ZM939.351 281.825L950.247 308.534L918.825 279.307L939.351 281.825ZM863.565 341.552L890.682 331.341L903.191 354.442L863.565 341.552ZM863.587 341.404L883.778 318.612L890.598 331.227L863.587 341.404ZM883.862 318.493L918.613 279.295L950.267 308.74L890.696 331.186L883.862 318.493ZM918.484 279.245L883.9 318.342L878.037 307.5L868.232 270.629L918.484 279.245ZM877.792 307.478L865.713 306.693L868.08 270.96L877.792 307.478ZM877.782 307.608L863.426 341.166L865.703 306.824L877.782 307.608ZM877.892 307.685L883.717 318.446L863.565 341.182L877.892 307.685ZM903.183 354.532L886.427 387.331L863.547 341.636L903.183 354.532ZM903.233 354.732L905.045 387.323L886.528 387.402L903.233 354.732ZM903.408 354.485L890.876 331.3L950.384 308.904L930.314 364.972L903.408 354.485ZM950.423 308.479L939.529 281.786L954.779 283.655L950.423 308.479ZM939.473 281.651L931.337 261.703L950.237 235.491L961.65 244.473L954.798 283.531L939.473 281.651ZM939.325 281.628L918.783 279.113L931.241 261.84L939.325 281.628ZM918.705 278.99L906.641 201.491L931.271 261.738L918.705 278.99ZM868.031 270.679L865.64 306.642L830.868 304.39L868.031 270.679ZM778.143 301.107L830.594 304.526L815.095 318.585L778.143 301.107ZM747.525 356.319L777.705 301.319L777.291 352.873L747.525 356.319ZM777.408 352.708L777.889 301.175L814.965 318.712L777.408 352.708ZM815.172 318.612L830.728 304.511L865.621 306.766L863.32 341.393L815.172 318.612ZM886.674 387.505L905.144 387.434L905.801 399.24L886.674 387.505ZM905.936 399.321L905.275 387.444L922.28 387.368L915.83 405.381L905.936 399.321ZM915.78 405.51L907.553 428.511L905.94 399.489L915.78 405.51ZM907.709 428.621L915.935 405.62L932.415 415.721L907.735 428.68L907.858 428.506L907.709 428.621ZM769.67 601.538L814.45 553.394L831.94 581.722L769.67 601.538ZM831.905 581.519L814.471 553.285L830.131 534.019L831.905 581.519ZM814.544 553.007L828.824 498.945L830.124 533.836L814.544 553.007ZM830.258 533.684L828.968 498.566L865.151 490.786L830.258 533.684ZM829.097 498.383L907.187 429.185L877.937 474.992L865.279 490.547L829.097 498.383ZM878.021 475.107L904.278 482.215L865.5 490.525L878.021 475.107ZM904.48 482.124L878.209 475.034L905.606 462.249L904.48 482.124ZM878.166 474.88L907.417 429.073L905.591 462.074L878.166 474.88ZM907.549 428.905L963.625 434.964L905.683 462.002L907.549 428.905ZM963.598 434.904L907.688 428.825L932.521 415.727L963.598 434.904ZM915.901 405.513L922.378 387.424L986.655 387.183L932.468 415.608L915.901 405.513ZM930.406 364.997L950.476 308.929L986.806 386.988L930.406 364.997ZM950.56 308.81L1021.76 291.931L986.982 386.933L950.56 308.81ZM1021.65 291.741L954.965 283.566L961.799 244.592L1021.65 291.741ZM967.43 211.737L961.735 244.314L950.377 235.37L967.43 211.737ZM950.173 235.446L931.319 261.593L906.698 201.216L950.173 235.446Z" fill="white"/>
193
+ <path d="M374.084 838.173C374.016 838.839 373.751 839.47 373.322 839.984C372.893 840.498 372.32 840.873 371.677 841.06C371.034 841.247 370.35 841.237 369.712 841.033C369.075 840.828 368.512 840.438 368.098 839.912C367.683 839.386 367.435 838.748 367.386 838.08C367.336 837.412 367.487 836.745 367.819 836.164C368.151 835.582 368.649 835.113 369.25 834.816C369.85 834.52 370.526 834.409 371.189 834.499C372.054 834.616 372.84 835.064 373.38 835.75C373.92 836.436 374.173 837.305 374.084 838.173V838.173Z" fill="white"/>
194
+ <path d="M378.99 736.791C378.917 737.416 378.66 738.006 378.252 738.485C377.843 738.965 377.302 739.312 376.696 739.484C376.09 739.655 375.447 739.643 374.848 739.449C374.249 739.256 373.721 738.888 373.331 738.394C372.94 737.9 372.705 737.301 372.655 736.674C372.605 736.046 372.743 735.418 373.05 734.868C373.357 734.318 373.82 733.872 374.381 733.586C374.942 733.3 375.575 733.186 376.2 733.26C377.037 733.361 377.8 733.789 378.323 734.451C378.845 735.112 379.085 735.953 378.99 736.791V736.791Z" fill="white"/>
195
+ <path d="M286.755 744.155C286.743 744.359 286.689 744.558 286.597 744.741C286.505 744.923 286.377 745.084 286.22 745.216C286.064 745.347 285.882 745.444 285.687 745.503C285.491 745.561 285.286 745.58 285.083 745.556C284.88 745.533 284.684 745.468 284.507 745.366C284.33 745.264 284.176 745.127 284.054 744.964C283.931 744.801 283.844 744.614 283.796 744.416C283.748 744.217 283.741 744.011 283.776 743.81C283.841 743.431 284.049 743.092 284.356 742.862C284.664 742.632 285.048 742.528 285.429 742.572C285.811 742.617 286.161 742.805 286.407 743.1C286.654 743.394 286.778 743.772 286.755 744.155Z" fill="white"/>
196
+ <path d="M332.765 661.093C332.72 661.476 332.562 661.837 332.312 662.13C332.062 662.424 331.73 662.636 331.359 662.741C330.988 662.846 330.594 662.838 330.227 662.719C329.86 662.6 329.537 662.375 329.298 662.073C329.059 661.77 328.915 661.403 328.885 661.019C328.854 660.634 328.938 660.249 329.126 659.913C329.315 659.576 329.598 659.303 329.942 659.128C330.285 658.952 330.673 658.882 331.056 658.927C331.569 658.991 332.036 659.253 332.356 659.659C332.676 660.064 332.823 660.58 332.765 661.093V661.093Z" fill="white"/>
197
+ <path d="M306.7 547.809C306.654 548.192 306.495 548.552 306.245 548.844C305.994 549.136 305.663 549.348 305.292 549.452C304.922 549.557 304.528 549.549 304.162 549.43C303.796 549.312 303.473 549.087 303.234 548.785C302.995 548.483 302.851 548.118 302.82 547.734C302.789 547.35 302.872 546.966 303.058 546.629C303.245 546.292 303.528 546.018 303.87 545.842C304.212 545.666 304.599 545.594 304.981 545.637C305.497 545.698 305.967 545.961 306.289 546.368C306.612 546.775 306.759 547.294 306.7 547.809V547.809Z" fill="white"/>
198
+ <path d="M358.413 613.06C358.368 613.443 358.21 613.804 357.96 614.097C357.709 614.391 357.378 614.603 357.007 614.708C356.635 614.813 356.242 614.805 355.875 614.686C355.508 614.567 355.185 614.342 354.946 614.039C354.707 613.737 354.563 613.37 354.532 612.985C354.502 612.601 354.586 612.216 354.774 611.88C354.962 611.543 355.246 611.27 355.59 611.094C355.933 610.919 356.321 610.849 356.704 610.894C356.958 610.924 357.205 611.004 357.428 611.129C357.652 611.254 357.849 611.422 358.007 611.623C358.166 611.824 358.284 612.055 358.353 612.301C358.423 612.548 358.443 612.806 358.413 613.06V613.06Z" fill="white"/>
199
+ <path d="M61.5326 544.29C61.4612 544.899 61.2106 545.474 60.8125 545.941C60.4144 546.409 59.8868 546.747 59.2963 546.915C58.7057 547.082 58.0787 547.071 57.4946 546.882C56.9105 546.694 56.3954 546.336 56.0145 545.855C55.6336 545.373 55.4039 544.79 55.3545 544.178C55.3051 543.566 55.4382 542.953 55.7369 542.417C56.0356 541.881 56.4866 541.445 57.0329 541.165C57.5791 540.885 58.1961 540.774 58.8059 540.844C59.6234 540.942 60.3692 541.359 60.8801 542.004C61.391 542.65 61.6256 543.472 61.5326 544.29V544.29Z" fill="white"/>
200
+ <path d="M328.311 728.079C328.268 728.463 328.112 728.825 327.863 729.12C327.614 729.414 327.283 729.628 326.912 729.735C326.541 729.841 326.147 729.836 325.779 729.718C325.412 729.601 325.088 729.377 324.847 729.075C324.607 728.773 324.462 728.406 324.43 728.022C324.398 727.637 324.481 727.252 324.668 726.914C324.855 726.577 325.138 726.303 325.481 726.126C325.824 725.95 326.212 725.879 326.596 725.923C327.108 725.985 327.575 726.246 327.896 726.649C328.217 727.053 328.366 727.567 328.311 728.079V728.079Z" fill="white"/>
201
+ <path d="M383.624 773.253C383.578 773.635 383.42 773.995 383.169 774.287C382.919 774.58 382.587 774.792 382.217 774.896C381.846 775 381.453 774.993 381.087 774.874C380.72 774.755 380.397 774.531 380.158 774.229C379.92 773.927 379.775 773.561 379.744 773.177C379.713 772.793 379.796 772.409 379.983 772.072C380.17 771.736 380.452 771.462 380.794 771.285C381.136 771.109 381.523 771.038 381.906 771.081C382.421 771.142 382.892 771.404 383.214 771.812C383.536 772.219 383.684 772.737 383.624 773.253V773.253Z" fill="white"/>
202
+ <path d="M431.45 796.027C431.417 796.327 431.295 796.61 431.1 796.841C430.905 797.072 430.646 797.239 430.356 797.323C430.066 797.406 429.758 797.401 429.47 797.309C429.183 797.217 428.929 797.042 428.741 796.805C428.554 796.569 428.44 796.282 428.416 795.981C428.391 795.68 428.457 795.379 428.604 795.115C428.751 794.852 428.973 794.638 429.241 794.5C429.51 794.363 429.814 794.308 430.114 794.344C430.312 794.366 430.505 794.427 430.679 794.523C430.854 794.62 431.008 794.75 431.133 794.907C431.257 795.063 431.349 795.243 431.403 795.435C431.458 795.627 431.474 795.829 431.45 796.027V796.027Z" fill="white"/>
203
+ <path d="M516.445 742.066C516.4 742.449 516.242 742.81 515.992 743.103C515.742 743.396 515.41 743.609 515.039 743.714C514.668 743.819 514.274 743.811 513.907 743.692C513.54 743.573 513.217 743.348 512.978 743.045C512.739 742.743 512.595 742.376 512.565 741.991C512.534 741.607 512.618 741.222 512.806 740.885C512.995 740.549 513.278 740.275 513.622 740.1C513.965 739.925 514.353 739.855 514.736 739.9C515.249 739.963 515.716 740.226 516.036 740.632C516.356 741.037 516.503 741.553 516.445 742.066V742.066Z" fill="white"/>
204
+ <path d="M499.003 613.894C498.931 614.246 498.73 614.558 498.439 614.769C498.148 614.98 497.788 615.074 497.431 615.033C497.075 614.991 496.746 614.817 496.511 614.546C496.276 614.274 496.152 613.923 496.163 613.564C496.169 613.366 496.216 613.17 496.302 612.991C496.387 612.812 496.509 612.652 496.659 612.522C496.809 612.392 496.985 612.295 497.175 612.236C497.365 612.178 497.565 612.16 497.762 612.183C497.96 612.205 498.15 612.269 498.322 612.37C498.493 612.47 498.642 612.605 498.759 612.766C498.875 612.927 498.957 613.11 498.999 613.304C499.041 613.498 499.042 613.699 499.003 613.894Z" fill="white"/>
205
+ <path d="M576.369 502.492C576.324 502.875 576.166 503.236 575.915 503.529C575.665 503.822 575.333 504.035 574.962 504.14C574.591 504.244 574.197 504.237 573.83 504.118C573.464 503.999 573.14 503.774 572.901 503.471C572.662 503.168 572.518 502.802 572.488 502.417C572.457 502.033 572.542 501.648 572.73 501.311C572.918 500.974 573.202 500.701 573.545 500.526C573.889 500.351 574.277 500.281 574.66 500.326C574.914 500.356 575.16 500.436 575.384 500.561C575.607 500.686 575.804 500.853 575.963 501.055C576.122 501.256 576.239 501.486 576.309 501.733C576.379 501.979 576.399 502.237 576.369 502.492Z" fill="white"/>
206
+ <path d="M637.72 528.743C637.674 529.125 637.516 529.485 637.265 529.778C637.015 530.07 636.683 530.282 636.313 530.386C635.942 530.49 635.549 530.483 635.183 530.364C634.816 530.245 634.494 530.021 634.255 529.719C634.016 529.417 633.872 529.051 633.84 528.667C633.809 528.284 633.892 527.899 634.079 527.563C634.266 527.226 634.548 526.952 634.89 526.776C635.232 526.599 635.619 526.528 636.002 526.571C636.517 526.632 636.988 526.895 637.31 527.302C637.632 527.709 637.78 528.227 637.72 528.743V528.743Z" fill="white"/>
207
+ <path d="M694.099 471.427C694.054 471.81 693.896 472.171 693.645 472.464C693.395 472.758 693.063 472.97 692.692 473.075C692.321 473.18 691.927 473.172 691.56 473.053C691.193 472.934 690.87 472.709 690.631 472.407C690.392 472.104 690.248 471.737 690.218 471.353C690.187 470.968 690.272 470.583 690.46 470.247C690.648 469.91 690.932 469.637 691.275 469.462C691.619 469.286 692.006 469.217 692.389 469.262C692.644 469.291 692.89 469.371 693.114 469.496C693.337 469.621 693.534 469.789 693.693 469.99C693.852 470.191 693.969 470.422 694.039 470.668C694.108 470.915 694.129 471.173 694.099 471.427V471.427Z" fill="white"/>
208
+ <path d="M653.054 368.003C653.011 368.387 652.855 368.749 652.606 369.043C652.356 369.338 652.026 369.552 651.655 369.659C651.284 369.765 650.89 369.759 650.522 369.642C650.155 369.524 649.83 369.3 649.59 368.999C649.35 368.697 649.205 368.33 649.173 367.946C649.141 367.561 649.224 367.176 649.411 366.838C649.598 366.501 649.881 366.227 650.224 366.05C650.567 365.874 650.955 365.803 651.338 365.847C651.85 365.908 652.318 366.169 652.639 366.573C652.96 366.977 653.109 367.491 653.054 368.003Z" fill="white"/>
209
+ <path d="M259.666 364.15C259.62 364.533 259.463 364.894 259.212 365.187C258.962 365.48 258.63 365.693 258.259 365.798C257.888 365.903 257.494 365.895 257.127 365.776C256.76 365.657 256.437 365.432 256.198 365.129C255.959 364.827 255.815 364.46 255.785 364.075C255.754 363.691 255.839 363.306 256.027 362.969C256.215 362.633 256.499 362.359 256.842 362.184C257.186 362.009 257.573 361.939 257.956 361.984C258.469 362.047 258.936 362.31 259.256 362.716C259.576 363.121 259.723 363.636 259.666 364.15V364.15Z" fill="white"/>
210
+ <path d="M357.957 355.681C357.926 355.956 357.813 356.216 357.634 356.428C357.454 356.64 357.216 356.793 356.949 356.869C356.682 356.945 356.399 356.941 356.135 356.855C355.871 356.77 355.638 356.608 355.466 356.391C355.294 356.173 355.19 355.909 355.169 355.633C355.147 355.356 355.207 355.079 355.343 354.837C355.479 354.595 355.683 354.399 355.93 354.273C356.178 354.147 356.457 354.098 356.732 354.131C357.1 354.175 357.435 354.363 357.664 354.653C357.894 354.944 357.999 355.313 357.957 355.681V355.681Z" fill="white"/>
211
+ <path d="M423.492 760.073C423.433 760.588 423.172 761.058 422.766 761.38C422.36 761.702 421.843 761.85 421.328 761.791C420.813 761.731 420.343 761.47 420.021 761.064C419.699 760.658 419.551 760.141 419.611 759.626C419.64 759.371 419.719 759.125 419.844 758.901C419.969 758.676 420.136 758.479 420.337 758.319C420.538 758.16 420.769 758.042 421.015 757.971C421.262 757.901 421.52 757.88 421.775 757.909C422.03 757.939 422.277 758.018 422.501 758.142C422.725 758.267 422.923 758.435 423.082 758.636C423.241 758.837 423.36 759.067 423.43 759.314C423.501 759.561 423.522 759.819 423.492 760.073V760.073Z" fill="white"/>
212
+ <path d="M461.698 820.074C461.654 820.46 461.496 820.824 461.245 821.12C460.993 821.415 460.66 821.63 460.286 821.736C459.913 821.843 459.517 821.836 459.147 821.717C458.778 821.598 458.452 821.371 458.211 821.067C457.97 820.762 457.825 820.393 457.794 820.006C457.763 819.62 457.848 819.232 458.037 818.893C458.227 818.554 458.512 818.279 458.858 818.103C459.204 817.926 459.594 817.857 459.98 817.902C460.495 817.963 460.966 818.226 461.288 818.633C461.61 819.04 461.757 819.559 461.698 820.074V820.074Z" fill="white"/>
213
+ <path d="M486.131 699.99C486.086 700.373 485.928 700.734 485.678 701.027C485.427 701.32 485.096 701.533 484.724 701.638C484.353 701.742 483.959 701.735 483.593 701.616C483.226 701.497 482.902 701.272 482.663 700.969C482.425 700.666 482.281 700.3 482.25 699.915C482.22 699.531 482.304 699.146 482.492 698.809C482.68 698.473 482.964 698.199 483.307 698.024C483.651 697.849 484.039 697.779 484.422 697.824C484.676 697.854 484.922 697.934 485.146 698.059C485.37 698.184 485.566 698.351 485.725 698.553C485.884 698.754 486.001 698.984 486.071 699.231C486.141 699.477 486.161 699.735 486.131 699.99V699.99Z" fill="white"/>
214
+ <path d="M416.189 693.094C416.146 693.48 415.99 693.845 415.74 694.142C415.49 694.439 415.158 694.655 414.785 694.763C414.412 694.871 414.015 694.866 413.645 694.748C413.275 694.631 412.948 694.406 412.706 694.102C412.464 693.799 412.317 693.43 412.285 693.043C412.252 692.656 412.335 692.268 412.524 691.928C412.712 691.589 412.997 691.313 413.342 691.135C413.688 690.957 414.078 690.886 414.464 690.931C414.979 690.99 415.449 691.251 415.773 691.656C416.096 692.062 416.246 692.578 416.189 693.094V693.094Z" fill="white"/>
215
+ <path d="M365.713 690.587C365.669 690.971 365.513 691.333 365.264 691.627C365.015 691.922 364.684 692.136 364.313 692.243C363.943 692.349 363.548 692.343 363.181 692.226C362.813 692.108 362.489 691.884 362.249 691.582C362.009 691.281 361.863 690.914 361.831 690.53C361.799 690.145 361.882 689.76 362.069 689.422C362.257 689.085 362.54 688.811 362.883 688.634C363.226 688.458 363.614 688.387 363.997 688.431C364.509 688.492 364.976 688.753 365.298 689.157C365.619 689.561 365.768 690.074 365.713 690.587Z" fill="white"/>
216
+ <path d="M404.963 635.388C404.872 636.144 404.558 636.857 404.063 637.436C403.567 638.014 402.911 638.433 402.177 638.639C401.443 638.845 400.665 638.829 399.94 638.593C399.216 638.357 398.578 637.911 398.106 637.313C397.634 636.714 397.351 635.989 397.291 635.23C397.231 634.47 397.398 633.709 397.77 633.044C398.142 632.379 398.703 631.84 399.382 631.493C400.06 631.147 400.826 631.009 401.583 631.098C402.6 631.22 403.526 631.74 404.16 632.544C404.793 633.348 405.082 634.371 404.963 635.388V635.388Z" fill="white"/>
217
+ <path d="M382.386 547.36C382.34 547.742 382.181 548.102 381.931 548.395C381.68 548.687 381.349 548.899 380.978 549.003C380.608 549.108 380.215 549.1 379.848 548.981C379.482 548.863 379.159 548.638 378.92 548.336C378.681 548.034 378.537 547.668 378.506 547.285C378.475 546.901 378.558 546.516 378.744 546.18C378.931 545.843 379.214 545.569 379.556 545.393C379.898 545.216 380.285 545.145 380.667 545.188C381.183 545.249 381.653 545.512 381.976 545.919C382.298 546.326 382.445 546.844 382.386 547.36V547.36Z" fill="white"/>
218
+ <path d="M448.213 593.748C448.168 594.131 448.01 594.492 447.76 594.785C447.509 595.078 447.178 595.291 446.806 595.395C446.435 595.5 446.041 595.493 445.675 595.374C445.308 595.255 444.984 595.03 444.745 594.727C444.507 594.424 444.363 594.057 444.332 593.673C444.302 593.289 444.386 592.904 444.574 592.567C444.762 592.23 445.046 591.957 445.389 591.782C445.733 591.606 446.121 591.537 446.504 591.582C446.758 591.612 447.004 591.691 447.228 591.816C447.452 591.941 447.648 592.109 447.807 592.311C447.966 592.512 448.083 592.742 448.153 592.989C448.223 593.235 448.243 593.493 448.213 593.748V593.748Z" fill="white"/>
219
+ <path d="M458.943 660.5C458.88 661.013 458.617 661.48 458.211 661.8C457.806 662.12 457.29 662.267 456.777 662.209C456.394 662.164 456.033 662.006 455.74 661.756C455.446 661.506 455.234 661.174 455.129 660.803C455.024 660.432 455.032 660.038 455.151 659.671C455.27 659.304 455.495 658.981 455.798 658.742C456.1 658.503 456.467 658.359 456.852 658.328C457.236 658.298 457.621 658.382 457.958 658.57C458.294 658.758 458.567 659.042 458.743 659.386C458.918 659.729 458.988 660.117 458.943 660.5V660.5Z" fill="white"/>
220
+ <path d="M489.944 561.202C489.864 561.875 489.586 562.509 489.145 563.024C488.705 563.539 488.122 563.912 487.47 564.096C486.818 564.28 486.126 564.267 485.481 564.058C484.837 563.849 484.268 563.454 483.848 562.922C483.428 562.391 483.174 561.747 483.12 561.071C483.065 560.396 483.212 559.719 483.541 559.127C483.871 558.535 484.369 558.054 484.971 557.744C485.574 557.435 486.255 557.311 486.928 557.388C487.834 557.494 488.66 557.956 489.225 558.671C489.79 559.386 490.049 560.296 489.944 561.202Z" fill="white"/>
221
+ <path d="M499.17 482.494C499.126 482.877 498.97 483.239 498.721 483.534C498.472 483.828 498.141 484.042 497.77 484.149C497.4 484.255 497.005 484.25 496.638 484.132C496.27 484.014 495.946 483.791 495.706 483.489C495.466 483.187 495.32 482.82 495.288 482.436C495.256 482.051 495.339 481.666 495.526 481.329C495.714 480.991 495.997 480.717 496.34 480.54C496.683 480.364 497.071 480.293 497.454 480.337C497.966 480.399 498.433 480.66 498.754 481.063C499.076 481.467 499.225 481.981 499.17 482.494V482.494Z" fill="white"/>
222
+ <path d="M541.85 449.987C541.816 450.273 541.698 450.542 541.512 450.761C541.325 450.98 541.077 451.138 540.801 451.217C540.524 451.295 540.23 451.29 539.956 451.202C539.682 451.114 539.441 450.946 539.262 450.721C539.083 450.495 538.975 450.222 538.951 449.935C538.927 449.649 538.989 449.361 539.128 449.109C539.268 448.858 539.478 448.653 539.734 448.521C539.99 448.389 540.279 448.335 540.565 448.367C540.756 448.388 540.941 448.447 541.109 448.54C541.277 448.633 541.425 448.759 541.545 448.909C541.664 449.06 541.752 449.233 541.805 449.418C541.857 449.602 541.873 449.796 541.85 449.987V449.987Z" fill="white"/>
223
+ <path d="M538.266 652.44C538.205 653.004 537.978 653.539 537.614 653.974C537.249 654.41 536.764 654.728 536.218 654.887C535.673 655.047 535.093 655.041 534.551 654.87C534.009 654.699 533.53 654.372 533.175 653.928C532.819 653.485 532.603 652.946 532.554 652.38C532.506 651.814 532.626 651.247 532.9 650.749C533.174 650.251 533.59 649.846 534.094 649.585C534.599 649.324 535.169 649.218 535.734 649.282C536.488 649.367 537.177 649.747 537.652 650.338C538.126 650.93 538.347 651.685 538.266 652.44V652.44Z" fill="white"/>
224
+ <path d="M519.343 533.835C519.284 534.35 519.022 534.82 518.616 535.142C518.211 535.464 517.693 535.612 517.179 535.552C516.664 535.493 516.194 535.232 515.872 534.826C515.55 534.42 515.402 533.903 515.461 533.388C515.491 533.133 515.57 532.887 515.695 532.662C515.819 532.438 515.987 532.241 516.188 532.081C516.389 531.922 516.619 531.803 516.866 531.733C517.113 531.663 517.371 531.641 517.626 531.671C517.881 531.7 518.127 531.779 518.351 531.904C518.576 532.029 518.773 532.196 518.933 532.397C519.092 532.598 519.21 532.829 519.281 533.076C519.351 533.322 519.372 533.58 519.343 533.835Z" fill="white"/>
225
+ <path d="M415.822 843.035C415.777 843.418 415.619 843.779 415.369 844.072C415.119 844.365 414.787 844.578 414.416 844.683C414.045 844.787 413.651 844.78 413.284 844.661C412.917 844.542 412.594 844.317 412.355 844.014C412.116 843.711 411.972 843.345 411.942 842.96C411.911 842.576 411.995 842.191 412.183 841.854C412.372 841.518 412.655 841.244 412.999 841.069C413.342 840.893 413.73 840.824 414.113 840.869C414.368 840.899 414.614 840.978 414.837 841.104C415.061 841.229 415.258 841.396 415.417 841.598C415.575 841.799 415.693 842.029 415.762 842.276C415.832 842.522 415.853 842.78 415.822 843.035V843.035Z" fill="white"/>
226
+ <path d="M952.422 308.972C952.377 309.383 952.202 309.769 951.921 310.072C951.566 310.451 951.077 310.677 950.558 310.702C950.276 310.712 949.994 310.662 949.734 310.553C949.473 310.445 949.239 310.281 949.048 310.073C948.856 309.865 948.713 309.618 948.626 309.349C948.54 309.08 948.513 308.796 948.547 308.516C948.592 308.104 948.767 307.719 949.049 307.416C949.328 307.111 949.697 306.903 950.102 306.821C950.508 306.74 950.929 306.789 951.304 306.962C951.679 307.135 951.99 307.423 952.191 307.785C952.392 308.146 952.473 308.562 952.422 308.972V308.972Z" fill="white"/>
227
+ <path d="M888.37 387.686C888.326 388.101 888.144 388.49 887.853 388.789C887.677 388.982 887.464 389.137 887.226 389.245C886.989 389.354 886.732 389.413 886.471 389.42C886.21 389.427 885.95 389.381 885.708 389.285C885.465 389.189 885.244 389.045 885.058 388.862C884.87 388.683 884.718 388.469 884.612 388.232C884.506 387.995 884.448 387.739 884.442 387.48C884.435 387.22 884.479 386.961 884.573 386.719C884.666 386.477 884.807 386.255 884.986 386.067C885.163 385.876 885.376 385.722 885.613 385.614C885.851 385.507 886.107 385.448 886.367 385.441C886.628 385.434 886.887 385.48 887.13 385.575C887.372 385.67 887.594 385.813 887.78 385.995C888.008 386.208 888.181 386.473 888.283 386.768C888.386 387.062 888.416 387.377 888.37 387.686Z" fill="white"/>
228
+ <path d="M965.875 435.137C965.829 435.551 965.651 435.94 965.367 436.246C965.19 436.437 964.977 436.592 964.74 436.699C964.502 436.807 964.246 436.866 963.985 436.872C963.725 436.879 963.466 436.834 963.223 436.739C962.98 436.643 962.759 436.501 962.573 436.319C962.346 436.11 962.173 435.85 962.067 435.56C961.961 435.271 961.925 434.961 961.963 434.655C962.006 434.243 962.182 433.857 962.465 433.555C962.641 433.367 962.852 433.216 963.086 433.11C963.321 433.005 963.574 432.947 963.831 432.941C964.088 432.926 964.345 432.965 964.586 433.055C964.827 433.144 965.047 433.283 965.232 433.463C965.467 433.669 965.648 433.929 965.76 434.22C965.872 434.512 965.912 434.827 965.875 435.137Z" fill="white"/>
229
+ <path d="M988.453 387.259C988.415 387.58 988.279 387.881 988.064 388.123C987.845 388.357 987.558 388.517 987.243 388.579C986.929 388.641 986.602 388.602 986.311 388.468C986.02 388.334 985.778 388.112 985.621 387.832C985.463 387.553 985.398 387.231 985.434 386.912C985.47 386.591 985.61 386.29 985.833 386.055C985.968 385.908 986.131 385.789 986.312 385.705C986.494 385.621 986.69 385.574 986.89 385.567C987.291 385.555 987.681 385.698 987.981 385.965C988.156 386.128 988.291 386.33 988.373 386.555C988.455 386.78 988.483 387.021 988.453 387.259V387.259Z" fill="white"/>
230
+ <path d="M1023.81 292.051C1023.77 292.463 1023.6 292.849 1023.31 293.151C1023.14 293.343 1022.93 293.497 1022.7 293.605C1022.46 293.713 1022.21 293.773 1021.95 293.781C1021.43 293.799 1020.93 293.611 1020.55 293.259C1020.32 293.05 1020.15 292.79 1020.04 292.5C1019.94 292.211 1019.9 291.901 1019.94 291.595C1019.98 291.183 1020.16 290.797 1020.45 290.501C1020.62 290.31 1020.83 290.156 1021.07 290.047C1021.3 289.939 1021.55 289.879 1021.81 289.872C1022.09 289.86 1022.37 289.91 1022.63 290.019C1022.89 290.127 1023.13 290.29 1023.32 290.498C1023.51 290.705 1023.65 290.951 1023.74 291.22C1023.82 291.488 1023.85 291.772 1023.81 292.051V292.051Z" fill="white"/>
231
+ <path d="M908.448 201.245C908.4 201.655 908.224 202.04 907.946 202.345C907.77 202.533 907.559 202.684 907.325 202.789C907.09 202.894 906.837 202.952 906.58 202.959C906.323 202.973 906.066 202.934 905.825 202.844C905.584 202.754 905.364 202.616 905.179 202.437C904.955 202.23 904.783 201.973 904.677 201.686C904.572 201.399 904.536 201.092 904.573 200.789C904.619 200.374 904.797 199.985 905.081 199.679C905.254 199.49 905.463 199.338 905.696 199.232C905.929 199.125 906.181 199.066 906.437 199.059C906.955 199.041 907.459 199.229 907.838 199.581C908.067 199.788 908.242 200.048 908.348 200.338C908.454 200.628 908.488 200.939 908.448 201.245V201.245Z" fill="white"/>
232
+ <path d="M879.937 475.268C879.893 475.68 879.717 476.066 879.435 476.369C879.259 476.558 879.047 476.71 878.811 476.817C878.576 476.924 878.322 476.984 878.063 476.992C877.809 477.002 877.554 476.962 877.316 476.873C877.077 476.785 876.858 476.65 876.671 476.476C876.446 476.266 876.274 476.006 876.168 475.717C876.062 475.428 876.026 475.118 876.062 474.812C876.106 474.401 876.282 474.015 876.563 473.712C876.843 473.407 877.212 473.199 877.617 473.118C878.022 473.036 878.443 473.085 878.818 473.259C879.194 473.432 879.505 473.72 879.706 474.081C879.907 474.442 879.988 474.858 879.937 475.268Z" fill="white"/>
233
+ <path d="M833.486 581.922C833.454 582.202 833.345 582.468 833.17 582.691C832.996 582.913 832.763 583.082 832.498 583.179C832.233 583.277 831.946 583.299 831.669 583.243C831.392 583.187 831.136 583.055 830.93 582.862C830.758 582.698 830.627 582.496 830.547 582.273C830.466 582.049 830.439 581.811 830.466 581.575C830.511 581.215 830.682 580.882 830.948 580.635C831.215 580.389 831.56 580.245 831.923 580.229C832.139 580.226 832.354 580.268 832.553 580.353C832.752 580.438 832.931 580.565 833.078 580.724C833.224 580.883 833.336 581.071 833.405 581.277C833.473 581.482 833.498 581.7 833.477 581.915L833.486 581.922Z" fill="white"/>
234
+ <path d="M830.813 498.73C830.761 499.192 830.544 499.62 830.203 499.936C829.862 500.251 829.419 500.434 828.955 500.451C828.698 500.465 828.441 500.425 828.2 500.336C827.959 500.246 827.739 500.107 827.553 499.929C827.326 499.722 827.152 499.464 827.045 499.176C826.938 498.888 826.901 498.579 826.938 498.274C826.982 497.858 827.164 497.47 827.455 497.171C827.631 496.978 827.844 496.823 828.081 496.714C828.319 496.606 828.576 496.546 828.837 496.54C829.098 496.533 829.357 496.579 829.6 496.675C829.843 496.771 830.064 496.915 830.249 497.098C830.461 497.309 830.623 497.566 830.72 497.849C830.818 498.132 830.85 498.433 830.813 498.73Z" fill="white"/>
235
+ <path d="M907.78 482.601C907.695 483.284 907.398 483.923 906.93 484.428C906.464 484.93 905.851 485.272 905.179 485.405C904.507 485.538 903.81 485.455 903.188 485.168C902.566 484.882 902.05 484.406 901.715 483.808C901.379 483.211 901.241 482.523 901.32 481.843C901.404 481.159 901.701 480.52 902.17 480.015C902.458 479.702 902.805 479.45 903.192 479.273C903.578 479.096 903.996 478.997 904.421 478.983C904.89 478.965 905.357 479.048 905.791 479.228C906.224 479.408 906.614 479.68 906.932 480.024C907.251 480.369 907.491 480.778 907.636 481.225C907.782 481.671 907.829 482.144 907.774 482.61L907.78 482.601Z" fill="white"/>
236
+ <path d="M909.443 429.061C909.399 429.476 909.217 429.864 908.926 430.163C908.753 430.352 908.544 430.505 908.311 430.611C908.078 430.718 907.826 430.777 907.569 430.784C907.052 430.802 906.548 430.614 906.168 430.262C905.942 430.056 905.769 429.799 905.664 429.512C905.558 429.225 905.523 428.917 905.562 428.613C905.602 428.255 905.742 427.915 905.965 427.631C906.187 427.347 906.484 427.13 906.823 427.005C907.161 426.88 907.528 426.851 907.882 426.922C908.236 426.992 908.563 427.16 908.828 427.406C909.055 427.613 909.229 427.871 909.336 428.159C909.443 428.446 909.48 428.756 909.443 429.061V429.061Z" fill="white"/>
237
+ <path d="M907.047 354.927C906.971 355.611 906.706 356.26 906.282 356.802C905.857 357.343 905.291 357.756 904.645 357.993C903.999 358.23 903.3 358.282 902.626 358.143C901.952 358.005 901.33 357.681 900.83 357.208C900.401 356.813 900.073 356.322 899.872 355.775C899.671 355.228 899.603 354.64 899.675 354.062C899.732 353.578 899.883 353.11 900.121 352.684C900.359 352.259 900.678 351.884 901.061 351.582C901.443 351.28 901.881 351.056 902.35 350.924C902.819 350.791 903.31 350.752 903.794 350.809C904.278 350.865 904.746 351.017 905.171 351.255C905.597 351.493 905.971 351.812 906.273 352.194C906.576 352.577 906.799 353.015 906.932 353.484C907.065 353.953 907.104 354.443 907.047 354.927V354.927Z" fill="white"/>
238
+ <path d="M879.91 307.765C879.866 308.176 879.69 308.562 879.408 308.865C879.232 309.054 879.02 309.206 878.784 309.313C878.549 309.42 878.294 309.48 878.036 309.488C877.781 309.498 877.527 309.458 877.288 309.369C877.049 309.281 876.83 309.146 876.644 308.972C876.419 308.762 876.246 308.502 876.141 308.213C876.035 307.924 875.998 307.614 876.035 307.308C876.079 306.897 876.255 306.511 876.536 306.208C876.815 305.903 877.184 305.695 877.59 305.614C877.995 305.532 878.416 305.582 878.791 305.755C879.167 305.928 879.477 306.216 879.678 306.577C879.879 306.938 879.96 307.354 879.91 307.765V307.765Z" fill="white"/>
239
+ <path d="M779.787 301.265C779.733 301.677 779.552 302.062 779.27 302.368C778.955 302.7 778.531 302.908 778.076 302.957C777.621 303.005 777.163 302.89 776.785 302.632C776.407 302.373 776.133 301.989 776.013 301.547C775.892 301.106 775.933 300.636 776.127 300.221C776.322 299.807 776.657 299.475 777.074 299.285C777.49 299.095 777.961 299.06 778.401 299.186C778.842 299.311 779.223 299.589 779.477 299.97C779.731 300.351 779.841 300.81 779.787 301.265V301.265Z" fill="white"/>
240
+ <path d="M717.616 414.556C717.561 414.968 717.381 415.353 717.099 415.658C716.926 415.847 716.716 415.999 716.483 416.106C716.25 416.213 715.998 416.271 715.742 416.279C715.225 416.297 714.721 416.109 714.341 415.757C714.115 415.548 713.941 415.288 713.835 414.999C713.729 414.709 713.694 414.399 713.732 414.093C713.778 413.682 713.958 413.298 714.243 412.999C714.416 412.81 714.625 412.658 714.858 412.552C715.091 412.445 715.343 412.386 715.599 412.379C716.117 412.361 716.621 412.549 717 412.901C717.227 413.108 717.4 413.366 717.507 413.654C717.615 413.942 717.652 414.251 717.616 414.556Z" fill="white"/>
241
+ <path d="M589.704 458.928C589.674 459.182 589.595 459.429 589.47 459.652C589.344 459.876 589.177 460.072 588.975 460.231C588.774 460.39 588.544 460.508 588.297 460.577C588.051 460.647 587.793 460.667 587.539 460.637C587.284 460.607 587.038 460.528 586.814 460.403C586.591 460.277 586.394 460.11 586.235 459.909C586.077 459.707 585.959 459.477 585.889 459.23C585.82 458.984 585.799 458.726 585.829 458.472C585.872 458.06 586.048 457.674 586.331 457.372C586.509 457.181 586.723 457.028 586.96 456.921C587.198 456.814 587.454 456.754 587.714 456.747C587.975 456.739 588.234 456.783 588.477 456.877C588.721 456.97 588.943 457.11 589.132 457.29C589.346 457.501 589.51 457.758 589.609 458.042C589.708 458.326 589.741 458.629 589.704 458.928V458.928Z" fill="white"/>
242
+ <path d="M555.792 401.459C555.747 401.874 555.569 402.263 555.284 402.568C554.928 402.941 554.442 403.164 553.927 403.188C553.409 403.206 552.906 403.019 552.526 402.666C552.299 402.457 552.126 402.197 552.02 401.908C551.914 401.619 551.879 401.308 551.917 401.002C551.966 400.592 552.141 400.208 552.418 399.902C552.595 399.711 552.808 399.557 553.046 399.449C553.283 399.342 553.539 399.283 553.8 399.276C554.06 399.269 554.32 399.315 554.562 399.41C554.805 399.505 555.026 399.647 555.213 399.829C555.429 400.037 555.594 400.293 555.695 400.576C555.795 400.858 555.829 401.161 555.792 401.459V401.459Z" fill="white"/>
243
+ <path d="M476.418 414.297C476.371 414.712 476.193 415.1 475.91 415.406C475.733 415.598 475.519 415.752 475.282 415.859C475.045 415.967 474.788 416.026 474.528 416.033C474.267 416.039 474.008 415.994 473.765 415.899C473.523 415.804 473.302 415.661 473.115 415.479C472.889 415.27 472.715 415.01 472.609 414.721C472.503 414.431 472.468 414.121 472.506 413.815C472.548 413.403 472.725 413.017 473.007 412.715C473.364 412.337 473.852 412.112 474.371 412.085C474.652 412.078 474.931 412.131 475.19 412.241C475.449 412.351 475.682 412.515 475.872 412.722C476.062 412.929 476.206 413.174 476.294 413.442C476.382 413.709 476.411 413.992 476.381 414.271L476.418 414.297Z" fill="white"/>
244
+ <path d="M448.306 521.957C448.276 522.212 448.196 522.458 448.071 522.681C447.946 522.905 447.778 523.102 447.577 523.261C447.376 523.419 447.146 523.537 446.899 523.606C446.652 523.676 446.395 523.697 446.14 523.667C445.886 523.637 445.64 523.557 445.416 523.432C445.192 523.307 444.996 523.139 444.837 522.938C444.678 522.737 444.561 522.506 444.491 522.26C444.421 522.013 444.401 521.755 444.431 521.501C444.473 521.089 444.649 520.703 444.932 520.401C445.285 520.023 445.773 519.801 446.289 519.78C446.57 519.771 446.851 519.822 447.11 519.93C447.37 520.038 447.604 520.201 447.795 520.408C447.987 520.614 448.131 520.859 448.219 521.127C448.307 521.394 448.337 521.677 448.306 521.957V521.957Z" fill="white"/>
245
+ <path d="M771.334 601.903C771.279 602.315 771.099 602.7 770.817 603.005C770.643 603.194 770.434 603.347 770.201 603.453C769.968 603.56 769.716 603.618 769.46 603.626C768.942 603.644 768.439 603.456 768.059 603.104C767.832 602.895 767.659 602.635 767.553 602.346C767.447 602.056 767.412 601.746 767.45 601.44C767.492 601.028 767.668 600.642 767.951 600.34C768.233 600.038 768.603 599.832 769.008 599.753C769.413 599.674 769.833 599.724 770.208 599.897C770.583 600.071 770.894 600.358 771.096 600.718C771.298 601.078 771.381 601.492 771.334 601.903V601.903Z" fill="white"/>
246
+ <path d="M817.166 553.608C817.101 554.197 816.847 554.749 816.441 555.181C816.184 555.45 815.877 555.664 815.537 555.813C815.196 555.961 814.83 556.041 814.459 556.047C814.056 556.059 813.654 555.984 813.282 555.828C812.911 555.671 812.577 555.437 812.303 555.14C812.03 554.843 811.824 554.491 811.699 554.107C811.573 553.724 811.532 553.318 811.578 552.917C811.666 552.181 812.043 551.51 812.626 551.052C813.209 550.593 813.95 550.385 814.686 550.474C815.423 550.562 816.093 550.939 816.552 551.522C817.01 552.105 817.218 552.846 817.13 553.582L817.166 553.608Z" fill="white"/>
247
+ <path d="M864.859 341.684C864.819 341.989 864.689 342.275 864.486 342.505C864.223 342.781 863.862 342.943 863.481 342.956C863.1 342.97 862.729 342.833 862.447 342.576C862.282 342.422 862.156 342.232 862.078 342.02C862.001 341.808 861.976 341.581 862.003 341.357C862.03 341.049 862.161 340.759 862.376 340.537C862.506 340.398 862.661 340.286 862.834 340.208C863.007 340.13 863.194 340.087 863.383 340.081C863.764 340.073 864.133 340.211 864.415 340.466C864.579 340.621 864.704 340.811 864.781 341.023C864.858 341.234 864.885 341.461 864.859 341.684V341.684Z" fill="white"/>
248
+ <path d="M968.781 211.609C968.756 211.874 968.643 212.123 968.461 212.316C968.35 212.438 968.216 212.537 968.066 212.605C967.916 212.674 967.754 212.712 967.589 212.716C967.407 212.723 967.225 212.691 967.057 212.622C966.889 212.552 966.738 212.446 966.614 212.312C966.491 212.178 966.398 212.019 966.342 211.845C966.287 211.672 966.27 211.488 966.292 211.308C966.327 211.046 966.442 210.801 966.621 210.607C966.731 210.48 966.866 210.376 967.017 210.302C967.168 210.228 967.332 210.185 967.5 210.175C967.668 210.166 967.836 210.19 967.994 210.247C968.152 210.303 968.298 210.391 968.421 210.505C968.567 210.646 968.677 210.82 968.739 211.012C968.802 211.205 968.816 211.41 968.781 211.609Z" fill="white"/>
249
+ <path d="M871.312 270.908C871.238 271.59 870.945 272.231 870.478 272.733C869.895 273.356 869.09 273.723 868.238 273.754C867.386 273.785 866.556 273.478 865.93 272.9C865.559 272.555 865.274 272.127 865.1 271.651C864.926 271.175 864.866 270.665 864.926 270.162C865.009 269.482 865.304 268.845 865.77 268.343C866.352 267.721 867.157 267.355 868.008 267.325C868.859 267.296 869.688 267.605 870.311 268.185C870.682 268.527 870.967 268.952 871.141 269.425C871.315 269.899 871.374 270.407 871.312 270.908V270.908Z" fill="white"/>
250
+ <path d="M779.318 353.111C779.275 353.526 779.092 353.914 778.801 354.213C778.449 354.592 777.96 354.815 777.443 354.834C776.925 354.852 776.422 354.664 776.043 354.312C775.665 353.959 775.441 353.47 775.423 352.953C775.405 352.436 775.592 351.933 775.945 351.554C776.123 351.364 776.336 351.211 776.573 351.104C776.811 350.998 777.067 350.939 777.327 350.933C777.587 350.926 777.846 350.971 778.088 351.065C778.331 351.159 778.552 351.301 778.739 351.481C778.956 351.689 779.121 351.944 779.222 352.227C779.322 352.51 779.355 352.813 779.318 353.111V353.111Z" fill="white"/>
251
+ <path d="M711.112 361.373C711.022 362.059 710.723 362.701 710.255 363.21C709.891 363.601 709.436 363.896 708.93 364.07C708.425 364.243 707.884 364.289 707.357 364.203C706.829 364.118 706.331 363.903 705.906 363.579C705.481 363.255 705.143 362.831 704.921 362.345C704.699 361.859 704.6 361.326 704.633 360.793C704.666 360.259 704.831 359.742 705.111 359.288C705.392 358.833 705.78 358.454 706.242 358.185C706.704 357.917 707.225 357.766 707.759 357.746C708.228 357.728 708.695 357.812 709.129 357.992C709.562 358.172 709.952 358.443 710.271 358.788C710.589 359.132 710.829 359.542 710.975 359.988C711.12 360.435 711.167 360.907 711.112 361.373V361.373Z" fill="white"/>
252
+ <path d="M655.227 467.52C655.151 468.146 654.882 468.733 654.455 469.198C654.194 469.482 653.88 469.712 653.53 469.875C653.179 470.037 652.801 470.129 652.415 470.145C652.018 470.161 651.621 470.097 651.249 469.957C650.877 469.817 650.536 469.603 650.247 469.33C649.894 469.016 649.623 468.621 649.456 468.179C649.29 467.737 649.235 467.261 649.294 466.792C649.355 466.249 649.567 465.733 649.904 465.303C650.242 464.873 650.692 464.545 651.205 464.356C651.719 464.167 652.274 464.125 652.81 464.234C653.346 464.343 653.841 464.598 654.24 464.972C654.599 465.285 654.877 465.68 655.049 466.124C655.221 466.568 655.282 467.047 655.227 467.52V467.52Z" fill="white"/>
253
+ <path d="M920.638 279.421C920.595 279.833 920.419 280.219 920.136 280.521C919.959 280.712 919.746 280.866 919.508 280.974C919.271 281.082 919.015 281.14 918.754 281.147C918.494 281.154 918.234 281.109 917.992 281.013C917.749 280.918 917.528 280.776 917.342 280.594C917.115 280.387 916.94 280.129 916.833 279.841C916.726 279.553 916.689 279.244 916.726 278.939C916.772 278.524 916.95 278.135 917.234 277.829C917.411 277.638 917.624 277.484 917.861 277.377C918.099 277.269 918.355 277.21 918.616 277.203C918.876 277.197 919.135 277.242 919.378 277.337C919.621 277.432 919.842 277.575 920.028 277.757C920.257 277.964 920.432 278.224 920.538 278.514C920.644 278.804 920.678 279.115 920.638 279.421V279.421Z" fill="white"/>
254
+ </g>
255
+ <g opacity="0.3">
256
+ <path d="M773.325 208.162C772.842 207.937 772.303 207.86 771.775 207.941C771.248 208.022 770.757 208.258 770.364 208.619C769.971 208.979 769.694 209.448 769.568 209.966C769.441 210.485 769.472 211.029 769.655 211.53C769.838 212.031 770.166 212.466 770.596 212.78C771.027 213.095 771.541 213.275 772.074 213.297C772.607 213.319 773.135 213.182 773.59 212.905C774.045 212.627 774.408 212.22 774.632 211.736C774.931 211.089 774.962 210.349 774.717 209.679C774.472 209.009 773.972 208.464 773.325 208.162Z" fill="white"/>
257
+ <path d="M845.095 247.507C844.633 247.29 844.117 247.216 843.613 247.293C843.109 247.37 842.639 247.595 842.263 247.939C841.887 248.284 841.622 248.733 841.501 249.228C841.38 249.724 841.41 250.244 841.586 250.723C841.761 251.202 842.075 251.618 842.488 251.918C842.9 252.218 843.393 252.389 843.902 252.409C844.412 252.428 844.916 252.296 845.35 252.029C845.785 251.761 846.13 251.371 846.342 250.907C846.624 250.29 846.652 249.587 846.418 248.95C846.184 248.314 845.709 247.795 845.095 247.507V247.507Z" fill="white"/>
258
+ <path d="M801.189 307.807C800.974 307.693 800.731 307.647 800.489 307.674C800.248 307.7 800.021 307.799 799.836 307.956C799.651 308.113 799.518 308.323 799.454 308.556C799.389 308.79 799.396 309.038 799.474 309.268C799.552 309.498 799.697 309.699 799.89 309.845C800.084 309.992 800.317 310.077 800.559 310.09C800.801 310.103 801.042 310.043 801.249 309.917C801.457 309.792 801.622 309.607 801.724 309.387C801.854 309.105 801.871 308.784 801.771 308.49C801.672 308.196 801.463 307.951 801.189 307.807Z" fill="white"/>
259
+ <path d="M877.666 311.193C877.383 311.062 877.067 311.017 876.759 311.066C876.451 311.114 876.164 311.252 875.935 311.464C875.705 311.675 875.544 311.95 875.471 312.253C875.397 312.556 875.416 312.874 875.524 313.167C875.631 313.46 875.823 313.714 876.075 313.898C876.328 314.081 876.629 314.186 876.94 314.198C877.252 314.211 877.56 314.131 877.826 313.968C878.092 313.805 878.304 313.567 878.435 313.283C878.523 313.096 878.573 312.893 878.583 312.686C878.592 312.479 878.56 312.272 878.488 312.077C878.416 311.883 878.307 311.704 878.166 311.552C878.025 311.4 877.855 311.278 877.666 311.193V311.193Z" fill="white"/>
260
+ <path d="M944.603 376.818C944.324 376.685 944.012 376.638 943.706 376.682C943.4 376.726 943.114 376.858 942.882 377.064C942.651 377.269 942.486 377.537 942.406 377.836C942.326 378.135 942.336 378.45 942.434 378.743C942.532 379.036 942.714 379.294 942.958 379.484C943.201 379.675 943.495 379.789 943.803 379.814C944.111 379.839 944.42 379.772 944.691 379.623C944.961 379.474 945.182 379.248 945.325 378.974C945.422 378.786 945.48 378.58 945.496 378.369C945.512 378.157 945.486 377.945 945.418 377.744C945.351 377.543 945.244 377.357 945.104 377.198C944.964 377.039 944.794 376.91 944.603 376.818V376.818Z" fill="white"/>
261
+ <path d="M921.475 313.718C921.192 313.587 920.876 313.543 920.568 313.591C920.26 313.639 919.973 313.778 919.744 313.989C919.514 314.201 919.353 314.475 919.28 314.779C919.206 315.082 919.225 315.4 919.332 315.693C919.44 315.985 919.632 316.24 919.884 316.423C920.137 316.607 920.438 316.711 920.749 316.724C921.061 316.736 921.369 316.656 921.635 316.493C921.901 316.33 922.113 316.092 922.244 315.809C922.419 315.43 922.436 314.996 922.292 314.604C922.148 314.212 921.854 313.894 921.475 313.718Z" fill="white"/>
262
+ <path d="M860.437 323.812C859.989 323.608 859.491 323.54 859.005 323.618C858.519 323.696 858.066 323.916 857.705 324.251C857.344 324.586 857.09 325.02 856.976 325.499C856.861 325.977 856.891 326.48 857.061 326.941C857.231 327.403 857.535 327.805 857.933 328.094C858.331 328.384 858.806 328.55 859.298 328.57C859.79 328.59 860.277 328.464 860.697 328.208C861.118 327.951 861.453 327.576 861.66 327.13C861.936 326.527 861.963 325.84 861.733 325.219C861.504 324.597 861.038 324.091 860.437 323.812V323.812Z" fill="white"/>
263
+ <path d="M829.738 286.017C829.457 285.889 829.145 285.848 828.841 285.898C828.537 285.947 828.254 286.086 828.029 286.296C827.803 286.505 827.645 286.777 827.573 287.077C827.501 287.376 827.52 287.69 827.626 287.98C827.732 288.269 827.922 288.52 828.171 288.702C828.419 288.884 828.716 288.988 829.024 289.002C829.332 289.015 829.637 288.938 829.9 288.779C830.164 288.619 830.375 288.386 830.507 288.107C830.681 287.728 830.699 287.295 830.555 286.903C830.411 286.511 830.117 286.192 829.738 286.017V286.017Z" fill="white"/>
264
+ <path d="M821.976 228.967C821.597 228.796 821.165 228.78 820.774 228.924C820.383 229.068 820.064 229.359 819.886 229.736C819.754 230.019 819.71 230.334 819.758 230.643C819.807 230.951 819.945 231.238 820.157 231.467C820.368 231.696 820.643 231.858 820.946 231.931C821.249 232.004 821.567 231.986 821.86 231.878C822.153 231.771 822.407 231.578 822.591 231.326C822.774 231.074 822.879 230.773 822.891 230.462C822.904 230.15 822.823 229.842 822.66 229.575C822.498 229.309 822.26 229.098 821.976 228.967V228.967Z" fill="white"/>
265
+ <path d="M826.487 186.508C826.192 186.372 825.854 186.359 825.549 186.471C825.244 186.584 824.997 186.814 824.861 187.109C824.725 187.404 824.711 187.742 824.824 188.047C824.937 188.352 825.166 188.6 825.462 188.736C825.765 188.852 826.101 188.844 826.399 188.715C826.696 188.585 826.931 188.344 827.053 188.044C827.168 187.763 827.173 187.45 827.069 187.166C826.964 186.881 826.756 186.647 826.487 186.508V186.508Z" fill="white"/>
266
+ <path d="M899.364 150.783C898.984 150.612 898.552 150.597 898.161 150.741C897.77 150.884 897.452 151.176 897.273 151.552C897.142 151.835 897.098 152.151 897.146 152.459C897.194 152.767 897.333 153.054 897.544 153.283C897.756 153.513 898.03 153.674 898.334 153.748C898.637 153.821 898.955 153.802 899.248 153.695C899.54 153.587 899.795 153.395 899.978 153.143C900.162 152.891 900.266 152.59 900.279 152.278C900.291 151.966 900.211 151.658 900.048 151.392C899.885 151.126 899.647 150.914 899.364 150.783V150.783Z" fill="white"/>
267
+ <path d="M980.13 216.756C979.922 216.66 979.69 216.627 979.463 216.663C979.237 216.699 979.026 216.801 978.858 216.956C978.689 217.112 978.57 217.314 978.517 217.537C978.463 217.76 978.477 217.993 978.556 218.208C978.635 218.424 978.777 218.61 978.962 218.745C979.148 218.88 979.369 218.957 979.598 218.965C979.827 218.974 980.054 218.915 980.249 218.795C980.445 218.675 980.6 218.5 980.696 218.292C980.821 218.013 980.831 217.696 980.726 217.409C980.62 217.122 980.406 216.888 980.13 216.756V216.756Z" fill="white"/>
268
+ <path d="M1089.29 210.499C1088.92 210.326 1088.49 210.309 1088.1 210.45C1087.71 210.592 1087.39 210.882 1087.21 211.257C1087.11 211.446 1087.05 211.654 1087.03 211.868C1087.01 212.081 1087.03 212.296 1087.1 212.5C1087.17 212.704 1087.28 212.892 1087.42 213.052C1087.56 213.212 1087.74 213.342 1087.93 213.433C1088.12 213.524 1088.34 213.574 1088.55 213.58C1088.76 213.587 1088.98 213.549 1089.18 213.471C1089.38 213.392 1089.56 213.273 1089.71 213.122C1089.86 212.97 1089.98 212.789 1090.06 212.59C1090.15 212.403 1090.2 212.199 1090.21 211.992C1090.22 211.785 1090.19 211.578 1090.11 211.384C1090.04 211.189 1089.93 211.011 1089.79 210.859C1089.65 210.707 1089.48 210.585 1089.29 210.499V210.499Z" fill="white"/>
269
+ <path d="M1097.09 157.267C1096.72 157.117 1096.3 157.116 1095.92 157.265C1095.55 157.413 1095.25 157.698 1095.08 158.063C1094.91 158.428 1094.88 158.844 1095.01 159.226C1095.13 159.609 1095.4 159.928 1095.76 160.119C1095.95 160.221 1096.15 160.283 1096.37 160.301C1096.58 160.32 1096.8 160.295 1097 160.227C1097.2 160.16 1097.39 160.051 1097.55 159.909C1097.71 159.766 1097.84 159.593 1097.93 159.398C1098.02 159.204 1098.07 158.993 1098.08 158.779C1098.09 158.564 1098.05 158.351 1097.97 158.151C1097.89 157.952 1097.77 157.77 1097.62 157.618C1097.47 157.466 1097.29 157.347 1097.09 157.267Z" fill="white"/>
270
+ <path d="M1160.24 142.65C1159.87 142.5 1159.45 142.499 1159.08 142.647C1158.7 142.795 1158.4 143.081 1158.23 143.446C1158.06 143.81 1158.03 144.227 1158.16 144.609C1158.29 144.991 1158.55 145.31 1158.91 145.501C1159.29 145.677 1159.72 145.695 1160.12 145.553C1160.51 145.41 1160.83 145.118 1161.01 144.74C1161.19 144.361 1161.2 143.928 1161.06 143.536C1160.91 143.144 1160.62 142.825 1160.24 142.65Z" fill="white"/>
271
+ <path d="M1214.05 214.42C1213.67 214.249 1213.24 214.233 1212.85 214.377C1212.46 214.521 1212.14 214.812 1211.96 215.189C1211.86 215.378 1211.8 215.584 1211.79 215.796C1211.77 216.008 1211.8 216.221 1211.87 216.422C1211.94 216.623 1212.05 216.808 1212.19 216.965C1212.33 217.123 1212.51 217.25 1212.7 217.339C1212.89 217.429 1213.1 217.478 1213.31 217.484C1213.53 217.491 1213.74 217.454 1213.94 217.377C1214.13 217.299 1214.31 217.183 1214.47 217.034C1214.62 216.885 1214.74 216.707 1214.82 216.511C1214.99 216.131 1215.01 215.699 1214.86 215.308C1214.72 214.917 1214.43 214.598 1214.05 214.42V214.42Z" fill="white"/>
272
+ <path d="M847.832 207.096C847.453 206.925 847.021 206.909 846.63 207.053C846.239 207.197 845.92 207.488 845.741 207.865C845.61 208.148 845.566 208.463 845.614 208.771C845.663 209.08 845.801 209.367 846.013 209.596C846.224 209.825 846.499 209.987 846.802 210.06C847.105 210.133 847.423 210.115 847.716 210.007C848.009 209.899 848.263 209.707 848.447 209.455C848.63 209.203 848.735 208.902 848.747 208.59C848.76 208.279 848.679 207.97 848.517 207.704C848.354 207.438 848.116 207.227 847.832 207.096V207.096Z" fill="white"/>
273
+ <path d="M730.472 141.785C730.189 141.654 729.873 141.609 729.565 141.658C729.257 141.706 728.97 141.845 728.741 142.056C728.511 142.267 728.35 142.542 728.276 142.845C728.203 143.149 728.222 143.467 728.329 143.759C728.437 144.052 728.629 144.306 728.881 144.49C729.133 144.673 729.434 144.778 729.746 144.79C730.058 144.803 730.366 144.723 730.632 144.56C730.898 144.397 731.11 144.159 731.24 143.876C731.412 143.496 731.427 143.064 731.283 142.673C731.14 142.282 730.848 141.963 730.472 141.785V141.785Z" fill="white"/>
274
+ <path d="M822.678 155.576C822.491 155.488 822.288 155.438 822.081 155.428C821.874 155.419 821.667 155.452 821.472 155.523C821.278 155.595 821.099 155.704 820.947 155.845C820.795 155.986 820.673 156.156 820.588 156.345C820.457 156.628 820.412 156.944 820.461 157.252C820.509 157.56 820.647 157.847 820.859 158.076C821.07 158.306 821.345 158.467 821.648 158.54C821.951 158.614 822.269 158.595 822.562 158.488C822.855 158.38 823.109 158.188 823.293 157.936C823.476 157.684 823.581 157.383 823.593 157.071C823.606 156.759 823.526 156.451 823.363 156.185C823.2 155.919 822.962 155.707 822.678 155.576V155.576Z" fill="white"/>
275
+ <path d="M915.504 189.362C915.128 189.206 914.706 189.202 914.327 189.35C913.948 189.499 913.641 189.788 913.47 190.157C913.3 190.526 913.278 190.947 913.411 191.332C913.544 191.717 913.82 192.036 914.182 192.221C914.371 192.318 914.578 192.376 914.79 192.391C915.001 192.406 915.214 192.378 915.415 192.309C915.616 192.24 915.801 192.131 915.958 191.988C916.116 191.846 916.243 191.673 916.332 191.48C916.422 191.287 916.471 191.078 916.477 190.866C916.484 190.654 916.447 190.442 916.37 190.244C916.292 190.046 916.176 189.866 916.027 189.715C915.878 189.563 915.7 189.443 915.504 189.362Z" fill="white"/>
276
+ <path d="M890.766 240.32C890.483 240.189 890.168 240.144 889.86 240.193C889.551 240.241 889.265 240.38 889.035 240.591C888.806 240.802 888.644 241.077 888.571 241.38C888.498 241.683 888.516 242.001 888.624 242.294C888.732 242.587 888.924 242.841 889.176 243.025C889.428 243.208 889.729 243.313 890.041 243.325C890.352 243.338 890.661 243.257 890.927 243.095C891.193 242.932 891.404 242.694 891.535 242.411C891.71 242.031 891.727 241.598 891.583 241.206C891.439 240.814 891.145 240.495 890.766 240.32V240.32Z" fill="white"/>
277
+ <path d="M871.268 276.099C870.986 275.965 870.67 275.918 870.361 275.964C870.052 276.01 869.763 276.147 869.532 276.358C869.301 276.568 869.138 276.843 869.063 277.146C868.988 277.45 869.005 277.769 869.112 278.062C869.219 278.356 869.411 278.611 869.663 278.796C869.916 278.98 870.217 279.086 870.529 279.098C870.842 279.111 871.151 279.031 871.417 278.868C871.684 278.704 871.896 278.465 872.026 278.181C872.116 277.995 872.167 277.793 872.177 277.587C872.187 277.381 872.156 277.175 872.086 276.98C872.015 276.786 871.907 276.608 871.766 276.457C871.626 276.306 871.457 276.184 871.268 276.099Z" fill="white"/>
278
+ <path d="M925.735 272.385C925.177 272.127 924.554 272.041 923.946 272.137C923.338 272.233 922.773 272.507 922.321 272.924C921.868 273.342 921.55 273.884 921.406 274.482C921.262 275.08 921.298 275.707 921.51 276.285C921.722 276.863 922.101 277.364 922.598 277.727C923.096 278.089 923.689 278.296 924.304 278.321C924.919 278.347 925.527 278.189 926.053 277.869C926.578 277.548 926.996 277.079 927.255 276.521C927.6 275.771 927.633 274.915 927.348 274.14C927.063 273.365 926.484 272.734 925.735 272.385V272.385Z" fill="white"/>
279
+ <path d="M976.763 324.958C976.48 324.824 976.164 324.778 975.855 324.824C975.546 324.87 975.257 325.007 975.026 325.217C974.795 325.428 974.632 325.702 974.557 326.006C974.482 326.309 974.5 326.628 974.606 326.922C974.713 327.216 974.905 327.471 975.157 327.656C975.41 327.84 975.711 327.945 976.023 327.958C976.336 327.971 976.645 327.891 976.911 327.727C977.178 327.564 977.39 327.325 977.52 327.041C977.694 326.664 977.711 326.234 977.569 325.844C977.428 325.454 977.138 325.136 976.763 324.958Z" fill="white"/>
280
+ <path d="M972.595 260.167C972.221 260.018 971.804 260.017 971.43 260.165C971.055 260.313 970.752 260.599 970.581 260.963C970.411 261.328 970.386 261.744 970.513 262.127C970.639 262.509 970.908 262.828 971.262 263.019C971.451 263.121 971.659 263.183 971.872 263.202C972.086 263.22 972.301 263.195 972.505 263.127C972.709 263.06 972.897 262.952 973.057 262.809C973.217 262.667 973.347 262.493 973.438 262.299C973.528 262.104 973.579 261.893 973.585 261.679C973.592 261.465 973.554 261.251 973.475 261.051C973.397 260.852 973.278 260.671 973.126 260.519C972.975 260.367 972.794 260.247 972.595 260.167V260.167Z" fill="white"/>
281
+ <path d="M931.19 224.676C930.811 224.501 930.377 224.483 929.985 224.628C929.593 224.772 929.275 225.065 929.099 225.444C929.011 225.632 928.96 225.835 928.951 226.042C928.942 226.249 928.974 226.456 929.046 226.651C929.117 226.846 929.227 227.024 929.368 227.176C929.509 227.328 929.679 227.45 929.868 227.535C930.244 227.691 930.666 227.695 931.045 227.546C931.424 227.398 931.73 227.109 931.901 226.74C932.072 226.371 932.093 225.949 931.961 225.565C931.828 225.18 931.552 224.861 931.19 224.676V224.676Z" fill="white"/>
282
+ <path d="M1012.58 245.216C1012.08 244.988 1011.53 244.912 1010.99 244.998C1010.45 245.084 1009.95 245.328 1009.55 245.699C1009.15 246.069 1008.87 246.55 1008.74 247.081C1008.61 247.612 1008.64 248.169 1008.83 248.681C1009.02 249.193 1009.36 249.638 1009.8 249.959C1010.24 250.281 1010.77 250.464 1011.31 250.486C1011.86 250.508 1012.4 250.368 1012.86 250.084C1013.33 249.8 1013.7 249.384 1013.93 248.888C1014.08 248.559 1014.17 248.202 1014.18 247.839C1014.2 247.475 1014.14 247.113 1014.02 246.771C1013.89 246.43 1013.7 246.117 1013.45 245.85C1013.21 245.584 1012.91 245.368 1012.58 245.216Z" fill="white"/>
283
+ <path d="M1070.52 271.99C1070.24 271.858 1069.92 271.814 1069.62 271.862C1069.31 271.911 1069.02 272.049 1068.79 272.261C1068.56 272.472 1068.4 272.747 1068.33 273.05C1068.25 273.353 1068.27 273.671 1068.38 273.964C1068.49 274.257 1068.68 274.511 1068.93 274.695C1069.18 274.878 1069.49 274.983 1069.8 274.995C1070.11 275.008 1070.42 274.927 1070.68 274.764C1070.95 274.602 1071.16 274.363 1071.29 274.08C1071.38 273.893 1071.43 273.69 1071.44 273.482C1071.45 273.275 1071.42 273.068 1071.35 272.874C1071.27 272.679 1071.16 272.501 1071.02 272.349C1070.88 272.197 1070.71 272.075 1070.52 271.99V271.99Z" fill="white"/>
284
+ <path d="M1110.86 256.348C1110.58 256.215 1110.26 256.199 1109.97 256.302C1109.68 256.405 1109.44 256.62 1109.3 256.899C1109.24 257.039 1109.2 257.191 1109.2 257.345C1109.19 257.5 1109.21 257.654 1109.27 257.799C1109.32 257.944 1109.4 258.078 1109.5 258.192C1109.61 258.306 1109.74 258.398 1109.88 258.463C1110.02 258.528 1110.17 258.565 1110.32 258.572C1110.48 258.578 1110.63 258.554 1110.78 258.501C1110.92 258.448 1111.05 258.367 1111.17 258.263C1111.28 258.158 1111.37 258.032 1111.44 257.892C1111.57 257.61 1111.58 257.29 1111.47 257.001C1111.36 256.712 1111.14 256.478 1110.86 256.348V256.348Z" fill="white"/>
285
+ <path d="M970.191 173.494C969.634 173.242 968.999 173.22 968.425 173.433C967.852 173.647 967.386 174.079 967.13 174.634C966.874 175.19 966.849 175.825 967.061 176.4C967.273 176.974 967.705 177.441 968.261 177.697C968.817 177.953 969.452 177.978 970.026 177.766C970.601 177.554 971.067 177.122 971.323 176.566C971.576 176.008 971.599 175.373 971.387 174.798C971.175 174.223 970.746 173.755 970.191 173.494V173.494Z" fill="white"/>
286
+ <path d="M1043.73 236.505C1043.45 236.378 1043.14 236.336 1042.84 236.386C1042.53 236.436 1042.25 236.574 1042.02 236.784C1041.8 236.994 1041.64 237.265 1041.57 237.565C1041.5 237.865 1041.52 238.179 1041.62 238.468C1041.73 238.757 1041.92 239.008 1042.17 239.19C1042.41 239.372 1042.71 239.476 1043.02 239.49C1043.33 239.504 1043.63 239.426 1043.9 239.267C1044.16 239.108 1044.37 238.874 1044.5 238.595C1044.59 238.408 1044.64 238.205 1044.65 237.998C1044.66 237.791 1044.63 237.584 1044.56 237.389C1044.48 237.194 1044.37 237.016 1044.23 236.864C1044.09 236.712 1043.92 236.59 1043.73 236.505Z" fill="white"/>
287
+ <path d="M787.57 177.437C787.287 177.306 786.971 177.262 786.663 177.31C786.355 177.358 786.068 177.497 785.838 177.708C785.609 177.919 785.447 178.194 785.374 178.497C785.301 178.801 785.319 179.119 785.427 179.411C785.535 179.704 785.727 179.958 785.979 180.142C786.231 180.326 786.532 180.43 786.844 180.443C787.155 180.455 787.464 180.375 787.73 180.212C787.996 180.049 788.208 179.811 788.338 179.528C788.513 179.148 788.531 178.715 788.386 178.323C788.242 177.931 787.949 177.612 787.57 177.437V177.437Z" fill="white"/>
288
+ <path d="M1299.62 44.3639C1299.32 44.2226 1298.98 44.1798 1298.65 44.2418C1298.24 44.3264 1297.88 44.5692 1297.65 44.9171C1297.42 45.265 1297.34 45.6897 1297.42 46.0983C1297.47 46.3381 1297.57 46.5634 1297.73 46.7557C1297.88 46.948 1298.07 47.1019 1298.29 47.2047C1298.59 47.3517 1298.93 47.3946 1299.26 47.3268C1299.47 47.2872 1299.66 47.2068 1299.83 47.0905C1300 46.9741 1300.15 46.8242 1300.27 46.6497C1300.39 46.4608 1300.48 46.2466 1300.51 46.0222C1300.55 45.7978 1300.53 45.5684 1300.47 45.3501C1300.41 45.1318 1300.3 44.9298 1300.15 44.7582C1300 44.5865 1299.81 44.4493 1299.61 44.3561L1299.62 44.3639Z" fill="white"/>
289
+ <path d="M1235.87 13.2701C1235.57 13.1282 1235.23 13.088 1234.91 13.1557C1234.7 13.1953 1234.51 13.2757 1234.34 13.392C1234.16 13.5084 1234.02 13.6583 1233.9 13.8328C1233.79 14.0046 1233.71 14.1974 1233.67 14.4003C1233.63 14.6032 1233.62 14.8122 1233.66 15.0154C1233.7 15.2194 1233.77 15.4146 1233.88 15.5896C1233.99 15.7646 1234.14 15.9161 1234.31 16.0352C1234.47 16.1543 1234.67 16.2386 1234.87 16.2833C1235.07 16.3281 1235.28 16.3323 1235.48 16.2957C1235.83 16.2505 1236.15 16.0921 1236.39 15.8452C1236.64 15.5983 1236.8 15.2769 1236.84 14.9312C1236.89 14.5855 1236.81 14.2349 1236.64 13.9343C1236.46 13.6338 1236.19 13.4002 1235.87 13.2701V13.2701Z" fill="white"/>
290
+ <path d="M1142.98 0.28603C1142.74 0.175695 1142.48 0.146452 1142.23 0.20314C1142.07 0.233269 1141.92 0.295056 1141.79 0.384755C1141.65 0.474454 1141.54 0.59025 1141.45 0.725218C1141.35 0.871561 1141.28 1.03804 1141.25 1.21284C1141.23 1.38764 1141.24 1.56654 1141.28 1.73703C1141.33 1.90751 1141.42 2.06544 1141.53 2.19965C1141.65 2.33387 1141.79 2.44106 1141.95 2.51385C1142.19 2.62728 1142.46 2.6591 1142.71 2.60437C1142.87 2.57715 1143.02 2.51886 1143.16 2.43263C1143.3 2.34639 1143.42 2.23401 1143.51 2.10196C1143.6 1.96992 1143.67 1.82081 1143.7 1.66318C1143.74 1.50554 1143.74 1.34248 1143.71 1.1834C1143.68 0.984688 1143.59 0.798664 1143.46 0.642069C1143.33 0.485474 1143.17 0.363215 1142.98 0.28603V0.28603Z" fill="white"/>
291
+ <path d="M1199.05 37.1588C1198.71 36.9765 1198.31 36.9293 1197.94 37.0264C1197.56 37.1235 1197.24 37.3579 1197.03 37.6828C1196.91 37.851 1196.83 38.0421 1196.79 38.244C1196.75 38.4458 1196.75 38.6537 1196.8 38.8543C1196.85 39.0947 1196.95 39.3208 1197.1 39.5147C1197.25 39.7087 1197.44 39.8652 1197.66 39.9718C1197.97 40.1102 1198.31 40.149 1198.64 40.0829C1198.98 40.0377 1199.3 39.8792 1199.55 39.6323C1199.79 39.3854 1199.95 39.064 1200 38.7182C1200.04 38.3725 1199.97 38.0219 1199.79 37.7214C1199.61 37.4208 1199.34 37.1874 1199.02 37.0572L1199.05 37.1588Z" fill="white"/>
292
+ <path d="M1280.05 12.4521C1279.71 12.2893 1279.33 12.2567 1278.96 12.3605C1278.6 12.4642 1278.29 12.697 1278.09 13.0149C1277.97 13.2028 1277.88 13.4156 1277.85 13.6387C1277.81 13.8617 1277.83 14.0897 1277.89 14.3069C1277.95 14.5241 1278.06 14.7255 1278.2 14.897C1278.35 15.0685 1278.53 15.2062 1278.74 15.3006C1279.04 15.4475 1279.38 15.4905 1279.71 15.4227C1280.05 15.3775 1280.37 15.219 1280.62 14.9721C1280.87 14.7252 1281.02 14.4038 1281.07 14.058C1281.11 13.7123 1281.04 13.3617 1280.86 13.0612C1280.69 12.7607 1280.41 12.5272 1280.09 12.3971L1280.05 12.4521Z" fill="white"/>
293
+ <path d="M1330.01 45.3199C1329.44 45.0467 1328.8 44.9684 1328.18 45.097C1327.56 45.2259 1327 45.5441 1326.58 46.0068C1326.15 46.4696 1325.89 47.0537 1325.81 47.6771C1325.73 48.3005 1325.86 48.9318 1326.16 49.4824C1326.46 50.033 1326.93 50.4751 1327.49 50.7468C1328 50.9782 1328.55 51.0659 1329.1 51.0001C1329.65 50.9342 1330.17 50.7175 1330.6 50.3738C1331.04 50.0302 1331.37 49.573 1331.56 49.0533C1331.75 48.5336 1331.79 47.9717 1331.68 47.4299C1331.58 46.9722 1331.39 46.5425 1331.1 46.1759C1330.81 45.8092 1330.44 45.5159 1330.01 45.3199Z" fill="white"/>
294
+ <path d="M1351.01 83.8387C1350.71 83.6969 1350.37 83.6567 1350.05 83.7244C1349.84 83.764 1349.65 83.8444 1349.48 83.9608C1349.3 84.0771 1349.16 84.227 1349.04 84.4016C1348.93 84.5697 1348.84 84.7609 1348.8 84.9627C1348.76 85.1645 1348.77 85.3725 1348.81 85.5731C1348.86 85.8134 1348.96 86.0395 1349.11 86.2335C1349.26 86.4274 1349.45 86.584 1349.67 86.6906C1349.98 86.829 1350.32 86.8678 1350.65 86.8017C1350.99 86.7565 1351.32 86.598 1351.56 86.3511C1351.81 86.1042 1351.96 85.7827 1352.01 85.437C1352.05 85.0913 1351.98 84.7407 1351.8 84.4401C1351.63 84.1396 1351.36 83.9061 1351.03 83.776L1351.01 83.8387Z" fill="white"/>
295
+ <path d="M1313.3 155.412C1313 155.27 1312.66 155.23 1312.34 155.298C1311.99 155.343 1311.67 155.501 1311.43 155.748C1311.18 155.995 1311.02 156.317 1310.98 156.662C1310.94 157.008 1311.01 157.359 1311.18 157.659C1311.36 157.96 1311.63 158.193 1311.96 158.323C1312.25 158.465 1312.59 158.506 1312.91 158.438C1313.24 158.37 1313.53 158.202 1313.75 157.958C1313.98 157.714 1314.12 157.405 1314.16 157.077C1314.19 156.748 1314.13 156.416 1313.97 156.127C1313.81 155.838 1313.56 155.607 1313.26 155.467L1313.3 155.412Z" fill="white"/>
296
+ <path d="M1209.25 150.435C1208.94 150.296 1208.6 150.258 1208.27 150.324C1207.93 150.369 1207.61 150.527 1207.36 150.774C1207.11 151.021 1206.96 151.343 1206.91 151.688C1206.87 152.034 1206.94 152.385 1207.12 152.685C1207.29 152.986 1207.56 153.219 1207.89 153.349C1208.19 153.491 1208.53 153.533 1208.86 153.472C1209.26 153.379 1209.62 153.138 1209.86 152.795C1209.97 152.623 1210.05 152.43 1210.09 152.227C1210.13 152.025 1210.13 151.816 1210.08 151.615C1210.05 151.366 1209.95 151.129 1209.81 150.924C1209.66 150.719 1209.47 150.551 1209.25 150.435V150.435Z" fill="white"/>
297
+ <path d="M1124.85 219.678C1124.55 219.537 1124.21 219.494 1123.89 219.556C1123.48 219.641 1123.12 219.884 1122.89 220.232C1122.66 220.58 1122.58 221.004 1122.66 221.413C1122.71 221.653 1122.81 221.879 1122.96 222.071C1123.11 222.264 1123.31 222.417 1123.53 222.519C1123.83 222.666 1124.17 222.709 1124.5 222.641C1124.7 222.602 1124.9 222.521 1125.07 222.405C1125.24 222.289 1125.39 222.139 1125.5 221.964C1125.63 221.775 1125.71 221.561 1125.75 221.337C1125.78 221.112 1125.77 220.883 1125.71 220.665C1125.64 220.446 1125.53 220.244 1125.38 220.073C1125.24 219.901 1125.05 219.764 1124.84 219.671L1124.85 219.678Z" fill="white"/>
298
+ <path d="M1150.07 267.234C1149.77 267.087 1149.43 267.044 1149.1 267.112C1148.9 267.151 1148.7 267.232 1148.53 267.348C1148.36 267.464 1148.21 267.614 1148.1 267.789C1147.97 267.978 1147.89 268.192 1147.85 268.416C1147.82 268.641 1147.83 268.87 1147.89 269.088C1147.96 269.307 1148.06 269.508 1148.21 269.68C1148.36 269.852 1148.55 269.989 1148.75 270.082C1149.05 270.224 1149.39 270.264 1149.71 270.196C1149.92 270.162 1150.11 270.088 1150.29 269.978C1150.46 269.868 1150.61 269.724 1150.73 269.555C1150.85 269.386 1150.93 269.195 1150.98 268.993C1151.02 268.791 1151.03 268.582 1150.99 268.379C1150.95 268.126 1150.84 267.889 1150.68 267.688C1150.51 267.488 1150.31 267.332 1150.07 267.234V267.234Z" fill="white"/>
299
+ <path d="M1021.99 290.348C1021.69 290.206 1021.36 290.166 1021.03 290.234C1020.62 290.307 1020.25 290.541 1020.01 290.883C1019.77 291.226 1019.68 291.649 1019.75 292.062C1019.8 292.299 1019.91 292.521 1020.06 292.712C1020.21 292.904 1020.4 293.06 1020.61 293.169C1020.92 293.301 1021.26 293.337 1021.58 293.272C1021.78 293.234 1021.98 293.156 1022.15 293.041C1022.32 292.927 1022.46 292.779 1022.58 292.606C1022.69 292.434 1022.77 292.242 1022.81 292.039C1022.86 291.836 1022.86 291.627 1022.82 291.423C1022.77 291.194 1022.67 290.978 1022.53 290.792C1022.38 290.606 1022.2 290.454 1021.99 290.348V290.348Z" fill="white"/>
300
+ <path d="M1103.06 34.6013C1102.77 34.4595 1102.43 34.4194 1102.11 34.4871C1101.9 34.5268 1101.71 34.6071 1101.53 34.7235C1101.36 34.8398 1101.22 34.9896 1101.1 35.1641C1100.87 35.5132 1100.79 35.9363 1100.86 36.3467C1100.92 36.5835 1101.02 36.8055 1101.17 36.9967C1101.32 37.1879 1101.51 37.3437 1101.73 37.4531C1102.04 37.5848 1102.38 37.6234 1102.71 37.5642C1103.06 37.5201 1103.38 37.3614 1103.63 37.113C1103.87 36.8646 1104.03 36.5407 1104.07 36.1927C1104.12 35.8446 1104.04 35.4922 1103.86 35.1912C1103.68 34.8902 1103.41 34.6578 1103.08 34.5308L1103.06 34.6013Z" fill="white"/>
301
+ <path d="M1155.6 23.4492C1155.17 23.2423 1154.68 23.1838 1154.22 23.2829C1153.75 23.3732 1153.32 23.6101 1153 23.9591C1152.67 24.3082 1152.47 24.7514 1152.41 25.225C1152.35 25.6986 1152.45 26.1779 1152.68 26.5938C1152.91 27.0097 1153.27 27.3408 1153.71 27.539C1154.15 27.736 1154.64 27.7929 1155.11 27.7021C1155.69 27.5826 1156.21 27.236 1156.54 26.7383C1156.86 26.2406 1156.98 25.6326 1156.86 25.0481C1156.8 24.7002 1156.65 24.3734 1156.43 24.0953C1156.21 23.8172 1155.92 23.5957 1155.6 23.4492V23.4492Z" fill="white"/>
302
+ <path d="M1321.35 79.8946C1321.12 79.7941 1320.87 79.7668 1320.63 79.8163C1320.48 79.8412 1320.34 79.8956 1320.21 79.9763C1320.08 80.0571 1319.97 80.1625 1319.88 80.2865C1319.79 80.4105 1319.73 80.5506 1319.7 80.6987C1319.67 80.8469 1319.66 81 1319.69 81.1492C1319.72 81.3294 1319.79 81.4995 1319.9 81.6441C1320.01 81.7887 1320.16 81.903 1320.33 81.9768C1320.55 82.08 1320.8 82.1074 1321.05 82.0551C1321.2 82.0284 1321.34 81.9716 1321.47 81.8881C1321.59 81.8046 1321.7 81.6961 1321.78 81.5693C1321.87 81.4415 1321.93 81.2978 1321.96 81.1464C1321.99 80.995 1321.99 80.8391 1321.96 80.6878C1321.93 80.5179 1321.85 80.3583 1321.75 80.2209C1321.64 80.0834 1321.5 79.9718 1321.35 79.8946Z" fill="white"/>
303
+ <path d="M1277.46 133.893C1277.16 133.749 1276.82 133.706 1276.5 133.771C1276.09 133.857 1275.73 134.101 1275.5 134.451C1275.26 134.801 1275.18 135.227 1275.26 135.638C1275.31 135.876 1275.42 136.1 1275.57 136.29C1275.72 136.48 1275.92 136.632 1276.14 136.734C1276.44 136.88 1276.78 136.923 1277.11 136.856C1277.52 136.771 1277.87 136.528 1278.1 136.18C1278.33 135.832 1278.42 135.408 1278.33 134.999C1278.29 134.759 1278.18 134.533 1278.03 134.341C1277.88 134.148 1277.69 133.995 1277.46 133.893Z" fill="white"/>
304
+ <path d="M1243.06 177.302C1242.55 177.076 1241.99 177.012 1241.44 177.119C1240.9 177.232 1240.42 177.512 1240.04 177.918C1239.67 178.324 1239.44 178.836 1239.38 179.382C1239.31 179.929 1239.42 180.481 1239.69 180.963C1239.95 181.444 1240.36 181.829 1240.86 182.065C1241.37 182.291 1241.93 182.355 1242.48 182.248C1242.82 182.183 1243.14 182.05 1243.42 181.858C1243.71 181.665 1243.95 181.417 1244.14 181.128C1244.35 180.815 1244.49 180.459 1244.55 180.085C1244.61 179.711 1244.59 179.329 1244.49 178.965C1244.39 178.6 1244.21 178.263 1243.96 177.976C1243.71 177.689 1243.41 177.459 1243.06 177.302V177.302Z" fill="white"/>
305
+ <path d="M1146.56 171.016C1146.04 170.78 1145.45 170.734 1144.91 170.888C1144.36 171.041 1143.88 171.384 1143.56 171.855C1143.21 172.387 1143.09 173.034 1143.22 173.656C1143.29 174.06 1143.47 174.438 1143.73 174.754C1143.99 175.069 1144.33 175.312 1144.72 175.457C1145.1 175.603 1145.52 175.646 1145.92 175.584C1146.33 175.522 1146.71 175.356 1147.03 175.103C1147.36 174.849 1147.61 174.516 1147.77 174.136C1147.92 173.756 1147.98 173.343 1147.93 172.935C1147.88 172.527 1147.72 172.139 1147.48 171.809C1147.24 171.479 1146.91 171.217 1146.53 171.05L1146.56 171.016Z" fill="white"/>
306
+ <g opacity="0.3">
307
+ <path opacity="0.3" d="M1481.74 98.0185L1480.23 34.9029L1514.02 35.5308L1513.77 35.3523L1479.91 18.0945L1477.84 -68.7029L1478.07 -69.0223L1477.78 -68.7793L1367.6 -101.887L1367.69 -102.184L1367.48 -101.875L1304.57 -72.0206L1308.46 -113.678L1308.39 -113.579L1244.08 -79.2065L1225.01 -91.9127L1190.63 -62.025L1127.54 -59.5542L1085.22 -93.8032L1024.27 -50.3541L1024.53 -50.3809L1099.13 -58.3096L1158.73 -34.1742L1275.51 -58.142L1301.1 -36.6365L1298.7 -10.9225L1298.64 -10.8453L1298.7 -10.8065L1324.73 41.316L1312.61 100.635L1255.86 111.59L1232.36 136.351L1157.89 126.059L1117.63 153.224L1090.32 108.643L999.947 120.798L999.893 120.875L999.805 120.813L999.871 120.86L898.744 208.575L819.374 127.798L774.869 135.807L723.472 85.5123L723.555 85.7686L714.958 129.585L615.207 82.3973L563.183 108.382L487.623 50.7417L487.769 51.0259L538.285 151.1L587.801 154.367L604.49 185.241L606.951 245.483L565.088 292.585L565.187 292.655L630.898 302.038L645.278 324.396L645.231 324.462L645.285 324.385L732.768 317.18L732.706 317.268L732.76 317.191L756.795 408.601L831.543 409.648L831.433 409.57L845.622 374.521L863.031 390.706L863.101 390.607L876.821 297.658L993.668 345.352L993.685 345.726L993.792 345.34L1059.54 281.969L1030.47 212.049L1094.29 168.992L1156.06 216.454L1156.18 216.655L1157.2 162.423L1200.99 169.603L1232.12 136.798L1303.02 146.898L1303.09 146.952L1303.15 146.875L1336.03 96.5147L1392.25 85.662L1392.59 85.9025L1392.35 85.5861L1418.87 33.9038L1481.55 98.1482L1481.69 98.376L1481.74 98.0185ZM1157.29 162.32L1157.96 126.27L1200.82 169.381L1157.29 162.32ZM1156.13 216.19L1119.45 156.321L1157.13 162.444L1156.13 216.19ZM1094.51 168.945L1114.42 155.512L1119.26 156.287L1155.93 216.147L1094.51 168.945ZM1114.6 155.393L1117.51 153.419L1119.16 156.131L1114.6 155.393ZM616.63 125.724L563.306 108.419L615.141 82.5154L616.63 125.724ZM616.626 125.869L613.839 139.514L563.672 108.694L616.626 125.869ZM1017.75 174.706L1030.29 211.906L1003.55 202.263L1002.66 183.029L1017.75 174.706ZM1002.64 182.868L999.79 121.396L1017.73 174.574L1002.64 182.868ZM758.134 193.587L743.337 260.924L699.691 210.271L758.134 193.587ZM743.282 261.001L743.19 261.413L667.597 257.612L699.568 210.234L743.282 261.001ZM732.984 316.92L743.373 261.856L765.667 288.536L732.984 316.92ZM765.775 288.431L743.418 261.674L783.994 272.603L765.775 288.431ZM784.168 272.66L838.693 287.349L808.95 340.103L765.945 288.633L784.168 272.66ZM743.534 261.557L811.333 248.859L784.097 272.527L743.534 261.557ZM811.58 248.836L845.945 274.525L838.775 287.209L784.302 272.54L811.58 248.836ZM846.066 274.611L876.503 297.384L838.908 287.253L846.066 274.611ZM846.144 274.501L868.684 234.686L876.764 297.387L846.144 274.501ZM868.813 234.596L914.784 260.187L876.963 297.363L868.813 234.596ZM876.769 297.638L809.192 339.994L838.933 287.452L876.769 297.638ZM808.779 340.065L733.12 317.148L765.861 288.706L808.779 340.065ZM732.906 317.03L701.634 288.657L743.276 261.689L743.353 261.743L732.906 317.03ZM701.51 288.553L667.691 257.876L743.06 261.668L701.51 288.553ZM701.432 288.663L671.952 307.75L667.625 257.994L701.432 288.663ZM671.812 307.784L651.96 304.942L667.485 258.192L671.812 307.784ZM667.574 257.645L657.112 213.72L699.483 210.355L667.574 257.645ZM657.078 213.581L653.399 198.167L699.199 210.221L657.078 213.581ZM653.362 198.009L643.89 158.225L699.276 210.111L653.362 198.009ZM758.361 193.78L811.551 248.783L743.583 261.51L743.632 261.23L743.532 261.161L758.361 193.78ZM811.864 248.854L868.696 234.645L846.141 274.482L811.864 248.854ZM869.049 234.565L914.53 225.1L928.179 247.208L915.01 260.148L869.049 234.565ZM928.262 247.348L947.241 278.104L915.139 260.222L928.262 247.348ZM914.668 225.115L940.285 235.215L928.221 247.055L914.668 225.115ZM940.463 235.291L986.465 253.421L987.515 266.555L947.459 278.192L928.336 247.219L940.463 235.291ZM1030.4 212.13L1006.37 260.885L1003.64 202.479L1030.4 212.13ZM1006.21 260.691L981.958 194.655L1003.5 202.426L1006.21 260.691ZM986.587 253.458L1006.06 261.124L987.637 266.475L986.587 253.458ZM940.545 235.151L981.756 194.661L986.432 253.233L940.545 235.151ZM981.947 195.092L1006.18 261.075L986.598 253.35L981.947 195.092ZM982.017 194.548L1002.58 183.12L1003.47 202.227L982.017 194.548ZM1017.97 174.726L1066.5 147.934L1030.48 211.952L1017.97 174.726ZM1030.21 212.839L993.917 345L987.614 266.625L1006.26 261.215L1006.38 261.3L1006.28 261.231L1030.21 212.839ZM993.789 345.157L947.545 278.351L987.518 266.738L993.789 345.157ZM993.704 345.278L877.087 297.631L915.016 260.35L947.394 278.377L993.704 345.278ZM876.813 297.833L845.829 374.321L809.104 340.212L876.813 297.833ZM808.857 340.235L787.557 368.298L733.239 317.33L808.857 340.235ZM732.729 317.071L672.059 307.809L701.505 288.748L732.729 317.071ZM671.627 307.884L645.488 324.215L651.852 305.047L671.627 307.884ZM645.418 324.033L643.275 303.818L651.733 305.029L645.418 324.033ZM643.278 303.672L638.862 261.929L667.411 257.876L651.778 304.896L643.278 303.672ZM638.847 261.786L633.982 215.508L656.96 213.679L667.438 257.697L638.847 261.786ZM638.704 261.801L608.043 266.162L633.771 215.738L638.704 261.801ZM608.044 265.949L607.21 245.584L633.553 215.93L608.044 265.949ZM637.637 193.987L653.222 198.091L656.9 213.554L633.97 215.384L637.637 193.987ZM637.66 193.838L643.756 158.345L653.177 197.944L637.66 193.838ZM613.96 139.599L616.743 125.985L643.336 157.654L613.96 139.599ZM643.402 157.865L610.661 155.702L613.882 139.709L643.402 157.865ZM616.881 125.999L695.796 149.348L643.637 157.882L616.881 125.999ZM696.123 149.446L710.315 153.609L699.487 210.045L643.851 158L696.123 149.446ZM710.425 153.686L730.2 159.539L699.69 209.874L710.425 153.686ZM696.464 149.406L711.594 146.879L710.282 153.421L696.464 149.406ZM711.693 146.949L740.76 142.091L730.223 159.39L710.399 153.536L711.693 146.949ZM711.724 146.789L714.95 129.877L740.627 142.046L711.724 146.789ZM748.441 164.856L730.399 159.515L740.89 142.281L748.441 164.856ZM741.007 142.232L827.448 188.286L748.581 164.938L741.007 142.232ZM748.5 165.03L758.048 193.593L699.638 210.135L730.304 159.579L748.5 165.03ZM758.463 193.869L868.521 234.473L811.662 248.696L758.463 193.869ZM868.973 234.462L898.488 208.939L914.348 225.054L868.973 234.462ZM914.651 225.021L981.423 194.805L940.385 235.121L914.651 225.021ZM999.638 121.471L1002.51 183.044L981.878 194.417L999.638 121.471ZM999.813 121.083L1066.5 147.751L1017.88 174.519L999.813 121.083ZM1094.39 168.859L1066.98 147.812L1114.23 155.477L1094.39 168.859ZM1094.3 168.981L1030.73 211.869L1066.79 147.837L1094.3 168.981ZM1059.54 282.037L994.043 345.171L1030.53 212.339L1059.54 282.037ZM845.933 374.477L876.803 298.222L863.174 390.527L845.933 374.477ZM831.56 409.577L787.693 368.41L809 340.336L845.769 374.476L831.56 409.577ZM831.413 409.622L757.181 408.592L787.596 368.524L831.413 409.622ZM733.172 317.448L787.534 368.447L757.112 408.526L733.172 317.448ZM732.393 317.197L645.742 324.345L671.942 307.974L732.393 317.197ZM631.187 302.143L643.173 303.845L645.351 324.151L631.187 302.143ZM608.161 266.345L638.778 262.001L643.188 303.707L631.079 301.968L608.161 266.345ZM630.882 301.945L565.548 292.563L607.936 266.384L630.882 301.945ZM607.054 245.688L607.894 266.14L565.718 292.205L607.054 245.688ZM604.687 185.264L637.486 193.897L633.795 215.376L607.183 245.317L604.687 185.264ZM610.618 155.902L643.583 158.075L637.447 193.836L604.637 185.196L610.618 155.902ZM587.972 154.405L610.519 155.833L604.568 184.966L587.972 154.405ZM563.271 108.609L613.764 139.643L610.49 155.664L587.885 154.179L563.271 108.609ZM563.106 108.492L587.748 154.115L538.437 150.861L563.106 108.492ZM487.954 51.0903L562.726 108.142L562.583 108.041L563.023 108.352L538.331 150.754L487.954 51.0903ZM714.872 129.707L711.624 146.719L696.157 149.256L616.771 125.757L615.276 82.5113L714.872 129.707ZM723.368 86.0815L740.812 141.83L715.05 129.618L723.368 86.0815ZM774.415 135.867L740.931 141.848L723.47 86.0056L774.415 135.867ZM774.559 135.967L827.808 188.078L741.167 141.982L774.559 135.967ZM819.054 128.018L868.614 234.34L758.285 193.513L748.73 164.961L828.484 188.57L828.241 188.399L774.742 135.965L819.054 128.018ZM898.428 208.649L868.813 234.316L819.374 128.243L898.428 208.649ZM898.652 208.659L999.637 121.074L981.782 194.366L981.727 194.327L981.782 194.366L914.497 224.912L898.652 208.659ZM1117.43 153.297L1114.35 155.331L1066.76 147.571L1000.04 120.898L1090.2 108.752L1117.43 153.297ZM1117.63 153.34L1157.81 126.248L1157.14 162.298L1119.35 156.154L1117.63 153.34ZM1232.05 136.695L1201.05 169.361L1158.09 126.199L1232.05 136.695ZM1439.51 -2.30312L1413.85 -15.3357L1477.38 -68.3521L1439.51 -2.30312ZM1367.18 -101.438L1348.8 -35.4423L1323.27 -43.3237L1367.18 -101.438ZM1348.77 -35.3011L1339.99 -3.80273L1311.55 -27.7628L1323.23 -43.2202L1348.77 -35.3011ZM1418.99 33.4769L1413.83 -14.9658L1430.69 13.1229L1418.99 33.4769ZM1340.09 -3.44145L1352.55 23.6188L1324.81 41.2919L1340.09 -3.44145ZM1352.62 23.7436L1359.44 38.5356L1324.96 41.3817L1352.62 23.7436ZM1352.69 23.6335L1413.65 -15.1761L1418.83 33.6299L1359.57 38.5127L1352.69 23.6335ZM1392.28 85.3563L1365.45 51.4077L1359.57 38.6961L1418.73 33.8217L1392.28 85.3563ZM1392 85.1546L1357.91 62.9751L1365.42 51.4706L1392 85.1546ZM1357.79 62.8897L1325.02 41.5553L1365.28 51.3698L1357.79 62.8897ZM1325.07 41.4891L1359.45 38.6592L1365.26 51.2758L1325.07 41.4891ZM1324.6 41.2604L1298.68 -10.6388L1339.89 -3.62972L1324.6 41.2604ZM1298.65 -10.8077L1311.37 -27.6441L1339.74 -3.79798L1298.65 -10.8077ZM1348.85 -35.2766L1413.53 -15.2614L1352.65 23.5242L1340.13 -3.64224L1348.85 -35.2766ZM1439.35 -2.19869L1430.67 12.9131L1413.84 -15.16L1439.35 -2.19869ZM1439.47 -2.11335L1479.61 18.2625L1480 34.74L1443.31 34.0637L1430.74 13.0943L1439.47 -2.11335ZM1443.15 34.0633L1418.95 33.6181L1430.66 13.2342L1443.15 34.0633ZM1443.27 34.1487L1481.23 97.4408L1419.01 33.6757L1443.27 34.1487ZM1336.15 96.2038L1357.82 63.1073L1392.11 85.464L1336.15 96.2038ZM1312.48 100.957L1335.88 96.5032L1303.26 146.429L1312.48 100.957ZM1255.62 111.999L1302.75 146.674L1232.26 136.581L1255.62 111.999ZM1312.29 101.038L1302.97 146.665L1255.78 111.943L1312.29 101.038ZM1324.53 41.5538L1357.55 63.0479L1335.8 96.2657L1312.39 100.779L1324.53 41.5538ZM1300.88 -36.3657L1311.15 -27.732L1298.5 -10.9947L1300.88 -36.3657ZM1302.13 -49.6569L1322.9 -43.2697L1311.26 -27.8673L1300.9 -36.5632L1302.13 -49.6569ZM1300.77 -36.6563L1275.51 -57.8804L1301.99 -49.7092L1300.77 -36.6563ZM1275.71 -58.0994L1275.46 -58.1135L1304.04 -71.6976L1301.99 -49.8548L1275.62 -58.0159L1275.71 -58.0994ZM1084.74 -93.5087L1098.56 -58.3279L1024.33 -50.4422L1084.74 -93.5087ZM1126.88 -59.459L1098.72 -58.3461L1085.14 -93.2968L1126.88 -59.459ZM1127.06 -59.3349L1157.85 -34.3502L1098.99 -58.1897L1127.06 -59.3349ZM1190.01 -61.8016L1158.3 -34.2341L1127.31 -59.3585L1190.01 -61.8016ZM1190.25 -61.8141L1213 -62.7143L1274.54 -58.0808L1158.53 -34.3139L1190.25 -61.8141ZM1190.38 -62.0014L1224.4 -91.5735L1212.96 -62.8912L1190.38 -62.0014ZM1243.44 -79.1631L1213.17 -62.9755L1224.62 -91.7097L1243.44 -79.1631ZM1243.59 -79.0622L1274.82 -58.2346L1213.27 -62.8682L1243.59 -79.0622ZM1243.73 -79.1446L1307.96 -113.291L1275.28 -58.1702L1243.73 -79.1446ZM1303.97 -71.9462L1275.27 -58.3127L1307.83 -113.23L1303.97 -71.9462ZM1304.1 -71.853L1366.88 -101.685L1322.89 -43.4607L1302.05 -49.8944L1304.1 -71.853ZM1367.11 -101.638L1413.27 -15.4775L1348.68 -35.4306L1367.11 -101.638ZM1367.19 -101.748L1477.25 -68.7256L1413.41 -15.5411L1367.19 -101.748ZM1479.66 18.1368L1439.6 -2.20346L1477.6 -68.3426L1479.66 18.1368ZM1480.21 34.7902L1479.82 18.3801L1513.36 35.4129L1480.21 34.7902ZM1481.57 97.7675L1443.47 34.2585L1480.09 34.9179L1481.57 97.7675Z" fill="white"/>
308
+ <path opacity="0.3" d="M540.222 147.736C539.577 147.345 538.83 147.154 538.075 147.189C537.321 147.223 536.594 147.482 535.987 147.932C535.381 148.381 534.922 149.002 534.669 149.713C534.417 150.425 534.382 151.196 534.569 151.927C534.757 152.659 535.158 153.318 535.721 153.82C536.285 154.323 536.985 154.646 537.733 154.749C538.481 154.852 539.243 154.729 539.921 154.397C540.599 154.065 541.163 153.538 541.541 152.884C542.045 152.026 542.189 151.003 541.942 150.039C541.695 149.075 541.077 148.247 540.222 147.736V147.736Z" fill="white"/>
309
+ <path opacity="0.3" d="M635.664 212.324C635.047 211.964 634.338 211.796 633.625 211.839C632.913 211.882 632.229 212.135 631.661 212.567C631.092 212.998 630.664 213.588 630.431 214.263C630.198 214.937 630.17 215.666 630.35 216.356C630.531 217.047 630.912 217.668 631.445 218.142C631.979 218.617 632.641 218.922 633.348 219.02C634.055 219.118 634.775 219.004 635.417 218.694C636.06 218.383 636.595 217.888 636.957 217.273C637.436 216.444 637.569 215.459 637.327 214.533C637.085 213.606 636.487 212.813 635.664 212.324Z" fill="white"/>
310
+ <path opacity="0.3" d="M566.174 291.061C565.783 290.836 565.319 290.774 564.882 290.89C564.446 291.005 564.073 291.289 563.844 291.678C563.677 291.969 563.599 292.302 563.621 292.636C563.643 292.971 563.764 293.292 563.967 293.558C564.171 293.824 564.449 294.024 564.766 294.132C565.084 294.241 565.426 294.253 565.75 294.167C566.074 294.081 566.365 293.901 566.587 293.65C566.809 293.399 566.952 293.088 566.997 292.755C567.043 292.423 566.989 292.085 566.842 291.784C566.696 291.482 566.463 291.231 566.174 291.061V291.061Z" fill="white"/>
311
+ <path opacity="0.3" d="M672.949 305.913C672.569 305.69 672.132 305.585 671.692 305.611C671.253 305.637 670.831 305.792 670.48 306.058C670.129 306.324 669.865 306.688 669.722 307.104C669.578 307.52 669.561 307.969 669.672 308.395C669.784 308.821 670.02 309.204 670.35 309.496C670.679 309.787 671.088 309.974 671.525 310.033C671.961 310.093 672.405 310.021 672.8 309.827C673.195 309.634 673.525 309.327 673.746 308.947C674.041 308.438 674.122 307.834 673.973 307.266C673.824 306.697 673.455 306.211 672.949 305.913V305.913Z" fill="white"/>
312
+ <path opacity="0.3" d="M758.089 406.711C757.71 406.492 757.276 406.391 756.84 406.419C756.404 406.447 755.986 406.604 755.639 406.869C755.292 407.135 755.032 407.497 754.891 407.911C754.75 408.324 754.734 408.77 754.847 409.193C754.959 409.615 755.194 409.994 755.522 410.283C755.85 410.571 756.256 410.756 756.689 410.814C757.122 410.872 757.563 410.801 757.955 410.608C758.347 410.416 758.674 410.111 758.893 409.734C759.039 409.482 759.134 409.205 759.173 408.917C759.211 408.629 759.192 408.336 759.118 408.055C759.043 407.775 758.914 407.511 758.737 407.281C758.56 407.05 758.34 406.856 758.089 406.711V406.711Z" fill="white"/>
313
+ <path opacity="0.3" d="M734.043 315.228C733.663 315.005 733.226 314.899 732.787 314.925C732.347 314.951 731.925 315.107 731.575 315.373C731.224 315.638 730.96 316.002 730.816 316.418C730.672 316.834 730.655 317.284 730.767 317.71C730.879 318.135 731.114 318.518 731.444 318.81C731.774 319.102 732.183 319.289 732.619 319.348C733.055 319.407 733.499 319.335 733.894 319.142C734.29 318.948 734.619 318.642 734.84 318.261C735.135 317.753 735.217 317.148 735.067 316.58C734.918 316.011 734.55 315.525 734.043 315.228V315.228Z" fill="white"/>
314
+ <path opacity="0.3" d="M647.123 321.329C646.522 320.98 645.831 320.817 645.137 320.861C644.444 320.904 643.778 321.153 643.226 321.574C642.673 321.995 642.258 322.571 642.032 323.229C641.806 323.886 641.78 324.596 641.958 325.268C642.135 325.94 642.507 326.544 643.028 327.004C643.548 327.465 644.194 327.761 644.882 327.855C645.571 327.949 646.272 327.837 646.897 327.533C647.522 327.229 648.043 326.746 648.394 326.146C648.862 325.338 648.991 324.378 648.753 323.475C648.515 322.572 647.929 321.8 647.123 321.329V321.329Z" fill="white"/>
315
+ <path opacity="0.3" d="M609.054 264.303C608.674 264.08 608.237 263.975 607.798 264.001C607.358 264.027 606.936 264.182 606.585 264.448C606.234 264.714 605.97 265.078 605.827 265.494C605.683 265.91 605.666 266.359 605.778 266.785C605.889 267.211 606.125 267.594 606.455 267.886C606.785 268.177 607.193 268.364 607.63 268.423C608.066 268.482 608.51 268.411 608.905 268.217C609.301 268.024 609.63 267.717 609.851 267.336C610.142 266.827 610.222 266.224 610.073 265.657C609.924 265.089 609.558 264.603 609.054 264.303V264.303Z" fill="white"/>
316
+ <path opacity="0.3" d="M605.697 183.29C605.318 183.067 604.88 182.962 604.441 182.988C604.002 183.014 603.58 183.169 603.229 183.435C602.878 183.701 602.614 184.065 602.47 184.481C602.326 184.897 602.309 185.347 602.421 185.772C602.533 186.198 602.769 186.581 603.098 186.873C603.428 187.164 603.837 187.351 604.273 187.411C604.709 187.47 605.153 187.398 605.549 187.204C605.944 187.011 606.273 186.704 606.494 186.324C606.789 185.815 606.871 185.211 606.722 184.642C606.572 184.074 606.204 183.588 605.697 183.29V183.29Z" fill="white"/>
317
+ <path opacity="0.3" d="M617.575 124.331C617.281 124.161 616.942 124.081 616.602 124.103C616.262 124.125 615.936 124.247 615.666 124.453C615.395 124.66 615.192 124.942 615.081 125.264C614.97 125.586 614.958 125.934 615.044 126.263C615.131 126.593 615.313 126.889 615.568 127.115C615.823 127.341 616.139 127.486 616.477 127.533C616.814 127.579 617.158 127.525 617.464 127.376C617.771 127.228 618.026 126.992 618.199 126.698C618.428 126.301 618.491 125.83 618.375 125.386C618.258 124.943 617.971 124.564 617.575 124.331V124.331Z" fill="white"/>
318
+ <path opacity="0.3" d="M724.473 83.8773C724.092 83.6544 723.655 83.5494 723.215 83.5758C722.775 83.6022 722.353 83.7588 722.002 84.0256C721.651 84.2924 721.388 84.6575 721.245 85.0744C721.102 85.4913 721.086 85.9413 721.199 86.3671C721.313 86.793 721.55 87.1755 721.881 87.4662C722.213 87.7569 722.623 87.9426 723.06 87.9997C723.497 88.0568 723.941 87.9827 724.336 87.7868C724.731 87.591 725.058 87.2823 725.277 86.8999C725.568 86.3916 725.647 85.7891 725.496 85.2231C725.346 84.6572 724.978 84.1736 724.473 83.8773V83.8773Z" fill="white"/>
319
+ <path opacity="0.3" d="M829.033 187.013C828.849 186.905 828.646 186.834 828.435 186.804C828.224 186.774 828.009 186.787 827.802 186.84C827.596 186.894 827.402 186.988 827.232 187.117C827.062 187.246 826.92 187.407 826.812 187.592C826.705 187.776 826.635 187.98 826.607 188.191C826.579 188.402 826.592 188.617 826.647 188.823C826.701 189.029 826.796 189.222 826.925 189.392C827.055 189.561 827.216 189.704 827.4 189.811C827.585 189.918 827.788 189.987 827.999 190.016C828.211 190.044 828.425 190.031 828.631 189.976C828.837 189.922 829.031 189.827 829.2 189.698C829.37 189.568 829.512 189.407 829.619 189.223C829.727 189.04 829.798 188.837 829.827 188.626C829.856 188.415 829.843 188.201 829.789 187.995C829.734 187.789 829.639 187.597 829.509 187.428C829.38 187.26 829.218 187.119 829.033 187.013Z" fill="white"/>
320
+ <path opacity="0.3" d="M982.914 192.592C982.533 192.372 982.096 192.269 981.657 192.297C981.219 192.325 980.798 192.483 980.449 192.75C980.1 193.017 979.838 193.381 979.696 193.797C979.554 194.213 979.538 194.662 979.651 195.087C979.764 195.512 980 195.893 980.33 196.184C980.659 196.475 981.068 196.661 981.504 196.719C981.939 196.778 982.383 196.706 982.777 196.513C983.172 196.319 983.501 196.013 983.722 195.633C983.869 195.381 983.964 195.101 984.003 194.812C984.042 194.522 984.023 194.227 983.948 193.945C983.873 193.662 983.743 193.398 983.566 193.165C983.388 192.933 983.167 192.738 982.914 192.592V192.592Z" fill="white"/>
321
+ <path opacity="0.3" d="M1000.84 118.99C1000.33 118.74 999.753 118.691 999.213 118.854C998.672 119.017 998.214 119.379 997.931 119.867C997.648 120.355 997.561 120.933 997.688 121.483C997.815 122.032 998.147 122.513 998.615 122.828C998.868 122.998 999.152 123.114 999.452 123.169C999.751 123.224 1000.06 123.217 1000.35 123.149C1000.65 123.08 1000.93 122.952 1001.18 122.771C1001.42 122.59 1001.63 122.361 1001.78 122.098C1001.93 121.835 1002.03 121.543 1002.06 121.241C1002.1 120.938 1002.07 120.632 1001.98 120.341C1001.9 120.049 1001.75 119.779 1001.55 119.547C1001.36 119.314 1001.11 119.125 1000.84 118.99V118.99Z" fill="white"/>
322
+ <path opacity="0.3" d="M1091.32 106.806C1090.94 106.583 1090.5 106.478 1090.06 106.503C1089.62 106.529 1089.2 106.685 1088.85 106.951C1088.5 107.217 1088.23 107.581 1088.09 107.997C1087.95 108.413 1087.93 108.862 1088.04 109.288C1088.15 109.714 1088.39 110.096 1088.72 110.388C1089.05 110.68 1089.46 110.867 1089.89 110.926C1090.33 110.985 1090.77 110.913 1091.17 110.72C1091.56 110.526 1091.89 110.22 1092.11 109.839C1092.41 109.331 1092.49 108.726 1092.34 108.158C1092.19 107.589 1091.82 107.103 1091.32 106.806V106.806Z" fill="white"/>
323
+ <path opacity="0.3" d="M1157.31 214.523C1156.94 214.3 1156.5 214.194 1156.06 214.22C1155.62 214.246 1155.2 214.402 1154.85 214.668C1154.5 214.933 1154.23 215.297 1154.09 215.713C1153.94 216.129 1153.93 216.579 1154.04 217.004C1154.15 217.43 1154.39 217.813 1154.72 218.105C1155.05 218.396 1155.45 218.584 1155.89 218.643C1156.33 218.702 1156.77 218.63 1157.17 218.437C1157.56 218.243 1157.89 217.937 1158.11 217.556C1158.41 217.048 1158.49 216.443 1158.34 215.875C1158.19 215.306 1157.82 214.82 1157.31 214.523V214.523Z" fill="white"/>
324
+ <path opacity="0.3" d="M832.653 407.742C832.273 407.522 831.835 407.42 831.397 407.448C830.958 407.476 830.537 407.633 830.188 407.9C829.839 408.167 829.577 408.532 829.435 408.948C829.293 409.364 829.277 409.812 829.39 410.237C829.503 410.662 829.739 411.044 830.069 411.334C830.399 411.625 830.807 411.811 831.243 411.87C831.679 411.928 832.122 411.856 832.517 411.663C832.911 411.47 833.24 411.164 833.461 410.784C833.608 410.531 833.703 410.252 833.742 409.962C833.781 409.672 833.763 409.378 833.687 409.095C833.612 408.813 833.482 408.548 833.305 408.316C833.127 408.084 832.906 407.889 832.653 407.742Z" fill="white"/>
325
+ <path opacity="0.3" d="M863.967 389.258C863.601 389.05 863.168 388.995 862.762 389.103C862.356 389.211 862.008 389.475 861.795 389.837C861.584 390.202 861.526 390.636 861.635 391.043C861.744 391.451 862.01 391.798 862.374 392.009C862.555 392.12 862.757 392.193 862.966 392.224C863.176 392.256 863.389 392.245 863.595 392.193C863.8 392.14 863.993 392.048 864.162 391.92C864.331 391.792 864.473 391.632 864.579 391.448C864.685 391.265 864.753 391.062 864.78 390.852C864.807 390.641 864.791 390.428 864.734 390.224C864.677 390.02 864.58 389.829 864.448 389.663C864.316 389.497 864.152 389.359 863.967 389.258V389.258Z" fill="white"/>
326
+ <path opacity="0.3" d="M644.813 156.044C644.434 155.821 643.997 155.716 643.557 155.742C643.118 155.768 642.696 155.923 642.345 156.189C641.994 156.455 641.73 156.819 641.586 157.235C641.443 157.651 641.425 158.1 641.537 158.526C641.649 158.952 641.885 159.335 642.215 159.626C642.544 159.918 642.953 160.105 643.389 160.164C643.826 160.223 644.269 160.152 644.665 159.958C645.06 159.765 645.389 159.458 645.61 159.078C645.906 158.569 645.987 157.965 645.838 157.396C645.689 156.828 645.32 156.342 644.813 156.044Z" fill="white"/>
327
+ <path opacity="0.3" d="M488.858 49.0068C488.479 48.784 488.041 48.6787 487.602 48.7045C487.163 48.7303 486.741 48.8861 486.39 49.1519C486.039 49.4178 485.775 49.7817 485.631 50.1977C485.487 50.6137 485.47 51.0631 485.582 51.4888C485.694 51.9146 485.93 52.2975 486.259 52.5891C486.589 52.8808 486.998 53.068 487.434 53.1271C487.87 53.1862 488.314 53.1144 488.71 52.921C489.105 52.7275 489.434 52.421 489.655 52.0403C489.805 51.7896 489.903 51.5115 489.944 51.2223C489.985 50.9331 489.968 50.6386 489.894 50.3562C489.819 50.0737 489.69 49.8089 489.512 49.5771C489.334 49.3454 489.112 49.1516 488.858 49.0068V49.0068Z" fill="white"/>
328
+ <path opacity="0.3" d="M616.335 80.4902C615.956 80.2647 615.519 80.1569 615.079 80.1804C614.639 80.204 614.215 80.3579 613.863 80.6226C613.51 80.8872 613.244 81.2506 613.099 81.6667C612.953 82.0827 612.935 82.5327 613.046 82.9594C613.157 83.386 613.392 83.77 613.721 84.0627C614.051 84.3555 614.46 84.5436 614.897 84.6032C615.334 84.6629 615.778 84.5913 616.174 84.3977C616.57 84.2041 616.9 83.8973 617.121 83.516C617.414 83.0097 617.497 82.4081 617.349 81.8417C617.202 81.2752 616.838 80.7896 616.335 80.4902V80.4902Z" fill="white"/>
329
+ <path opacity="0.3" d="M742.05 140.068C741.672 139.85 741.237 139.748 740.801 139.776C740.365 139.804 739.948 139.961 739.601 140.227C739.254 140.492 738.993 140.855 738.852 141.268C738.711 141.682 738.696 142.128 738.808 142.55C738.921 142.972 739.156 143.351 739.484 143.64C739.812 143.929 740.218 144.114 740.651 144.172C741.084 144.229 741.524 144.158 741.917 143.965C742.309 143.773 742.635 143.469 742.855 143.091C743.001 142.84 743.096 142.562 743.134 142.274C743.173 141.986 743.154 141.694 743.079 141.413C743.004 141.132 742.875 140.869 742.698 140.638C742.522 140.407 742.302 140.214 742.05 140.068V140.068Z" fill="white"/>
330
+ <path opacity="0.3" d="M700.705 208.315C700.324 208.094 699.887 207.992 699.449 208.02C699.01 208.048 698.589 208.205 698.24 208.472C697.891 208.739 697.629 209.104 697.487 209.52C697.345 209.936 697.329 210.385 697.442 210.809C697.555 211.234 697.791 211.616 698.121 211.907C698.451 212.197 698.859 212.384 699.295 212.442C699.73 212.501 700.174 212.429 700.568 212.235C700.963 212.042 701.292 211.736 701.513 211.356C701.659 211.103 701.755 210.824 701.794 210.534C701.833 210.245 701.814 209.95 701.739 209.668C701.664 209.385 701.534 209.12 701.357 208.888C701.179 208.656 700.958 208.461 700.705 208.315V208.315Z" fill="white"/>
331
+ <path opacity="0.3" d="M668.587 255.854C668.207 255.631 667.77 255.526 667.331 255.552C666.891 255.577 666.469 255.733 666.119 255.999C665.768 256.265 665.504 256.629 665.36 257.045C665.216 257.461 665.199 257.91 665.311 258.336C665.423 258.762 665.658 259.145 665.988 259.436C666.318 259.728 666.727 259.915 667.163 259.974C667.599 260.033 668.043 259.961 668.438 259.768C668.834 259.574 669.163 259.268 669.384 258.887C669.675 258.378 669.755 257.775 669.606 257.207C669.457 256.64 669.091 256.154 668.587 255.854Z" fill="white"/>
332
+ <path opacity="0.3" d="M745.471 257.798C744.724 257.362 743.866 257.158 743.004 257.209C742.142 257.261 741.314 257.566 740.625 258.087C739.936 258.608 739.416 259.321 739.131 260.136C738.846 260.952 738.809 261.833 739.023 262.67C739.238 263.507 739.696 264.261 740.338 264.838C740.981 265.415 741.78 265.79 742.634 265.914C743.489 266.039 744.362 265.908 745.142 265.537C745.922 265.167 746.576 264.574 747.02 263.834C747.32 263.337 747.518 262.786 747.603 262.211C747.687 261.637 747.656 261.052 747.512 260.49C747.368 259.928 747.113 259.401 746.762 258.938C746.412 258.476 745.973 258.088 745.471 257.798V257.798Z" fill="white"/>
333
+ <path opacity="0.3" d="M810.06 338.267C809.808 338.119 809.53 338.022 809.241 337.982C808.953 337.942 808.659 337.96 808.377 338.034C808.095 338.108 807.83 338.237 807.599 338.414C807.367 338.591 807.172 338.812 807.026 339.064C806.803 339.443 806.698 339.881 806.724 340.32C806.749 340.76 806.905 341.181 807.171 341.532C807.437 341.883 807.801 342.147 808.217 342.291C808.633 342.435 809.082 342.452 809.508 342.34C809.934 342.228 810.317 341.992 810.608 341.663C810.9 341.333 811.087 340.924 811.146 340.488C811.205 340.052 811.134 339.608 810.94 339.212C810.747 338.817 810.44 338.488 810.06 338.267V338.267Z" fill="white"/>
334
+ <path opacity="0.3" d="M812.753 246.862C812.373 246.639 811.936 246.534 811.497 246.56C811.057 246.586 810.635 246.742 810.285 247.007C809.934 247.273 809.67 247.637 809.526 248.053C809.382 248.469 809.365 248.919 809.477 249.344C809.589 249.77 809.824 250.153 810.154 250.445C810.484 250.736 810.893 250.924 811.329 250.983C811.765 251.042 812.209 250.97 812.604 250.777C813 250.583 813.329 250.277 813.55 249.896C813.845 249.388 813.927 248.783 813.778 248.215C813.628 247.646 813.26 247.16 812.753 246.862V246.862Z" fill="white"/>
335
+ <path opacity="0.3" d="M759.364 191.652C758.983 191.432 758.546 191.33 758.108 191.358C757.669 191.386 757.249 191.543 756.899 191.81C756.55 192.077 756.288 192.442 756.146 192.858C756.004 193.274 755.988 193.722 756.101 194.147C756.214 194.572 756.45 194.954 756.78 195.244C757.11 195.535 757.518 195.721 757.954 195.78C758.39 195.838 758.833 195.766 759.228 195.573C759.622 195.38 759.951 195.074 760.172 194.694C760.319 194.441 760.414 194.162 760.453 193.872C760.492 193.582 760.473 193.288 760.398 193.006C760.323 192.723 760.193 192.458 760.016 192.226C759.838 191.994 759.617 191.799 759.364 191.652Z" fill="white"/>
336
+ <path opacity="0.3" d="M870.733 231.118C870.068 230.731 869.302 230.55 868.534 230.598C867.765 230.645 867.028 230.92 866.415 231.387C865.803 231.854 865.342 232.492 865.092 233.22C864.842 233.948 864.814 234.734 865.011 235.479C865.207 236.224 865.62 236.893 866.198 237.403C866.775 237.913 867.49 238.24 868.253 238.343C869.016 238.446 869.793 238.321 870.485 237.983C871.177 237.645 871.753 237.109 872.141 236.444C872.398 236.002 872.566 235.513 872.635 235.006C872.703 234.499 872.671 233.984 872.54 233.489C872.41 232.995 872.183 232.531 871.873 232.124C871.563 231.717 871.176 231.375 870.733 231.118V231.118Z" fill="white"/>
337
+ <path opacity="0.3" d="M948.51 276.345C948.131 276.122 947.694 276.017 947.254 276.042C946.815 276.068 946.393 276.224 946.042 276.49C945.691 276.756 945.427 277.12 945.283 277.536C945.14 277.952 945.123 278.401 945.234 278.827C945.346 279.252 945.582 279.635 945.912 279.927C946.241 280.219 946.65 280.406 947.086 280.465C947.523 280.524 947.966 280.452 948.362 280.259C948.757 280.065 949.086 279.759 949.307 279.378C949.602 278.87 949.684 278.265 949.535 277.697C949.386 277.129 949.017 276.642 948.51 276.345V276.345Z" fill="white"/>
338
+ <path opacity="0.3" d="M1007.11 259.721C1006.92 259.609 1006.71 259.536 1006.5 259.506C1006.28 259.476 1006.06 259.489 1005.85 259.544C1005.64 259.6 1005.44 259.697 1005.27 259.829C1005.1 259.962 1004.95 260.128 1004.84 260.317C1004.68 260.6 1004.6 260.926 1004.62 261.253C1004.64 261.58 1004.76 261.894 1004.95 262.155C1005.15 262.416 1005.42 262.613 1005.73 262.719C1006.04 262.826 1006.38 262.839 1006.7 262.755C1007.01 262.672 1007.3 262.496 1007.51 262.251C1007.73 262.005 1007.87 261.701 1007.92 261.376C1007.96 261.051 1007.91 260.72 1007.76 260.426C1007.62 260.131 1007.39 259.886 1007.11 259.721Z" fill="white"/>
339
+ <path opacity="0.3" d="M820.749 125.092C820.194 124.769 819.555 124.618 818.914 124.658C818.273 124.698 817.658 124.927 817.147 125.317C816.637 125.706 816.253 126.239 816.045 126.846C815.836 127.454 815.813 128.11 815.978 128.731C816.142 129.352 816.487 129.91 816.969 130.335C817.451 130.76 818.048 131.032 818.684 131.117C819.321 131.203 819.969 131.098 820.545 130.815C821.122 130.533 821.602 130.085 821.925 129.53C822.141 129.161 822.281 128.754 822.339 128.331C822.397 127.908 822.37 127.478 822.261 127.066C822.152 126.653 821.962 126.267 821.702 125.928C821.443 125.589 821.119 125.305 820.749 125.092V125.092Z" fill="white"/>
340
+ <path opacity="0.3" d="M915.606 223.056C915.228 222.837 914.793 222.735 914.357 222.764C913.921 222.792 913.503 222.948 913.157 223.214C912.81 223.48 912.549 223.842 912.408 224.256C912.267 224.669 912.252 225.115 912.364 225.537C912.477 225.959 912.712 226.339 913.04 226.627C913.368 226.916 913.774 227.101 914.207 227.159C914.64 227.217 915.08 227.145 915.473 226.953C915.865 226.76 916.191 226.456 916.411 226.078C916.702 225.57 916.78 224.968 916.63 224.402C916.479 223.836 916.111 223.352 915.606 223.056V223.056Z" fill="white"/>
341
+ <path opacity="0.3" d="M564.229 106.519C563.849 106.296 563.412 106.191 562.973 106.216C562.533 106.242 562.111 106.398 561.761 106.664C561.41 106.929 561.146 107.294 561.002 107.71C560.858 108.126 560.841 108.575 560.953 109.001C561.065 109.426 561.3 109.809 561.63 110.101C561.96 110.393 562.369 110.58 562.805 110.639C563.241 110.698 563.685 110.626 564.081 110.433C564.476 110.239 564.805 109.933 565.026 109.552C565.321 109.044 565.403 108.439 565.254 107.871C565.104 107.302 564.736 106.816 564.229 106.519V106.519Z" fill="white"/>
342
+ <path opacity="0.3" d="M1342.17 -7.29439C1341.5 -7.68531 1340.73 -7.88195 1339.95 -7.86267C1339.17 -7.84339 1338.41 -7.60886 1337.76 -7.18509C1337.11 -6.76131 1336.58 -6.1648 1336.25 -5.46176C1335.91 -4.75872 1335.78 -3.97661 1335.86 -3.20207C1335.94 -2.54745 1336.17 -1.92099 1336.54 -1.37454C1336.91 -0.828085 1337.4 -0.377389 1337.98 -0.0597673C1338.65 0.331145 1339.42 0.527922 1340.2 0.50864C1340.98 0.489359 1341.74 0.254727 1342.39 -0.16905C1343.05 -0.592827 1343.57 -1.18922 1343.9 -1.89226C1344.24 -2.5953 1344.37 -3.37752 1344.29 -4.15207C1344.21 -4.80603 1343.98 -5.4316 1343.61 -5.97773C1343.24 -6.52386 1342.75 -6.97505 1342.17 -7.29439V-7.29439Z" fill="white"/>
343
+ <path opacity="0.3" d="M1366.53 49.4676C1366.13 49.2323 1365.66 49.1313 1365.19 49.1789C1364.9 49.2074 1364.62 49.2945 1364.36 49.4352C1364.11 49.5758 1363.88 49.767 1363.7 49.9969C1363.52 50.2215 1363.38 50.4804 1363.3 50.7588C1363.22 51.0372 1363.19 51.3294 1363.22 51.6181C1363.26 51.9652 1363.37 52.299 1363.56 52.5923C1363.75 52.8857 1364.01 53.1302 1364.31 53.3059C1364.71 53.5439 1365.19 53.6451 1365.65 53.5946C1366.12 53.543 1366.55 53.3465 1366.9 53.0331C1367.25 52.7197 1367.48 52.3053 1367.58 51.8485C1367.68 51.3918 1367.63 50.916 1367.44 50.4886C1367.25 50.0613 1366.94 49.7041 1366.53 49.4676V49.4676Z" fill="white"/>
344
+ <path opacity="0.3" d="M1304.26 144.854C1303.85 144.616 1303.37 144.519 1302.9 144.576C1302.39 144.637 1301.91 144.881 1301.55 145.264C1301.2 145.646 1300.99 146.143 1300.97 146.664C1300.95 147.186 1301.11 147.698 1301.43 148.109C1301.75 148.52 1302.21 148.804 1302.72 148.909C1303.23 149.014 1303.76 148.933 1304.22 148.682C1304.68 148.43 1305.03 148.024 1305.22 147.536C1305.4 147.048 1305.41 146.51 1305.23 146.019C1305.05 145.527 1304.71 145.114 1304.26 144.854V144.854Z" fill="white"/>
345
+ <path opacity="0.3" d="M1159 124.185C1158.49 123.935 1157.91 123.886 1157.37 124.049C1156.83 124.212 1156.37 124.574 1156.09 125.062C1155.8 125.55 1155.72 126.128 1155.84 126.678C1155.97 127.227 1156.3 127.708 1156.77 128.023C1157.18 128.258 1157.65 128.359 1158.12 128.312C1158.41 128.283 1158.69 128.196 1158.94 128.055C1159.2 127.915 1159.42 127.724 1159.6 127.494C1159.78 127.268 1159.92 127.007 1160.01 126.727C1160.09 126.447 1160.12 126.152 1160.09 125.861C1160.05 125.515 1159.94 125.181 1159.75 124.889C1159.56 124.598 1159.3 124.356 1159 124.185V124.185Z" fill="white"/>
346
+ <path opacity="0.3" d="M1031.58 210.143C1031.18 209.9 1030.7 209.798 1030.24 209.854C1029.95 209.885 1029.67 209.972 1029.41 210.111C1029.15 210.251 1028.93 210.439 1028.75 210.666C1028.56 210.892 1028.43 211.153 1028.35 211.432C1028.26 211.712 1028.24 212.004 1028.27 212.294C1028.3 212.641 1028.42 212.975 1028.61 213.267C1028.8 213.559 1029.06 213.8 1029.36 213.97C1029.77 214.206 1030.24 214.307 1030.71 214.259C1031 214.228 1031.28 214.139 1031.53 213.999C1031.79 213.858 1032.01 213.669 1032.19 213.441C1032.39 213.194 1032.54 212.906 1032.62 212.597C1032.7 212.287 1032.71 211.964 1032.65 211.65C1032.59 211.336 1032.47 211.039 1032.28 210.779C1032.1 210.518 1031.86 210.301 1031.58 210.143V210.143Z" fill="white"/>
347
+ <path opacity="0.3" d="M1060.68 280.087C1060.28 279.851 1059.81 279.75 1059.34 279.798C1059.05 279.828 1058.77 279.916 1058.51 280.056C1058.26 280.197 1058.04 280.387 1057.86 280.616C1057.67 280.842 1057.53 281.103 1057.45 281.383C1057.36 281.663 1057.33 281.957 1057.37 282.248C1057.4 282.595 1057.52 282.929 1057.71 283.22C1057.9 283.512 1058.16 283.754 1058.46 283.925C1058.86 284.163 1059.34 284.264 1059.8 284.214C1060.27 284.162 1060.7 283.966 1061.05 283.652C1061.4 283.339 1061.64 282.924 1061.73 282.468C1061.83 282.011 1061.78 281.535 1061.59 281.108C1061.41 280.68 1061.09 280.323 1060.68 280.087V280.087Z" fill="white"/>
348
+ <path opacity="0.3" d="M994.952 343.456C994.544 343.223 994.074 343.122 993.606 343.167C993.023 343.234 992.49 343.528 992.123 343.986C991.94 344.21 991.802 344.47 991.719 344.748C991.637 345.026 991.61 345.318 991.64 345.607C991.675 345.954 991.792 346.287 991.982 346.579C992.172 346.871 992.43 347.112 992.734 347.284C993.14 347.522 993.612 347.623 994.08 347.572C994.663 347.51 995.199 347.219 995.569 346.764C995.939 346.308 996.114 345.725 996.056 345.141C996.02 344.792 995.901 344.457 995.708 344.164C995.516 343.871 995.257 343.629 994.952 343.456Z" fill="white"/>
349
+ <path opacity="0.3" d="M878.022 295.669C877.616 295.431 877.144 295.33 876.676 295.38C876.212 295.432 875.776 295.628 875.43 295.942C875.083 296.255 874.845 296.67 874.747 297.126C874.65 297.583 874.699 298.059 874.887 298.486C875.075 298.914 875.393 299.271 875.796 299.507C876.204 299.741 876.674 299.842 877.142 299.796C877.432 299.767 877.713 299.68 877.968 299.54C878.223 299.399 878.446 299.208 878.625 298.978C878.809 298.753 878.947 298.494 879.03 298.216C879.113 297.937 879.139 297.645 879.108 297.357C879.073 297.01 878.956 296.676 878.767 296.382C878.579 296.089 878.323 295.845 878.022 295.669V295.669Z" fill="white"/>
350
+ <path opacity="0.3" d="M1325.47 40.0446C1325.29 39.9365 1325.08 39.866 1324.87 39.8372C1324.65 39.8084 1324.44 39.8219 1324.23 39.8768C1324.02 39.9317 1323.83 40.027 1323.66 40.1572C1323.49 40.2874 1323.34 40.4501 1323.23 40.6358C1323.13 40.8216 1323.06 41.0268 1323.03 41.2398C1323 41.4527 1323.01 41.6693 1323.07 41.877C1323.12 42.0848 1323.22 42.2798 1323.35 42.4508C1323.48 42.6217 1323.64 42.7653 1323.82 42.8734C1324.12 43.0491 1324.47 43.1213 1324.82 43.0784C1325.25 43.0327 1325.64 42.8182 1325.91 42.4821C1326.05 42.3156 1326.15 42.1234 1326.21 41.9169C1326.27 41.7104 1326.29 41.4937 1326.27 41.2799C1326.24 41.0259 1326.16 40.7816 1326.02 40.5668C1325.88 40.3521 1325.69 40.1731 1325.47 40.0446V40.0446Z" fill="white"/>
351
+ <path opacity="0.3" d="M1256.79 110.016C1256.28 109.766 1255.7 109.717 1255.16 109.88C1254.62 110.043 1254.16 110.405 1253.88 110.893C1253.6 111.381 1253.51 111.959 1253.64 112.509C1253.76 113.058 1254.09 113.539 1254.56 113.854C1254.97 114.092 1255.44 114.193 1255.91 114.143C1256.38 114.1 1256.82 113.907 1257.17 113.594C1257.53 113.281 1257.77 112.864 1257.87 112.403C1257.96 111.942 1257.91 111.462 1257.72 111.032C1257.53 110.603 1257.2 110.247 1256.79 110.016V110.016Z" fill="white"/>
352
+ <path opacity="0.3" d="M1202.88 166.306C1202.3 165.96 1201.62 165.784 1200.94 165.799C1200.26 165.814 1199.59 166.019 1199.02 166.39C1198.45 166.762 1197.99 167.285 1197.7 167.902C1197.4 168.519 1197.29 169.205 1197.36 169.884C1197.43 170.507 1197.66 171.102 1198.03 171.613C1198.39 172.124 1198.88 172.533 1199.45 172.801C1200.01 173.07 1200.64 173.189 1201.26 173.147C1201.89 173.106 1202.49 172.905 1203.02 172.564C1203.55 172.223 1203.98 171.752 1204.27 171.198C1204.56 170.644 1204.71 170.024 1204.7 169.397C1204.68 168.77 1204.51 168.156 1204.19 167.615C1203.88 167.074 1203.43 166.623 1202.88 166.306V166.306Z" fill="white"/>
353
+ <path opacity="0.3" d="M1068.39 144.782C1067.77 144.424 1067.05 144.271 1066.34 144.344C1065.9 144.39 1065.48 144.523 1065.09 144.734C1064.71 144.945 1064.36 145.232 1064.09 145.576C1063.81 145.917 1063.6 146.311 1063.47 146.735C1063.35 147.159 1063.31 147.604 1063.36 148.043C1063.41 148.568 1063.59 149.072 1063.88 149.515C1064.16 149.958 1064.55 150.326 1065.01 150.59C1065.63 150.947 1066.34 151.1 1067.06 151.028C1067.76 150.956 1068.43 150.662 1068.96 150.188C1069.49 149.714 1069.85 149.085 1070 148.391C1070.15 147.696 1070.07 146.973 1069.78 146.324C1069.49 145.676 1069.01 145.136 1068.39 144.782V144.782Z" fill="white"/>
354
+ </g>
355
+ <g opacity="0.5">
356
+ <path opacity="0.5" d="M693.412 484.12L693.318 483.856L683.174 389.36L743.239 402.595L743.329 403.005L743.381 402.58L790.158 364.016L853.448 371.15L853.536 371.212L853.59 371.135L893.183 306.48L940.953 303.194L964.685 262.67L1009.63 298.429L1009.55 298.191L1012.49 215.766L1090.68 192.737L1128.12 263.604L1224.2 252.702L1224.59 252.876L1224.27 252.651L1264.15 125.091L1403.61 343.078L1403.73 343.164L1347.92 151.562L1536.02 312.704L1536.04 312.847L1435.65 102.045L1377.27 20.752L1377.32 20.7908L1377.22 20.721L1442.17 -45.7508L1442.23 -45.828L1442.14 -45.89L1433.59 -72.7114L1470.2 -132.624L1470.28 -132.735L1403.6 -130.356L1356.08 -173.075L1342.12 -207.515L1372.87 -250.136L1325.47 -359.125L1325.32 -359.439L1321.41 -258.877L1265.08 -233.945L1236.38 -120.662L1195.02 -143.369L1194.86 -143.612L1201.23 -67.7247L1164.63 -36.8245L1177.02 82.4434L1037.19 105.797L1037.12 105.743L1037.05 105.842L1036.93 105.861L1037 105.908L966.098 171.468L984.048 223.832L934.736 238.361L934.682 238.438L893.221 306.144L857.138 308.632L809.933 347.57L753.338 317.43L753.261 317.375L728.305 260.966L728.352 260.9L728.274 260.846L705.678 245.473L705.39 210.083L803.69 130.99L824.204 66.0657L881.029 10.4994L881.199 10.2571L804.626 30.6846L804.029 88.3443L759.445 138.161L711.845 146.05L709.376 170.121L637.653 199.552L637.517 199.604L674.148 224.533L607.276 255.733L606.895 255.712L607.199 255.843L571.394 402.491L571.011 402.568L571.409 402.634L629.286 428.568L593.561 439.976L593.493 440.307L642.745 440.158L693.24 483.966L693.412 484.12ZM940.935 302.868L934.719 238.761L964.595 262.54L940.935 302.868ZM964.729 262.536L985.157 227.662L1009.28 297.986L964.729 262.536ZM1009.37 297.787L985.27 227.478L987.897 223L1012.29 215.809L1009.37 297.787ZM985.2 227.297L984.13 224.137L987.69 223.084L985.2 227.297ZM1265.16 -233.707L1321.23 -258.489L1299.38 -203.293L1265.16 -233.707ZM1321.24 -258.055L1312.57 -196.326L1299.55 -203.255L1321.24 -258.055ZM1085.75 150.415L1100.82 164.114L1090.65 192.452L1068.75 157.116L1085.75 150.415ZM1068.69 156.991L1037.39 106.479L1085.61 150.333L1068.69 156.991ZM1312.34 -78.4771L1324.19 -8.72227L1259.33 -41.9942L1312.34 -78.4771ZM1312.49 -78.5219L1372.72 -72.6548L1324.81 -8.53061L1324.45 -8.78666L1312.49 -78.5219ZM1331.7 28.2295L1324.97 -7.95832L1376.93 20.7135L1331.7 28.2295ZM1306.34 32.4536L1324.8 -8.04488L1331.55 28.2555L1306.34 32.4536ZM1331.58 28.4058L1344.57 98.2235L1281.47 87.023L1306.26 32.6123L1331.58 28.4058ZM1306.16 32.4861L1268.54 38.5939L1324.69 -8.12248L1306.16 32.4861ZM1306.06 32.6293L1281.27 86.9805L1266.08 84.2767L1268.39 38.8141L1306.06 32.6293ZM1281.22 87.1249L1264.11 124.634L1266.06 84.4256L1281.22 87.1249ZM1263.94 124.846L1218.22 75.9456L1266 84.3194L1263.94 124.846ZM1263.86 124.967L1207.94 130.77L1218.06 75.9937L1263.86 124.967ZM1281.37 87.1474L1344.35 98.3487L1264.2 124.928L1281.37 87.1474ZM1331.83 28.3038L1377.12 20.7671L1344.78 97.9636L1331.83 28.3038ZM1325.03 -8.22975L1324.97 -8.26856L1375.07 -24.0746L1377.13 20.5917L1325.03 -8.22975ZM1325.12 -8.52639L1372.88 -72.587L1375.11 -24.2754L1325.12 -8.52639ZM1373.03 -72.613L1410.72 -35.5186L1375.26 -24.339L1373.03 -72.613ZM1373.28 -72.6068L1421.92 -53.736L1410.82 -35.632L1373.28 -72.6068ZM1312.65 -78.7533L1344 -111.063L1372.78 -72.9075L1312.65 -78.7533ZM1312.75 -79.0798L1333.8 -124.592L1343.91 -111.192L1312.75 -79.0798ZM1312.55 -79.0064L1307.62 -159.302L1333.7 -124.729L1312.55 -79.0064ZM1324.36 -8.58709L1324.37 -8.44471L1324.63 -8.26624L1268.38 38.6231L1259.36 -41.8927L1324.36 -8.58709ZM1266.06 84.1938L1218.33 75.724L1268.21 38.9516L1266.06 84.1938ZM1207.9 130.728L1188.45 132.748L1179.58 106.726L1218.01 75.9439L1207.9 130.728ZM1207.87 130.888L1200.79 169.151L1188.5 132.903L1207.87 130.888ZM1188.28 132.766L1170.5 134.624L1179.54 106.908L1188.28 132.766ZM1188.34 132.921L1200.71 169.407L1164.18 194.242L1154.2 184.553L1170.43 134.779L1188.34 132.921ZM1101.02 164.206L1146.84 205.827L1090.87 192.569L1101.02 164.206ZM1101.11 164.073L1109.23 141.227L1146.77 205.578L1101.11 164.073ZM1164.1 194.382L1147.3 205.805L1154.1 184.686L1164.1 194.382ZM1154.1 184.454L1109.46 141.129L1170.25 134.763L1154.1 184.454ZM1154.01 184.586L1147.1 205.773L1109.61 141.461L1154.01 184.586ZM1100.98 163.943L1085.99 150.336L1109.11 141.142L1100.98 163.943ZM1090.61 192.507L1014.07 178.726L1068.65 157.143L1090.61 192.507ZM1147.1 206.054L1147.21 206.131L1147.29 206.01L1164.29 194.465L1224.01 252.405L1091.67 192.874L1147.1 206.054ZM1164.34 194.399L1200.79 169.596L1224.11 252.408L1164.34 194.399ZM1200.83 169.492L1207.97 130.909L1264.04 125.013L1224.25 252.325L1200.83 169.492ZM1344.62 98.3783L1347.74 151.371L1264.34 125.01L1344.62 98.3783ZM1377.12 21.0474L1382.09 99.6837L1344.81 98.1515L1377.12 21.0474ZM1375.19 -24.1349L1410.69 -35.3884L1377.31 20.357L1375.19 -24.1349ZM1422.01 -53.6253L1441.94 -45.8949L1410.98 -35.583L1422.01 -53.6253ZM1422.1 -53.7575L1426.81 -61.4795L1441.87 -46.0949L1422.1 -53.7575ZM1421.98 -53.8429L1373.06 -72.8216L1395.63 -93.3866L1426.72 -61.5979L1421.98 -53.8429ZM1372.93 -72.9147L1344.07 -111.173L1361.07 -128.685L1395.52 -93.494L1372.93 -72.9147ZM1361.31 -128.667L1419.82 -115.637L1395.64 -93.6107L1361.31 -128.667ZM1361.68 -128.751L1403.66 -130.25L1419.7 -115.819L1361.68 -128.751ZM1360.95 -128.789L1343.98 -111.292L1333.85 -124.737L1341.02 -140.224L1360.95 -128.789ZM1333.74 -124.882L1307.79 -159.274L1340.87 -140.295L1333.74 -124.882ZM1307.49 -160.015L1299.59 -203.097L1312.57 -196.191L1307.49 -160.015ZM1312.72 -196.102L1327.95 -187.999L1307.63 -159.836L1312.72 -196.102ZM1307.42 -159.568L1265.27 -122.811L1299.45 -202.977L1307.42 -159.568ZM1307.44 -159.377L1312.37 -78.8203L1259.03 -108.152L1265.15 -122.53L1307.44 -159.377ZM1312.04 -78.8212L1250.37 -87.8806L1258.93 -107.971L1312.04 -78.8212ZM1258.86 -108.19L1252.64 -111.598L1264.85 -122.294L1258.86 -108.19ZM1258.76 -108.058L1250.17 -87.9232L1228.99 -91.0386L1252.48 -111.513L1258.76 -108.058ZM1228.93 -91.1635L1236.3 -120.339L1252.37 -111.59L1228.93 -91.1635ZM1228.95 -90.8566L1250.09 -87.7457L1242.28 -69.4191L1228.95 -90.8566ZM1242.2 -69.2416L1208.04 10.8728L1228.83 -90.7399L1242.2 -69.2416ZM1250.26 -87.7077L1312.24 -78.6629L1259.3 -42.1523L1242.38 -69.3305L1250.26 -87.7077ZM1268.2 38.7794L1218.23 75.5868L1259.2 -41.7397L1268.2 38.7794ZM1179.53 106.523L1177.05 82.7096L1217.81 75.9013L1179.53 106.523ZM1170.27 134.614L1109.64 140.905L1179.33 106.761L1170.27 134.614ZM1109.01 141.072L1085.8 150.233L1037.5 106.325L1109.01 141.072ZM1068.53 157.058L1013.78 178.632L1037 106.218L1068.53 157.058ZM987.992 222.819L1013.6 179.087L1012.3 215.663L987.992 222.819ZM1013.76 178.886L1090.35 192.668L1012.45 215.608L1013.76 178.886ZM1090.86 192.812L1223.88 252.66L1128.3 263.437L1090.86 192.812ZM1403.62 342.873L1264.71 125.225L1347.78 151.48L1403.62 342.873ZM1347.97 151.399L1344.86 98.347L1382.15 99.8947L1536.05 312.525L1347.97 151.399ZM1382.32 99.8951L1435.54 102.095L1536.24 312.444L1382.32 99.8951ZM1435.53 101.941L1382.31 99.7417L1377.36 20.9489L1435.53 101.941ZM1410.93 -35.401L1441.97 -45.7448L1377.68 20.1573L1410.93 -35.401ZM1442.04 -46.27L1426.92 -61.7011L1433.63 -72.6694L1442.04 -46.27ZM1433.56 -72.8616L1426.82 -61.8196L1395.78 -93.5772L1419.97 -115.547L1433.56 -72.8616ZM1420.06 -115.679L1470.06 -132.609L1433.64 -73.0203L1420.06 -115.679ZM1469.71 -132.656L1419.96 -115.835L1403.81 -130.343L1469.71 -132.656ZM1403.48 -130.441L1361.11 -128.972L1341.1 -140.45L1356.17 -173.042L1403.48 -130.441ZM1356.04 -173.068L1340.96 -140.464L1307.63 -159.585L1328.13 -188.002L1356.04 -173.068ZM1355.99 -173.271L1328.18 -188.079L1342.15 -207.443L1355.99 -173.271ZM1342.09 -207.606L1328.05 -188.153L1312.76 -196.291L1321.49 -258.437L1342.09 -207.606ZM1372.83 -250.227L1342.22 -207.793L1321.61 -258.67L1372.83 -250.227ZM1372.84 -250.383L1321.48 -258.842L1321.56 -259.426L1321.45 -259.261L1325.29 -358.737L1372.84 -250.383ZM1265.14 -233.674L1299.43 -203.273L1265.05 -122.637L1252.51 -111.691L1236.44 -120.519L1265.14 -233.674ZM1236.29 -120.493L1228.86 -91.2289L1195.14 -143.081L1236.29 -120.493ZM1195.01 -142.98L1228.8 -91.0436L1201.32 -67.8083L1195.01 -142.98ZM1228.78 -90.8273L1207.94 10.9862L1201.26 -67.537L1228.78 -90.8273ZM1201.19 -67.5051L1207.83 11.5367L1207.86 11.8513L1242.41 -69.1614L1259.24 -42.0751L1218.15 75.5137L1164.76 -36.7016L1201.19 -67.5051ZM1164.7 -36.2658L1217.96 75.6622L1177.03 82.4998L1164.7 -36.2658ZM1179.43 106.617L1109.28 140.948L1109.21 140.902L1109.17 140.968L1037.3 106.088L1176.91 82.7621L1179.43 106.617ZM966.19 171.665L1036.95 106.303L1013.71 178.75L987.874 222.869L984.138 223.961L966.19 171.665ZM985.148 227.442L964.646 262.444L934.812 238.628L984.033 224.134L985.148 227.442ZM934.567 238.835L940.845 303.019L893.266 306.291L934.567 238.835ZM571.904 402.587L646.52 352.086L639.839 381.811L571.904 402.587ZM684.779 259.232L673.992 285.404L607.725 255.868L684.779 259.232ZM684.947 259.252L705.383 260.165L705.666 299.541L674.016 285.487L684.947 259.252ZM658.376 384.929L646.804 352.221L682.836 389.138L658.376 384.929ZM752.805 317.532L719.624 328.277L705.961 299.847L752.805 317.532ZM752.767 317.703L727.193 343.925L719.722 328.395L752.767 317.703ZM727.047 344.086L683.082 389.163L646.73 352.021L719.536 328.495L727.047 344.086ZM683.23 389.234L727.121 344.237L733.537 357.591L743.176 402.403L683.23 389.234ZM733.712 357.648L748.171 359.279L743.321 402.01L733.712 357.648ZM733.734 357.499L752.882 318.031L748.182 359.122L733.734 357.499ZM733.602 357.405L727.221 344.142L752.722 318.001L733.602 357.405ZM705.898 299.704L728.005 261.299L752.862 317.473L705.898 299.704ZM705.855 299.459L705.495 260.194L727.901 261.143L705.855 299.459ZM705.646 299.757L719.358 328.303L646.627 351.816L673.934 285.627L705.646 299.757ZM646.568 352.252L658.147 384.949L639.942 381.851L646.568 352.252ZM658.161 385.141L666.794 409.549L642.601 439.941L629.41 428.508L639.864 382.009L658.161 385.141ZM658.34 385.168L682.864 389.356L666.899 409.425L658.34 385.168ZM682.957 389.504L693.011 483.261L666.965 409.587L682.957 389.504ZM743.345 402.374L748.256 359.322L789.924 363.95L743.345 402.374ZM853.127 370.974L790.389 363.898L809.798 347.903L853.127 370.974ZM893.007 306.472L853.618 370.792L857.089 308.959L893.007 306.472ZM856.925 309.075L853.425 371.019L809.893 347.838L856.925 309.075ZM809.616 347.857L790.142 363.922L748.363 359.216L753.098 317.771L809.616 347.857ZM727.764 261.079L705.508 259.989L705.394 245.784L727.764 261.079ZM705.308 245.789L705.419 260.091L684.997 259.204L693.763 237.938L705.308 245.789ZM693.826 237.801L705.016 210.66L705.305 245.606L693.826 237.801ZM704.908 210.534L693.694 237.708L674.486 224.639L704.868 210.473L704.713 210.693L704.908 210.534ZM880.543 10.7673L824.035 65.9791L804.676 30.9177L880.543 10.7673ZM804.589 31.2518L823.899 66.1476L803.998 88.3884L804.589 31.2518ZM823.755 66.3756L803.504 130.481L803.942 88.514L823.755 66.3756ZM803.788 88.6858L803.351 130.933L759.447 138.229L803.788 88.6858ZM803.167 131.1L705.444 209.725L743.18 156.387L743.218 156.332L759.298 138.37L803.167 131.1ZM743.089 156.257L711.982 146.229L759.059 138.499L743.089 156.257ZM711.715 146.304L742.893 156.35L709.264 170.141L711.715 146.304ZM742.892 156.514L705.168 209.86L709.28 170.399L742.892 156.514ZM704.987 210.046L637.96 199.537L709.074 170.386L704.987 210.046ZM638.008 199.703L704.797 210.176L674.309 224.399L638.008 199.703ZM693.63 237.729L684.82 259.08L607.617 255.693L674.354 224.662L693.63 237.729ZM673.906 285.526L646.608 351.704L607.451 255.906L673.906 285.526ZM646.468 351.902L571.541 402.447L607.265 256.006L646.468 351.902ZM571.677 402.675L639.765 381.939L629.325 428.348L571.677 402.675ZM593.723 439.629L629.474 428.651L642.61 440.046L593.723 439.629ZM642.776 439.998L666.911 409.664L693.04 483.595L642.776 439.998Z" fill="white"/>
357
+ <path opacity="0.5" d="M1206.18 11.2916C1206.25 10.8429 1206.5 10.4418 1206.87 10.1764C1207.24 9.91107 1207.7 9.80329 1208.15 9.87676C1208.59 9.95023 1209 10.1989 1209.26 10.5682C1209.53 10.9374 1209.63 11.397 1209.56 11.8457C1209.52 12.0679 1209.44 12.2808 1209.33 12.4722C1209.21 12.6635 1209.05 12.8296 1208.87 12.9609C1208.69 13.0923 1208.48 13.1865 1208.26 13.238C1208.04 13.2894 1207.81 13.297 1207.59 13.2606C1207.37 13.2242 1207.16 13.1445 1206.96 13.0258C1206.77 12.9072 1206.61 12.752 1206.48 12.5692C1206.34 12.3864 1206.25 12.1795 1206.2 11.9603C1206.15 11.7411 1206.14 11.5138 1206.18 11.2916V11.2916Z" fill="white"/>
358
+ <path opacity="0.5" d="M1106.92 140.652C1106.99 140.195 1107.2 139.771 1107.52 139.433C1107.84 139.095 1108.25 138.859 1108.7 138.754C1109.15 138.649 1109.62 138.68 1110.05 138.843C1110.49 139.006 1110.86 139.294 1111.13 139.67C1111.4 140.046 1111.56 140.494 1111.57 140.957C1111.59 141.42 1111.47 141.877 1111.22 142.271C1110.98 142.665 1110.62 142.978 1110.2 143.17C1109.78 143.363 1109.31 143.426 1108.85 143.352C1108.55 143.302 1108.26 143.193 1107.99 143.031C1107.73 142.868 1107.5 142.655 1107.32 142.405C1107.14 142.154 1107.02 141.87 1106.95 141.569C1106.88 141.268 1106.87 140.956 1106.92 140.652V140.652Z" fill="white"/>
359
+ <path opacity="0.5" d="M1034.75 105.622C1034.82 105.165 1035.03 104.741 1035.35 104.404C1035.67 104.066 1036.08 103.83 1036.53 103.725C1036.98 103.62 1037.45 103.651 1037.88 103.814C1038.32 103.977 1038.69 104.265 1038.96 104.641C1039.23 105.017 1039.39 105.465 1039.4 105.928C1039.42 106.391 1039.3 106.848 1039.05 107.242C1038.81 107.636 1038.45 107.949 1038.03 108.141C1037.61 108.333 1037.14 108.397 1036.68 108.323C1036.07 108.22 1035.52 107.878 1035.16 107.372C1034.79 106.866 1034.65 106.237 1034.75 105.622V105.622Z" fill="white"/>
360
+ <path opacity="0.5" d="M963.776 171.234C963.852 170.776 964.061 170.351 964.378 170.012C964.695 169.673 965.105 169.436 965.557 169.33C966.009 169.225 966.482 169.256 966.916 169.419C967.351 169.583 967.726 169.872 967.997 170.249C968.267 170.626 968.419 171.075 968.433 171.539C968.448 172.003 968.325 172.46 968.079 172.854C967.834 173.248 967.477 173.56 967.054 173.751C966.631 173.941 966.161 174.003 965.704 173.926C965.4 173.877 965.108 173.768 964.847 173.606C964.585 173.444 964.358 173.232 964.179 172.981C964 172.731 963.872 172.448 963.803 172.148C963.734 171.848 963.725 171.537 963.776 171.234V171.234Z" fill="white"/>
361
+ <path opacity="0.5" d="M1007.16 297.763C1007.24 297.306 1007.45 296.882 1007.76 296.544C1008.08 296.206 1008.49 295.97 1008.94 295.865C1009.39 295.76 1009.86 295.791 1010.3 295.954C1010.73 296.117 1011.11 296.405 1011.38 296.781C1011.65 297.158 1011.8 297.606 1011.82 298.069C1011.83 298.532 1011.71 298.989 1011.47 299.383C1011.22 299.777 1010.87 300.089 1010.45 300.282C1010.02 300.474 1009.56 300.537 1009.1 300.463C1008.79 300.414 1008.5 300.305 1008.24 300.142C1007.98 299.979 1007.75 299.767 1007.57 299.516C1007.39 299.265 1007.26 298.981 1007.19 298.68C1007.12 298.379 1007.11 298.067 1007.16 297.763V297.763Z" fill="white"/>
362
+ <path opacity="0.5" d="M1342.43 97.8195C1342.51 97.3626 1342.72 96.9385 1343.03 96.6008C1343.35 96.263 1343.76 96.0267 1344.21 95.9217C1344.66 95.8167 1345.13 95.8478 1345.57 96.0109C1346 96.174 1346.38 96.4618 1346.65 96.8381C1346.92 97.2144 1347.07 97.6624 1347.09 98.1253C1347.1 98.5883 1346.98 99.0454 1346.74 99.4393C1346.49 99.8331 1346.14 100.146 1345.72 100.338C1345.29 100.53 1344.83 100.594 1344.37 100.52C1343.76 100.414 1343.21 100.071 1342.85 99.5659C1342.48 99.0609 1342.33 98.4338 1342.43 97.8195V97.8195Z" fill="white"/>
363
+ <path opacity="0.5" d="M1266.01 38.3742C1266.09 37.9173 1266.3 37.4932 1266.62 37.1555C1266.93 36.8177 1267.34 36.5815 1267.79 36.4765C1268.25 36.3715 1268.72 36.4025 1269.15 36.5655C1269.58 36.7286 1269.96 37.0166 1270.23 37.3929C1270.5 37.7692 1270.65 38.217 1270.67 38.68C1270.68 39.1429 1270.56 39.6002 1270.32 39.9941C1270.08 40.3879 1269.72 40.7007 1269.3 40.893C1268.88 41.0853 1268.41 41.1484 1267.95 41.0745C1267.65 41.0252 1267.35 40.916 1267.09 40.7535C1266.83 40.5909 1266.6 40.3781 1266.42 40.1272C1266.24 39.8763 1266.11 39.5922 1266.04 39.2914C1265.97 38.9905 1265.96 38.6788 1266.01 38.3742V38.3742Z" fill="white"/>
364
+ <path opacity="0.5" d="M1214.05 75.0834C1214.19 74.2795 1214.55 73.5335 1215.11 72.9397C1215.67 72.3459 1216.39 71.931 1217.19 71.7472C1217.98 71.5634 1218.81 71.619 1219.57 71.9071C1220.34 72.1952 1221 72.7027 1221.47 73.3657C1221.95 74.0287 1222.21 74.8173 1222.24 75.6319C1222.26 76.4465 1222.05 77.2507 1221.62 77.9427C1221.19 78.6347 1220.56 79.1835 1219.82 79.5198C1219.08 79.8561 1218.25 79.9648 1217.45 79.8323C1216.91 79.7441 1216.4 79.5512 1215.94 79.2646C1215.48 78.9781 1215.08 78.6035 1214.76 78.1624C1214.45 77.7213 1214.22 77.2222 1214.1 76.6938C1213.98 76.1655 1213.96 75.6182 1214.05 75.0834V75.0834Z" fill="white"/>
365
+ <path opacity="0.5" d="M1198.49 169.057C1198.56 168.6 1198.77 168.176 1199.09 167.839C1199.41 167.502 1199.82 167.267 1200.27 167.164C1200.73 167.061 1201.2 167.094 1201.63 167.259C1202.07 167.424 1202.44 167.714 1202.71 168.092C1202.98 168.47 1203.13 168.919 1203.14 169.383C1203.15 169.847 1203.03 170.304 1202.78 170.696C1202.54 171.089 1202.18 171.4 1201.76 171.589C1201.33 171.779 1200.86 171.839 1200.4 171.761C1200.1 171.711 1199.81 171.601 1199.55 171.438C1199.29 171.275 1199.06 171.061 1198.88 170.81C1198.7 170.558 1198.58 170.274 1198.51 169.973C1198.44 169.672 1198.43 169.361 1198.49 169.057V169.057Z" fill="white"/>
366
+ <path opacity="0.5" d="M1145.37 205.676C1145.42 205.33 1145.58 205.008 1145.81 204.75C1146.05 204.493 1146.36 204.312 1146.7 204.23C1147.04 204.148 1147.4 204.169 1147.73 204.291C1148.05 204.413 1148.34 204.629 1148.54 204.913C1148.75 205.197 1148.86 205.536 1148.88 205.885C1148.89 206.235 1148.8 206.581 1148.61 206.878C1148.43 207.176 1148.16 207.411 1147.84 207.555C1147.52 207.699 1147.16 207.745 1146.82 207.687C1146.59 207.65 1146.37 207.569 1146.18 207.448C1145.98 207.327 1145.81 207.169 1145.68 206.982C1145.54 206.795 1145.44 206.584 1145.39 206.36C1145.34 206.135 1145.33 205.903 1145.37 205.676V205.676Z" fill="white"/>
367
+ <path opacity="0.5" d="M1177.19 106.259C1177.26 105.801 1177.47 105.376 1177.79 105.037C1178.11 104.698 1178.52 104.461 1178.97 104.356C1179.42 104.25 1179.89 104.281 1180.33 104.445C1180.76 104.608 1181.14 104.897 1181.41 105.274C1181.68 105.652 1181.83 106.101 1181.85 106.564C1181.86 107.028 1181.74 107.486 1181.49 107.88C1181.25 108.273 1180.89 108.585 1180.47 108.776C1180.04 108.967 1179.57 109.028 1179.12 108.951C1178.81 108.902 1178.52 108.794 1178.26 108.632C1178 108.469 1177.77 108.257 1177.59 108.007C1177.41 107.757 1177.28 107.473 1177.21 107.173C1177.15 106.873 1177.14 106.562 1177.19 106.259V106.259Z" fill="white"/>
368
+ <path opacity="0.5" d="M644.293 351.573C644.39 351.023 644.677 350.524 645.105 350.165C645.532 349.806 646.073 349.609 646.632 349.61C647.256 349.622 647.851 349.876 648.292 350.318C648.551 350.59 648.742 350.92 648.846 351.28C648.951 351.641 648.967 352.022 648.893 352.39C648.81 352.88 648.578 353.332 648.228 353.685C647.785 354.109 647.195 354.345 646.581 354.343C645.968 354.341 645.379 354.102 644.938 353.675C644.666 353.405 644.465 353.071 644.352 352.705C644.24 352.338 644.219 351.949 644.293 351.573V351.573Z" fill="white"/>
369
+ <path opacity="0.5" d="M725.707 260.701C725.788 260.211 726.025 259.759 726.383 259.414C726.736 259.067 727.19 258.841 727.68 258.768C728.169 258.695 728.67 258.779 729.109 259.008C729.548 259.237 729.903 259.598 730.124 260.041C730.344 260.484 730.419 260.986 730.338 261.474C730.241 262.024 729.954 262.523 729.526 262.882C729.098 263.241 728.558 263.437 727.999 263.437C727.375 263.424 726.78 263.171 726.339 262.729C726.081 262.465 725.889 262.144 725.779 261.791C725.669 261.439 725.644 261.065 725.707 260.701V260.701Z" fill="white"/>
370
+ <path opacity="0.5" d="M635.375 199.25C635.445 198.821 635.632 198.42 635.917 198.091C636.202 197.763 636.572 197.52 636.987 197.39C637.402 197.26 637.845 197.247 638.266 197.354C638.688 197.462 639.071 197.684 639.373 197.996C639.633 198.267 639.823 198.597 639.928 198.958C640.033 199.319 640.048 199.699 639.974 200.068C639.892 200.558 639.66 201.01 639.309 201.363C638.857 201.79 638.259 202.029 637.636 202.03C637.298 202.023 636.966 201.943 636.661 201.797C636.356 201.651 636.086 201.441 635.869 201.182C635.652 200.923 635.493 200.621 635.402 200.295C635.312 199.97 635.292 199.629 635.344 199.295L635.375 199.25Z" fill="white"/>
371
+ <path opacity="0.5" d="M605.497 255.5C605.565 255.121 605.747 254.772 606.019 254.5C606.187 254.329 606.388 254.193 606.611 254.103C606.833 254.013 607.072 253.97 607.312 253.976C607.548 253.976 607.783 254.023 608.002 254.115C608.22 254.206 608.418 254.341 608.584 254.51C608.794 254.715 608.951 254.968 609.042 255.247C609.132 255.526 609.154 255.823 609.103 256.112C609.035 256.491 608.853 256.84 608.581 257.112C608.409 257.28 608.205 257.413 607.981 257.501C607.758 257.59 607.518 257.633 607.278 257.628C607.041 257.628 606.806 257.581 606.588 257.489C606.369 257.398 606.171 257.264 606.005 257.094C605.799 256.889 605.645 256.637 605.557 256.359C605.468 256.082 605.448 255.787 605.497 255.5V255.5Z" fill="white"/>
372
+ <path opacity="0.5" d="M569.111 402.153C569.192 401.662 569.429 401.211 569.787 400.866C570.231 400.432 570.828 400.189 571.449 400.191C571.758 400.195 572.064 400.262 572.347 400.385C572.631 400.508 572.887 400.687 573.102 400.91C573.316 401.126 573.486 401.383 573.601 401.665C573.716 401.948 573.774 402.25 573.772 402.555C573.77 402.86 573.708 403.161 573.59 403.442C573.471 403.723 573.298 403.977 573.081 404.191C572.865 404.408 572.608 404.579 572.326 404.696C572.043 404.813 571.74 404.872 571.434 404.871C571.129 404.87 570.826 404.809 570.544 404.691C570.262 404.572 570.006 404.399 569.792 404.182C569.522 403.924 569.32 403.604 569.201 403.251C569.083 402.898 569.052 402.521 569.111 402.153V402.153Z" fill="white"/>
373
+ <path opacity="0.5" d="M690.925 483.487C690.995 483.058 691.182 482.657 691.467 482.329C691.752 482 692.122 481.757 692.537 481.627C692.952 481.497 693.395 481.484 693.816 481.592C694.238 481.699 694.621 481.921 694.923 482.233C695.184 482.504 695.375 482.834 695.48 483.195C695.584 483.555 695.6 483.936 695.524 484.304C695.438 484.861 695.153 485.368 694.721 485.731C694.29 486.094 693.742 486.288 693.179 486.278C692.841 486.27 692.508 486.191 692.204 486.045C691.899 485.899 691.629 485.689 691.412 485.43C691.195 485.171 691.036 484.869 690.945 484.543C690.854 484.217 690.834 483.876 690.886 483.542L690.925 483.487Z" fill="white"/>
374
+ <path opacity="0.5" d="M740.835 156.019C740.928 155.466 741.217 154.965 741.648 154.606C742.079 154.247 742.624 154.055 743.185 154.064C743.523 154.066 743.857 154.142 744.163 154.287C744.469 154.431 744.74 154.64 744.957 154.899C745.174 155.159 745.332 155.463 745.42 155.79C745.508 156.116 745.524 156.458 745.466 156.792C745.38 157.285 745.145 157.741 744.793 158.098C744.351 158.521 743.761 158.756 743.148 158.752C742.536 158.748 741.949 158.506 741.511 158.077C741.241 157.814 741.038 157.49 740.92 157.131C740.802 156.773 740.773 156.391 740.835 156.019V156.019Z" fill="white"/>
375
+ <path opacity="0.5" d="M802.697 30.5943C802.754 30.207 802.941 29.8506 803.228 29.5837C803.398 29.4151 803.599 29.282 803.821 29.1921C804.043 29.1021 804.281 29.0572 804.52 29.0599C804.786 29.0598 805.048 29.1178 805.289 29.2301C805.53 29.3424 805.743 29.506 805.914 29.7096C806.085 29.9132 806.209 30.1518 806.278 30.4085C806.346 30.6652 806.358 30.9338 806.312 31.1955C806.249 31.628 806.03 32.0225 805.695 32.3035C805.36 32.5845 804.934 32.7325 804.497 32.7191C804.26 32.7193 804.025 32.6723 803.807 32.5807C803.589 32.4891 803.391 32.3546 803.225 32.1854C803.015 31.9826 802.857 31.7319 802.765 31.4548C802.673 31.1776 802.65 30.8824 802.697 30.5943V30.5943Z" fill="white"/>
376
+ <path opacity="0.5" d="M801.147 130.649C801.231 130.154 801.471 129.699 801.831 129.35C802.05 129.129 802.311 128.953 802.599 128.833C802.887 128.714 803.195 128.653 803.507 128.654C803.819 128.655 804.127 128.718 804.414 128.84C804.701 128.962 804.96 129.139 805.178 129.363C805.395 129.586 805.566 129.85 805.68 130.14C805.794 130.43 805.849 130.74 805.842 131.052C805.835 131.363 805.766 131.67 805.639 131.955C805.512 132.239 805.329 132.496 805.102 132.709C804.748 133.056 804.294 133.282 803.805 133.355C803.315 133.428 802.815 133.344 802.376 133.115C801.937 132.886 801.582 132.524 801.361 132.081C801.14 131.638 801.065 131.137 801.147 130.649V130.649Z" fill="white"/>
377
+ <path opacity="0.5" d="M707.818 145.636C707.958 144.817 708.346 144.061 708.931 143.471C709.673 142.747 710.671 142.348 711.707 142.361C712.743 142.373 713.731 142.797 714.455 143.538C714.857 143.891 715.182 144.323 715.411 144.806C715.639 145.29 715.766 145.816 715.783 146.351C715.799 146.886 715.706 147.419 715.509 147.916C715.311 148.413 715.014 148.865 714.635 149.242C714.255 149.62 713.803 149.916 713.305 150.111C712.807 150.307 712.274 150.398 711.739 150.379C711.204 150.36 710.679 150.232 710.196 150.001C709.713 149.771 709.282 149.444 708.93 149.041C708.482 148.606 708.147 148.069 707.953 147.476C707.759 146.883 707.713 146.252 707.818 145.636V145.636Z" fill="white"/>
378
+ <path opacity="0.5" d="M702.761 209.814C702.857 209.264 703.144 208.765 703.572 208.406C704 208.047 704.541 207.851 705.099 207.851C705.723 207.864 706.318 208.117 706.759 208.559C707.183 209.003 707.419 209.593 707.418 210.206C707.416 210.819 707.176 211.408 706.75 211.849C706.308 212.276 705.717 212.514 705.103 212.512C704.489 212.511 703.899 212.269 703.46 211.839C703.189 211.583 702.984 211.265 702.862 210.912C702.741 210.56 702.706 210.183 702.761 209.814V209.814Z" fill="white"/>
379
+ <path opacity="0.5" d="M701.411 298.963C701.563 298.046 702.002 297.201 702.665 296.55C703.084 296.139 703.58 295.815 704.125 295.596C704.669 295.377 705.251 295.268 705.838 295.274C706.425 295.279 707.004 295.401 707.543 295.633C708.081 295.865 708.568 296.203 708.974 296.626C709.506 297.172 709.889 297.845 710.086 298.581C710.284 299.317 710.29 300.091 710.104 300.83C709.917 301.569 709.544 302.248 709.021 302.802C708.498 303.356 707.841 303.766 707.114 303.994C706.386 304.222 705.613 304.26 704.867 304.104C704.121 303.948 703.427 303.604 702.852 303.104C702.277 302.604 701.84 301.964 701.582 301.247C701.324 300.53 701.255 299.759 701.38 299.007L701.411 298.963Z" fill="white"/>
380
+ <path opacity="0.5" d="M731.3 357.165C731.37 356.736 731.557 356.335 731.842 356.006C732.127 355.678 732.497 355.435 732.912 355.305C733.327 355.174 733.77 355.162 734.191 355.269C734.613 355.376 734.996 355.599 735.298 355.911C735.725 356.352 735.962 356.942 735.958 357.556C735.954 358.169 735.71 358.757 735.278 359.193C734.924 359.539 734.47 359.765 733.981 359.838C733.491 359.911 732.991 359.827 732.552 359.599C732.113 359.37 731.758 359.008 731.537 358.565C731.316 358.122 731.241 357.62 731.323 357.132L731.3 357.165Z" fill="white"/>
381
+ <path opacity="0.5" d="M851.173 370.684C851.245 370.19 851.479 369.734 851.839 369.389C852.194 369.045 852.649 368.823 853.139 368.752C853.628 368.681 854.127 368.766 854.566 368.995C855.004 369.224 855.36 369.584 855.582 370.026C855.804 370.468 855.882 370.968 855.804 371.457C855.723 371.947 855.486 372.399 855.128 372.744C854.687 373.171 854.096 373.41 853.481 373.408C852.867 373.406 852.278 373.164 851.839 372.734C851.571 372.471 851.371 372.148 851.255 371.791C851.139 371.434 851.111 371.054 851.173 370.684V370.684Z" fill="white"/>
382
+ <path opacity="0.5" d="M932.289 238.186C932.37 237.695 932.607 237.244 932.965 236.898C933.183 236.679 933.444 236.506 933.732 236.391C934.02 236.276 934.328 236.222 934.638 236.231C935.259 236.238 935.851 236.49 936.287 236.931C936.712 237.375 936.947 237.965 936.946 238.578C936.944 239.191 936.704 239.78 936.278 240.221C935.836 240.648 935.245 240.886 934.631 240.884C934.017 240.883 933.427 240.641 932.988 240.211C932.717 239.955 932.512 239.637 932.39 239.284C932.269 238.932 932.234 238.555 932.289 238.186V238.186Z" fill="white"/>
383
+ <path opacity="0.5" d="M1088.42 192.199C1088.49 191.705 1088.73 191.249 1089.09 190.904C1089.53 190.477 1090.12 190.24 1090.73 190.244C1091.35 190.248 1091.93 190.492 1092.37 190.924C1092.63 191.193 1092.83 191.523 1092.93 191.884C1093.04 192.246 1093.05 192.628 1092.97 192.996C1092.9 193.49 1092.67 193.946 1092.31 194.291C1091.86 194.718 1091.27 194.956 1090.66 194.955C1090.04 194.953 1089.45 194.711 1089.02 194.281C1088.75 194.011 1088.56 193.679 1088.46 193.315C1088.35 192.952 1088.34 192.568 1088.42 192.199V192.199Z" fill="white"/>
384
+ <path opacity="0.5" d="M1125.86 263.154C1125.94 262.656 1126.17 262.196 1126.53 261.848C1126.76 261.632 1127.02 261.462 1127.3 261.347C1127.59 261.232 1127.9 261.176 1128.21 261.181C1128.55 261.187 1128.88 261.266 1129.18 261.412C1129.48 261.558 1129.75 261.767 1129.97 262.025C1130.19 262.284 1130.34 262.586 1130.43 262.91C1130.52 263.235 1130.54 263.575 1130.49 263.908C1130.41 264.398 1130.17 264.85 1129.82 265.203C1129.38 265.634 1128.79 265.874 1128.18 265.872C1127.56 265.87 1126.97 265.627 1126.54 265.194C1126.27 264.933 1126.07 264.612 1125.95 264.256C1125.83 263.901 1125.8 263.523 1125.86 263.154V263.154Z" fill="white"/>
385
+ <path opacity="0.5" d="M1221.89 252.242C1221.98 251.749 1222.21 251.293 1222.56 250.936C1222.78 250.722 1223.04 250.554 1223.33 250.441C1223.61 250.328 1223.92 250.274 1224.23 250.28C1224.54 250.279 1224.84 250.341 1225.13 250.462C1225.42 250.584 1225.67 250.763 1225.89 250.988C1226.15 251.259 1226.34 251.589 1226.44 251.95C1226.55 252.311 1226.56 252.691 1226.49 253.06C1226.41 253.55 1226.17 254.002 1225.81 254.347C1225.46 254.694 1225.01 254.92 1224.52 254.993C1224.03 255.065 1223.53 254.982 1223.09 254.753C1222.65 254.524 1222.29 254.162 1222.07 253.719C1221.85 253.276 1221.78 252.775 1221.86 252.286L1221.89 252.242Z" fill="white"/>
386
+ <path opacity="0.5" d="M1261.81 124.577C1261.89 124.087 1262.12 123.635 1262.47 123.282C1262.91 122.851 1263.5 122.611 1264.12 122.613C1264.74 122.615 1265.33 122.858 1265.76 123.291C1266.04 123.577 1266.25 123.931 1266.35 124.317C1266.46 124.704 1266.46 125.111 1266.36 125.5C1266.27 125.889 1266.07 126.246 1265.8 126.538C1265.52 126.83 1265.18 127.047 1264.8 127.168C1264.41 127.289 1264.01 127.31 1263.62 127.229C1263.22 127.148 1262.86 126.968 1262.55 126.706C1262.25 126.443 1262.02 126.108 1261.88 125.731C1261.75 125.354 1261.71 124.949 1261.78 124.553L1261.81 124.577Z" fill="white"/>
387
+ <path opacity="0.5" d="M878.472 10.1491C878.569 9.59904 878.856 9.10069 879.284 8.7417C879.711 8.38271 880.252 8.18619 880.81 8.18673C881.435 8.19895 882.03 8.45273 882.471 8.89475C882.898 9.33568 883.134 9.92636 883.13 10.5399C883.127 11.1535 882.882 11.741 882.45 12.1765C882.011 12.6064 881.42 12.8454 880.805 12.8415C880.191 12.8376 879.602 12.5912 879.168 12.1558C878.898 11.9031 878.693 11.5883 878.572 11.2386C878.451 10.889 878.417 10.515 878.472 10.1491V10.1491Z" fill="white"/>
388
+ <path opacity="0.5" d="M820.678 65.5269C820.796 64.8262 821.13 64.1799 821.634 63.6785C822.273 63.0559 823.132 62.7121 824.024 62.7224C824.916 62.7327 825.767 63.0961 826.391 63.7332C826.76 64.1108 827.035 64.57 827.192 65.0736C827.35 65.5771 827.387 66.1108 827.3 66.6313C827.18 67.3363 826.843 67.9863 826.336 68.4907C826.021 68.8006 825.647 69.0452 825.237 69.2102C824.827 69.3753 824.388 69.4576 823.946 69.4525C823.504 69.4474 823.067 69.355 822.661 69.1806C822.255 69.0061 821.887 68.7531 821.579 68.436C821.205 68.0597 820.928 67.5987 820.771 67.0921C820.614 66.5856 820.582 66.0485 820.678 65.5269V65.5269Z" fill="white"/>
389
+ <path opacity="0.5" d="M751.312 317.288C751.369 316.925 751.541 316.59 751.804 316.333C752.135 316.021 752.576 315.852 753.031 315.864C753.485 315.875 753.917 316.066 754.232 316.395C754.422 316.588 754.564 316.823 754.646 317.081C754.728 317.339 754.747 317.613 754.702 317.88C754.639 318.291 754.429 318.664 754.11 318.931C753.792 319.198 753.387 319.34 752.972 319.331C752.735 319.333 752.5 319.286 752.282 319.192C752.064 319.098 751.868 318.96 751.707 318.786C751.531 318.583 751.403 318.343 751.335 318.083C751.266 317.823 751.258 317.551 751.312 317.288V317.288Z" fill="white"/>
390
+ <path opacity="0.5" d="M592.104 439.709C592.157 439.351 592.339 439.024 592.616 438.791C592.892 438.558 593.245 438.434 593.606 438.443C593.805 438.444 594.001 438.485 594.184 438.563C594.367 438.641 594.532 438.754 594.671 438.896C594.837 439.066 594.961 439.272 595.03 439.499C595.1 439.726 595.114 439.966 595.072 440.2C595.025 440.518 594.876 440.812 594.646 441.038C594.358 441.316 593.972 441.468 593.572 441.461C593.172 441.454 592.791 441.289 592.513 441.001C592.346 440.834 592.222 440.63 592.151 440.405C592.08 440.18 592.064 439.941 592.104 439.709Z" fill="white"/>
391
+ <path opacity="0.5" d="M739.501 401.888C739.658 400.974 740.139 400.148 740.856 399.56C741.572 398.972 742.477 398.662 743.404 398.687C743.91 398.688 744.412 398.791 744.878 398.989C745.344 399.187 745.766 399.477 746.118 399.841C746.837 400.576 747.235 401.566 747.225 402.594C747.215 403.622 746.797 404.604 746.063 405.324C745.328 406.038 744.339 406.432 743.314 406.417C742.289 406.403 741.311 405.982 740.596 405.247C740.154 404.819 739.824 404.288 739.633 403.703C739.442 403.118 739.397 402.495 739.501 401.888V401.888Z" fill="white"/>
392
+ <path opacity="0.5" d="M854.679 308.447C854.781 307.932 855.054 307.466 855.452 307.123C855.851 306.781 856.353 306.583 856.877 306.56C857.402 306.538 857.919 306.692 858.346 306.998C858.773 307.304 859.084 307.745 859.231 308.249C859.377 308.754 859.35 309.293 859.153 309.78C858.957 310.267 858.602 310.674 858.147 310.936C857.692 311.197 857.161 311.298 856.642 311.223C856.122 311.147 855.642 310.899 855.28 310.518C855.023 310.246 854.834 309.916 854.729 309.555C854.625 309.195 854.608 308.815 854.679 308.447V308.447Z" fill="white"/>
393
+ <path opacity="0.5" d="M937.066 302.419C937.224 301.499 937.707 300.666 938.428 300.073C939.148 299.479 940.058 299.164 940.992 299.185C941.554 299.192 942.109 299.321 942.617 299.562C943.125 299.804 943.575 300.152 943.937 300.583C944.298 301.015 944.562 301.519 944.71 302.062C944.859 302.604 944.888 303.173 944.797 303.728C944.639 304.648 944.155 305.481 943.435 306.074C942.714 306.668 941.804 306.983 940.871 306.962C940.359 306.962 939.853 306.859 939.382 306.658C938.912 306.457 938.487 306.162 938.134 305.792C937.702 305.354 937.38 304.82 937.195 304.234C937.009 303.648 936.965 303.026 937.066 302.419V302.419Z" fill="white"/>
394
+ <path opacity="0.5" d="M1010.23 178.146C1010.39 177.215 1010.9 176.384 1011.67 175.835C1012.44 175.287 1013.39 175.066 1014.33 175.221C1015.26 175.376 1016.09 175.895 1016.64 176.663C1017.18 177.431 1017.41 178.386 1017.25 179.317C1017.13 180.06 1016.77 180.744 1016.22 181.264C1015.69 181.804 1015 182.159 1014.25 182.277C1013.49 182.394 1012.73 182.268 1012.05 181.916C1011.38 181.565 1010.83 181.007 1010.5 180.325C1010.17 179.642 1010.06 178.87 1010.2 178.122L1010.23 178.146Z" fill="white"/>
395
+ <path opacity="0.5" d="M680.778 388.878C680.86 388.388 681.092 387.935 681.443 387.583C681.884 387.156 682.474 386.919 683.088 386.923C683.701 386.927 684.289 387.171 684.725 387.603C685.155 388.043 685.395 388.635 685.393 389.25C685.392 389.866 685.148 390.456 684.715 390.893C684.271 391.327 683.674 391.57 683.053 391.568C682.743 391.563 682.438 391.497 682.155 391.374C681.871 391.25 681.615 391.072 681.4 390.849C681.15 390.592 680.964 390.279 680.856 389.937C680.747 389.595 680.721 389.232 680.778 388.878V388.878Z" fill="white"/>
396
+ </g>
397
+ <path d="M942.697 357.296L942.584 357.035L927.946 263.164L988.579 273.486L988.688 273.893L988.718 273.452L1033.6 232.693L1097.15 236.766L1097.24 236.828L1097.28 236.762L1133.72 170.265L1181.28 164.685L1203.04 123.071L1249.65 156.627L1249.55 156.392L1248.52 73.9206L1325.53 47.1526L1366.31 116.162L1461.76 100.66L1462.16 100.805L1461.84 100.58L1495.51 -28.7172L1603.51 170.967L1603.63 171.053L1580.46 -6.45474L1722.34 160.694L1722.36 160.836L1665.78 -60.0785L1603.58 -138.505L1603.69 -138.525L1603.59 -138.595L1961.85 -55.8187L1961.9 -55.8849L1961.82 -55.9392L1655.32 -234.617L1688.99 -296.194L1689.07 -296.316L1622.59 -290.721L1573.06 -331.11L1557.47 -364.833L1586.15 -408.912L1533.37 -515.314L1533.22 -515.617L1534.14 -414.976L1479.08 -387.372L1455.85 -272.884L1413.44 -293.561L1413.27 -293.801L1423.29 -218.306L1388.26 -185.665L1406.37 -67.1284L1267.84 -37.0758L1267.74 -37.1457L1267.67 -37.0576L1267.55 -37.027L1267.61 -36.9882L1199.93 31.9107L1220.39 83.3556L1171.82 100.24L1133.66 169.878L1097.74 174.078L1052.42 215.233L994.459 187.853L994.392 187.807L966.746 132.667L966.8 132.59L966.723 132.536L943.407 118.255L941.417 82.9179L1035.84 -0.849887L1053.04 -66.4573L1107.1 -124.648L1107.27 -124.89L1031.77 -100.809L1034.03 -43.1807L991.886 8.71744L944.731 18.898L943.408 43.0512L873.451 75.7532L873.315 75.8057L911.106 98.9476L845.798 133.309L845.413 133.318L845.723 133.438L803.829 247.878L803.457 247.961L803.863 248.017L876.132 304.855L869.216 344.483L869.155 344.803L890.065 315.773L942.605 357.099L942.697 357.296ZM1181.2 164.35L1171.86 100.66L1202.84 122.962L1181.2 164.35ZM1203.03 122.918L1221.82 87.0335L1249.29 156.109L1203.03 122.918ZM1249.32 155.979L1221.86 86.9188L1224.27 82.315L1248.29 73.952L1249.32 155.979ZM1221.78 86.7298L1220.54 83.6099L1224.05 82.3916L1221.78 86.7298ZM1479.25 -387.2L1534.1 -414.708L1514.93 -358.527L1479.25 -387.2ZM1534.1 -414.215L1528.39 -352.14L1515.06 -358.434L1534.1 -414.215ZM1318.55 5.04078L1334.28 18.0165L1325.53 46.8237L1301.95 12.5811L1318.55 5.04078ZM1301.81 12.4207L1268.12 -36.5154L1318.41 4.92888L1301.81 12.4207ZM1533.86 -234.515L1549.11 -165.38L1482.73 -195.495L1533.86 -234.515ZM1534.02 -234.571L1594.44 -231.57L1549.68 -165.081L1549.27 -165.271L1534.02 -234.571ZM1558.35 -128.862L1549.89 -164.672L1603.16 -138.538L1558.35 -128.862ZM1533.24 -123.473L1549.74 -164.81L1558.22 -128.869L1533.24 -123.473ZM1558.26 -128.711L1574.55 -59.5524L1510.99 -67.7033L1533.15 -123.243L1558.26 -128.711ZM1533.08 -123.376L1495.78 -115.312L1549.6 -164.758L1533.08 -123.376ZM1532.97 -123.222L1510.84 -67.737L1495.53 -69.7036L1495.56 -115.139L1532.97 -123.222ZM1510.78 -67.6002L1495.51 -29.3079L1495.57 -69.5457L1510.78 -67.6002ZM1495.32 -29.0434L1447.31 -75.689L1495.35 -69.5176L1495.32 -29.0434ZM1495.23 -28.9112L1439.66 -20.4234L1447.16 -75.6254L1495.23 -28.9112ZM1510.9 -67.5336L1574.31 -59.4053L1495.52 -29.0009L1510.9 -67.5336ZM1558.35 -128.679L1603.23 -138.387L1574.65 -59.7144L1558.35 -128.679ZM1549.83 -164.827L1549.77 -164.865L1599.06 -183.055L1603.35 -138.668L1549.83 -164.827ZM1549.92 -165.123L1594.54 -231.414L1599.08 -183.271L1549.92 -165.123ZM1594.69 -231.44L1634.13 -196.177L1599.26 -183.311L1594.69 -231.44ZM1594.93 -231.434L1644.44 -214.926L1634.25 -196.294L1594.93 -231.434ZM1534.11 -234.722L1563.87 -268.497L1594.46 -231.767L1534.11 -234.722ZM1534.19 -235.045L1553.04 -281.511L1563.75 -268.631L1534.19 -235.045ZM1534 -234.964L1525.22 -314.921L1552.89 -281.668L1534 -234.964ZM1549.14 -165.21L1549.18 -165.071L1549.42 -164.901L1495.63 -115.324L1482.73 -195.282L1549.14 -165.21ZM1495.37 -69.734L1447.29 -75.8988L1495.43 -115.049L1495.37 -69.734ZM1439.52 -20.4568L1420.24 -17.5573L1410.15 -43.1059L1447.07 -75.6875L1439.52 -20.4568ZM1439.5 -20.2891L1434.28 18.2613L1420.25 -17.3475L1439.5 -20.2891ZM1420.05 -17.5059L1402.35 -14.7937L1410.02 -42.9188L1420.05 -17.5059ZM1420.11 -17.3512L1434.23 18.5217L1398.95 45.093L1388.49 35.8638L1402.31 -14.6415L1420.11 -17.3512ZM1334.39 18.0941L1382.17 57.47L1325.61 46.8969L1334.39 18.0941ZM1334.48 17.9618L1341.56 -5.23608L1382.15 57.2415L1334.48 17.9618ZM1398.87 45.1844L1382.63 57.3997L1388.49 36.0282L1398.87 45.1844ZM1388.4 35.7531L1341.72 -5.37033L1402.18 -14.6L1388.4 35.7531ZM1388.31 35.8855L1382.43 57.3869L1341.88 -5.02985L1388.31 35.8855ZM1334.32 17.7969L1318.68 4.90206L1341.37 -5.33818L1334.32 17.7969ZM1325.39 46.8575L1248.27 36.7737L1301.81 12.5962L1325.39 46.8575ZM1382.46 57.6718L1382.56 57.7416L1382.64 57.6315L1398.94 45.3359L1461.35 100.336L1326.29 47.2321L1382.46 57.6718ZM1399.04 45.1926L1434.22 18.6486L1461.5 100.242L1399.04 45.1926ZM1434.32 18.5053L1439.6 -20.3838L1495.26 -28.8769L1461.66 100.205L1434.32 18.5053ZM1574.53 -59.4333L1580.2 -6.652L1495.63 -28.9797L1574.53 -59.4333ZM1603.28 -138.251L1612 -59.8698L1574.71 -59.6194L1603.28 -138.251ZM1599.19 -183.291L1634.14 -196.091L1603.49 -138.799L1599.19 -183.291ZM1644.52 -214.999L1961.57 -55.867L1634.46 -196.371L1644.52 -214.999ZM1644.61 -215.131L1648.94 -223.057L1961.5 -56.0482L1644.61 -215.131ZM1644.48 -215.224L1594.72 -231.832L1616.28 -253.451L1648.86 -223.216L1644.48 -215.224ZM1594.58 -231.914L1563.95 -268.599L1580.12 -286.876L1616.22 -253.374L1594.58 -231.914ZM1580.29 -287.04L1639.32 -276.777L1616.23 -253.616L1580.29 -287.04ZM1580.66 -287.143L1622.51 -290.629L1639.25 -276.97L1580.66 -287.143ZM1579.93 -287.131L1563.76 -268.855L1552.98 -281.782L1559.4 -297.602L1579.93 -287.131ZM1552.94 -281.929L1525.37 -315.044L1559.32 -297.724L1552.94 -281.929ZM1525.02 -315.767L1515.14 -358.293L1528.44 -352.023L1525.02 -315.767ZM1528.51 -352.074L1544.1 -344.701L1525.22 -315.56L1528.51 -352.074ZM1524.98 -315.304L1484.64 -276.571L1514.93 -358.295L1524.98 -315.304ZM1525 -315.124L1533.81 -234.902L1479.08 -261.585L1484.48 -276.272L1525 -315.124ZM1533.48 -234.884L1471.44 -240.958L1479.03 -261.44L1533.48 -234.884ZM1478.94 -261.648L1472.56 -264.758L1484.26 -276.002L1478.94 -261.648ZM1478.86 -261.527L1471.25 -241.012L1449.94 -243.099L1472.41 -264.664L1478.86 -261.527ZM1449.89 -243.265L1455.84 -272.764L1472.22 -264.766L1449.89 -243.265ZM1449.93 -242.942L1471.2 -240.849L1464.27 -222.174L1449.93 -242.942ZM1464.2 -221.996L1434.03 -140.187L1449.93 -242.71L1464.2 -221.996ZM1471.35 -240.837L1533.66 -234.722L1482.54 -195.724L1464.38 -222.018L1471.35 -240.837ZM1495.35 -115.353L1447.21 -76.1849L1482.61 -195.116L1495.35 -115.353ZM1410.05 -43.3888L1406.43 -67.052L1446.8 -75.8141L1410.05 -43.3888ZM1402.15 -14.8551L1341.87 -5.65797L1409.87 -43.0869L1402.15 -14.8551ZM1341.26 -5.51285L1318.48 4.81098L1268.13 -36.6908L1341.26 -5.51285ZM1301.62 12.3858L1248.01 36.5875L1267.74 -36.8654L1301.62 12.3858ZM1224.35 81.9432L1247.81 37.0462L1248.27 73.6263L1224.35 81.9432ZM1247.97 36.8258L1325.23 47.0403L1248.49 73.7517L1247.97 36.8258ZM1325.64 47.036L1461.39 100.415L1366.32 115.852L1325.64 47.036ZM1603.38 170.613L1496 -28.7643L1580.23 -6.53152L1603.38 170.613ZM1580.41 -6.49354L1574.76 -59.319L1612.09 -59.5759L1722.3 160.681L1580.41 -6.49354ZM1612.24 -59.5909L1665.51 -59.9733L1722.47 160.488L1612.24 -59.5909ZM1665.49 -60.1048L1612.2 -59.7302L1603.48 -138.179L1665.49 -60.1048ZM1634.36 -196.082L1961.54 -55.6961L1603.81 -139.067L1634.36 -196.082ZM1961.55 -56.1144L1649.02 -223.119L1655.2 -234.392L1961.55 -56.1144ZM1655.14 -234.565L1648.94 -223.211L1616.38 -253.411L1639.52 -276.667L1655.14 -234.565ZM1639.61 -276.703L1688.83 -296.012L1655.32 -234.733L1639.61 -276.703ZM1688.39 -296.053L1639.52 -276.832L1622.78 -290.503L1688.39 -296.053ZM1622.43 -290.665L1580.16 -287.114L1559.56 -297.65L1573.13 -330.947L1622.43 -290.665ZM1572.98 -330.988L1559.41 -297.692L1525.2 -315.198L1544.28 -344.51L1572.98 -330.988ZM1572.9 -331.189L1544.46 -344.629L1557.48 -364.631L1572.9 -331.189ZM1557.36 -364.814L1544.29 -344.704L1528.61 -352.101L1534.36 -414.589L1557.36 -364.814ZM1586.05 -408.885L1557.51 -365.023L1534.48 -414.852L1586.05 -408.885ZM1586.04 -409.039L1534.43 -415.017L1534.49 -415.588L1534.38 -415.434L1533.44 -514.98L1586.04 -409.039ZM1479.28 -387.165L1514.98 -358.458L1484.51 -276.249L1472.54 -264.754L1456.07 -272.796L1479.28 -387.165ZM1455.89 -272.707L1449.89 -243.119L1413.73 -293.311L1455.89 -272.707ZM1413.58 -293.187L1449.82 -242.934L1423.5 -218.409L1413.58 -293.187ZM1449.82 -242.721L1433.88 -139.967L1423.49 -218.155L1449.82 -242.721ZM1423.39 -218.109L1433.76 -139.454L1433.79 -139.15L1464.4 -221.703L1482.53 -195.47L1447.12 -76.034L1388.4 -185.545L1423.39 -218.109ZM1388.53 -185.161L1447.1 -75.9148L1406.55 -67.1311L1388.53 -185.161ZM1410.05 -43.1946L1341.62 -5.5372L1341.56 -5.58376L1268.08 -36.9835L1406.41 -67.0001L1410.05 -43.1946ZM1200.18 32.0218L1267.68 -36.6911L1247.97 36.7772L1224.29 82.0986L1220.62 83.3729L1200.18 32.0218ZM1221.81 86.8126L1203.08 122.755L1172.09 100.445L1220.38 83.5686L1221.81 86.8126ZM1171.83 100.625L1181.2 164.429L1133.74 170.03L1171.83 100.625ZM804.282 247.867L889.565 227.592L884.32 257.618L804.282 247.867ZM923.311 133.074L913.797 159.731L846.184 133.416L923.311 133.074ZM923.475 133.075L943.971 132.991L946.202 172.338L913.941 159.783L923.475 133.075ZM902.991 259.892L889.87 227.79L927.669 262.902L902.991 259.892ZM994.054 188.03L961.462 200.326L946.406 172.564L994.054 188.03ZM994.027 188.209L969.772 215.624L961.563 200.464L994.027 188.209ZM969.671 215.767L927.923 262.916L889.847 227.543L961.446 200.513L969.671 215.767ZM928.078 262.977L969.625 215.949L976.681 228.979L988.498 273.297L928.078 262.977ZM976.976 229.005L991.498 229.938L988.68 272.898L976.976 229.005ZM976.988 228.848L994.222 188.494L991.51 229.782L976.988 228.848ZM976.855 228.755L969.845 215.824L994.054 188.475L976.855 228.755ZM946.416 172.456L966.535 133.013L994.075 187.93L946.416 172.456ZM946.355 172.215L944.153 133.037L966.414 132.928L946.355 172.215ZM946.145 172.513L961.229 200.376L889.706 227.345L913.792 159.925L946.145 172.513ZM889.659 227.856L902.776 259.938L884.441 257.703L889.659 227.856ZM902.843 260.101L912.639 284.076L889.938 315.602L876.212 304.812L884.419 257.852L902.843 260.101ZM903.022 260.128L927.719 263.136L912.756 283.91L903.022 260.128ZM927.812 263.284L942.375 356.443L912.719 284.033L927.812 263.284ZM988.738 273.236L991.586 230.001L1033.39 232.681L988.738 273.236ZM1096.78 236.588L1033.72 232.517L1052.34 215.604L1096.78 236.588ZM1133.54 170.189L1097.3 236.332L1097.76 174.355L1133.54 170.189ZM1097.62 174.553L1097.08 236.506L1052.5 215.451L1097.62 174.553ZM1052.25 215.572L1033.56 232.536L991.609 229.852L994.348 188.221L1052.25 215.572ZM966.237 132.804L944.033 132.903L943.235 118.711L966.237 132.804ZM943.073 118.613L943.876 132.892L923.432 132.995L931.173 111.336L943.073 118.613ZM931.233 111.18L941.106 83.523L943.067 118.411L931.233 111.18ZM940.919 83.3911L931.046 111.048L911.227 98.917L940.887 83.3194L940.739 83.5286L940.919 83.3911ZM1106.74 -124.594L1052.94 -66.6806L1031.89 -100.724L1106.74 -124.594ZM1031.93 -100.48L1052.91 -66.5504L1034.1 -43.377L1031.93 -100.48ZM1052.83 -66.2162L1035.7 -1.2124L1034.11 -43.1562L1052.83 -66.2162ZM1033.95 -42.9734L1035.53 -0.75706L992.034 8.62405L1033.95 -42.9734ZM1035.37 -0.536661L941.545 82.7119L976.675 27.6206L991.881 8.91172L1035.37 -0.536661ZM976.574 27.4835L945.002 18.9573L991.614 8.93852L976.574 27.4835ZM944.76 19.0671L976.347 27.5711L943.421 42.9617L944.76 19.0671ZM976.399 27.7557L941.269 82.8469L943.439 43.1715L976.399 27.7557ZM941.11 83.0485L873.692 75.8079L943.328 43.2583L941.11 83.0485ZM873.724 75.8798L940.944 83.1451L911.1 98.9101L873.724 75.8798ZM931.088 111.176L923.314 132.928L846.042 133.267L911.163 99.0538L931.088 111.176ZM913.68 159.896L889.595 227.316L845.86 133.501L913.68 159.896ZM889.494 227.459L803.913 247.805L845.649 133.567L889.494 227.459ZM804.05 248.033L884.218 257.81L876.032 304.669L804.05 248.033ZM869.287 344.171L876.109 305.004L889.77 315.747L869.287 344.171ZM890.016 315.656L912.662 284.207L942.306 356.774L890.016 315.656Z" fill="white"/>
398
+ <path d="M1197.69 31.7676C1197.74 31.3072 1197.93 30.8731 1198.23 30.5202C1198.53 30.1674 1198.93 29.9117 1199.38 29.7854C1199.82 29.6591 1200.3 29.6679 1200.74 29.8107C1201.18 29.9535 1201.57 30.2238 1201.85 30.5875C1202.14 30.9513 1202.31 31.3921 1202.35 31.8542C1202.39 32.3164 1202.29 32.7791 1202.06 33.1839C1201.84 33.5888 1201.49 33.9174 1201.08 34.1285C1200.67 34.3396 1200.2 34.4236 1199.74 34.3699C1199.44 34.3342 1199.14 34.2385 1198.87 34.0884C1198.6 33.9383 1198.37 33.7366 1198.17 33.4949C1197.98 33.2532 1197.84 32.9763 1197.76 32.6799C1197.67 32.3835 1197.65 32.0736 1197.69 31.7676V31.7676Z" fill="white"/>
399
+ <path d="M1247.11 156.07C1247.16 155.609 1247.35 155.174 1247.65 154.82C1247.94 154.465 1248.34 154.208 1248.79 154.079C1249.23 153.951 1249.71 153.958 1250.15 154.099C1250.59 154.24 1250.98 154.509 1251.27 154.871C1251.56 155.234 1251.73 155.675 1251.77 156.137C1251.81 156.599 1251.71 157.062 1251.49 157.468C1251.26 157.874 1250.92 158.204 1250.51 158.416C1250.1 158.629 1249.63 158.714 1249.17 158.662C1248.56 158.588 1247.99 158.275 1247.61 157.79C1247.22 157.305 1247.04 156.687 1247.11 156.07Z" fill="white"/>
400
+ <path d="M887.255 227.267C887.308 226.772 887.52 226.309 887.857 225.944C888.283 225.488 888.871 225.216 889.495 225.186C889.834 225.173 890.172 225.233 890.486 225.364C890.799 225.494 891.081 225.691 891.311 225.94C891.541 226.19 891.714 226.487 891.818 226.81C891.922 227.133 891.955 227.475 891.913 227.812C891.861 228.307 891.65 228.771 891.311 229.135C890.976 229.502 890.533 229.752 890.045 229.851C889.558 229.949 889.052 229.89 888.601 229.682C888.149 229.474 887.776 229.128 887.534 228.694C887.292 228.26 887.194 227.76 887.255 227.267V227.267Z" fill="white"/>
401
+ <path d="M964.197 132.587C964.25 132.088 964.468 131.621 964.818 131.261C965.03 131.029 965.286 130.842 965.571 130.712C965.856 130.581 966.165 130.509 966.479 130.501C966.792 130.493 967.105 130.548 967.397 130.663C967.688 130.778 967.954 130.951 968.177 131.171C968.404 131.386 968.587 131.643 968.714 131.928C968.842 132.213 968.912 132.52 968.92 132.832C968.928 133.144 968.875 133.455 968.763 133.747C968.651 134.038 968.482 134.304 968.267 134.531C968.054 134.761 967.798 134.946 967.513 135.076C967.228 135.205 966.919 135.276 966.606 135.284C966.293 135.293 965.981 135.238 965.69 135.124C965.398 135.01 965.132 134.839 964.908 134.62C964.634 134.364 964.426 134.045 964.302 133.691C964.178 133.337 964.142 132.958 964.197 132.587Z" fill="white"/>
402
+ <path d="M870.986 75.5992C871.041 75.1007 871.255 74.6333 871.596 74.2654C871.808 74.0351 872.064 73.8497 872.35 73.7202C872.635 73.5907 872.943 73.5197 873.256 73.5114C873.569 73.503 873.881 73.5575 874.173 73.6717C874.465 73.7858 874.731 73.9571 874.955 74.1757C875.227 74.4268 875.436 74.7393 875.564 75.0871C875.691 75.435 875.734 75.8082 875.689 76.1759C875.638 76.6708 875.426 77.1355 875.086 77.4989C874.876 77.7247 874.622 77.9064 874.34 78.0333C874.058 78.1602 873.754 78.2298 873.445 78.2381C873.136 78.2559 872.827 78.2094 872.537 78.1016C872.247 77.9938 871.982 77.8269 871.76 77.6116C871.478 77.3641 871.259 77.0516 871.125 76.701C870.99 76.3504 870.942 75.9723 870.986 75.5992Z" fill="white"/>
403
+ <path d="M843.879 133.178C843.925 132.792 844.088 132.429 844.347 132.139C844.61 131.857 844.955 131.665 845.333 131.59C845.711 131.515 846.103 131.561 846.454 131.722C846.804 131.883 847.095 132.15 847.284 132.486C847.474 132.822 847.553 133.209 847.51 133.592C847.466 133.979 847.298 134.34 847.031 134.623C846.868 134.8 846.672 134.943 846.454 135.044C846.236 135.145 846 135.202 845.76 135.211C845.277 135.225 844.808 135.054 844.449 134.732C844.237 134.537 844.076 134.294 843.977 134.024C843.878 133.753 843.844 133.463 843.879 133.178V133.178Z" fill="white"/>
404
+ <path d="M801.442 247.662C801.492 247.167 801.704 246.703 802.044 246.339C802.252 246.109 802.504 245.923 802.786 245.793C803.067 245.663 803.372 245.591 803.682 245.581C804.304 245.56 804.91 245.785 805.367 246.208C805.639 246.459 805.848 246.771 805.976 247.119C806.103 247.467 806.146 247.84 806.101 248.208C806.052 248.703 805.836 249.167 805.487 249.523C805.279 249.753 805.027 249.939 804.746 250.069C804.464 250.199 804.159 250.271 803.849 250.281C803.511 250.295 803.174 250.235 802.861 250.105C802.548 249.975 802.268 249.779 802.039 249.53C801.809 249.28 801.637 248.984 801.534 248.662C801.431 248.339 801.4 247.998 801.442 247.662V247.662Z" fill="white"/>
405
+ <path d="M940.202 356.742C940.26 356.249 940.47 355.786 940.804 355.419C941.015 355.193 941.269 355.012 941.551 354.885C941.833 354.758 942.137 354.688 942.446 354.68C942.755 354.663 943.064 354.71 943.353 354.818C943.643 354.926 943.908 355.092 944.131 355.307C944.401 355.555 944.608 355.865 944.735 356.209C944.862 356.554 944.905 356.923 944.861 357.288C944.806 357.786 944.592 358.254 944.251 358.622C944.043 358.849 943.792 359.032 943.512 359.16C943.232 359.289 942.929 359.36 942.621 359.369C941.998 359.391 941.393 359.165 940.936 358.742C940.661 358.493 940.45 358.181 940.322 357.833C940.195 357.484 940.153 357.11 940.202 356.742V356.742Z" fill="white"/>
406
+ <path d="M974.269 27.292C974.322 26.7977 974.533 26.3336 974.871 25.9691C975.083 25.7415 975.338 25.5581 975.621 25.4293C975.904 25.3006 976.21 25.229 976.521 25.2189C976.827 25.2063 977.132 25.2546 977.419 25.3607C977.707 25.4669 977.97 25.629 978.194 25.8376C978.465 26.09 978.673 26.4026 978.8 26.7501C978.927 27.0976 978.971 27.4702 978.928 27.8378C978.875 28.3321 978.664 28.7961 978.326 29.1606C977.99 29.5272 977.547 29.7779 977.06 29.8762C976.573 29.9744 976.067 29.9153 975.615 29.7074C975.164 29.4994 974.79 29.1534 974.548 28.7193C974.306 28.2851 974.209 27.7854 974.269 27.292Z" fill="white"/>
407
+ <path d="M1033.31 -0.953211C1033.37 -1.50854 1033.63 -2.02308 1034.04 -2.403C1034.45 -2.78292 1034.98 -3.003 1035.54 -3.02313C1035.85 -3.04012 1036.16 -2.99318 1036.45 -2.8854C1036.74 -2.77762 1037 -2.6113 1037.23 -2.3967C1037.5 -2.14819 1037.71 -1.83809 1037.84 -1.49209C1037.97 -1.14609 1038.01 -0.774201 1037.97 -0.40755C1037.92 0.0916483 1037.7 0.558682 1037.35 0.918538C1037.14 1.15045 1036.88 1.33731 1036.59 1.46788C1036.31 1.59844 1036 1.6701 1035.69 1.67846C1035.37 1.68682 1035.06 1.63169 1034.77 1.51651C1034.48 1.40132 1034.21 1.22837 1033.99 1.00805C1033.73 0.754544 1033.54 0.44606 1033.42 0.1061C1033.3 -0.23386 1033.26 -0.596174 1033.31 -0.953211Z" fill="white"/>
408
+ <path d="M940.792 18.4986C940.893 17.677 941.25 16.908 941.813 16.3004C942.373 15.6968 943.109 15.2856 943.917 15.1254C944.725 14.9651 945.562 15.0641 946.311 15.4083C947.059 15.7524 947.679 16.3242 948.083 17.0418C948.487 17.7595 948.653 18.5864 948.559 19.4045C948.459 20.2264 948.102 20.9955 947.538 21.6026C947.192 21.9787 946.775 22.2823 946.311 22.4957C945.847 22.709 945.344 22.8279 944.834 22.8453C944.27 22.8674 943.708 22.767 943.186 22.5512C942.665 22.3355 942.197 22.0092 941.813 21.5951C941.43 21.181 941.141 20.6889 940.966 20.1524C940.791 19.616 940.734 19.048 940.8 18.4875L940.792 18.4986Z" fill="white"/>
409
+ <path d="M938.832 82.8633C938.885 82.3641 939.104 81.897 939.453 81.5371C939.662 81.3099 939.913 81.1268 940.193 80.9985C940.473 80.8702 940.776 80.7993 941.084 80.7901C941.706 80.7683 942.312 80.9935 942.769 81.4166C943.041 81.664 943.249 81.9732 943.376 82.3181C943.503 82.6629 943.545 83.0334 943.499 83.398C943.45 83.8291 943.283 84.2383 943.016 84.5799C942.748 84.9216 942.391 85.1822 941.984 85.333C941.577 85.4837 941.137 85.5186 940.711 85.4337C940.286 85.3489 939.892 85.1478 939.574 84.8525C939.301 84.604 939.091 84.2937 938.962 83.9477C938.833 83.6017 938.789 83.23 938.832 82.8633V82.8633Z" fill="white"/>
410
+ <path d="M941.77 171.985C941.86 171.163 942.179 170.383 942.688 169.731C943.198 169.08 943.879 168.584 944.656 168.299C945.432 168.013 946.273 167.95 947.083 168.116C947.893 168.282 948.641 168.671 949.242 169.239C949.758 169.713 950.153 170.304 950.395 170.961C950.637 171.619 950.719 172.325 950.633 173.02C950.565 173.602 950.383 174.165 950.098 174.677C949.812 175.188 949.429 175.639 948.969 176.002C948.51 176.366 947.983 176.635 947.419 176.795C946.856 176.955 946.266 177.003 945.684 176.935C945.102 176.867 944.539 176.685 944.028 176.399C943.516 176.114 943.065 175.73 942.702 175.271C942.339 174.811 942.069 174.284 941.909 173.721C941.749 173.157 941.702 172.567 941.77 171.985V171.985Z" fill="white"/>
411
+ <path d="M974.429 228.663C974.482 228.169 974.693 227.705 975.031 227.34C975.243 227.113 975.498 226.929 975.781 226.8C976.064 226.672 976.37 226.6 976.681 226.59C976.987 226.577 977.292 226.626 977.58 226.732C977.867 226.838 978.13 227 978.355 227.209C978.625 227.461 978.833 227.774 978.96 228.121C979.088 228.469 979.131 228.841 979.088 229.209C979.035 229.703 978.824 230.167 978.486 230.532C978.15 230.898 977.707 231.149 977.22 231.247C976.733 231.346 976.227 231.286 975.775 231.079C975.324 230.871 974.95 230.525 974.708 230.09C974.466 229.656 974.369 229.157 974.429 228.663V228.663Z" fill="white"/>
412
+ <path d="M1094.8 236.398C1094.87 235.903 1095.08 235.439 1095.42 235.072C1095.8 234.673 1096.31 234.422 1096.86 234.363C1097.4 234.305 1097.95 234.443 1098.41 234.753C1098.86 235.063 1099.19 235.525 1099.34 236.056C1099.48 236.587 1099.43 237.152 1099.2 237.65C1098.97 238.149 1098.57 238.548 1098.06 238.776C1097.56 239.005 1097 239.047 1096.47 238.897C1095.94 238.746 1095.48 238.412 1095.17 237.954C1094.87 237.496 1094.74 236.945 1094.8 236.398V236.398Z" fill="white"/>
413
+ <path d="M1169.46 100.157C1169.52 99.6612 1169.74 99.1981 1170.08 98.8306C1170.28 98.6035 1170.54 98.4204 1170.82 98.2921C1171.1 98.1638 1171.4 98.0929 1171.71 98.0837C1172.33 98.0618 1172.93 98.287 1173.39 98.7101C1173.66 98.9612 1173.87 99.2736 1174 99.6214C1174.13 99.9692 1174.17 100.343 1174.13 100.71C1174.07 101.204 1173.85 101.666 1173.51 102.025C1173.3 102.253 1173.05 102.436 1172.77 102.564C1172.49 102.692 1172.19 102.763 1171.88 102.772C1171.26 102.794 1170.65 102.569 1170.2 102.146C1169.92 101.897 1169.72 101.586 1169.59 101.241C1169.46 100.895 1169.41 100.523 1169.46 100.157Z" fill="white"/>
414
+ <path d="M1323.2 46.7154C1323.23 46.4095 1323.33 46.1136 1323.48 45.8447C1323.63 45.5758 1323.83 45.3392 1324.07 45.1482C1324.31 44.9572 1324.59 44.8157 1324.89 44.7317C1325.18 44.6478 1325.49 44.623 1325.8 44.6588C1326.1 44.6947 1326.4 44.7904 1326.67 44.9406C1326.94 45.0908 1327.17 45.2924 1327.37 45.5341C1327.56 45.7757 1327.7 46.0527 1327.78 46.3491C1327.87 46.6454 1327.89 46.9554 1327.85 47.2613C1327.8 47.7562 1327.59 48.2208 1327.25 48.5841C1327.04 48.813 1326.78 48.9974 1326.5 49.1264C1326.21 49.2555 1325.9 49.3268 1325.59 49.3361C1325.28 49.3454 1324.96 49.2926 1324.67 49.1808C1324.38 49.069 1324.11 48.9003 1323.89 48.6846C1323.63 48.4312 1323.43 48.1218 1323.31 47.7804C1323.19 47.4389 1323.15 47.0745 1323.2 46.7154V46.7154Z" fill="white"/>
415
+ <path d="M1364.01 115.778C1364.06 115.279 1364.28 114.811 1364.62 114.444C1365.05 113.995 1365.63 113.727 1366.25 113.697C1366.87 113.675 1367.48 113.9 1367.93 114.324C1368.21 114.575 1368.42 114.887 1368.54 115.235C1368.67 115.583 1368.71 115.956 1368.67 116.324C1368.61 116.816 1368.4 117.278 1368.07 117.647C1367.85 117.877 1367.6 118.062 1367.31 118.192C1367.03 118.321 1366.72 118.392 1366.41 118.4C1366.09 118.409 1365.78 118.354 1365.49 118.24C1365.2 118.126 1364.93 117.955 1364.71 117.736C1364.45 117.487 1364.25 117.179 1364.13 116.84C1364 116.5 1363.96 116.136 1364.01 115.778V115.778Z" fill="white"/>
416
+ <path d="M992.497 187.874C992.545 187.508 992.7 187.165 992.945 186.888C993.261 186.555 993.695 186.36 994.153 186.344C994.611 186.328 995.057 186.492 995.396 186.801C995.595 186.985 995.747 187.214 995.84 187.469C995.932 187.723 995.964 187.996 995.93 188.265C995.899 188.636 995.741 188.984 995.483 189.252C995.327 189.419 995.14 189.553 994.932 189.647C994.725 189.742 994.5 189.794 994.272 189.8C993.815 189.81 993.371 189.645 993.032 189.339C992.835 189.153 992.684 188.924 992.591 188.67C992.498 188.416 992.466 188.143 992.497 187.874V187.874Z" fill="white"/>
417
+ <path d="M867.662 344.327C867.692 344.009 867.827 343.71 868.046 343.477C868.179 343.33 868.341 343.212 868.521 343.129C868.701 343.046 868.896 343.001 869.094 342.995C869.313 342.986 869.531 343.025 869.733 343.109C869.936 343.192 870.118 343.319 870.266 343.48C870.415 343.641 870.526 343.833 870.593 344.041C870.66 344.25 870.681 344.47 870.654 344.688C870.613 345.003 870.475 345.297 870.259 345.53C870.127 345.683 869.965 345.808 869.784 345.897C869.602 345.987 869.405 346.039 869.203 346.05C869.001 346.062 868.799 346.032 868.609 345.964C868.418 345.896 868.244 345.791 868.095 345.654C867.919 345.485 867.788 345.276 867.712 345.044C867.637 344.813 867.619 344.567 867.662 344.327Z" fill="white"/>
418
+ <path d="M984.793 272.964C984.882 272.143 985.233 271.373 985.795 270.769C986.495 270.02 987.462 269.578 988.487 269.54C989.511 269.502 990.508 269.87 991.262 270.565C991.708 270.98 992.051 271.494 992.261 272.066C992.471 272.638 992.543 273.251 992.471 273.856C992.372 274.674 992.017 275.439 991.458 276.043C990.759 276.792 989.791 277.232 988.768 277.268C987.745 277.304 986.749 276.933 985.999 276.236C985.552 275.826 985.209 275.315 985 274.746C984.79 274.177 984.719 273.566 984.793 272.964V272.964Z" fill="white"/>
419
+ <path d="M1095.33 174.071C1095.38 173.572 1095.6 173.105 1095.95 172.745C1096.37 172.289 1096.96 172.021 1097.58 171.998C1098.2 171.975 1098.81 172.201 1099.26 172.624C1099.72 173.048 1099.99 173.635 1100.01 174.257C1100.03 174.879 1099.81 175.484 1099.38 175.94C1099.17 176.168 1098.91 176.352 1098.63 176.481C1098.34 176.609 1098.03 176.679 1097.72 176.688C1097.41 176.696 1097.1 176.642 1096.81 176.529C1096.51 176.416 1096.25 176.246 1096.02 176.029C1095.76 175.78 1095.56 175.473 1095.44 175.133C1095.32 174.793 1095.28 174.429 1095.33 174.071V174.071Z" fill="white"/>
420
+ <path d="M1177.31 164.085C1177.42 163.261 1177.78 162.489 1178.34 161.876C1178.78 161.406 1179.33 161.051 1179.94 160.842C1180.54 160.634 1181.19 160.578 1181.83 160.681C1182.46 160.783 1183.06 161.04 1183.57 161.429C1184.08 161.819 1184.49 162.328 1184.76 162.912C1185.02 163.496 1185.14 164.137 1185.1 164.778C1185.06 165.42 1184.87 166.041 1184.53 166.588C1184.19 167.135 1183.73 167.59 1183.17 167.914C1182.62 168.238 1181.99 168.419 1181.35 168.443C1180.79 168.465 1180.22 168.365 1179.7 168.149C1179.18 167.933 1178.71 167.607 1178.33 167.193C1177.95 166.779 1177.66 166.287 1177.48 165.75C1177.31 165.214 1177.25 164.646 1177.31 164.085V164.085Z" fill="white"/>
421
+ <path d="M1244.42 36.4353C1244.51 35.6825 1244.83 34.977 1245.35 34.418C1245.66 34.0761 1246.04 33.7992 1246.46 33.6035C1246.88 33.4077 1247.33 33.2969 1247.8 33.2772C1248.28 33.2583 1248.75 33.3351 1249.2 33.5033C1249.65 33.6714 1250.06 33.9274 1250.4 34.2563C1250.83 34.6329 1251.16 35.1076 1251.36 35.6391C1251.56 36.1706 1251.62 36.7428 1251.55 37.3063C1251.48 37.9595 1251.23 38.5795 1250.82 39.0969C1250.41 39.6143 1249.87 40.0087 1249.26 40.2361C1248.64 40.4635 1247.97 40.5148 1247.33 40.3844C1246.68 40.2539 1246.09 39.9469 1245.61 39.4976C1245.18 39.1224 1244.84 38.6474 1244.63 38.1137C1244.43 37.58 1244.35 37.004 1244.42 36.4353V36.4353Z" fill="white"/>
422
+ <path d="M925.489 262.766C925.54 262.272 925.751 261.807 926.091 261.444C926.304 261.213 926.56 261.028 926.845 260.899C927.13 260.769 927.439 260.698 927.752 260.69C928.065 260.681 928.377 260.736 928.668 260.85C928.96 260.964 929.226 261.135 929.45 261.354C929.723 261.603 929.933 261.913 930.062 262.259C930.191 262.605 930.236 262.977 930.192 263.343C930.136 263.842 929.923 264.309 929.582 264.677C929.369 264.907 929.113 265.093 928.828 265.222C928.543 265.352 928.234 265.423 927.921 265.431C927.608 265.439 927.296 265.385 927.005 265.271C926.713 265.157 926.447 264.985 926.223 264.767C925.947 264.518 925.737 264.205 925.609 263.857C925.481 263.509 925.44 263.134 925.489 262.766V262.766Z" fill="white"/>
423
+ </g>
424
+ <g opacity="0.22">
425
+ <path d="M755.63 158.339C756.116 158.587 756.664 158.685 757.205 158.621C757.746 158.556 758.257 158.333 758.671 157.979C759.086 157.624 759.386 157.155 759.534 156.63C759.682 156.106 759.671 155.549 759.502 155.03C759.334 154.512 759.015 154.056 758.586 153.719C758.158 153.382 757.639 153.18 757.096 153.138C756.552 153.097 756.009 153.217 755.534 153.485C755.058 153.752 754.673 154.155 754.427 154.642C754.097 155.292 754.039 156.047 754.264 156.74C754.49 157.433 754.981 158.008 755.63 158.339Z" fill="white"/>
426
+ <path d="M683.772 115.578C684.235 115.816 684.759 115.911 685.277 115.85C685.795 115.789 686.283 115.576 686.68 115.238C687.077 114.899 687.364 114.45 687.505 113.948C687.647 113.446 687.636 112.913 687.474 112.418C687.312 111.922 687.006 111.486 686.596 111.165C686.186 110.844 685.689 110.652 685.169 110.613C684.649 110.575 684.13 110.692 683.676 110.949C683.223 111.207 682.856 111.593 682.622 112.06C682.312 112.68 682.258 113.397 682.473 114.056C682.689 114.715 683.155 115.262 683.772 115.578V115.578Z" fill="white"/>
427
+ <path d="M730.82 55.5493C731.035 55.6727 731.282 55.7286 731.53 55.71C731.777 55.6915 732.013 55.5991 732.207 55.4449C732.402 55.2908 732.545 55.0819 732.62 54.8452C732.694 54.6086 732.696 54.355 732.625 54.1175C732.554 53.8799 732.413 53.6693 732.221 53.5126C732.029 53.356 731.794 53.2606 731.547 53.2389C731.3 53.2172 731.052 53.2701 730.836 53.3908C730.619 53.5115 730.443 53.6944 730.332 53.9159C730.188 54.1992 730.159 54.5263 730.25 54.8302C730.341 55.134 730.545 55.3914 730.82 55.5493Z" fill="white"/>
428
+ <path d="M652.834 49.3517C653.118 49.4958 653.439 49.5522 653.755 49.5139C654.072 49.4757 654.37 49.3443 654.612 49.1366C654.854 48.9288 655.029 48.6539 655.115 48.3468C655.201 48.0396 655.194 47.714 655.094 47.4111C654.995 47.1082 654.808 46.8416 654.557 46.645C654.307 46.4485 654.003 46.3309 653.685 46.307C653.367 46.2832 653.049 46.3541 652.772 46.5109C652.494 46.6678 652.269 46.9035 652.125 47.1881C652.028 47.3765 651.969 47.5823 651.952 47.7936C651.935 48.0048 651.961 48.2173 652.027 48.4187C652.093 48.62 652.198 48.8063 652.336 48.9664C652.475 49.1266 652.644 49.2576 652.834 49.3517V49.3517Z" fill="white"/>
429
+ <path d="M608.186 45.2051C608.47 45.3491 608.79 45.4056 609.107 45.3673C609.423 45.329 609.722 45.1977 609.964 44.9899C610.206 44.7822 610.381 44.5074 610.466 44.2003C610.552 43.8931 610.545 43.5674 610.446 43.2645C610.347 42.9615 610.16 42.6951 609.909 42.4985C609.658 42.302 609.355 42.1842 609.037 42.1604C608.719 42.1365 608.401 42.2075 608.123 42.3644C607.846 42.5213 607.621 42.757 607.477 43.0417C607.284 43.4229 607.251 43.8648 607.384 44.2704C607.516 44.676 607.805 45.0121 608.186 45.2051Z" fill="white"/>
430
+ <path d="M670.893 37.0763C671.343 37.3016 671.85 37.3885 672.349 37.3262C672.848 37.2639 673.318 37.055 673.699 36.726C674.08 36.3969 674.356 35.9625 674.49 35.4774C674.625 34.9923 674.613 34.4783 674.456 34.0003C674.299 33.5222 674.004 33.1016 673.608 32.7913C673.212 32.481 672.733 32.295 672.231 32.2568C671.729 32.2186 671.227 32.33 670.788 32.5768C670.35 32.8236 669.994 33.1947 669.765 33.6434C669.461 34.2489 669.409 34.95 669.621 35.5933C669.832 36.2366 670.29 36.7698 670.893 37.0763V37.0763Z" fill="white"/>
431
+ <path d="M700.867 76.7854C701.149 76.9253 701.466 76.9787 701.778 76.9388C702.091 76.899 702.384 76.7677 702.623 76.5615C702.861 76.3553 703.033 76.0833 703.117 75.7797C703.201 75.4762 703.194 75.1546 703.096 74.8554C702.998 74.5562 702.813 74.2927 702.566 74.098C702.319 73.9034 702.019 73.7863 701.705 73.7613C701.391 73.7364 701.077 73.8048 700.802 73.9579C700.527 74.1111 700.303 74.3422 700.158 74.6221C699.966 75.0033 699.932 75.4452 700.065 75.8508C700.198 76.2564 700.486 76.5925 700.867 76.7854V76.7854Z" fill="white"/>
432
+ <path d="M706.703 135.347C707.085 135.536 707.525 135.567 707.93 135.434C708.334 135.301 708.671 135.015 708.867 134.636C709.011 134.352 709.068 134.031 709.03 133.715C708.992 133.398 708.86 133.1 708.653 132.858C708.445 132.616 708.171 132.441 707.864 132.356C707.557 132.27 707.231 132.278 706.928 132.377C706.625 132.477 706.359 132.664 706.162 132.915C705.965 133.166 705.847 133.47 705.823 133.787C705.799 134.105 705.87 134.423 706.027 134.701C706.183 134.978 706.419 135.203 706.703 135.347V135.347Z" fill="white"/>
433
+ <path d="M700.543 178.563C700.839 178.713 701.183 178.738 701.499 178.634C701.815 178.53 702.076 178.304 702.226 178.007C702.376 177.71 702.401 177.366 702.297 177.05C702.193 176.735 701.968 176.474 701.671 176.324C701.366 176.195 701.022 176.19 700.713 176.312C700.405 176.434 700.156 176.671 700.02 176.974C699.893 177.256 699.876 177.576 699.973 177.87C700.069 178.165 700.273 178.412 700.543 178.563V178.563Z" fill="white"/>
434
+ <path d="M624.805 212.447C625.187 212.635 625.627 212.666 626.032 212.533C626.436 212.4 626.773 212.114 626.969 211.736C627.113 211.451 627.17 211.131 627.132 210.814C627.094 210.498 626.962 210.2 626.755 209.958C626.547 209.716 626.273 209.541 625.966 209.455C625.659 209.37 625.333 209.377 625.03 209.477C624.727 209.576 624.461 209.763 624.264 210.014C624.067 210.265 623.949 210.569 623.925 210.887C623.901 211.205 623.972 211.523 624.129 211.8C624.285 212.078 624.521 212.303 624.805 212.447V212.447Z" fill="white"/>
435
+ <path d="M544.729 142.16C544.938 142.266 545.173 142.308 545.406 142.279C545.639 142.251 545.858 142.154 546.036 142.001C546.213 141.849 546.342 141.647 546.405 141.421C546.468 141.195 546.462 140.956 546.389 140.733C546.316 140.51 546.178 140.315 545.994 140.17C545.809 140.026 545.586 139.94 545.352 139.922C545.119 139.905 544.885 139.957 544.681 140.073C544.477 140.188 544.312 140.362 544.207 140.571C544.069 140.852 544.047 141.175 544.144 141.472C544.242 141.769 544.451 142.016 544.729 142.16V142.16Z" fill="white"/>
436
+ <path d="M433.006 144.649C433.385 144.84 433.824 144.873 434.227 144.742C434.63 144.611 434.966 144.326 435.161 143.95C435.272 143.76 435.343 143.55 435.37 143.333C435.397 143.115 435.379 142.894 435.318 142.684C435.256 142.473 435.152 142.277 435.013 142.109C434.873 141.94 434.7 141.801 434.505 141.701C434.31 141.602 434.096 141.543 433.878 141.528C433.659 141.514 433.439 141.545 433.233 141.618C433.026 141.691 432.836 141.806 432.676 141.955C432.515 142.105 432.386 142.285 432.297 142.486C432.2 142.674 432.141 142.88 432.125 143.091C432.108 143.302 432.133 143.515 432.199 143.716C432.265 143.918 432.37 144.104 432.509 144.264C432.647 144.424 432.816 144.555 433.006 144.649V144.649Z" fill="white"/>
437
+ <path d="M423.097 198.75C423.474 198.916 423.9 198.932 424.287 198.794C424.675 198.656 424.996 198.375 425.183 198.008C425.371 197.642 425.411 197.217 425.296 196.822C425.181 196.427 424.918 196.092 424.563 195.884C424.374 195.773 424.164 195.702 423.947 195.676C423.729 195.649 423.508 195.667 423.298 195.729C423.087 195.79 422.891 195.894 422.723 196.034C422.554 196.174 422.415 196.347 422.315 196.542C422.215 196.738 422.156 196.951 422.142 197.17C422.127 197.389 422.157 197.608 422.231 197.815C422.304 198.022 422.418 198.211 422.568 198.372C422.717 198.532 422.897 198.661 423.097 198.75Z" fill="white"/>
438
+ <path d="M358.061 211.426C358.438 211.592 358.864 211.608 359.252 211.47C359.639 211.332 359.96 211.051 360.147 210.685C360.335 210.318 360.375 209.894 360.26 209.499C360.145 209.104 359.882 208.768 359.527 208.56C359.145 208.368 358.703 208.333 358.296 208.465C357.889 208.596 357.55 208.883 357.353 209.263C357.16 209.644 357.127 210.086 357.26 210.491C357.392 210.897 357.681 211.233 358.061 211.426Z" fill="white"/>
439
+ <path d="M305.734 136.179C306.115 136.368 306.556 136.399 306.96 136.266C307.365 136.133 307.701 135.847 307.897 135.469C308.003 135.279 308.07 135.07 308.093 134.854C308.116 134.638 308.095 134.42 308.032 134.212C307.969 134.004 307.864 133.812 307.724 133.646C307.584 133.479 307.413 133.343 307.219 133.245C307.025 133.147 306.814 133.089 306.597 133.075C306.38 133.061 306.163 133.091 305.958 133.163C305.753 133.235 305.565 133.348 305.404 133.494C305.244 133.641 305.115 133.818 305.025 134.016C304.836 134.398 304.804 134.838 304.937 135.243C305.07 135.648 305.356 135.984 305.734 136.179V136.179Z" fill="white"/>
440
+ <path d="M679.497 156.765C679.878 156.953 680.319 156.985 680.723 156.852C681.128 156.719 681.464 156.433 681.66 156.054C681.804 155.77 681.861 155.449 681.823 155.133C681.785 154.816 681.654 154.518 681.446 154.276C681.239 154.034 680.964 153.859 680.657 153.774C680.35 153.688 680.025 153.696 679.722 153.795C679.419 153.895 679.152 154.082 678.956 154.333C678.759 154.584 678.641 154.887 678.617 155.205C678.593 155.523 678.663 155.841 678.82 156.119C678.977 156.397 679.212 156.621 679.497 156.765V156.765Z" fill="white"/>
441
+ <path d="M796.97 227.683C797.255 227.827 797.575 227.884 797.892 227.846C798.208 227.807 798.506 227.676 798.748 227.468C798.99 227.26 799.165 226.986 799.251 226.678C799.337 226.371 799.33 226.046 799.231 225.743C799.132 225.44 798.945 225.173 798.694 224.977C798.443 224.78 798.139 224.663 797.822 224.639C797.504 224.615 797.186 224.686 796.908 224.843C796.631 224.999 796.406 225.235 796.262 225.52C796.073 225.902 796.041 226.342 796.174 226.747C796.306 227.151 796.592 227.488 796.97 227.683V227.683Z" fill="white"/>
442
+ <path d="M703.3 210.298C703.489 210.395 703.694 210.454 703.905 210.471C704.117 210.487 704.329 210.462 704.53 210.396C704.732 210.33 704.918 210.224 705.078 210.085C705.239 209.947 705.37 209.777 705.464 209.588C705.608 209.303 705.665 208.982 705.627 208.666C705.589 208.349 705.458 208.051 705.25 207.809C705.043 207.567 704.768 207.393 704.461 207.307C704.154 207.221 703.829 207.229 703.526 207.328C703.223 207.428 702.956 207.615 702.759 207.866C702.563 208.117 702.445 208.421 702.421 208.739C702.396 209.057 702.467 209.375 702.624 209.652C702.78 209.93 703.016 210.155 703.3 210.298V210.298Z" fill="white"/>
443
+ <path d="M609.731 172.459C610.109 172.631 610.54 172.65 610.932 172.512C611.325 172.375 611.649 172.09 611.837 171.719C612.025 171.348 612.062 170.918 611.941 170.521C611.819 170.123 611.549 169.787 611.186 169.585C610.996 169.479 610.787 169.413 610.572 169.39C610.356 169.367 610.137 169.387 609.93 169.451C609.722 169.515 609.529 169.619 609.363 169.759C609.197 169.899 609.06 170.071 608.962 170.265C608.864 170.459 608.806 170.67 608.792 170.887C608.778 171.104 608.807 171.321 608.879 171.526C608.951 171.731 609.063 171.919 609.21 172.08C609.356 172.24 609.533 172.369 609.731 172.459Z" fill="white"/>
444
+ <path d="M636.863 121.285C637.148 121.429 637.468 121.486 637.785 121.447C638.101 121.409 638.399 121.278 638.641 121.07C638.883 120.862 639.058 120.587 639.144 120.28C639.23 119.973 639.223 119.648 639.124 119.345C639.025 119.042 638.838 118.775 638.587 118.579C638.336 118.382 638.032 118.264 637.714 118.241C637.397 118.217 637.079 118.288 636.801 118.445C636.523 118.601 636.298 118.837 636.155 119.122C635.962 119.503 635.929 119.945 636.061 120.35C636.194 120.756 636.483 121.092 636.863 121.285V121.285Z" fill="white"/>
445
+ <path d="M658.084 85.4374C658.367 85.5842 658.688 85.6433 659.006 85.6072C659.323 85.5711 659.623 85.4415 659.867 85.2347C660.11 85.0279 660.287 84.7535 660.375 84.4461C660.462 84.1387 660.456 83.8122 660.358 83.5083C660.26 83.2044 660.073 82.9367 659.822 82.7392C659.571 82.5417 659.267 82.4233 658.949 82.3991C658.63 82.3749 658.312 82.4459 658.033 82.6032C657.755 82.7604 657.53 82.9969 657.386 83.2824C657.288 83.4693 657.228 83.6739 657.21 83.8842C657.192 84.0946 657.216 84.3064 657.281 84.5072C657.346 84.708 657.451 84.8937 657.589 85.0534C657.726 85.2132 657.895 85.3437 658.084 85.4374Z" fill="white"/>
446
+ <path d="M602.321 87.2781C602.883 87.5614 603.515 87.6719 604.14 87.5955C604.764 87.5192 605.352 87.2595 605.829 86.8493C606.306 86.4391 606.651 85.8968 606.82 85.2909C606.989 84.6849 606.975 84.0425 606.779 83.4449C606.584 82.8473 606.215 82.3212 605.721 81.9332C605.226 81.5451 604.627 81.3125 604 81.2647C603.373 81.2169 602.746 81.3561 602.198 81.6646C601.65 81.9731 601.205 82.4372 600.92 82.9982C600.541 83.7525 600.476 84.626 600.738 85.4278C601.001 86.2297 601.57 86.8948 602.321 87.2781V87.2781Z" fill="white"/>
447
+ <path d="M552.128 31.7438C552.411 31.8906 552.732 31.9496 553.05 31.9135C553.367 31.8774 553.667 31.7477 553.91 31.541C554.154 31.3342 554.331 31.0598 554.418 30.7524C554.506 30.445 554.5 30.1187 554.402 29.8148C554.303 29.5109 554.117 29.2431 553.866 29.0455C553.615 28.848 553.311 28.7296 552.992 28.7054C552.674 28.6812 552.355 28.7523 552.077 28.9096C551.799 29.0669 551.574 29.3031 551.43 29.5886C551.239 29.9676 551.205 30.4065 551.336 30.8099C551.467 31.2134 551.751 31.549 552.128 31.7438Z" fill="white"/>
448
+ <path d="M554.014 98.0835C554.39 98.2497 554.816 98.2656 555.204 98.1278C555.592 97.9899 555.912 97.7089 556.1 97.3423C556.287 96.9758 556.328 96.5513 556.212 96.1563C556.097 95.7612 555.835 95.4255 555.48 95.2178C555.291 95.1071 555.081 95.0363 554.863 95.0096C554.646 94.9829 554.425 95.001 554.214 95.0626C554.004 95.1243 553.808 95.2282 553.639 95.3681C553.47 95.508 553.331 95.6809 553.231 95.8762C553.132 96.0715 553.073 96.285 553.058 96.5039C553.044 96.7227 553.074 96.9422 553.147 97.1488C553.22 97.3555 553.335 97.545 553.484 97.7057C553.633 97.8665 553.813 97.9949 554.014 98.0835V98.0835Z" fill="white"/>
449
+ <path d="M595.002 135.823C595.383 136.015 595.825 136.048 596.23 135.915C596.636 135.782 596.972 135.493 597.165 135.112C597.263 134.924 597.322 134.718 597.338 134.507C597.355 134.296 597.33 134.083 597.264 133.882C597.198 133.681 597.093 133.494 596.954 133.334C596.816 133.174 596.647 133.043 596.457 132.949C596.078 132.777 595.648 132.758 595.255 132.895C594.863 133.033 594.539 133.318 594.351 133.689C594.163 134.06 594.126 134.49 594.247 134.887C594.369 135.285 594.639 135.62 595.002 135.823V135.823Z" fill="white"/>
450
+ <path d="M512.629 111.928C513.127 112.178 513.689 112.276 514.243 112.207C514.796 112.139 515.318 111.908 515.74 111.543C516.163 111.179 516.469 110.698 516.618 110.16C516.768 109.622 516.755 109.052 516.581 108.522C516.407 107.992 516.08 107.526 515.641 107.182C515.202 106.838 514.671 106.631 514.115 106.589C513.558 106.547 513.002 106.671 512.516 106.945C512.029 107.219 511.635 107.63 511.382 108.128C511.214 108.459 511.113 108.821 511.084 109.191C511.056 109.562 511.101 109.935 511.217 110.288C511.332 110.641 511.517 110.967 511.759 111.249C512.002 111.53 512.297 111.761 512.629 111.928Z" fill="white"/>
451
+ <path d="M454.429 82.502C454.713 82.6461 455.034 82.7026 455.35 82.6643C455.667 82.626 455.965 82.4947 456.207 82.2869C456.449 82.0792 456.624 81.8044 456.709 81.4973C456.795 81.1902 456.788 80.8645 456.689 80.5615C456.59 80.2586 456.403 79.992 456.152 79.7955C455.901 79.5989 455.598 79.4813 455.28 79.4575C454.962 79.4336 454.644 79.5046 454.366 79.6615C454.089 79.8183 453.864 80.054 453.72 80.3387C453.623 80.5271 453.564 80.7329 453.547 80.9441C453.53 81.1554 453.555 81.3678 453.621 81.5692C453.687 81.7705 453.793 81.9566 453.931 82.1168C454.07 82.277 454.239 82.4079 454.429 82.502V82.502Z" fill="white"/>
452
+ <path d="M412.657 97.0377C412.937 97.1831 413.265 97.2114 413.567 97.1165C413.868 97.0215 414.121 96.811 414.268 96.5309C414.34 96.39 414.383 96.2364 414.395 96.0788C414.408 95.9212 414.389 95.7626 414.34 95.6124C414.291 95.4621 414.213 95.3229 414.111 95.2028C414.008 95.0827 413.883 94.9841 413.742 94.9125C413.601 94.8408 413.448 94.7976 413.29 94.7854C413.133 94.7731 412.974 94.792 412.824 94.841C412.674 94.8899 412.534 94.9681 412.414 95.0708C412.294 95.1736 412.195 95.299 412.123 95.4399C411.984 95.723 411.962 96.0494 412.062 96.3485C412.162 96.6476 412.375 96.8953 412.657 97.0377V97.0377Z" fill="white"/>
453
+ <path d="M553.296 186.714C553.856 186.992 554.504 187.037 555.097 186.839C555.691 186.641 556.182 186.217 556.464 185.658C556.746 185.099 556.795 184.451 556.599 183.857C556.404 183.263 555.98 182.771 555.421 182.489C554.863 182.207 554.215 182.159 553.621 182.355C553.026 182.552 552.534 182.976 552.252 183.535C551.973 184.096 551.927 184.744 552.122 185.339C552.317 185.934 552.739 186.428 553.296 186.714V186.714Z" fill="white"/>
454
+ <path d="M480.492 119.713C480.774 119.853 481.092 119.907 481.404 119.867C481.716 119.827 482.01 119.696 482.248 119.49C482.486 119.283 482.658 119.011 482.742 118.708C482.826 118.404 482.819 118.083 482.721 117.783C482.623 117.484 482.439 117.221 482.191 117.026C481.944 116.831 481.645 116.714 481.331 116.689C481.017 116.664 480.703 116.733 480.427 116.886C480.152 117.039 479.928 117.27 479.784 117.55C479.686 117.738 479.628 117.944 479.611 118.155C479.594 118.367 479.619 118.579 479.685 118.78C479.751 118.982 479.856 119.168 479.995 119.328C480.134 119.488 480.303 119.619 480.492 119.713Z" fill="white"/>
455
+ <path d="M739.961 189.219C740.246 189.363 740.566 189.419 740.883 189.381C741.199 189.343 741.498 189.211 741.74 189.004C741.982 188.796 742.157 188.521 742.242 188.214C742.328 187.907 742.321 187.581 742.222 187.278C742.123 186.975 741.936 186.709 741.685 186.512C741.434 186.315 741.131 186.198 740.813 186.174C740.495 186.15 740.177 186.221 739.899 186.378C739.622 186.535 739.397 186.771 739.253 187.055C739.06 187.436 739.027 187.878 739.16 188.284C739.292 188.69 739.581 189.026 739.961 189.219V189.219Z" fill="white"/>
456
+ <path d="M128.878 315.067C129.185 315.219 129.532 315.271 129.871 315.215C130.293 315.145 130.67 314.911 130.919 314.563C131.168 314.215 131.269 313.783 131.2 313.361C131.131 312.939 130.896 312.562 130.549 312.313C130.202 312.064 129.769 311.963 129.348 312.033C129 312.077 128.675 312.233 128.422 312.476C128.17 312.72 128.003 313.038 127.946 313.385C127.89 313.731 127.946 314.086 128.108 314.397C128.27 314.708 128.528 314.958 128.844 315.11L128.878 315.067Z" fill="white"/>
457
+ <path d="M212.116 306.848C212.42 307.003 212.764 307.059 213.101 307.007C213.521 306.936 213.896 306.7 214.143 306.353C214.39 306.006 214.49 305.575 214.42 305.155C214.381 304.908 214.284 304.674 214.136 304.472C213.989 304.27 213.796 304.106 213.574 303.993C213.272 303.832 212.926 303.776 212.589 303.834C212.378 303.867 212.177 303.942 211.997 304.055C211.816 304.168 211.66 304.315 211.538 304.49C211.402 304.678 211.309 304.894 211.265 305.122C211.221 305.35 211.228 305.585 211.284 305.81C211.34 306.035 211.444 306.246 211.59 306.426C211.736 306.607 211.919 306.754 212.127 306.856L212.116 306.848Z" fill="white"/>
458
+ <path d="M209.448 381.699C209.755 381.851 210.103 381.903 210.441 381.848C210.649 381.815 210.848 381.741 211.027 381.63C211.206 381.519 211.361 381.374 211.484 381.203C211.732 380.852 211.831 380.418 211.761 379.995C211.722 379.748 211.625 379.513 211.478 379.311C211.331 379.109 211.137 378.946 210.914 378.834C210.606 378.681 210.259 378.629 209.92 378.685C209.712 378.719 209.512 378.794 209.332 378.906C209.152 379.017 208.997 379.164 208.874 379.336C208.751 379.508 208.664 379.703 208.617 379.91C208.57 380.116 208.565 380.329 208.601 380.538C208.64 380.785 208.737 381.019 208.884 381.221C209.031 381.423 209.225 381.587 209.448 381.699Z" fill="white"/>
459
+ <path d="M166.246 375.434C166.48 375.558 166.748 375.604 167.011 375.564C167.339 375.498 167.632 375.314 167.835 375.048C167.936 374.899 168.005 374.73 168.037 374.552C168.069 374.375 168.063 374.193 168.02 374.018C167.976 373.843 167.896 373.679 167.785 373.537C167.674 373.395 167.534 373.278 167.375 373.194C167.139 373.079 166.872 373.04 166.613 373.083C166.448 373.109 166.29 373.168 166.148 373.257C166.007 373.346 165.884 373.462 165.789 373.599C165.691 373.73 165.621 373.88 165.583 374.039C165.546 374.198 165.542 374.363 165.571 374.524C165.601 374.719 165.678 374.904 165.796 375.063C165.913 375.221 166.068 375.349 166.246 375.434V375.434Z" fill="white"/>
460
+ <path d="M84.7586 356.43C85.0601 356.591 85.4067 356.647 85.7437 356.589C86.166 356.516 86.543 356.281 86.7941 355.933C87.0423 355.583 87.1419 355.149 87.0712 354.726C87.0267 354.481 86.9275 354.249 86.7808 354.048C86.6342 353.847 86.444 353.681 86.2244 353.564C85.916 353.415 85.5697 353.364 85.2311 353.416C84.8083 353.487 84.4307 353.723 84.1806 354.071C84.0472 354.261 83.956 354.476 83.9133 354.704C83.8707 354.932 83.8776 355.165 83.9335 355.39C83.9894 355.615 84.093 355.825 84.2373 356.005C84.3815 356.186 84.5631 356.334 84.7696 356.438L84.7586 356.43Z" fill="white"/>
461
+ <path d="M74.905 235.842C75.2461 236.04 75.6496 236.103 76.0349 236.017C76.4203 235.931 76.7593 235.703 76.9844 235.379C77.1116 235.209 77.2027 235.015 77.2523 234.809C77.3018 234.602 77.3087 234.388 77.2725 234.179C77.2451 233.97 77.1764 233.767 77.0703 233.585C76.9643 233.402 76.823 233.242 76.6547 233.114C76.4864 232.987 76.2944 232.894 76.0898 232.841C75.8853 232.788 75.6721 232.776 75.4629 232.806C75.2526 232.839 75.0511 232.913 74.8705 233.026C74.6899 233.139 74.5341 233.287 74.4125 233.462C74.2767 233.65 74.1836 233.866 74.1397 234.094C74.0958 234.322 74.1021 234.557 74.1582 234.782C74.2143 235.008 74.3187 235.218 74.4643 235.399C74.61 235.579 74.7933 235.726 75.0015 235.829L74.905 235.842Z" fill="white"/>
462
+ <path d="M276.09 340.897C276.389 341.052 276.731 341.105 277.064 341.048C277.274 341.015 277.475 340.939 277.656 340.827C277.836 340.714 277.992 340.566 278.114 340.392C278.239 340.221 278.328 340.027 278.378 339.821C278.427 339.615 278.435 339.401 278.402 339.192C278.375 338.983 278.306 338.781 278.2 338.598C278.094 338.415 277.953 338.255 277.784 338.128C277.616 338 277.424 337.907 277.22 337.854C277.015 337.801 276.802 337.789 276.593 337.819C276.238 337.853 275.905 338.004 275.644 338.247C275.384 338.491 275.212 338.813 275.154 339.165C275.097 339.516 275.157 339.877 275.327 340.191C275.496 340.504 275.764 340.752 276.09 340.897V340.897Z" fill="white"/>
463
+ <path d="M370.486 357.483C370.72 357.604 370.988 357.643 371.248 357.594C371.411 357.569 371.567 357.511 371.707 357.425C371.847 357.338 371.968 357.224 372.063 357.089C372.171 356.943 372.245 356.775 372.28 356.598C372.316 356.42 372.312 356.237 372.269 356.061C372.226 355.885 372.146 355.721 372.032 355.58C371.919 355.438 371.777 355.324 371.614 355.244C371.377 355.119 371.105 355.077 370.841 355.124C370.678 355.146 370.52 355.2 370.377 355.283C370.235 355.367 370.11 355.477 370.01 355.609C369.91 355.74 369.837 355.89 369.796 356.05C369.754 356.21 369.744 356.376 369.767 356.54C369.8 356.744 369.882 356.937 370.008 357.102C370.133 357.266 370.297 357.397 370.486 357.483V357.483Z" fill="white"/>
464
+ <path d="M314.568 317.806C314.909 318.004 315.313 318.066 315.698 317.981C316.084 317.895 316.423 317.667 316.648 317.343C316.775 317.175 316.866 316.983 316.914 316.778C316.962 316.573 316.967 316.361 316.927 316.154C316.888 315.907 316.792 315.672 316.647 315.469C316.501 315.265 316.31 315.098 316.089 314.982C315.782 314.829 315.434 314.777 315.096 314.833C314.741 314.867 314.408 315.017 314.147 315.261C313.887 315.504 313.715 315.827 313.657 316.179C313.6 316.53 313.66 316.891 313.83 317.204C313.999 317.518 314.267 317.766 314.593 317.91L314.568 317.806Z" fill="white"/>
465
+ <path d="M268.449 363.354C269.025 363.649 269.69 363.724 270.318 363.563C270.946 363.402 271.493 363.018 271.858 362.482C272.264 361.9 272.431 361.183 272.322 360.482C272.256 360.067 272.092 359.674 271.844 359.336C271.596 358.997 271.271 358.723 270.896 358.535C270.391 358.269 269.811 358.182 269.25 358.289C268.904 358.341 268.572 358.463 268.274 358.648C267.977 358.833 267.72 359.076 267.52 359.363C267.291 359.676 267.134 360.034 267.059 360.414C266.984 360.794 266.992 361.185 267.084 361.561C267.175 361.937 267.348 362.288 267.589 362.59C267.831 362.892 268.136 363.138 268.482 363.31L268.449 363.354Z" fill="white"/>
466
+ <path d="M230.932 340.149C231.272 340.327 231.666 340.374 232.039 340.281C232.413 340.188 232.739 339.961 232.956 339.644C233.091 339.456 233.183 339.242 233.227 339.015C233.271 338.789 233.265 338.555 233.21 338.331C233.155 338.107 233.053 337.897 232.909 337.717C232.765 337.536 232.584 337.389 232.378 337.285C232.077 337.125 231.73 337.069 231.393 337.126C231.038 337.16 230.705 337.31 230.445 337.554C230.184 337.797 230.012 338.12 229.955 338.472C229.897 338.823 229.958 339.184 230.127 339.497C230.296 339.811 230.565 340.059 230.89 340.203L230.932 340.149Z" fill="white"/>
467
+ <path d="M181.109 304.786C181.683 305.085 182.339 305.188 182.977 305.079C183.61 304.969 184.192 304.664 184.643 304.207C185.093 303.749 185.389 303.162 185.489 302.528C185.589 301.894 185.487 301.244 185.199 300.671C184.911 300.098 184.45 299.63 183.882 299.332C183.378 299.077 182.812 298.968 182.249 299.015C181.686 299.063 181.147 299.266 180.692 299.601C180.236 299.937 179.883 300.392 179.671 300.916C179.459 301.441 179.396 302.013 179.489 302.571C179.566 303.042 179.752 303.488 180.034 303.873C180.315 304.257 180.684 304.57 181.109 304.786Z" fill="white"/>
468
+ <path d="M161.077 264.683C161.376 264.839 161.718 264.892 162.051 264.834C162.261 264.801 162.462 264.726 162.643 264.613C162.823 264.501 162.979 264.353 163.101 264.178C163.229 264.011 163.319 263.818 163.367 263.614C163.416 263.409 163.42 263.196 163.381 262.99C163.342 262.743 163.246 262.508 163.1 262.305C162.955 262.101 162.764 261.934 162.543 261.817C162.235 261.665 161.888 261.613 161.549 261.669C161.195 261.703 160.861 261.853 160.601 262.097C160.341 262.34 160.168 262.663 160.111 263.015C160.053 263.366 160.114 263.727 160.283 264.04C160.452 264.354 160.721 264.602 161.046 264.746L161.077 264.683Z" fill="white"/>
469
+ <path d="M202.207 192.913C202.507 193.069 202.849 193.122 203.182 193.064C203.536 193.03 203.87 192.88 204.13 192.637C204.39 192.393 204.563 192.07 204.62 191.719C204.677 191.367 204.617 191.007 204.448 190.693C204.278 190.38 204.01 190.131 203.685 189.987C203.385 189.831 203.043 189.778 202.711 189.836C202.377 189.894 202.071 190.055 201.834 190.296C201.597 190.538 201.443 190.848 201.392 191.182C201.341 191.516 201.396 191.858 201.55 192.159C201.704 192.459 201.948 192.704 202.249 192.858L202.207 192.913Z" fill="white"/>
470
+ <path d="M308.297 201.719C308.604 201.871 308.951 201.923 309.29 201.867C309.645 201.834 309.978 201.683 310.238 201.44C310.499 201.196 310.671 200.873 310.728 200.522C310.786 200.17 310.725 199.809 310.556 199.496C310.387 199.183 310.118 198.935 309.793 198.79C309.49 198.635 309.145 198.579 308.808 198.631C308.388 198.71 308.013 198.944 307.758 199.286C307.635 199.458 307.548 199.652 307.502 199.858C307.455 200.063 307.451 200.276 307.489 200.483C307.515 200.739 307.602 200.984 307.743 201.199C307.883 201.414 308.073 201.592 308.297 201.719V201.719Z" fill="white"/>
471
+ <path d="M397.023 134C397.326 134.155 397.671 134.211 398.008 134.16C398.428 134.088 398.803 133.853 399.05 133.505C399.297 133.158 399.397 132.727 399.327 132.307C399.289 132.06 399.192 131.825 399.045 131.623C398.897 131.421 398.704 131.258 398.48 131.146C398.179 130.985 397.832 130.929 397.495 130.986C397.285 131.019 397.084 131.094 396.904 131.207C396.723 131.32 396.567 131.468 396.445 131.642C396.309 131.83 396.216 132.046 396.172 132.274C396.128 132.502 396.135 132.737 396.191 132.962C396.247 133.188 396.351 133.398 396.497 133.579C396.642 133.759 396.826 133.906 397.034 134.009L397.023 134Z" fill="white"/>
472
+ <path d="M373.016 84.5147C373.317 84.6756 373.664 84.7317 374.001 84.6741C374.211 84.6409 374.412 84.5658 374.593 84.4531C374.773 84.3404 374.929 84.1925 375.051 84.0183C375.187 83.8298 375.28 83.614 375.324 83.386C375.368 83.158 375.362 82.9232 375.306 82.6979C375.25 82.4726 375.145 82.2624 375 82.0817C374.854 81.901 374.671 81.7542 374.462 81.6516C374.163 81.496 373.821 81.4431 373.488 81.5007C373.279 81.5283 373.077 81.5971 372.894 81.7034C372.711 81.8096 372.551 81.951 372.423 82.1195C372.296 82.2879 372.202 82.48 372.149 82.6847C372.096 82.8893 372.084 83.1024 372.114 83.3117C372.152 83.5717 372.254 83.8182 372.412 84.0283C372.569 84.2385 372.777 84.4058 373.016 84.5147V84.5147Z" fill="white"/>
473
+ <path d="M504.667 65.4859C504.967 65.6415 505.309 65.6946 505.641 65.637C506.065 65.5764 506.448 65.351 506.707 65.0099C506.966 64.6687 507.079 64.2394 507.024 63.8149C506.976 63.571 506.876 63.3405 506.73 63.1398C506.583 62.9391 506.395 62.7731 506.177 62.6535C505.872 62.5072 505.529 62.4584 505.194 62.5136C504.986 62.5449 504.786 62.6183 504.607 62.7291C504.428 62.8399 504.273 62.9859 504.152 63.1582C504.028 63.3295 503.938 63.5236 503.889 63.7295C503.84 63.9353 503.831 64.1488 503.864 64.3578C503.905 64.5941 503.998 64.8183 504.137 65.0136C504.276 65.2089 504.457 65.3703 504.667 65.4859V65.4859Z" fill="white"/>
474
+ <path d="M412.507 323.853C412.806 324.008 413.148 324.061 413.481 324.003C413.691 323.97 413.892 323.895 414.073 323.782C414.253 323.67 414.409 323.522 414.531 323.348C414.777 322.999 414.88 322.57 414.819 322.148C414.772 321.904 414.672 321.674 414.525 321.473C414.379 321.272 414.19 321.106 413.973 320.987C413.663 320.841 413.318 320.79 412.979 320.838C412.622 320.871 412.286 321.022 412.024 321.266C411.763 321.511 411.59 321.837 411.533 322.191C411.477 322.545 411.54 322.907 411.713 323.221C411.885 323.535 412.158 323.783 412.487 323.924L412.507 323.853Z" fill="white"/>
475
+ <path d="M358.442 333.365C358.873 333.592 359.368 333.669 359.848 333.584C360.33 333.509 360.775 333.282 361.12 332.937C361.464 332.592 361.691 332.147 361.766 331.665C361.841 331.183 361.761 330.69 361.538 330.257C361.315 329.824 360.96 329.473 360.524 329.254C360.082 329.038 359.585 328.962 359.098 329.038C358.497 329.139 357.96 329.475 357.606 329.971C357.252 330.468 357.109 331.085 357.21 331.686C357.266 332.044 357.408 332.383 357.622 332.675C357.836 332.967 358.117 333.204 358.442 333.365V333.365Z" fill="white"/>
476
+ <path d="M191.223 269.774C191.45 269.885 191.705 269.921 191.955 269.88C192.108 269.859 192.256 269.809 192.391 269.731C192.525 269.653 192.642 269.549 192.736 269.426C192.83 269.302 192.898 269.161 192.937 269.011C192.976 268.861 192.984 268.705 192.962 268.551C192.94 268.366 192.871 268.19 192.763 268.038C192.655 267.887 192.51 267.764 192.342 267.683C192.116 267.57 191.859 267.533 191.61 267.577C191.457 267.599 191.309 267.652 191.176 267.733C191.044 267.814 190.929 267.921 190.839 268.047C190.746 268.175 190.679 268.319 190.643 268.473C190.607 268.627 190.601 268.786 190.627 268.942C190.657 269.116 190.726 269.282 190.829 269.426C190.932 269.57 191.067 269.689 191.223 269.774Z" fill="white"/>
477
+ <path d="M54.5731 282.021C54.7671 282.124 54.9897 282.159 55.2059 282.121C55.4778 282.074 55.7213 281.925 55.886 281.703C56.0423 281.479 56.1033 281.202 56.0558 280.933C56.041 280.797 55.9986 280.666 55.9314 280.547C55.8641 280.428 55.7733 280.324 55.6645 280.241C55.5557 280.159 55.4312 280.099 55.2986 280.067C55.166 280.034 55.0281 280.028 54.8933 280.051C54.6222 280.088 54.3769 280.232 54.2114 280.45C54.0459 280.668 53.9736 280.943 54.0105 281.214C54.0245 281.387 54.084 281.552 54.1828 281.694C54.2816 281.836 54.4163 281.949 54.5731 282.021V282.021Z" fill="white"/>
478
+ <path d="M139.677 242.026C140.181 242.285 140.755 242.375 141.315 242.282C142.007 242.164 142.624 241.777 143.032 241.205C143.44 240.633 143.606 239.923 143.492 239.23C143.428 238.817 143.266 238.426 143.02 238.089C142.774 237.751 142.451 237.478 142.077 237.292C141.569 237.047 140.999 236.964 140.443 237.054C139.892 237.145 139.384 237.408 138.991 237.804C138.598 238.201 138.341 238.712 138.256 239.264C138.171 239.816 138.263 240.38 138.518 240.876C138.774 241.372 139.179 241.774 139.677 242.026V242.026Z" fill="white"/>
479
+ <path d="M238.022 216.178C238.324 216.336 238.67 216.392 239.007 216.337C239.429 216.264 239.805 216.027 240.054 215.678C240.302 215.329 240.403 214.897 240.334 214.474C240.291 214.229 240.191 213.997 240.043 213.797C239.894 213.597 239.701 213.435 239.479 213.324C239.177 213.163 238.831 213.107 238.494 213.164C238.074 213.236 237.699 213.471 237.452 213.818C237.205 214.166 237.105 214.596 237.175 215.017C237.213 215.264 237.31 215.498 237.457 215.7C237.605 215.902 237.798 216.066 238.022 216.178Z" fill="white"/>
480
+ <path d="M274.744 173.063C275.254 173.312 275.829 173.398 276.39 173.308C276.944 173.212 277.454 172.944 277.847 172.542C278.241 172.14 278.499 171.625 278.585 171.07C278.671 170.514 278.58 169.945 278.325 169.444C278.071 168.943 277.665 168.535 277.166 168.276C276.656 168.027 276.082 167.941 275.521 168.031C275.173 168.086 274.84 168.21 274.541 168.396C274.242 168.582 273.984 168.827 273.782 169.116C273.554 169.428 273.397 169.787 273.321 170.167C273.246 170.546 273.255 170.938 273.346 171.314C273.438 171.689 273.61 172.041 273.852 172.343C274.093 172.645 274.398 172.891 274.744 173.063V173.063Z" fill="white"/>
481
+ <path d="M373.076 182.938C373.596 183.198 374.192 183.266 374.758 183.129C375.324 182.991 375.824 182.658 376.168 182.188C376.542 181.658 376.693 181.001 376.586 180.361C376.526 179.946 376.359 179.553 376.102 179.221C375.844 178.889 375.506 178.63 375.119 178.467C374.732 178.305 374.31 178.245 373.892 178.294C373.475 178.343 373.078 178.499 372.739 178.747C372.4 178.994 372.13 179.325 371.956 179.708C371.782 180.09 371.71 180.511 371.746 180.929C371.783 181.347 371.926 181.749 372.164 182.095C372.401 182.442 372.724 182.72 373.101 182.905L373.076 182.938Z" fill="white"/>
482
+ <path d="M123.059 279.783C123.367 279.934 123.714 279.986 124.053 279.931C124.474 279.872 124.856 279.648 125.113 279.309C125.371 278.97 125.483 278.542 125.427 278.12C125.399 277.911 125.331 277.709 125.225 277.526C125.119 277.343 124.977 277.183 124.809 277.056C124.641 276.928 124.449 276.835 124.244 276.782C124.04 276.729 123.826 276.717 123.617 276.747C123.409 276.777 123.208 276.85 123.029 276.961C122.85 277.072 122.695 277.219 122.575 277.392C122.327 277.742 122.227 278.177 122.298 278.6C122.324 278.843 122.407 279.076 122.539 279.282C122.671 279.487 122.849 279.659 123.059 279.783V279.783Z" fill="white"/>
483
+ <g opacity="0.3">
484
+ <path opacity="0.3" d="M28.0775 245.523L27.3095 310.056L-7.17814 308.205L-6.92588 308.397L27.0251 327.239L25.9609 415.984L25.7195 416.303L26.021 416.065L137.339 453.829L137.233 454.129L137.466 453.822L202.809 425.573L197.306 467.99L197.381 467.891L264.321 435.077L283.332 448.74L319.545 419.437L384.065 419.17L426.044 455.673L489.881 413.466L489.608 413.484L413.134 418.915L353.141 392.126L232.996 412.434L207.643 389.548L211.041 363.365L211.099 363.288L211.044 363.246L186.365 309.067L200.911 248.901L259.271 239.739L284.186 215.284L359.863 228.463L401.979 202.152L428.235 248.672L520.984 239.487L521.042 239.411L521.13 239.477L521.064 239.427L627.558 153.435L705.666 238.797L751.413 232.207L802.067 285.426L801.991 285.161L812.375 240.706L912.527 292.482L966.612 267.797L1041.67 329.385L1041.54 329.09L993.604 225.047L943.151 219.938L927.237 187.801L926.927 126.169L971.407 79.5481L971.308 79.4732L904.539 67.5361L890.67 44.1811L890.72 44.1151L890.662 44.1921L801.049 48.4234L801.116 48.3355L801.058 48.4124L779.854 -45.8314L703.551 -49.5752L703.66 -49.492L687.886 -14.1935L670.698 -31.351L670.623 -31.2523L653.209 63.2134L535.614 10.309L535.61 9.92614L535.487 10.3166L466.015 72.7038L493.146 145.174L426.39 186.878L365.043 136.182L364.926 135.972L361.902 191.339L317.437 182.437L284.439 214.836L212.403 201.982L212.327 201.924L212.268 202.001L176.839 252.272L119.027 261.348L118.687 261.09L118.919 261.422L89.9474 313.272L28.2765 245.397L28.1457 245.16L28.0775 245.523ZM361.808 191.44L359.803 228.245L317.606 182.669L361.808 191.44ZM364.962 136.449L400.231 198.922L361.968 191.32L364.962 136.449ZM426.169 186.918L405.342 199.929L400.423 198.964L365.165 136.499L426.169 186.918ZM405.151 200.044L402.11 201.957L400.524 199.127L405.151 200.044ZM912.659 248.169L966.488 267.755L912.599 292.363L912.659 248.169ZM912.668 248.02L916.015 234.18L966.123 267.461L912.668 248.02ZM504.775 183.779L493.324 145.326L520.289 156.135L520.494 175.816L504.775 183.779ZM520.507 175.982L521.167 238.882L504.794 183.914L520.507 175.982ZM770.62 173.777L788.197 105.516L830.92 158.824L770.62 173.777ZM788.255 105.439L788.365 105.021L865.431 111.609L831.044 158.866L788.255 105.439ZM800.819 48.6812L788.194 104.563L766.4 76.5086L800.819 48.6812ZM766.286 76.6127L788.141 104.747L747.099 92.1305L766.286 76.6127ZM746.923 92.0662L691.773 75.1094L724.081 22.2795L766.12 76.3997L746.923 92.0662ZM788.019 104.862L718.309 115.409L746.991 92.2043L788.019 104.862ZM718.055 115.424L683.897 87.9501L691.684 75.2494L746.782 92.1839L718.055 115.424ZM683.776 87.8585L653.524 63.5043L691.55 75.1991L683.776 87.8585ZM683.693 87.9683L659.215 127.836L653.257 63.4919L683.693 87.9683ZM659.08 127.923L613.064 100.135L653.053 63.5101L659.08 127.923ZM653.261 63.2357L723.83 22.383L691.531 74.9952L653.261 63.2357ZM724.254 22.3244L800.689 48.4435L766.208 76.3285L724.254 22.3244ZM800.903 48.5713L831.804 78.6755L788.287 104.737L788.21 104.679L800.903 48.5713ZM831.927 78.7863L865.344 111.336L788.507 104.766L831.927 78.7863ZM832.01 78.6766L862.818 60.2327L865.417 111.218L832.01 78.6766ZM862.962 60.203L883.134 63.8168L865.567 111.02L862.962 60.203ZM865.456 111.576L874.533 156.824L831.136 158.746L865.456 111.576ZM874.563 156.967L877.756 172.846L831.421 158.893L874.563 156.967ZM877.789 173.008L886.007 213.99L831.338 159.003L877.789 173.008ZM770.395 173.572L718.082 115.479L787.966 104.909L787.907 105.192L788.005 105.267L770.395 173.572ZM717.766 115.395L659.201 127.877L683.695 87.9876L717.766 115.395ZM658.838 127.947L612.04 135.989L598.909 112.916L612.833 100.167L658.838 127.947ZM598.83 112.77L580.571 80.67L612.704 100.086L598.83 112.77ZM611.9 135.969L586.106 124.734L598.861 113.07L611.9 135.969ZM585.927 124.65L539.607 104.483L539.015 91.0282L580.351 80.5725L598.749 112.899L585.927 124.65ZM493.224 145.094L519.546 96.1453L520.2 155.911L493.224 145.094ZM519.701 96.35L542.059 164.68L520.345 155.97L519.701 96.35ZM539.483 104.441L519.878 95.9129L538.888 91.1048L539.483 104.441ZM585.838 124.791L542.266 164.681L539.633 104.676L585.838 124.791ZM542.087 164.234L519.756 95.9591L539.469 104.551L542.087 164.234ZM541.995 164.787L520.58 175.726L520.363 156.174L541.995 164.787ZM504.555 183.75L454.001 209.384L493.14 145.273L504.555 183.75ZM493.44 144.376L535.347 10.6602L538.916 90.9533L519.677 95.8126L519.557 95.7211L519.655 95.796L493.44 144.376ZM535.483 10.504L580.27 80.4067L539.019 90.841L535.483 10.504ZM535.575 10.3831L652.936 63.2313L612.834 99.9604L580.424 80.3855L535.575 10.3831ZM653.224 63.0344L687.667 -13.9964L723.927 22.163L653.224 63.0344ZM724.181 22.1478L746.962 -5.75909L800.574 48.2528L724.181 22.1478ZM801.085 48.5364L862.711 60.1687L831.939 78.5881L801.085 48.5364ZM863.155 60.1077L890.449 44.3589L883.247 63.7126L863.155 60.1077ZM890.514 44.5467L891.963 65.2756L883.368 63.7355L890.514 44.5467ZM891.954 65.4244L894.937 108.227L865.631 111.346L883.318 63.87L891.954 65.4244ZM894.947 108.373L898.222 155.825L874.687 156.871L865.597 111.527L894.947 108.373ZM895.093 108.363L926.569 105.005L898.447 155.597L895.093 108.363ZM926.559 105.222L926.666 126.057L898.676 155.409L926.559 105.222ZM893.702 177.68L877.935 172.929L874.744 157.001L898.23 155.952L893.702 177.68ZM893.673 177.832L886.149 213.872L877.975 173.081L893.673 177.832ZM915.894 234.089L912.553 247.898L886.552 214.593L915.894 234.089ZM886.493 214.375L919.853 217.757L915.977 233.979L886.493 214.375ZM912.413 247.878L832.669 221.202L886.253 214.349L912.413 247.878ZM832.339 221.09L817.996 216.33L831.12 159.062L886.039 214.222L832.339 221.09ZM817.886 216.247L797.904 209.56L830.907 159.229L817.886 216.247ZM831.989 221.119L816.443 223.16L818.022 216.523L831.989 221.119ZM816.345 223.085L786.48 227.008L797.875 209.711L817.908 216.401L816.345 223.085ZM816.308 223.247L812.394 240.408L786.614 227.058L816.308 223.247ZM779.468 203.476L797.7 209.578L786.354 226.808L779.468 203.476ZM786.233 226.855L699.633 176.714L779.328 203.387L786.233 226.855ZM779.414 203.296L770.708 173.775L830.969 158.965L797.799 209.515L779.414 203.296ZM770.294 173.478L659.374 128.06L717.966 115.564L770.294 173.478ZM658.911 128.055L627.833 153.073L612.225 136.042L658.911 128.055ZM611.913 136.065L542.611 164.545L586 124.827L611.913 136.065ZM521.324 238.812L520.64 175.806L542.132 164.925L521.324 238.812ZM521.132 239.202L453.997 209.572L504.634 183.966L521.132 239.202ZM426.29 187.01L453.505 209.492L405.534 199.971L426.29 187.01ZM426.382 186.889L492.875 145.349L453.708 209.474L426.382 186.889ZM466.016 72.6349L535.224 10.4806L493.096 144.876L466.016 72.6349ZM687.566 -14.1595L653.248 62.6379L670.545 -31.1728L687.566 -14.1595ZM703.531 -49.5036L746.828 -5.87826L724.038 22.0396L687.734 -14.153L703.531 -49.5036ZM703.683 -49.5443L779.46 -45.836L746.93 -5.99078L703.683 -49.5443ZM800.646 48.1348L746.99 -5.91056L779.529 -45.7667L800.646 48.1348ZM801.432 48.4197L890.194 44.2171L862.836 60.0039L801.432 48.4197ZM904.247 67.419L892.068 65.2513L890.586 44.4285L904.247 67.419ZM926.454 104.814L895.026 108.156L892.048 65.3917L904.351 67.6014L926.454 104.814ZM904.552 67.6326L970.936 79.5539L926.685 104.782L904.552 67.6326ZM926.829 125.956L926.72 105.033L970.749 79.9139L926.829 125.956ZM927.036 187.77L893.853 177.777L898.409 155.966L926.684 126.33L927.036 187.77ZM919.904 217.553L886.315 214.154L893.891 177.841L927.085 187.842L919.904 217.553ZM942.978 219.893L920.002 217.628L927.147 188.079L942.978 219.893ZM966.53 267.562L916.095 234.051L920.026 217.802L943.059 220.128L966.53 267.562ZM966.695 267.687L943.196 220.197L993.44 225.286L966.695 267.687ZM1041.35 329.017L967.07 268.058L967.213 268.166L966.774 267.834L993.544 225.399L1041.35 329.017ZM812.467 240.585L816.406 223.322L832.296 221.283L912.516 248.129L912.461 292.363L812.467 240.585ZM802.194 284.848L786.418 227.272L812.282 240.67L802.194 284.848ZM751.879 232.162L786.297 227.249L802.086 284.922L751.879 232.162ZM751.736 232.054L699.257 176.913L786.061 227.104L751.736 232.054ZM706 238.584L659.274 128.192L770.462 173.848L779.176 203.358L698.585 176.386L698.827 176.569L751.549 232.05L706 238.584ZM627.883 153.371L659.07 128.21L705.682 238.342L627.883 153.371ZM627.655 153.353L521.311 239.216L542.228 164.981L542.283 165.022L542.228 164.981L612.067 136.182L627.655 153.353ZM402.186 202.084L405.407 200.117L453.726 209.746L520.891 239.382L428.368 248.565L402.186 202.084ZM401.983 202.033L359.955 228.273L361.959 191.468L400.323 199.096L401.983 202.033ZM284.513 214.944L317.372 182.682L359.665 228.313L284.513 214.944ZM67.5407 349.522L93.2732 363.754L26.445 415.642L67.5407 349.522ZM137.78 453.385L158.972 386.622L184.761 395.587L137.78 453.385ZM159.012 386.479L169.122 354.614L197.299 380.109L184.806 395.483L159.012 386.479ZM89.8098 313.703L93.3003 363.377L77.1155 334.078L89.8098 313.703ZM169.042 354.242L157.298 326.151L186.28 309.089L169.042 354.242ZM157.241 326.021L150.816 310.666L186.129 308.992L157.241 326.021ZM157.157 326.131L93.478 363.598L89.976 313.553L150.681 310.685L157.157 326.131ZM118.981 261.659L145.145 297.301L150.685 310.497L90.0874 313.361L118.981 261.659ZM119.267 261.875L153.267 285.753L145.176 297.237L119.267 261.875ZM153.388 285.845L186.075 308.812L145.318 297.346L153.388 285.845ZM186.025 308.878L150.809 310.539L145.332 297.442L186.025 308.878ZM186.492 309.128L211.07 363.076L169.236 354.441L186.492 309.128ZM211.094 363.249L197.49 379.994L169.378 354.618L211.094 363.249ZM158.929 386.451L93.5986 363.689L157.193 326.244L168.991 354.445L158.929 386.451ZM67.7038 349.421L77.1252 334.293L93.2881 363.575L67.7038 349.421ZM67.5832 349.329L27.3372 327.078L27.5398 310.23L64.9871 312.234L77.0602 334.106L67.5832 349.329ZM65.1551 312.24L89.8492 313.56L77.1492 333.966L65.1551 312.24ZM65.0345 312.149L28.5833 246.132L89.7917 313.5L65.0345 312.149ZM176.705 252.585L153.367 285.622L119.164 261.555L176.705 252.585ZM201.054 248.576L176.999 252.289L212.133 202.452L201.054 248.576ZM259.53 239.33L212.672 202.221L284.292 215.053L259.53 239.33ZM201.25 248.5L212.446 202.222L259.37 239.382L201.25 248.5ZM186.579 308.831L153.642 285.692L177.071 252.535L201.138 248.761L186.579 308.831ZM207.881 389.28L197.71 380.092L211.238 363.446L207.881 389.28ZM206.115 402.813L185.138 395.545L197.591 380.226L207.85 389.48L206.115 402.813ZM207.981 389.58L233.008 412.167L206.26 402.872L207.981 389.58ZM232.792 412.383L233.051 412.406L203.356 425.261L206.251 403.02L232.889 412.301L232.792 412.383ZM426.536 455.389L413.71 418.954L489.814 413.553L426.536 455.389ZM384.743 419.096L413.544 418.967L426.141 455.158L384.743 419.096ZM384.568 418.963L354.034 392.337L413.275 418.797L384.568 418.963ZM320.185 419.231L353.583 392.203L384.314 418.978L320.185 419.231ZM319.94 419.235L296.669 419.341L233.985 412.406L353.338 392.276L319.94 419.235ZM319.798 419.422L283.975 448.416L296.704 419.523L319.798 419.422ZM264.977 435.056L296.489 419.602L283.738 448.547L264.977 435.056ZM264.834 434.948L233.7 412.553L296.385 419.488L264.834 434.948ZM264.688 435.027L197.835 467.613L233.227 412.471L264.688 435.027ZM203.421 425.518L233.237 412.617L197.964 467.555L203.421 425.518ZM203.289 425.418L138.081 453.648L185.146 395.741L206.188 403.058L203.289 425.418ZM137.847 453.592L93.8561 363.919L159.099 386.614L137.847 453.592ZM137.764 453.702L26.5666 416.029L93.707 363.979L137.764 453.702ZM27.2759 327.204L67.4477 349.417L26.2165 415.625L27.2759 327.204ZM27.3253 310.171L27.1232 326.95L-6.50975 308.349L27.3253 310.171ZM28.2412 245.786L64.8313 312.029L27.4555 310.045L28.2412 245.786Z" fill="white"/>
485
+ <path opacity="0.3" d="M991.498 228.411C992.143 228.835 992.899 229.056 993.671 229.048C994.442 229.039 995.194 228.801 995.83 228.363C996.466 227.926 996.958 227.309 997.242 226.591C997.526 225.873 997.589 225.087 997.425 224.333C997.26 223.579 996.875 222.891 996.318 222.357C995.76 221.824 995.057 221.468 994.296 221.337C993.536 221.205 992.754 221.303 992.049 221.618C991.344 221.933 990.749 222.451 990.339 223.105C989.794 223.964 989.609 225.004 989.826 225.998C990.043 226.991 990.644 227.859 991.498 228.411V228.411Z" fill="white"/>
486
+ <path opacity="0.3" d="M896.385 159.017C897.002 159.406 897.72 159.604 898.449 159.586C899.178 159.567 899.886 159.333 900.482 158.912C901.079 158.492 901.537 157.904 901.8 157.223C902.063 156.543 902.119 155.799 901.96 155.088C901.8 154.376 901.434 153.727 900.907 153.224C900.379 152.72 899.714 152.385 898.996 152.259C898.277 152.134 897.537 152.224 896.87 152.519C896.202 152.813 895.637 153.299 895.245 153.915C894.725 154.745 894.554 155.746 894.767 156.701C894.981 157.656 895.562 158.488 896.385 159.017Z" fill="white"/>
487
+ <path opacity="0.3" d="M970.236 81.0645C970.627 81.3086 971.099 81.388 971.549 81.2856C971.999 81.1831 972.39 80.907 972.638 80.5174C972.82 80.2266 972.911 79.8889 972.901 79.5463C972.891 79.2038 972.78 78.8719 972.581 78.5927C972.383 78.3135 972.106 78.0993 971.786 77.9772C971.466 77.8551 971.117 77.8307 970.783 77.9068C970.449 77.9828 970.145 78.156 969.909 78.4047C969.673 78.6534 969.516 78.9662 969.457 79.304C969.399 79.6417 969.441 79.9891 969.58 80.3024C969.718 80.6157 969.947 80.8809 970.236 81.0645V81.0645Z" fill="white"/>
488
+ <path opacity="0.3" d="M861.732 62.0701C862.111 62.3114 862.554 62.4345 863.004 62.4238C863.454 62.4131 863.89 62.2691 864.258 62.01C864.626 61.751 864.909 61.3886 865.071 60.9687C865.234 60.5489 865.268 60.0903 865.169 59.6514C865.07 59.2124 864.844 58.8128 864.517 58.503C864.191 58.1933 863.781 57.9875 863.337 57.9115C862.894 57.8356 862.438 57.893 862.027 58.0765C861.616 58.26 861.269 58.5614 861.029 58.9424C860.709 59.4512 860.603 60.0656 860.735 60.6517C860.867 61.2378 861.225 61.7479 861.732 62.0701V62.0701Z" fill="white"/>
489
+ <path opacity="0.3" d="M799.674 50.3689C800.053 50.6102 800.496 50.7334 800.946 50.7227C801.395 50.7121 801.832 50.568 802.2 50.309C802.568 50.0499 802.851 49.6876 803.013 49.2677C803.175 48.8478 803.209 48.3893 803.111 47.9503C803.012 47.5114 802.785 47.1117 802.459 46.802C802.133 46.4922 801.722 46.2865 801.279 46.2105C800.836 46.1346 800.38 46.192 799.969 46.3755C799.558 46.559 799.21 46.8604 798.971 47.2414C798.651 47.7501 798.545 48.3646 798.677 48.9507C798.809 49.5368 799.167 50.0468 799.674 50.3689V50.3689Z" fill="white"/>
490
+ <path opacity="0.3" d="M888.671 47.245C889.273 47.6228 889.972 47.814 890.682 47.7941C891.392 47.7743 892.081 47.5445 892.661 47.1337C893.241 46.723 893.686 46.1495 893.941 45.486C894.195 44.8225 894.247 44.0986 894.091 43.4057C893.935 42.7128 893.576 42.0821 893.062 41.593C892.547 41.1039 891.899 40.7783 891.199 40.6576C890.499 40.5369 889.779 40.6265 889.129 40.9149C888.48 41.2032 887.93 41.6775 887.55 42.2779C887.042 43.0864 886.875 44.063 887.085 44.994C887.295 45.9249 887.866 46.7343 888.671 47.245V47.245Z" fill="white"/>
491
+ <path opacity="0.3" d="M925.466 106.864C925.846 107.105 926.289 107.228 926.738 107.217C927.188 107.207 927.625 107.063 927.993 106.804C928.361 106.545 928.644 106.182 928.806 105.762C928.968 105.343 929.002 104.884 928.903 104.445C928.805 104.006 928.578 103.606 928.252 103.297C927.926 102.987 927.515 102.781 927.072 102.705C926.628 102.629 926.173 102.687 925.762 102.87C925.351 103.054 925.003 103.355 924.764 103.736C924.447 104.246 924.344 104.859 924.475 105.444C924.607 106.029 924.963 106.539 925.466 106.864V106.864Z" fill="white"/>
492
+ <path opacity="0.3" d="M925.93 189.75C926.31 189.991 926.752 190.114 927.202 190.103C927.652 190.093 928.088 189.949 928.456 189.69C928.824 189.431 929.108 189.068 929.27 188.648C929.432 188.229 929.466 187.77 929.367 187.331C929.268 186.892 929.042 186.493 928.715 186.183C928.389 185.873 927.979 185.667 927.535 185.591C927.092 185.515 926.636 185.573 926.225 185.756C925.814 185.94 925.467 186.241 925.227 186.622C924.907 187.131 924.802 187.745 924.933 188.332C925.065 188.918 925.423 189.428 925.93 189.75V189.75Z" fill="white"/>
493
+ <path opacity="0.3" d="M911.639 249.556C911.934 249.741 912.277 249.834 912.625 249.824C912.973 249.814 913.31 249.701 913.594 249.499C913.878 249.298 914.096 249.017 914.221 248.692C914.346 248.367 914.372 248.012 914.295 247.672C914.218 247.333 914.043 247.024 913.791 246.784C913.539 246.544 913.222 246.384 912.879 246.324C912.536 246.265 912.183 246.308 911.864 246.449C911.546 246.589 911.276 246.821 911.089 247.115C910.84 247.512 910.759 247.992 910.862 248.449C910.965 248.906 911.244 249.304 911.639 249.556V249.556Z" fill="white"/>
494
+ <path opacity="0.3" d="M800.981 287.059C801.362 287.3 801.805 287.423 802.255 287.412C802.705 287.401 803.142 287.256 803.51 286.996C803.878 286.736 804.161 286.372 804.322 285.952C804.483 285.531 804.516 285.072 804.416 284.632C804.315 284.193 804.087 283.794 803.759 283.485C803.432 283.176 803.019 282.972 802.575 282.898C802.131 282.824 801.675 282.884 801.264 283.07C800.854 283.256 800.508 283.559 800.27 283.942C799.954 284.451 799.852 285.064 799.985 285.648C800.118 286.231 800.476 286.738 800.981 287.059V287.059Z" fill="white"/>
495
+ <path opacity="0.3" d="M697.963 177.955C698.147 178.072 698.352 178.152 698.566 178.19C698.781 178.228 699.001 178.223 699.214 178.175C699.426 178.128 699.628 178.038 699.806 177.913C699.984 177.787 700.136 177.628 700.252 177.443C700.368 177.259 700.447 177.053 700.484 176.838C700.52 176.623 700.514 176.404 700.466 176.191C700.418 175.979 700.328 175.778 700.202 175.6C700.077 175.422 699.917 175.271 699.733 175.155C699.548 175.039 699.343 174.961 699.128 174.924C698.914 174.888 698.694 174.894 698.481 174.942C698.269 174.99 698.068 175.08 697.89 175.206C697.712 175.332 697.561 175.492 697.445 175.676C697.328 175.86 697.248 176.064 697.211 176.279C697.173 176.493 697.179 176.712 697.227 176.924C697.275 177.136 697.365 177.337 697.491 177.514C697.618 177.691 697.778 177.84 697.963 177.955Z" fill="white"/>
496
+ <path opacity="0.3" d="M541.004 166.751C541.385 166.99 541.827 167.11 542.276 167.097C542.725 167.084 543.161 166.938 543.527 166.678C543.893 166.418 544.175 166.055 544.335 165.635C544.495 165.215 544.528 164.757 544.428 164.319C544.328 163.881 544.101 163.483 543.775 163.174C543.449 162.865 543.038 162.66 542.595 162.585C542.152 162.51 541.697 162.567 541.287 162.751C540.877 162.934 540.53 163.235 540.29 163.615C540.131 163.868 540.023 164.15 539.973 164.445C539.922 164.739 539.931 165.041 539.997 165.332C540.063 165.623 540.186 165.898 540.359 166.142C540.532 166.385 540.751 166.593 541.004 166.751V166.751Z" fill="white"/>
497
+ <path opacity="0.3" d="M520.003 241.301C520.511 241.574 521.103 241.645 521.661 241.498C522.219 241.35 522.7 240.997 523.007 240.508C523.314 240.02 523.423 239.433 523.314 238.867C523.204 238.301 522.884 237.797 522.417 237.459C522.165 237.277 521.879 237.148 521.575 237.081C521.271 237.014 520.957 237.01 520.652 237.069C520.346 237.129 520.056 237.25 519.8 237.426C519.543 237.602 519.325 237.829 519.16 238.092C518.994 238.356 518.884 238.65 518.837 238.958C518.79 239.265 518.807 239.579 518.886 239.88C518.965 240.181 519.105 240.462 519.297 240.706C519.489 240.951 519.73 241.153 520.003 241.301V241.301Z" fill="white"/>
498
+ <path opacity="0.3" d="M427.15 250.509C427.529 250.751 427.972 250.874 428.422 250.863C428.871 250.852 429.308 250.709 429.676 250.45C430.044 250.191 430.327 249.828 430.489 249.408C430.651 248.988 430.685 248.53 430.587 248.091C430.488 247.652 430.261 247.252 429.935 246.943C429.609 246.633 429.198 246.427 428.755 246.351C428.312 246.275 427.856 246.333 427.445 246.516C427.034 246.7 426.687 247.001 426.447 247.382C426.127 247.891 426.021 248.505 426.153 249.091C426.285 249.677 426.643 250.187 427.15 250.509V250.509Z" fill="white"/>
499
+ <path opacity="0.3" d="M363.683 138.105C364.062 138.347 364.505 138.47 364.954 138.459C365.404 138.448 365.841 138.304 366.209 138.045C366.577 137.786 366.86 137.424 367.022 137.004C367.184 136.584 367.218 136.126 367.119 135.687C367.021 135.248 366.794 134.848 366.468 134.539C366.142 134.229 365.731 134.023 365.288 133.947C364.844 133.871 364.388 133.928 363.977 134.112C363.567 134.295 363.219 134.597 362.98 134.978C362.66 135.486 362.554 136.101 362.686 136.687C362.817 137.273 363.176 137.783 363.683 138.105V138.105Z" fill="white"/>
500
+ <path opacity="0.3" d="M884.98 216.183C885.36 216.425 885.802 216.548 886.252 216.537C886.702 216.526 887.138 216.383 887.506 216.124C887.874 215.865 888.157 215.502 888.32 215.082C888.482 214.662 888.516 214.204 888.417 213.765C888.318 213.326 888.091 212.926 887.765 212.617C887.439 212.307 887.029 212.101 886.585 212.025C886.142 211.949 885.686 212.006 885.275 212.19C884.864 212.373 884.517 212.675 884.277 213.056C883.957 213.564 883.851 214.179 883.983 214.765C884.115 215.351 884.473 215.861 884.98 216.183Z" fill="white"/>
501
+ <path opacity="0.3" d="M1040.35 331.111C1040.73 331.352 1041.17 331.476 1041.62 331.465C1042.07 331.454 1042.5 331.31 1042.87 331.051C1043.24 330.792 1043.52 330.43 1043.69 330.01C1043.85 329.59 1043.88 329.132 1043.78 328.693C1043.68 328.254 1043.46 327.854 1043.13 327.544C1042.81 327.235 1042.4 327.029 1041.95 326.953C1041.51 326.877 1041.05 326.934 1040.64 327.118C1040.23 327.301 1039.88 327.603 1039.64 327.984C1039.48 328.234 1039.37 328.515 1039.32 328.809C1039.27 329.103 1039.27 329.404 1039.34 329.696C1039.4 329.987 1039.53 330.262 1039.7 330.505C1039.87 330.748 1040.09 330.954 1040.35 331.111V331.111Z" fill="white"/>
502
+ <path opacity="0.3" d="M911.304 294.389C911.683 294.633 912.125 294.759 912.576 294.75C913.026 294.742 913.464 294.6 913.834 294.342C914.204 294.084 914.489 293.723 914.652 293.303C914.816 292.883 914.852 292.424 914.754 291.984C914.656 291.544 914.43 291.143 914.104 290.833C913.778 290.522 913.367 290.315 912.924 290.238C912.48 290.162 912.023 290.219 911.611 290.403C911.2 290.586 910.852 290.888 910.612 291.27C910.294 291.776 910.188 292.388 910.317 292.972C910.447 293.556 910.802 294.065 911.304 294.389V294.389Z" fill="white"/>
503
+ <path opacity="0.3" d="M785.082 229.028C785.46 229.265 785.9 229.384 786.347 229.371C786.793 229.358 787.226 229.213 787.59 228.954C787.954 228.695 788.233 228.334 788.392 227.917C788.551 227.499 788.583 227.044 788.484 226.609C788.385 226.174 788.158 225.778 787.834 225.471C787.51 225.164 787.102 224.961 786.661 224.886C786.221 224.812 785.769 224.869 785.361 225.052C784.953 225.234 784.609 225.533 784.371 225.911C784.213 226.163 784.106 226.443 784.056 226.736C784.006 227.029 784.014 227.328 784.08 227.618C784.146 227.907 784.269 228.181 784.441 228.423C784.613 228.665 784.831 228.87 785.082 229.028V229.028Z" fill="white"/>
504
+ <path opacity="0.3" d="M829.813 160.78C830.193 161.019 830.636 161.14 831.085 161.127C831.534 161.114 831.969 160.968 832.335 160.708C832.702 160.447 832.983 160.084 833.143 159.664C833.304 159.244 833.336 158.787 833.236 158.349C833.137 157.911 832.909 157.512 832.583 157.203C832.257 156.895 831.846 156.69 831.404 156.614C830.961 156.539 830.506 156.597 830.095 156.78C829.685 156.964 829.338 157.264 829.099 157.645C828.94 157.898 828.832 158.179 828.781 158.474C828.731 158.768 828.739 159.07 828.805 159.361C828.872 159.652 828.995 159.928 829.168 160.171C829.341 160.415 829.56 160.622 829.813 160.78V160.78Z" fill="white"/>
505
+ <path opacity="0.3" d="M864.354 113.366C864.733 113.607 865.176 113.73 865.626 113.719C866.075 113.709 866.512 113.565 866.88 113.306C867.248 113.047 867.531 112.684 867.693 112.265C867.855 111.845 867.889 111.386 867.791 110.947C867.692 110.508 867.465 110.109 867.139 109.799C866.813 109.489 866.402 109.283 865.959 109.207C865.516 109.131 865.06 109.189 864.649 109.372C864.238 109.556 863.891 109.857 863.651 110.238C863.334 110.748 863.231 111.361 863.362 111.946C863.494 112.531 863.85 113.041 864.354 113.366Z" fill="white"/>
506
+ <path opacity="0.3" d="M785.898 108.631C786.644 109.102 787.513 109.342 788.396 109.32C789.278 109.298 790.135 109.016 790.858 108.509C791.581 108.001 792.138 107.292 792.459 106.469C792.779 105.646 792.85 104.747 792.661 103.884C792.472 103.022 792.033 102.235 791.398 101.622C790.763 101.009 789.96 100.598 789.092 100.441C788.223 100.283 787.327 100.386 786.517 100.736C785.706 101.086 785.017 101.669 784.536 102.409C784.212 102.906 783.989 103.462 783.882 104.046C783.775 104.629 783.785 105.228 783.912 105.807C784.038 106.386 784.279 106.935 784.621 107.419C784.962 107.904 785.396 108.316 785.898 108.631V108.631Z" fill="white"/>
507
+ <path opacity="0.3" d="M722.875 24.1131C723.127 24.2732 723.407 24.382 723.701 24.4332C723.994 24.4844 724.295 24.4769 724.585 24.4113C724.876 24.3457 725.151 24.2234 725.394 24.0511C725.638 23.8788 725.844 23.6601 726.003 23.4076C726.244 23.0278 726.368 22.5848 726.358 22.135C726.347 21.6852 726.204 21.2487 725.945 20.8808C725.686 20.5128 725.324 20.23 724.905 20.0682C724.485 19.9064 724.027 19.873 723.588 19.972C723.149 20.071 722.749 20.2982 722.439 20.6245C722.129 20.9509 721.923 21.3618 721.847 21.8053C721.77 22.2488 721.827 22.7049 722.011 23.1157C722.194 23.5266 722.495 23.8736 722.875 24.1131V24.1131Z" fill="white"/>
508
+ <path opacity="0.3" d="M716.781 117.396C717.161 117.637 717.603 117.761 718.053 117.75C718.503 117.739 718.939 117.595 719.307 117.336C719.676 117.077 719.958 116.715 720.121 116.295C720.283 115.875 720.316 115.417 720.218 114.978C720.119 114.539 719.892 114.139 719.566 113.829C719.24 113.52 718.83 113.314 718.386 113.238C717.943 113.162 717.487 113.219 717.076 113.403C716.665 113.586 716.318 113.888 716.078 114.269C715.758 114.777 715.652 115.392 715.784 115.978C715.916 116.564 716.274 117.074 716.781 117.396V117.396Z" fill="white"/>
509
+ <path opacity="0.3" d="M769.291 175.708C769.671 175.947 770.114 176.067 770.563 176.054C771.012 176.041 771.447 175.895 771.814 175.635C772.18 175.375 772.461 175.012 772.622 174.592C772.782 174.172 772.814 173.714 772.715 173.276C772.615 172.838 772.388 172.44 772.061 172.131C771.735 171.822 771.325 171.617 770.882 171.542C770.439 171.467 769.984 171.524 769.574 171.708C769.163 171.891 768.816 172.192 768.577 172.572C768.418 172.825 768.31 173.107 768.259 173.402C768.209 173.696 768.217 173.998 768.284 174.289C768.35 174.58 768.473 174.855 768.646 175.099C768.819 175.343 769.038 175.55 769.291 175.708Z" fill="white"/>
510
+ <path opacity="0.3" d="M656.99 131.406C657.656 131.826 658.431 132.038 659.218 132.017C660.005 131.995 660.768 131.741 661.41 131.286C662.053 130.831 662.546 130.196 662.828 129.461C663.11 128.725 663.168 127.923 662.995 127.156C662.821 126.388 662.423 125.689 661.853 125.148C661.282 124.606 660.563 124.246 659.788 124.114C659.012 123.981 658.214 124.081 657.495 124.402C656.776 124.722 656.168 125.249 655.748 125.915C655.469 126.357 655.279 126.85 655.191 127.366C655.102 127.881 655.116 128.409 655.231 128.919C655.347 129.429 655.561 129.911 655.863 130.338C656.165 130.764 656.548 131.128 656.99 131.406V131.406Z" fill="white"/>
511
+ <path opacity="0.3" d="M579.208 82.4177C579.587 82.659 580.03 82.7822 580.48 82.7715C580.929 82.7608 581.366 82.6168 581.734 82.3578C582.102 82.0988 582.385 81.7364 582.547 81.3166C582.709 80.8967 582.743 80.4383 582.645 79.9993C582.546 79.5604 582.319 79.1607 581.993 78.851C581.667 78.5413 581.256 78.3354 580.813 78.2594C580.37 78.1835 579.914 78.2409 579.503 78.4244C579.092 78.6079 578.745 78.9092 578.505 79.2901C578.185 79.7989 578.079 80.4135 578.211 80.9996C578.343 81.5857 578.701 82.0955 579.208 82.4177V82.4177Z" fill="white"/>
512
+ <path opacity="0.3" d="M518.75 97.3056C518.938 97.426 519.147 97.508 519.367 97.5466C519.586 97.5853 519.811 97.58 520.028 97.5308C520.246 97.4817 520.451 97.3898 520.633 97.2605C520.814 97.1312 520.969 96.9671 521.086 96.7777C521.265 96.4944 521.357 96.1644 521.348 95.8293C521.34 95.4943 521.233 95.1694 521.04 94.8956C520.847 94.6218 520.577 94.4113 520.264 94.2911C519.951 94.1709 519.61 94.1462 519.283 94.2201C518.956 94.294 518.658 94.4632 518.428 94.7062C518.197 94.9493 518.043 95.2553 517.986 95.5856C517.929 95.9159 517.971 96.2556 518.107 96.5617C518.243 96.8679 518.467 97.1268 518.75 97.3056Z" fill="white"/>
513
+ <path opacity="0.3" d="M704.158 241.508C704.713 241.858 705.36 242.035 706.016 242.017C706.673 241.999 707.309 241.787 707.845 241.407C708.381 241.028 708.792 240.498 709.027 239.884C709.262 239.271 709.31 238.602 709.164 237.962C709.019 237.321 708.687 236.739 708.211 236.288C707.734 235.836 707.134 235.537 706.487 235.427C705.84 235.317 705.175 235.401 704.576 235.669C703.976 235.937 703.469 236.377 703.12 236.933C702.886 237.301 702.727 237.712 702.653 238.142C702.578 238.572 702.59 239.012 702.686 239.438C702.783 239.863 702.962 240.265 703.215 240.62C703.468 240.976 703.788 241.278 704.158 241.508V241.508Z" fill="white"/>
514
+ <path opacity="0.3" d="M610.864 138.037C611.242 138.274 611.682 138.393 612.129 138.38C612.575 138.367 613.008 138.222 613.372 137.963C613.736 137.704 614.015 137.343 614.174 136.926C614.333 136.508 614.365 136.053 614.266 135.618C614.166 135.182 613.94 134.786 613.616 134.48C613.292 134.173 612.883 133.97 612.443 133.895C612.003 133.82 611.551 133.878 611.143 134.06C610.735 134.243 610.391 134.542 610.153 134.92C609.837 135.429 609.735 136.042 609.868 136.625C610.001 137.209 610.359 137.716 610.864 138.037V138.037Z" fill="white"/>
515
+ <path opacity="0.3" d="M965.471 269.664C965.85 269.905 966.293 270.028 966.743 270.017C967.192 270.007 967.629 269.863 967.997 269.604C968.365 269.345 968.648 268.982 968.81 268.563C968.972 268.143 969.006 267.684 968.907 267.245C968.809 266.806 968.582 266.407 968.256 266.097C967.93 265.787 967.519 265.581 967.076 265.505C966.633 265.429 966.176 265.487 965.766 265.67C965.355 265.854 965.007 266.155 964.768 266.536C964.448 267.045 964.342 267.659 964.474 268.246C964.605 268.832 964.964 269.342 965.471 269.664V269.664Z" fill="white"/>
516
+ <path opacity="0.3" d="M92.2027 365.639C92.6607 365.926 93.2063 366.04 93.7414 365.961C94.2765 365.882 94.766 365.615 95.122 365.207C95.5135 364.754 95.7117 364.166 95.6743 363.568C95.6499 363.211 95.5404 362.865 95.3549 362.559C95.1694 362.252 94.9133 361.995 94.608 361.808C94.2076 361.544 93.731 361.419 93.2523 361.454C92.6521 361.501 92.0944 361.782 91.7003 362.238C91.3062 362.693 91.1075 363.286 91.1473 363.886C91.1696 364.242 91.2771 364.587 91.4608 364.892C91.6445 365.197 91.899 365.453 92.2027 365.639V365.639Z" fill="white"/>
517
+ <path opacity="0.3" d="M209.959 365.085C210.466 365.358 211.059 365.429 211.617 365.281C212.174 365.134 212.655 364.781 212.962 364.292C213.269 363.804 213.379 363.217 213.27 362.651C213.16 362.084 212.84 361.581 212.373 361.243C211.966 360.988 211.488 360.868 211.009 360.9C210.411 360.953 209.856 361.23 209.453 361.674C209.065 362.132 208.871 362.723 208.912 363.321C208.935 363.677 209.042 364.022 209.224 364.329C209.406 364.635 209.658 364.894 209.959 365.085V365.085Z" fill="white"/>
518
+ <path opacity="0.3" d="M196.377 469.689C196.733 469.91 197.143 470.029 197.561 470.032C197.98 470.035 198.392 469.923 198.751 469.706C199.11 469.49 199.402 469.179 199.595 468.807C199.789 468.435 199.876 468.017 199.846 467.6C199.821 467.245 199.712 466.901 199.528 466.597C199.345 466.293 199.092 466.036 198.791 465.848C198.333 465.56 197.787 465.446 197.252 465.525C196.717 465.604 196.228 465.871 195.872 466.279C195.676 466.503 195.528 466.765 195.435 467.048C195.342 467.331 195.306 467.629 195.33 467.926C195.353 468.282 195.46 468.627 195.642 468.933C195.824 469.24 196.076 469.499 196.377 469.689V469.689Z" fill="white"/>
519
+ <path opacity="0.3" d="M136.665 455.168C136.979 455.371 137.351 455.465 137.724 455.435C137.956 455.422 138.184 455.363 138.393 455.26C138.602 455.156 138.787 455.012 138.939 454.835C139.104 454.642 139.225 454.416 139.295 454.172C139.366 453.928 139.383 453.672 139.346 453.421C139.308 453.17 139.218 452.93 139.08 452.717C138.943 452.503 138.761 452.322 138.547 452.186C138.234 451.982 137.861 451.888 137.488 451.919C137.256 451.933 137.029 451.993 136.82 452.096C136.612 452.199 136.426 452.343 136.273 452.518C136.108 452.711 135.987 452.937 135.917 453.181C135.846 453.425 135.829 453.682 135.867 453.933C135.904 454.184 135.994 454.424 136.132 454.637C136.27 454.85 136.451 455.031 136.665 455.168V455.168Z" fill="white"/>
520
+ <path opacity="0.3" d="M24.8965 417.838C25.3545 418.125 25.9001 418.24 26.4352 418.161C26.9703 418.082 27.4597 417.814 27.8157 417.407C28.0112 417.182 28.1598 416.921 28.2528 416.638C28.3458 416.355 28.3813 416.056 28.3571 415.76C28.3375 415.403 28.2319 415.056 28.0496 414.75C27.8673 414.443 27.6136 414.184 27.31 413.997C26.852 413.709 26.3064 413.595 25.7713 413.674C25.2362 413.753 24.7468 414.02 24.3908 414.428C24.1953 414.652 24.0467 414.914 23.9537 415.197C23.8607 415.48 23.8252 415.778 23.8494 416.075C23.869 416.432 23.9745 416.778 24.1568 417.085C24.3391 417.392 24.5929 417.65 24.8965 417.838Z" fill="white"/>
521
+ <path opacity="0.3" d="M26.9687 247.412C27.3227 247.632 27.7307 247.752 28.1481 247.756C28.5655 247.76 28.9761 247.649 29.3348 247.435C29.6934 247.221 29.9863 246.912 30.1813 246.543C30.3764 246.174 30.4659 245.758 30.4402 245.341C30.4152 244.984 30.3064 244.637 30.1226 244.329C29.9388 244.022 29.6852 243.761 29.3823 243.57C28.9743 243.317 28.4976 243.197 28.0182 243.227C27.7213 243.246 27.4312 243.325 27.1657 243.459C26.9002 243.594 26.6648 243.781 26.474 244.01C26.276 244.234 26.1245 244.495 26.0282 244.778C25.932 245.062 25.8929 245.361 25.9133 245.66C25.9356 246.015 26.0431 246.36 26.2268 246.665C26.4105 246.97 26.665 247.226 26.9687 247.412Z" fill="white"/>
522
+ <path opacity="0.3" d="M295.204 421.271C295.662 421.559 296.207 421.673 296.742 421.594C297.278 421.515 297.767 421.248 298.123 420.84C298.337 420.592 298.496 420.302 298.587 419.987C298.679 419.673 298.701 419.342 298.653 419.018C298.605 418.694 298.488 418.385 298.309 418.111C298.13 417.836 297.894 417.604 297.617 417.43C297.209 417.177 296.733 417.057 296.253 417.087C295.777 417.123 295.325 417.308 294.96 417.616C294.595 417.924 294.336 418.339 294.22 418.802C294.103 419.265 294.136 419.753 294.313 420.196C294.489 420.639 294.801 421.015 295.204 421.271V421.271Z" fill="white"/>
523
+ <path opacity="0.3" d="M425.375 456.96C425.692 457.166 426.068 457.263 426.445 457.236C426.911 457.201 427.344 456.982 427.649 456.628C427.954 456.273 428.11 455.815 428.084 455.349C428.064 455.071 427.979 454.802 427.835 454.564C427.692 454.326 427.494 454.125 427.258 453.978C426.944 453.775 426.572 453.681 426.199 453.711C425.968 453.727 425.742 453.789 425.535 453.893C425.328 453.998 425.144 454.143 424.994 454.319C424.838 454.491 424.719 454.693 424.644 454.913C424.569 455.133 424.541 455.366 424.56 455.598C424.576 455.874 424.659 456.142 424.801 456.379C424.943 456.616 425.14 456.815 425.375 456.96V456.96Z" fill="white"/>
524
+ <path opacity="0.3" d="M352.203 393.977C352.661 394.264 353.206 394.378 353.742 394.299C354.277 394.22 354.766 393.953 355.122 393.545C355.32 393.322 355.471 393.061 355.564 392.778C355.657 392.494 355.691 392.195 355.664 391.898C355.641 391.542 355.534 391.197 355.352 390.891C355.17 390.584 354.918 390.325 354.616 390.135C354.208 389.877 353.726 389.76 353.244 389.803C352.767 389.835 352.313 390.018 351.946 390.325C351.579 390.632 351.319 391.047 351.203 391.511C351.087 391.976 351.122 392.464 351.301 392.907C351.481 393.35 351.797 393.725 352.203 393.977Z" fill="white"/>
525
+ <path opacity="0.3" d="M281.509 451.731C282.187 452.157 282.981 452.36 283.78 452.313C284.775 452.235 285.7 451.769 286.355 451.015C286.714 450.601 286.98 450.115 287.133 449.589C287.285 449.062 287.322 448.509 287.239 447.968C287.157 447.426 286.957 446.909 286.655 446.453C286.353 445.997 285.955 445.611 285.488 445.325C284.725 444.85 283.818 444.662 282.928 444.795C282.039 444.928 281.226 445.374 280.634 446.051C280.277 446.465 280.014 446.952 279.863 447.477C279.712 448.002 279.677 448.554 279.76 449.094C279.843 449.634 280.042 450.15 280.344 450.605C280.646 451.06 281.044 451.444 281.509 451.731V451.731Z" fill="white"/>
526
+ <path opacity="0.3" d="M231.956 414.254C232.414 414.542 232.96 414.656 233.495 414.577C234.03 414.498 234.52 414.231 234.876 413.823C235.075 413.598 235.226 413.335 235.321 413.05C235.415 412.765 235.451 412.464 235.425 412.165C235.401 411.81 235.292 411.466 235.109 411.161C234.925 410.857 234.672 410.6 234.37 410.413C233.863 410.139 233.27 410.069 232.712 410.216C232.155 410.363 231.674 410.717 231.367 411.205C231.06 411.694 230.95 412.281 231.059 412.847C231.169 413.413 231.49 413.916 231.956 414.254Z" fill="white"/>
527
+ <path opacity="0.3" d="M166.767 358.103C167.441 358.526 168.219 358.755 169.015 358.763C169.811 358.771 170.594 358.559 171.277 358.149C171.96 357.739 172.516 357.149 172.884 356.443C173.252 355.736 173.418 354.942 173.362 354.148C173.306 353.476 173.09 352.828 172.734 352.257C172.377 351.685 171.889 351.207 171.311 350.862C170.637 350.438 169.859 350.21 169.063 350.202C168.267 350.194 167.484 350.406 166.801 350.816C166.118 351.225 165.562 351.816 165.194 352.522C164.826 353.228 164.66 354.023 164.716 354.817C164.774 355.488 164.99 356.135 165.347 356.706C165.703 357.277 166.19 357.756 166.767 358.103V358.103Z" fill="white"/>
528
+ <path opacity="0.3" d="M143.966 299.238C144.374 299.493 144.851 299.613 145.331 299.581C145.627 299.563 145.918 299.484 146.183 299.349C146.449 299.214 146.684 299.027 146.875 298.799C147.071 298.576 147.221 298.316 147.316 298.035C147.411 297.753 147.449 297.456 147.427 297.16C147.404 296.804 147.297 296.459 147.115 296.152C146.933 295.846 146.681 295.587 146.38 295.397C145.974 295.139 145.496 295.019 145.016 295.054C144.54 295.09 144.087 295.275 143.722 295.583C143.357 295.89 143.098 296.305 142.982 296.768C142.866 297.231 142.899 297.719 143.075 298.163C143.252 298.606 143.564 298.982 143.966 299.238V299.238Z" fill="white"/>
529
+ <path opacity="0.3" d="M211.059 204.025C211.468 204.283 211.95 204.399 212.432 204.357C212.963 204.313 213.462 204.082 213.838 203.703C214.215 203.325 214.444 202.825 214.486 202.293C214.528 201.762 214.378 201.233 214.065 200.801C213.752 200.369 213.296 200.063 212.778 199.938C212.259 199.812 211.713 199.876 211.237 200.116C210.761 200.357 210.386 200.759 210.179 201.251C209.972 201.743 209.947 202.292 210.109 202.801C210.27 203.309 210.607 203.743 211.059 204.025V204.025Z" fill="white"/>
530
+ <path opacity="0.3" d="M358.664 230.335C359.172 230.609 359.764 230.68 360.322 230.532C360.88 230.385 361.361 230.031 361.668 229.543C361.975 229.054 362.084 228.468 361.975 227.901C361.865 227.335 361.545 226.832 361.078 226.494C360.671 226.239 360.194 226.119 359.714 226.151C359.417 226.169 359.127 226.249 358.861 226.383C358.596 226.518 358.361 226.705 358.17 226.933C357.972 227.158 357.82 227.419 357.724 227.702C357.628 227.986 357.589 228.285 357.609 228.583C357.631 228.939 357.739 229.284 357.923 229.589C358.106 229.894 358.361 230.15 358.664 230.335V230.335Z" fill="white"/>
531
+ <path opacity="0.3" d="M491.943 147.076C492.347 147.34 492.827 147.46 493.307 147.419C493.604 147.399 493.894 147.319 494.16 147.186C494.426 147.053 494.663 146.869 494.858 146.644C495.053 146.419 495.202 146.158 495.295 145.875C495.389 145.593 495.426 145.295 495.404 144.998C495.383 144.642 495.276 144.297 495.092 143.992C494.908 143.687 494.653 143.431 494.348 143.246C493.941 142.991 493.464 142.871 492.984 142.903C492.688 142.925 492.399 143.005 492.134 143.139C491.869 143.274 491.633 143.459 491.44 143.685C491.225 143.931 491.065 144.22 490.973 144.533C490.88 144.846 490.857 145.175 490.905 145.498C490.953 145.821 491.071 146.129 491.25 146.402C491.429 146.674 491.666 146.905 491.943 147.076V147.076Z" fill="white"/>
532
+ <path opacity="0.3" d="M464.779 74.5819C465.187 74.8369 465.664 74.9569 466.143 74.925C466.44 74.9047 466.73 74.825 466.995 74.6905C467.26 74.556 467.496 74.3696 467.688 74.1423C467.886 73.918 468.037 73.6567 468.133 73.3734C468.23 73.0902 468.269 72.7908 468.248 72.4924C468.226 72.1369 468.119 71.7921 467.935 71.4871C467.751 71.1822 467.497 70.926 467.193 70.7403C466.787 70.4827 466.309 70.3624 465.829 70.3972C465.353 70.4334 464.9 70.6185 464.535 70.9264C464.17 71.2342 463.911 71.6489 463.795 72.1121C463.679 72.5752 463.712 73.0631 463.888 73.5064C464.065 73.9497 464.377 74.326 464.779 74.5819V74.5819Z" fill="white"/>
533
+ <path opacity="0.3" d="M534.231 12.1972C534.639 12.4504 535.115 12.5705 535.595 12.5404C536.193 12.4934 536.748 12.2121 537.139 11.7577C537.335 11.5345 537.485 11.2746 537.579 10.9933C537.674 10.712 537.712 10.4147 537.692 10.1186C537.669 9.76314 537.562 9.41829 537.378 9.11333C537.194 8.80837 536.94 8.55223 536.636 8.36655C536.23 8.10891 535.752 7.98865 535.272 8.02346C534.674 8.0662 534.116 8.34398 533.721 8.79611C533.327 9.24825 533.126 9.8381 533.165 10.4369C533.189 10.7943 533.298 11.1405 533.484 11.4468C533.669 11.753 533.926 12.0102 534.231 12.1972Z" fill="white"/>
534
+ <path opacity="0.3" d="M651.907 65.1988C652.313 65.4565 652.791 65.5767 653.271 65.5419C653.747 65.5058 654.199 65.3208 654.564 65.013C654.929 64.7052 655.188 64.2902 655.304 63.8271C655.421 63.364 655.388 62.8762 655.211 62.4328C655.035 61.9895 654.723 61.6132 654.32 61.3573C653.912 61.1041 653.436 60.9842 652.956 61.0142C652.659 61.0329 652.369 61.112 652.104 61.2466C651.838 61.3812 651.603 61.5684 651.412 61.7969C651.216 62.0197 651.066 62.2795 650.971 62.5609C650.876 62.8423 650.838 63.1399 650.86 63.436C650.883 63.7917 650.989 64.1369 651.171 64.4433C651.353 64.7498 651.605 65.0086 651.907 65.1988V65.1988Z" fill="white"/>
535
+ <path opacity="0.3" d="M488.668 415.311C489.022 415.535 489.431 415.656 489.849 415.66C490.268 415.665 490.679 415.554 491.038 415.338C491.397 415.122 491.689 414.811 491.882 414.44C492.074 414.068 492.16 413.65 492.129 413.232C492.107 412.877 491.999 412.532 491.816 412.227C491.632 411.922 491.377 411.666 491.074 411.48C490.669 411.219 490.19 411.098 489.71 411.137C489.41 411.161 489.118 411.245 488.851 411.383C488.585 411.521 488.348 411.711 488.155 411.941C487.962 412.172 487.818 412.439 487.729 412.726C487.641 413.013 487.61 413.315 487.64 413.614C487.668 413.958 487.775 414.29 487.954 414.584C488.132 414.879 488.377 415.128 488.668 415.311V415.311Z" fill="white"/>
536
+ <path opacity="0.3" d="M411.65 421.575C412.235 421.935 412.918 422.102 413.603 422.054C414.028 422.03 414.443 421.92 414.825 421.731C415.206 421.541 415.545 421.276 415.821 420.952C416.103 420.631 416.318 420.257 416.454 419.852C416.589 419.447 416.642 419.019 416.609 418.593C416.575 418.078 416.419 417.578 416.154 417.136C415.888 416.694 415.521 416.321 415.082 416.05C414.494 415.688 413.807 415.518 413.118 415.564C412.437 415.615 411.789 415.88 411.267 416.32C410.744 416.76 410.374 417.354 410.207 418.017C410.041 418.68 410.088 419.378 410.341 420.012C410.594 420.646 411.041 421.184 411.617 421.55L411.65 421.575Z" fill="white"/>
537
+ <path opacity="0.3" d="M185.554 310.338C185.74 310.455 185.947 310.534 186.163 310.571C186.38 310.608 186.602 310.602 186.816 310.554C187.03 310.505 187.233 310.415 187.412 310.288C187.591 310.161 187.744 310 187.861 309.814C187.978 309.628 188.058 309.421 188.095 309.204C188.132 308.988 188.126 308.766 188.078 308.552C188.03 308.338 187.939 308.135 187.813 307.956C187.686 307.776 187.525 307.624 187.339 307.507C187.04 307.317 186.686 307.23 186.333 307.262C185.892 307.293 185.482 307.498 185.192 307.832C185.046 307.997 184.936 308.19 184.866 308.399C184.797 308.607 184.77 308.828 184.788 309.047C184.805 309.308 184.883 309.56 185.016 309.785C185.149 310.009 185.334 310.199 185.554 310.338V310.338Z" fill="white"/>
538
+ <path opacity="0.3" d="M116.964 264.658C117.633 265.084 118.422 265.282 119.213 265.223C120.196 265.154 121.113 264.7 121.763 263.958C122.091 263.583 122.343 263.146 122.502 262.674C122.662 262.202 122.727 261.703 122.694 261.205C122.655 260.618 122.478 260.048 122.177 259.543C121.875 259.037 121.458 258.611 120.959 258.298C120.287 257.872 119.495 257.677 118.701 257.744C117.717 257.819 116.802 258.28 116.155 259.026C115.508 259.772 115.181 260.743 115.246 261.729C115.277 262.319 115.449 262.893 115.748 263.403C116.047 263.912 116.464 264.343 116.964 264.658V264.658Z" fill="white"/>
539
+ <path opacity="0.3" d="M258.266 241.31C258.773 241.584 259.366 241.654 259.923 241.507C260.481 241.36 260.962 241.006 261.269 240.518C261.576 240.029 261.686 239.443 261.576 238.876C261.467 238.31 261.146 237.807 260.679 237.469C260.273 237.211 259.795 237.091 259.315 237.126C258.834 237.153 258.375 237.334 258.003 237.641C257.632 237.948 257.369 238.366 257.251 238.833C257.134 239.3 257.169 239.793 257.352 240.239C257.534 240.684 257.854 241.06 258.266 241.31V241.31Z" fill="white"/>
540
+ <path opacity="0.3" d="M315.383 185.735C315.972 186.11 316.653 186.313 317.35 186.322C318.048 186.331 318.735 186.146 319.333 185.787C319.932 185.428 320.419 184.91 320.74 184.29C321.061 183.67 321.204 182.973 321.152 182.278C321.104 181.638 320.893 181.022 320.54 180.487C320.186 179.952 319.702 179.517 319.133 179.223C318.564 178.928 317.929 178.784 317.288 178.804C316.647 178.824 316.022 179.008 315.472 179.337C314.922 179.667 314.465 180.132 314.145 180.688C313.825 181.243 313.653 181.872 313.644 182.513C313.635 183.154 313.79 183.787 314.094 184.351C314.399 184.915 314.842 185.391 315.383 185.735V185.735Z" fill="white"/>
541
+ <path opacity="0.3" d="M451.956 212.535C452.576 212.922 453.302 213.104 454.032 213.056C454.481 213.024 454.92 212.904 455.323 212.702C455.725 212.5 456.084 212.219 456.377 211.878C456.678 211.539 456.907 211.144 457.051 210.716C457.195 210.287 457.251 209.834 457.216 209.383C457.179 208.845 457.016 208.324 456.739 207.861C456.462 207.399 456.08 207.008 455.623 206.722C455.003 206.335 454.277 206.153 453.547 206.202C452.823 206.25 452.132 206.526 451.575 206.991C451.018 207.457 450.622 208.087 450.445 208.791C450.269 209.495 450.319 210.236 450.591 210.909C450.862 211.582 451.34 212.152 451.956 212.535V212.535Z" fill="white"/>
542
+ <path opacity="0.3" d="M88.6732 315.4C89.0829 315.656 89.5642 315.772 90.0456 315.732C90.6422 315.683 91.196 315.402 91.588 314.949C91.9801 314.497 92.179 313.908 92.1421 313.311C92.1187 312.955 92.0107 312.611 91.8271 312.306C91.6435 312.001 91.3897 311.745 91.0867 311.558C90.6663 311.274 90.1638 311.136 89.6569 311.165C89.3606 311.187 89.0715 311.268 88.8064 311.402C88.5414 311.536 88.3056 311.722 88.1127 311.948C87.9162 312.171 87.7661 312.431 87.6713 312.712C87.5765 312.994 87.5387 313.291 87.5602 313.587C87.5848 313.957 87.6991 314.315 87.8929 314.631C88.0868 314.947 88.3546 315.211 88.6732 315.4V315.4Z" fill="white"/>
543
+ </g>
544
+ <g opacity="0.5">
545
+ <path opacity="0.5" d="M847.351 -120.718L847.437 -120.445L854.339 -23.5454L793.478 -39.2151L793.4 -39.637L793.332 -39.2047L744.146 -1.48132L679.767 -11.034L679.679 -11.1006L679.621 -11.0238L636.818 53.6113L587.908 55.2595L562.187 95.8095L517.596 57.6705L517.669 57.916L511.645 142.016L430.943 162.745L395.304 89.0082L296.769 96.7086L296.379 96.5166L296.697 96.7579L251.299 225.646L116.84 -2.03791L116.719 -2.12944L166.711 195.606L-19.5103 24.2549L-19.5205 24.1089L75.2926 243.054L131.952 328.191L131.898 328.15L131.996 328.225L63.2273 393.808L63.169 393.885L63.2567 393.952L71.0068 421.658L31.419 481.555L31.3357 481.665L99.5235 481.62L146.495 526.961L159.494 562.645L126.532 605.086L170.956 718.124L171.089 718.45L178.772 615.857L237.212 592.402L270.671 477.7L312.084 502.376L312.237 502.63L308.504 424.876L347.014 394.618L338.724 272.331L482.392 253.476L482.468 253.534L482.543 253.435L482.659 253.419L482.593 253.369L557.406 188.93L540.99 134.793L591.885 121.715L591.943 121.638L636.766 53.9526L673.71 52.7026L723.347 14.6123L780.046 47.4282L780.123 47.4864L803.548 106.006L803.498 106.072L803.574 106.13L826.09 122.643L825.089 158.809L721.799 236.092L698.47 301.685L638.401 356.418L638.217 356.66L717.172 338.53L719.892 279.647L767.249 230.349L816.154 223.993L819.556 199.49L893.887 171.99L894.027 171.941L857.527 145.163L926.967 115.682L927.355 115.717L927.05 115.572L968.985 -32.9615L969.379 -33.0258L968.975 -33.1076L910.812 -61.6722L947.717 -72.0489L947.798 -72.3846L897.49 -73.9944L847.521 -120.555L847.351 -120.718ZM587.914 55.5928L591.918 121.307L562.274 95.9448L587.914 55.5928ZM562.137 95.9442L539.997 130.841L517.935 58.135L562.137 95.9442ZM517.835 58.3355L539.875 131.024L537.028 135.506L511.846 141.979L517.835 58.3355ZM539.94 131.212L540.917 134.479L537.243 135.427L539.94 131.212ZM237.139 592.156L178.964 615.467L203.304 559.861L237.139 592.156ZM178.972 615.024L190.088 552.272L203.131 559.816L178.972 615.024ZM434.432 206.157L419.539 191.623L430.963 163.037L452.038 199.92L434.432 206.157ZM452.095 200.05L482.217 252.772L434.572 206.246L452.095 200.05ZM194.63 431.886L185.082 360.201L250.103 396.511L194.63 431.886ZM194.478 431.926L133.18 423.778L184.453 359.983L184.814 360.257L194.478 431.926ZM178.762 322.182L184.313 359.392L132.294 328.243L178.762 322.182ZM204.815 318.774L184.483 359.487L178.917 322.161L204.815 318.774ZM178.895 322.007L168.183 250.217L232.216 263.916L204.901 318.615L178.895 322.007ZM205.008 318.748L243.645 313.854L184.593 359.57L205.008 318.748ZM205.116 318.605L232.419 263.967L247.831 267.272L243.811 313.634L205.116 318.605ZM232.478 263.821L251.324 226.115L247.86 267.121L232.478 263.821ZM251.501 225.903L296.409 277.496L247.914 267.232L251.501 225.903ZM251.593 225.783L308.92 221.856L296.58 277.452L251.593 225.783ZM232.327 263.793L168.413 250.097L251.243 225.811L232.327 263.793ZM178.633 322.102L132.099 328.181L167.953 250.474L178.633 322.102ZM184.242 359.668L184.297 359.709L132.554 374.064L132.084 328.36L184.242 359.668ZM184.136 359.967L133.013 423.703L132.504 374.268L184.136 359.967ZM132.858 423.724L95.7243 384.48L132.355 374.328L132.858 423.724ZM132.611 423.709L83.6184 402.69L95.6217 384.593L132.611 423.709ZM194.303 432.157L161.107 464.043L133.107 424.034L194.303 432.157ZM194.191 432.487L171.028 478.229L161.194 464.178L194.191 432.487ZM194.398 432.419L196.499 514.625L171.126 478.373L194.398 432.419ZM184.915 360.057L184.905 359.911L184.652 359.719L243.818 313.83L250.079 396.407L184.915 360.057ZM247.853 267.358L296.292 277.718L243.999 313.5L247.853 267.358ZM308.955 221.9L328.898 220.532L337 247.433L296.626 277.505L308.955 221.9ZM308.992 221.738L317.618 182.901L328.846 220.372L308.992 221.738ZM329.063 220.519L347.301 219.258L337.053 247.249L329.063 220.519ZM329.012 220.359L317.711 182.642L355.928 158.578L365.773 168.833L347.368 219.101L329.012 220.359ZM419.339 191.523L374.062 147.364L430.749 162.91L419.339 191.523ZM419.239 191.654L410.114 214.703L374.127 147.62L419.239 191.654ZM356.017 158.438L373.591 147.369L365.873 168.701L356.017 158.438ZM365.867 168.938L409.871 214.796L347.557 219.124L365.867 168.938ZM365.966 168.806L373.803 147.409L409.736 214.451L365.966 168.806ZM419.376 191.793L434.187 206.23L410.235 214.795L419.376 191.793ZM431.005 162.983L508.674 179.799L452.143 199.896L431.005 162.983ZM373.813 147.123L373.703 147.039L373.612 147.16L355.828 158.346L296.949 97.0181L429.936 162.569L373.813 147.123ZM355.777 158.412L317.635 182.446L296.85 97.0121L355.777 158.412ZM317.59 182.551L308.89 221.712L251.409 225.729L296.703 97.0912L317.59 182.551ZM168.132 250.057L166.886 195.808L251.103 225.722L168.132 250.057ZM132.108 327.895L129.915 247.383L167.927 250.281L132.108 327.895ZM132.425 374.122L95.7553 384.348L131.889 328.593L132.425 374.122ZM83.5337 402.574L63.455 393.964L95.4568 384.537L83.5337 402.574ZM83.4338 402.706L78.3366 410.426L63.5226 394.17L83.4338 402.706ZM83.5544 402.797L132.819 423.936L109.023 444.138L78.4322 410.55L83.5544 402.797ZM132.95 424.036L161.023 464.153L143.021 481.434L109.127 444.251L132.95 424.036ZM142.782 481.408L83.4994 466.003L109.005 444.366L142.782 481.408ZM142.398 481.481L99.469 481.51L83.6139 466.194L142.398 481.481ZM143.144 481.545L161.119 464.277L170.969 478.375L163.082 493.94L143.144 481.545ZM171.078 478.527L196.317 514.591L163.23 494.018L171.078 478.527ZM196.599 515.358L203.099 559.653L190.089 552.134L196.599 515.358ZM189.938 552.037L174.686 543.214L196.465 515.17L189.938 552.037ZM196.684 514.904L241.087 478.861L203.24 559.535L196.684 514.904ZM196.677 514.708L194.589 432.235L247.995 464.109L241.216 478.578L196.677 514.708ZM194.925 432.248L257.58 443.709L248.097 463.928L194.925 432.248ZM248.168 464.154L254.395 467.858L241.528 478.348L248.168 464.154ZM248.268 464.022L257.783 443.76L279.297 447.7L254.561 467.776L248.268 464.022ZM279.354 447.83L270.764 477.372L254.67 467.859L279.354 447.83ZM279.351 447.516L257.867 443.581L266.52 425.139L279.351 447.516ZM266.604 424.96L304.429 344.338L279.472 447.401L266.604 424.96ZM257.694 443.537L194.725 432.079L250.135 396.674L266.419 425.045L257.694 443.537ZM244.004 313.676L296.39 277.862L250.245 396.256L244.004 313.676ZM337.048 247.642L338.706 272.058L296.83 277.556L337.048 247.642ZM347.529 219.275L409.686 215.018L337.262 247.407L347.529 219.275ZM410.334 214.87L434.379 206.341L482.1 252.926L410.334 214.87ZM452.264 199.987L508.973 179.906L482.609 253.053L452.264 199.987ZM536.925 135.687L509.166 179.447L511.837 142.128L536.925 135.687ZM508.997 179.647L431.278 162.827L511.677 142.179L508.997 179.647ZM430.764 162.662L297.091 96.7626L395.11 89.1725L430.764 162.662ZM116.819 -1.82864L250.727 225.489L166.851 195.695L116.819 -1.82864ZM166.655 195.771L167.89 250.08L129.856 247.165L-19.5445 24.4365L166.655 195.771ZM129.688 247.158L75.4141 243.007L-19.7405 24.5127L129.688 247.158ZM75.4159 243.165L129.689 247.315L131.866 327.987L75.4159 243.165ZM95.5102 384.352L63.4339 393.809L131.503 328.784L95.5102 384.352ZM63.3398 394.343L78.2195 410.649L70.9712 421.614L63.3398 394.343ZM71.0279 421.812L78.3152 410.773L108.862 444.327L83.3485 465.906L71.0279 421.812ZM83.2485 466.038L31.565 481.545L70.9416 421.972L83.2485 466.038ZM31.9172 481.604L83.3494 466.201L99.3142 481.6L31.9172 481.604ZM99.6441 481.712L142.972 481.726L162.995 494.168L146.401 526.925L99.6441 481.712ZM146.533 526.956L163.136 494.188L196.469 514.914L174.499 543.211L146.533 526.956ZM146.582 527.166L174.44 543.287L159.464 562.571L146.582 527.166ZM159.526 562.739L174.569 543.368L189.896 552.229L178.7 615.405L159.526 562.739ZM126.564 605.18L159.385 562.926L178.575 615.639L126.564 605.18ZM126.547 605.34L178.698 615.818L178.592 616.413L178.717 616.248L171.149 717.734L126.547 605.34ZM237.164 592.123L203.252 559.838L241.32 478.691L254.527 467.958L270.611 477.551L237.164 592.123ZM270.766 477.529L279.423 447.899L311.965 502.078L270.766 477.529ZM312.108 501.979L279.495 447.712L308.407 424.958L312.108 501.979ZM279.524 447.492L304.532 344.226L308.477 424.683L279.524 447.492ZM308.552 424.653L304.662 343.667L304.647 343.345L266.395 424.871L250.193 396.597L296.469 277.94L346.888 394.488L308.552 424.653ZM346.965 394.045L296.666 277.795L338.716 272.273L346.965 394.045ZM337.153 247.549L410.055 214.987L410.121 215.037L410.171 214.971L482.291 253.175L338.847 272.01L337.153 247.549ZM557.319 188.726L482.656 252.967L509.046 179.788L537.046 135.641L540.902 134.658L557.319 188.726ZM539.998 131.066L562.219 96.0411L591.818 121.439L541.016 134.485L539.998 131.066ZM592.075 121.236L588.012 55.4418L636.726 53.8009L592.075 121.236ZM968.468 -33.0772L890.412 15.8443L898.323 -14.2827L968.468 -33.0772ZM847.939 109.335L859.914 82.9836L926.513 115.528L847.939 109.335ZM847.768 109.309L826.929 107.645L828.081 67.4088L859.892 82.8981L847.768 109.309ZM879.505 -18.1319L890.127 15.6969L854.677 -23.3068L879.505 -18.1319ZM780.595 47.3428L814.876 37.5531L827.791 67.085L780.595 47.3428ZM780.64 47.1695L807.719 21.2958L814.781 37.4286L780.64 47.1695ZM807.874 21.137L854.426 -23.3413L890.194 15.9036L814.974 37.3333L807.874 21.137ZM854.278 -23.4192L807.804 20.9795L801.739 7.10803L793.534 -39.0163L854.278 -23.4192ZM801.563 7.0438L786.855 4.86034L793.372 -38.6207L801.563 7.0438ZM801.535 7.19527L780.535 46.8302L786.838 5.02013L801.535 7.19527ZM801.666 7.29512L807.698 21.0727L780.697 46.8668L801.666 7.29512ZM827.85 67.2341L803.866 105.677L780.534 47.4004L827.85 67.2341ZM827.885 67.4851L826.816 107.611L803.967 105.84L827.885 67.4851ZM828.109 67.1887L815.149 37.5353L890.292 16.1163L859.981 82.7582L828.109 67.1887ZM890.369 15.6732L879.739 -18.1443L898.219 -14.3273L890.369 15.6732ZM879.732 -18.3401L871.807 -43.5845L897.629 -73.7677L910.683 -61.6152L898.305 -14.4866L879.732 -18.3401ZM879.55 -18.374L854.656 -23.5302L871.696 -43.4613L879.55 -18.374ZM854.566 -23.6849L847.728 -119.827L871.634 -43.6297L854.566 -23.6849ZM793.361 -38.9926L786.77 4.81307L744.382 -1.4058L793.361 -38.9926ZM680.088 -10.8423L743.906 -1.36967L723.498 14.277L680.088 -10.8423ZM636.997 53.6259L679.58 -10.6742L673.772 52.3696L636.997 53.6259ZM673.944 52.2575L679.785 -10.899L723.398 14.3398L673.944 52.2575ZM723.682 14.3302L744.159 -1.38479L786.657 4.91732L780.304 47.088L723.682 14.3302ZM804.105 105.91L826.796 107.821L826.392 122.336L804.105 105.91ZM826.48 122.334L826.89 107.719L847.715 109.356L837.984 130.768L826.48 122.334ZM837.914 130.905L825.492 158.232L826.477 122.521L837.914 130.905ZM825.599 158.365L838.046 131.005L857.186 145.043L825.637 158.428L825.804 158.209L825.599 158.365ZM638.906 356.162L698.641 301.779L717.129 338.291L638.906 356.162ZM717.23 337.952L698.785 301.612L719.925 279.603L717.23 337.952ZM698.941 301.384L721.969 236.62L719.986 279.477L698.941 301.384ZM720.15 279.307L722.143 236.163L767.25 230.28L720.15 279.307ZM722.336 235.999L825.021 159.172L784.529 212.312L784.487 212.367L767.407 230.141L722.336 235.999ZM784.616 212.447L816.02 223.805L767.656 230.018L784.616 212.447ZM816.296 223.738L784.821 212.36L819.672 199.474L816.296 223.738ZM784.827 212.192L825.308 159.044L819.665 199.21L784.827 212.192ZM825.499 158.86L893.573 171.994L819.874 199.23L825.499 158.86ZM893.53 171.823L825.699 158.734L857.358 145.295L893.53 171.823ZM838.112 130.986L847.891 109.489L926.617 115.711L857.321 145.025L838.112 130.986ZM860.006 82.8627L890.308 16.2322L926.795 115.499L860.006 82.8627ZM890.458 16.0344L968.833 -32.9211L926.988 115.404L890.458 16.0344ZM968.703 -33.1588L898.404 -14.4117L910.764 -61.4494L968.703 -33.1588ZM947.538 -71.7003L910.623 -61.7641L897.624 -73.8752L947.538 -71.7003ZM897.453 -73.8319L871.692 -43.7063L847.711 -120.168L897.453 -73.8319Z" fill="white"/>
546
+ <path opacity="0.5" d="M130.49 606.015C130.333 606.818 129.941 607.556 129.364 608.137C128.786 608.717 128.05 609.113 127.248 609.274C126.446 609.435 125.614 609.355 124.858 609.043C124.102 608.731 123.456 608.202 123.002 607.522C122.547 606.842 122.305 606.042 122.305 605.224C122.306 604.406 122.549 603.606 123.004 602.926C123.46 602.246 124.106 601.716 124.863 601.404C125.619 601.091 126.451 601.011 127.253 601.172C128.323 601.387 129.265 602.017 129.871 602.924C130.478 603.832 130.701 604.943 130.49 606.015Z" fill="white"/>
547
+ <path opacity="0.5" d="M146.884 482.377C146.73 483.135 146.355 483.831 145.807 484.376C145.259 484.921 144.561 485.292 143.803 485.441C143.044 485.591 142.259 485.512 141.545 485.215C140.832 484.918 140.223 484.416 139.794 483.773C139.366 483.129 139.138 482.373 139.14 481.6C139.141 480.827 139.371 480.071 139.802 479.429C140.232 478.786 140.843 478.285 141.557 477.989C142.271 477.694 143.057 477.616 143.815 477.767C144.833 477.972 145.727 478.573 146.302 479.437C146.877 480.302 147.086 481.359 146.884 482.377V482.377Z" fill="white"/>
548
+ <path opacity="0.5" d="M33.1198 481.998C33.0483 482.356 32.8723 482.685 32.6139 482.944C32.3556 483.202 32.0265 483.378 31.6684 483.449C31.3103 483.52 30.9393 483.483 30.6022 483.343C30.2651 483.204 29.9772 482.967 29.7747 482.663C29.5723 482.36 29.4645 482.003 29.4649 481.638C29.4654 481.272 29.5741 480.915 29.7773 480.612C29.9805 480.309 30.2691 480.072 30.6065 479.933C30.944 479.793 31.3151 479.757 31.673 479.828C32.1526 479.924 32.5744 480.207 32.8457 480.614C33.117 481.02 33.2156 481.518 33.1198 481.998V481.998Z" fill="white"/>
549
+ <path opacity="0.5" d="M97.9565 384.929C97.862 385.393 97.6321 385.819 97.296 386.152C96.9599 386.486 96.5325 386.713 96.0679 386.804C95.6033 386.895 95.1222 386.846 94.6854 386.664C94.2486 386.482 93.8755 386.175 93.6134 385.781C93.3513 385.387 93.2119 384.923 93.2127 384.45C93.2135 383.976 93.3544 383.514 93.6179 383.12C93.8813 382.727 94.2553 382.42 94.6927 382.238C95.1302 382.057 95.6114 382.009 96.0757 382.101C96.6974 382.232 97.2429 382.601 97.5946 383.13C97.9464 383.659 98.0763 384.305 97.9565 384.929V384.929Z" fill="white"/>
550
+ <path opacity="0.5" d="M77.6427 243.574C77.5491 244.039 77.3198 244.465 76.9837 244.8C76.6475 245.135 76.2197 245.362 75.7543 245.454C75.289 245.546 74.8071 245.497 74.3696 245.314C73.9321 245.132 73.5587 244.823 73.2967 244.428C73.0347 244.033 72.8958 243.569 72.8977 243.095C72.8996 242.621 73.0422 242.157 73.3073 241.764C73.5724 241.371 73.9483 241.065 74.3872 240.885C74.8262 240.705 75.3084 240.659 75.773 240.754C76.3945 240.88 76.9404 241.248 77.2909 241.777C77.6414 242.305 77.7678 242.951 77.6427 243.574V243.574Z" fill="white"/>
551
+ <path opacity="0.5" d="M134.339 328.757C134.245 329.222 134.016 329.649 133.68 329.984C133.344 330.319 132.916 330.546 132.451 330.638C131.985 330.729 131.503 330.681 131.066 330.498C130.628 330.315 130.255 330.007 129.993 329.612C129.731 329.217 129.592 328.753 129.594 328.278C129.596 327.804 129.738 327.341 130.004 326.948C130.269 326.554 130.645 326.248 131.084 326.068C131.522 325.888 132.005 325.843 132.469 325.937C133.091 326.064 133.637 326.432 133.987 326.96C134.338 327.489 134.464 328.135 134.339 328.757V328.757Z" fill="white"/>
552
+ <path opacity="0.5" d="M66.9236 394.763C66.7739 395.503 66.4084 396.181 65.8731 396.714C65.3379 397.246 64.6571 397.607 63.9167 397.753C63.1764 397.898 62.4099 397.82 61.7139 397.53C61.0179 397.24 60.4237 396.749 60.0066 396.121C59.5896 395.492 59.3683 394.754 59.3706 394C59.373 393.245 59.5989 392.508 60.0199 391.882C60.4409 391.255 61.0381 390.768 61.7358 390.481C62.4336 390.193 63.2007 390.119 63.9401 390.268C64.9303 390.471 65.7997 391.058 66.3587 391.9C66.9176 392.742 67.1207 393.771 66.9236 394.763V394.763Z" fill="white"/>
553
+ <path opacity="0.5" d="M85.6755 466.546C85.5819 467.011 85.3525 467.438 85.0163 467.773C84.6801 468.108 84.2524 468.335 83.787 468.427C83.3217 468.518 82.8398 468.47 82.4023 468.287C81.9648 468.104 81.5914 467.796 81.3294 467.401C81.0674 467.006 80.9286 466.542 80.9305 466.068C80.9323 465.593 81.0749 465.13 81.34 464.737C81.6052 464.343 81.981 464.037 82.4199 463.857C82.8589 463.678 83.3411 463.632 83.8057 463.727C84.1143 463.787 84.4077 463.909 84.6691 464.084C84.9304 464.259 85.1545 464.484 85.3283 464.746C85.5022 465.008 85.6223 465.302 85.6819 465.611C85.7415 465.92 85.7393 466.238 85.6755 466.546Z" fill="white"/>
554
+ <path opacity="0.5" d="M148.783 527.472C148.687 527.937 148.456 528.362 148.119 528.695C147.781 529.028 147.352 529.253 146.887 529.343C146.421 529.432 145.94 529.382 145.503 529.197C145.067 529.013 144.695 528.703 144.435 528.307C144.174 527.911 144.037 527.447 144.041 526.973C144.044 526.499 144.188 526.037 144.455 525.644C144.721 525.252 145.097 524.947 145.537 524.769C145.976 524.591 146.458 524.546 146.922 524.642C147.231 524.704 147.525 524.826 147.786 525.002C148.047 525.178 148.271 525.405 148.444 525.668C148.617 525.931 148.736 526.226 148.794 526.536C148.853 526.846 148.849 527.164 148.783 527.472V527.472Z" fill="white"/>
555
+ <path opacity="0.5" d="M205.02 560.213C204.945 560.576 204.765 560.909 204.501 561.17C204.237 561.431 203.902 561.607 203.538 561.678C203.174 561.748 202.798 561.708 202.456 561.564C202.115 561.42 201.824 561.178 201.62 560.868C201.417 560.559 201.309 560.195 201.312 559.825C201.315 559.454 201.428 559.092 201.637 558.786C201.845 558.479 202.14 558.241 202.484 558.102C202.828 557.963 203.205 557.929 203.568 558.004C204.051 558.108 204.474 558.398 204.745 558.811C205.017 559.224 205.116 559.728 205.02 560.213V560.213Z" fill="white"/>
556
+ <path opacity="0.5" d="M314.608 502.735C314.513 503.2 314.284 503.625 313.947 503.959C313.611 504.293 313.184 504.519 312.719 504.611C312.255 504.702 311.774 504.653 311.337 504.471C310.9 504.289 310.527 503.981 310.265 503.587C310.003 503.193 309.863 502.73 309.864 502.257C309.865 501.783 310.006 501.32 310.269 500.927C310.533 500.533 310.907 500.226 311.344 500.045C311.782 499.863 312.263 499.816 312.727 499.908C313.037 499.969 313.331 500.091 313.593 500.266C313.856 500.442 314.081 500.667 314.255 500.93C314.43 501.193 314.551 501.488 314.612 501.798C314.672 502.107 314.671 502.426 314.608 502.735V502.735Z" fill="white"/>
557
+ <path opacity="0.5" d="M306.343 343.975C306.252 344.43 305.983 344.831 305.596 345.089C305.209 345.347 304.736 345.441 304.28 345.349C303.825 345.258 303.424 344.99 303.166 344.603C302.909 344.216 302.816 343.743 302.907 343.287C302.952 343.062 303.042 342.847 303.17 342.656C303.298 342.465 303.463 342.3 303.654 342.173C303.846 342.045 304.061 341.956 304.286 341.912C304.512 341.867 304.744 341.867 304.97 341.912C305.196 341.957 305.41 342.047 305.601 342.175C305.792 342.303 305.956 342.467 306.084 342.659C306.211 342.85 306.3 343.065 306.344 343.291C306.389 343.516 306.388 343.749 306.343 343.975V343.975Z" fill="white"/>
558
+ <path opacity="0.5" d="M412.455 215.374C412.361 215.838 412.131 216.264 411.795 216.598C411.459 216.931 411.031 217.158 410.567 217.249C410.102 217.34 409.621 217.292 409.184 217.11C408.747 216.928 408.374 216.62 408.112 216.226C407.85 215.832 407.71 215.369 407.711 214.895C407.712 214.422 407.853 213.959 408.116 213.565C408.38 213.172 408.754 212.865 409.191 212.684C409.629 212.502 410.11 212.454 410.574 212.546C410.884 212.608 411.178 212.73 411.441 212.905C411.703 213.08 411.928 213.306 412.103 213.569C412.278 213.832 412.399 214.126 412.459 214.436C412.52 214.746 412.518 215.065 412.455 215.374V215.374Z" fill="white"/>
559
+ <path opacity="0.5" d="M484.883 253.741C484.788 254.205 484.558 254.631 484.222 254.965C483.886 255.299 483.459 255.525 482.994 255.616C482.53 255.708 482.049 255.659 481.612 255.477C481.175 255.295 480.802 254.987 480.54 254.593C480.278 254.199 480.138 253.736 480.139 253.262C480.14 252.789 480.281 252.326 480.544 251.933C480.808 251.539 481.182 251.232 481.619 251.051C482.057 250.869 482.538 250.822 483.002 250.913C483.626 251.041 484.173 251.409 484.526 251.939C484.878 252.469 485.006 253.117 484.883 253.741V253.741Z" fill="white"/>
560
+ <path opacity="0.5" d="M559.768 189.253C559.675 189.718 559.446 190.145 559.109 190.48C558.773 190.815 558.345 191.042 557.88 191.134C557.415 191.225 556.933 191.177 556.495 190.994C556.058 190.811 555.684 190.503 555.422 190.108C555.16 189.713 555.021 189.249 555.023 188.774C555.025 188.3 555.168 187.837 555.433 187.444C555.698 187.05 556.074 186.744 556.513 186.564C556.952 186.385 557.434 186.339 557.899 186.433C558.207 186.494 558.501 186.616 558.762 186.791C559.023 186.966 559.247 187.191 559.421 187.453C559.595 187.715 559.715 188.009 559.775 188.318C559.834 188.627 559.832 188.945 559.768 189.253V189.253Z" fill="white"/>
561
+ <path opacity="0.5" d="M520.087 58.4386C519.992 58.9027 519.763 59.3284 519.426 59.6621C519.09 59.9958 518.663 60.2226 518.198 60.3137C517.734 60.4048 517.253 60.3562 516.816 60.1741C516.379 59.9919 516.006 59.6845 515.744 59.2904C515.482 58.8963 515.342 58.4332 515.343 57.9597C515.344 57.4862 515.485 57.0234 515.748 56.6297C516.012 56.2361 516.386 55.9292 516.823 55.7479C517.261 55.5665 517.742 55.5188 518.206 55.6107C518.516 55.672 518.81 55.7939 519.073 55.9694C519.335 56.1449 519.56 56.3704 519.735 56.6332C519.909 56.896 520.03 57.1908 520.091 57.5006C520.151 57.8105 520.15 58.1292 520.087 58.4386V58.4386Z" fill="white"/>
562
+ <path opacity="0.5" d="M118.469 -1.61503C118.402 -1.28114 118.237 -0.974601 117.996 -0.734116C117.755 -0.493631 117.448 -0.329973 117.114 -0.263948C116.78 -0.197923 116.434 -0.232393 116.12 -0.363081C115.805 -0.49377 115.537 -0.714865 115.348 -0.998219C115.16 -1.28157 115.059 -1.61448 115.06 -1.95499C115.061 -2.29551 115.163 -2.62833 115.352 -2.91124C115.542 -3.19415 115.811 -3.4145 116.126 -3.54445C116.441 -3.67439 116.787 -3.70802 117.121 -3.64121C117.342 -3.59684 117.553 -3.50922 117.741 -3.38338C117.928 -3.25754 118.089 -3.09597 118.215 -2.90781C118.34 -2.71966 118.427 -2.50866 118.47 -2.28684C118.514 -2.06502 118.514 -1.83674 118.469 -1.61503V-1.61503Z" fill="white"/>
563
+ <path opacity="0.5" d="M198.957 515.366C198.864 515.831 198.637 516.258 198.302 516.593C197.967 516.929 197.541 517.158 197.076 517.251C196.612 517.344 196.13 517.298 195.692 517.117C195.254 516.937 194.88 516.631 194.616 516.237C194.352 515.844 194.211 515.381 194.21 514.908C194.209 514.434 194.349 513.97 194.611 513.576C194.874 513.181 195.247 512.873 195.684 512.69C196.121 512.507 196.603 512.458 197.067 512.549C197.69 512.675 198.238 513.041 198.592 513.568C198.946 514.096 199.077 514.742 198.957 515.366V515.366Z" fill="white"/>
564
+ <path opacity="0.5" d="M173.366 718.5C173.269 718.963 173.037 719.387 172.699 719.719C172.362 720.051 171.934 720.276 171.469 720.365C171.004 720.454 170.524 720.403 170.088 720.219C169.652 720.035 169.28 719.726 169.02 719.332C168.76 718.937 168.622 718.473 168.624 718C168.627 717.527 168.769 717.065 169.034 716.672C169.298 716.28 169.673 715.974 170.111 715.794C170.548 715.614 171.029 715.568 171.493 715.661C171.803 715.723 172.098 715.846 172.36 716.023C172.622 716.199 172.847 716.426 173.021 716.69C173.195 716.954 173.315 717.249 173.374 717.56C173.433 717.871 173.43 718.19 173.366 718.5V718.5Z" fill="white"/>
565
+ <path opacity="0.5" d="M239.594 592.722C239.5 593.186 239.27 593.612 238.934 593.945C238.598 594.279 238.17 594.506 237.706 594.597C237.241 594.688 236.76 594.639 236.323 594.457C235.886 594.275 235.513 593.968 235.251 593.574C234.989 593.18 234.85 592.716 234.85 592.243C234.851 591.769 234.992 591.307 235.256 590.913C235.519 590.519 235.893 590.213 236.33 590.031C236.768 589.85 237.249 589.802 237.714 589.894C238.337 590.021 238.885 590.39 239.237 590.92C239.589 591.449 239.718 592.097 239.594 592.722V592.722Z" fill="white"/>
566
+ <path opacity="0.5" d="M281.75 448.109C281.622 448.733 281.253 449.28 280.722 449.632C280.191 449.983 279.543 450.109 278.92 449.983C278.296 449.856 277.749 449.487 277.398 448.956C277.047 448.426 276.921 447.777 277.048 447.154C277.111 446.845 277.235 446.551 277.411 446.29C277.587 446.029 277.813 445.805 278.076 445.631C278.339 445.457 278.633 445.336 278.942 445.276C279.252 445.216 279.57 445.217 279.878 445.28C280.187 445.342 280.48 445.465 280.742 445.641C281.003 445.818 281.226 446.044 281.4 446.306C281.574 446.569 281.694 446.863 281.754 447.173C281.814 447.482 281.812 447.8 281.75 448.109Z" fill="white"/>
567
+ <path opacity="0.5" d="M196.848 432.603C196.754 433.067 196.524 433.493 196.188 433.826C195.851 434.16 195.424 434.387 194.96 434.478C194.495 434.569 194.014 434.52 193.577 434.338C193.14 434.156 192.767 433.848 192.505 433.454C192.243 433.06 192.104 432.597 192.104 432.124C192.105 431.65 192.246 431.187 192.51 430.794C192.773 430.4 193.147 430.093 193.584 429.912C194.022 429.731 194.503 429.683 194.967 429.775C195.277 429.836 195.571 429.958 195.834 430.134C196.096 430.309 196.321 430.535 196.496 430.797C196.671 431.06 196.792 431.355 196.852 431.665C196.913 431.975 196.911 432.293 196.848 432.603Z" fill="white"/>
568
+ <path opacity="0.5" d="M135.302 424.421C135.208 424.886 134.979 425.313 134.643 425.648C134.307 425.983 133.879 426.21 133.414 426.302C132.948 426.393 132.466 426.345 132.029 426.162C131.591 425.979 131.218 425.671 130.956 425.276C130.694 424.881 130.555 424.417 130.557 423.943C130.559 423.468 130.701 423.005 130.967 422.612C131.232 422.218 131.607 421.912 132.046 421.732C132.485 421.553 132.968 421.507 133.432 421.602C133.741 421.662 134.034 421.784 134.296 421.959C134.557 422.134 134.781 422.359 134.955 422.621C135.129 422.883 135.249 423.177 135.308 423.486C135.368 423.795 135.366 424.113 135.302 424.421V424.421Z" fill="white"/>
569
+ <path opacity="0.5" d="M189.024 360.788C188.836 361.705 188.38 362.547 187.714 363.206C187.048 363.864 186.202 364.311 185.283 364.49C184.364 364.668 183.413 364.571 182.55 364.209C181.686 363.847 180.95 363.237 180.433 362.457C179.917 361.676 179.643 360.76 179.646 359.824C179.65 358.887 179.931 357.973 180.454 357.196C180.977 356.418 181.718 355.813 182.584 355.457C183.45 355.101 184.402 355.009 185.32 355.193C186.553 355.444 187.635 356.175 188.329 357.224C189.024 358.273 189.273 359.554 189.024 360.788Z" fill="white"/>
570
+ <path opacity="0.5" d="M170.351 250.704C170.257 251.168 170.027 251.594 169.691 251.928C169.354 252.261 168.927 252.488 168.462 252.579C167.998 252.67 167.517 252.622 167.08 252.44C166.643 252.258 166.27 251.95 166.008 251.556C165.746 251.162 165.606 250.699 165.607 250.225C165.608 249.752 165.749 249.289 166.012 248.896C166.276 248.502 166.65 248.195 167.087 248.014C167.525 247.832 168.006 247.784 168.47 247.876C169.092 248.007 169.637 248.376 169.989 248.905C170.341 249.434 170.471 250.08 170.351 250.704V250.704Z" fill="white"/>
571
+ <path opacity="0.5" d="M246.224 314.165C246.13 314.629 245.9 315.055 245.564 315.389C245.227 315.722 244.8 315.949 244.336 316.04C243.871 316.131 243.39 316.083 242.953 315.901C242.516 315.719 242.143 315.411 241.881 315.017C241.619 314.623 241.479 314.16 241.48 313.686C241.481 313.213 241.622 312.75 241.886 312.356C242.149 311.963 242.523 311.656 242.96 311.474C243.398 311.293 243.879 311.245 244.343 311.337C244.653 311.399 244.947 311.521 245.21 311.696C245.472 311.872 245.697 312.097 245.872 312.36C246.046 312.623 246.168 312.917 246.228 313.227C246.289 313.537 246.287 313.856 246.224 314.165V314.165Z" fill="white"/>
572
+ <path opacity="0.5" d="M252.494 397.044C252.397 397.508 252.165 397.932 251.827 398.264C251.49 398.596 251.062 398.82 250.597 398.909C250.132 398.998 249.652 398.948 249.216 398.764C248.78 398.58 248.408 398.271 248.148 397.877C247.888 397.482 247.75 397.018 247.752 396.545C247.755 396.072 247.897 395.61 248.162 395.217C248.426 394.825 248.801 394.519 249.239 394.339C249.676 394.159 250.157 394.113 250.621 394.206C250.931 394.268 251.226 394.391 251.488 394.567C251.75 394.744 251.975 394.971 252.149 395.235C252.323 395.499 252.443 395.794 252.502 396.105C252.561 396.416 252.558 396.735 252.494 397.044V397.044Z" fill="white"/>
573
+ <path opacity="0.5" d="M300.636 278.525C300.469 279.341 300.064 280.09 299.472 280.676C298.88 281.263 298.128 281.661 297.31 281.821C296.492 281.98 295.646 281.893 294.878 281.572C294.11 281.25 293.454 280.708 292.994 280.014C292.534 279.32 292.29 278.504 292.293 277.671C292.297 276.838 292.547 276.024 293.012 275.333C293.477 274.641 294.136 274.103 294.907 273.786C295.678 273.469 296.525 273.387 297.341 273.552C297.884 273.661 298.401 273.876 298.86 274.185C299.32 274.495 299.714 274.892 300.02 275.354C300.327 275.815 300.538 276.333 300.644 276.877C300.75 277.422 300.747 277.981 300.636 278.525V278.525Z" fill="white"/>
574
+ <path opacity="0.5" d="M319.97 183.078C319.874 183.542 319.643 183.968 319.305 184.301C318.968 184.633 318.539 184.859 318.073 184.948C317.608 185.038 317.126 184.987 316.69 184.803C316.254 184.618 315.882 184.309 315.621 183.913C315.361 183.517 315.224 183.053 315.227 182.579C315.231 182.105 315.375 181.642 315.641 181.25C315.907 180.858 316.284 180.553 316.723 180.374C317.162 180.196 317.644 180.152 318.109 180.247C318.418 180.309 318.711 180.432 318.972 180.608C319.234 180.784 319.457 181.01 319.63 181.273C319.804 181.537 319.923 181.832 319.981 182.141C320.039 182.451 320.036 182.769 319.97 183.078V183.078Z" fill="white"/>
575
+ <path opacity="0.5" d="M375.562 147.569C375.494 147.92 375.324 148.244 375.072 148.499C374.821 148.753 374.499 148.927 374.148 148.998C373.798 149.07 373.434 149.035 373.103 148.899C372.772 148.763 372.489 148.532 372.291 148.234C372.092 147.937 371.986 147.587 371.986 147.229C371.987 146.871 372.094 146.522 372.294 146.224C372.493 145.927 372.777 145.696 373.108 145.561C373.439 145.425 373.803 145.391 374.153 145.463C374.384 145.508 374.604 145.599 374.8 145.729C374.996 145.86 375.164 146.027 375.295 146.223C375.426 146.419 375.516 146.638 375.562 146.869C375.608 147.1 375.608 147.338 375.562 147.569V147.569Z" fill="white"/>
576
+ <path opacity="0.5" d="M350.468 395.165C350.329 395.845 349.992 396.47 349.499 396.959C349.006 397.448 348.379 397.78 347.698 397.913C347.016 398.046 346.311 397.974 345.671 397.706C345.031 397.439 344.484 396.987 344.101 396.409C343.717 395.831 343.513 395.152 343.516 394.458C343.518 393.763 343.726 393.085 344.113 392.509C344.5 391.932 345.049 391.483 345.691 391.219C346.333 390.954 347.039 390.885 347.719 391.021C348.632 391.208 349.434 391.749 349.949 392.525C350.464 393.302 350.651 394.251 350.468 395.165V395.165Z" fill="white"/>
577
+ <path opacity="0.5" d="M339.424 247.991C339.33 248.456 339.101 248.883 338.765 249.218C338.428 249.553 338.001 249.78 337.535 249.872C337.07 249.964 336.588 249.915 336.15 249.732C335.713 249.55 335.34 249.241 335.078 248.846C334.816 248.451 334.677 247.987 334.679 247.513C334.681 247.038 334.823 246.575 335.088 246.182C335.353 245.788 335.729 245.482 336.168 245.303C336.607 245.123 337.089 245.077 337.554 245.172C337.863 245.233 338.156 245.354 338.417 245.529C338.679 245.704 338.903 245.929 339.077 246.191C339.25 246.453 339.371 246.747 339.43 247.056C339.49 247.365 339.488 247.683 339.424 247.991V247.991Z" fill="white"/>
578
+ <path opacity="0.5" d="M181.089 616.195C180.995 616.659 180.765 617.084 180.429 617.418C180.093 617.752 179.665 617.978 179.201 618.07C178.736 618.161 178.255 618.112 177.818 617.93C177.381 617.748 177.008 617.44 176.746 617.046C176.484 616.652 176.345 616.189 176.346 615.716C176.346 615.242 176.487 614.779 176.751 614.386C177.014 613.992 177.388 613.685 177.826 613.504C178.263 613.323 178.744 613.275 179.209 613.367C179.83 613.497 180.376 613.867 180.728 614.395C181.079 614.924 181.209 615.57 181.089 616.195V616.195Z" fill="white"/>
579
+ <path opacity="0.5" d="M892.664 16.4458C892.546 17.0043 892.234 17.5031 891.784 17.8545C891.334 18.2059 890.775 18.3876 890.204 18.3671C889.567 18.3322 888.969 18.0514 888.535 17.5841C888.279 17.2976 888.097 16.9537 888.004 16.5815C887.91 16.2093 887.907 15.8199 887.997 15.4464C888.099 14.9489 888.353 14.4954 888.723 14.1474C889.191 13.73 889.803 13.51 890.429 13.5337C891.055 13.5575 891.648 13.8232 892.082 14.2749C892.351 14.5607 892.544 14.9085 892.645 15.2872C892.747 15.6659 892.754 16.0639 892.664 16.4458V16.4458Z" fill="white"/>
580
+ <path opacity="0.5" d="M806.191 106.369C806.09 106.868 805.831 107.32 805.453 107.661C805.08 108.002 804.608 108.217 804.105 108.274C803.602 108.331 803.095 108.227 802.655 107.978C802.215 107.728 801.865 107.346 801.656 106.886C801.446 106.425 801.388 105.91 801.49 105.414C801.608 104.856 801.92 104.357 802.37 104.005C802.82 103.654 803.379 103.472 803.95 103.493C804.587 103.528 805.185 103.808 805.619 104.276C805.874 104.554 806.058 104.889 806.157 105.253C806.257 105.618 806.268 106 806.191 106.369V106.369Z" fill="white"/>
581
+ <path opacity="0.5" d="M896.197 172.379C896.11 172.815 895.904 173.218 895.601 173.544C895.298 173.869 894.911 174.104 894.482 174.222C894.054 174.34 893.601 174.337 893.174 174.213C892.748 174.088 892.365 173.848 892.067 173.518C891.812 173.231 891.63 172.887 891.536 172.515C891.442 172.143 891.44 171.753 891.529 171.38C891.631 170.882 891.885 170.428 892.256 170.081C892.733 169.66 893.353 169.437 893.989 169.459C894.334 169.478 894.671 169.571 894.976 169.731C895.282 169.892 895.55 170.116 895.763 170.388C895.975 170.66 896.126 170.975 896.207 171.311C896.288 171.647 896.296 171.996 896.23 172.335L896.197 172.379Z" fill="white"/>
582
+ <path opacity="0.5" d="M928.775 115.983C928.691 116.367 928.492 116.717 928.204 116.985C928.027 117.155 927.816 117.286 927.586 117.37C927.355 117.454 927.11 117.49 926.865 117.474C926.623 117.466 926.385 117.41 926.165 117.308C925.946 117.207 925.749 117.063 925.585 116.884C925.378 116.667 925.227 116.403 925.144 116.115C925.062 115.826 925.051 115.522 925.113 115.228C925.197 114.844 925.396 114.494 925.684 114.226C925.865 114.06 926.078 113.932 926.31 113.849C926.542 113.767 926.788 113.731 927.033 113.745C927.275 113.753 927.513 113.81 927.733 113.911C927.953 114.013 928.15 114.157 928.314 114.336C928.517 114.553 928.665 114.816 928.745 115.103C928.825 115.389 928.835 115.691 928.775 115.983V115.983Z" fill="white"/>
583
+ <path opacity="0.5" d="M786.911 212.769C786.795 213.331 786.483 213.832 786.029 214.183C785.576 214.534 785.012 214.711 784.44 214.682C784.094 214.668 783.756 214.578 783.449 214.42C783.142 214.261 782.872 214.038 782.66 213.765C782.448 213.492 782.298 213.176 782.22 212.839C782.142 212.502 782.139 212.152 782.21 211.814C782.316 211.312 782.572 210.856 782.944 210.504C783.412 210.087 784.023 209.868 784.649 209.894C785.274 209.92 785.865 210.188 786.295 210.642C786.563 210.92 786.758 211.259 786.865 211.63C786.972 212 786.988 212.391 786.911 212.769V212.769Z" fill="white"/>
584
+ <path opacity="0.5" d="M719.139 338.692C719.067 339.086 718.862 339.443 718.56 339.705C718.38 339.872 718.17 340 717.94 340.084C717.71 340.168 717.466 340.206 717.221 340.194C716.95 340.185 716.684 340.116 716.442 339.993C716.2 339.87 715.988 339.695 715.821 339.481C715.654 339.267 715.536 339.018 715.475 338.754C715.415 338.489 715.413 338.214 715.469 337.948C715.549 337.509 715.788 337.114 716.14 336.839C716.492 336.563 716.933 336.428 717.379 336.457C717.621 336.465 717.859 336.522 718.078 336.623C718.298 336.724 718.495 336.869 718.659 337.048C718.866 337.262 719.017 337.524 719.101 337.81C719.185 338.097 719.198 338.399 719.139 338.692V338.692Z" fill="white"/>
585
+ <path opacity="0.5" d="M724.384 236.53C724.28 237.032 724.019 237.488 723.638 237.832C723.406 238.051 723.133 238.221 722.834 238.333C722.536 238.445 722.219 238.496 721.9 238.484C721.582 238.471 721.269 238.396 720.981 238.261C720.692 238.126 720.434 237.936 720.22 237.7C720.006 237.464 719.841 237.188 719.735 236.887C719.629 236.587 719.584 236.268 719.603 235.95C719.622 235.632 719.704 235.321 719.844 235.035C719.984 234.749 720.18 234.493 720.42 234.284C720.794 233.942 721.266 233.728 721.768 233.671C722.271 233.614 722.779 233.717 723.219 233.966C723.659 234.216 724.008 234.598 724.218 235.059C724.427 235.519 724.485 236.034 724.384 236.53V236.53Z" fill="white"/>
586
+ <path opacity="0.5" d="M820.248 224.559C820.076 225.391 819.651 226.15 819.032 226.732C818.248 227.444 817.214 227.816 816.156 227.766C815.099 227.716 814.105 227.248 813.393 226.466C812.995 226.091 812.679 225.638 812.463 225.135C812.248 224.632 812.138 224.091 812.14 223.544C812.142 222.997 812.257 222.456 812.477 221.955C812.697 221.454 813.017 221.003 813.418 220.631C813.819 220.259 814.292 219.973 814.808 219.791C815.324 219.609 815.872 219.535 816.417 219.573C816.963 219.612 817.495 219.762 817.98 220.015C818.465 220.267 818.892 220.617 819.237 221.041C819.678 221.501 820.001 222.062 820.178 222.674C820.354 223.287 820.378 223.934 820.248 224.559V224.559Z" fill="white"/>
587
+ <path opacity="0.5" d="M827.763 159.177C827.644 159.735 827.333 160.234 826.883 160.586C826.433 160.937 825.873 161.119 825.303 161.098C824.666 161.063 824.067 160.783 823.633 160.315C823.216 159.848 822.997 159.236 823.021 158.61C823.045 157.983 823.312 157.39 823.763 156.955C824.23 156.535 824.842 156.313 825.47 156.336C826.097 156.36 826.69 156.628 827.123 157.083C827.39 157.354 827.588 157.687 827.699 158.051C827.811 158.416 827.833 158.802 827.763 159.177V159.177Z" fill="white"/>
588
+ <path opacity="0.5" d="M832.407 68.1516C832.218 69.0826 831.739 69.9298 831.038 70.5715C830.595 70.9763 830.076 71.2899 829.512 71.494C828.948 71.6982 828.35 71.7888 827.75 71.7611C827.152 71.7355 826.564 71.5902 826.023 71.3338C825.481 71.0775 824.997 70.7151 824.598 70.2683C824.074 69.6917 823.708 68.9903 823.533 68.2313C823.357 67.4724 823.38 66.681 823.597 65.9328C823.815 65.1845 824.22 64.5045 824.775 63.9573C825.33 63.4102 826.016 63.0141 826.767 62.8072C827.518 62.6003 828.31 62.5893 829.066 62.7753C829.822 62.9613 830.518 63.338 831.087 63.8695C831.656 64.4011 832.079 65.0698 832.316 65.8118C832.553 66.5537 832.596 67.3441 832.441 68.1076L832.407 68.1516Z" fill="white"/>
589
+ <path opacity="0.5" d="M804.007 7.62014C803.92 8.05605 803.714 8.45939 803.411 8.78488C803.108 9.11037 802.721 9.34527 802.292 9.46339C801.864 9.5815 801.411 9.57819 800.985 9.45375C800.558 9.3293 800.175 9.08849 799.878 8.75856C799.458 8.29284 799.238 7.6812 799.264 7.05455C799.29 6.42789 799.561 5.83613 800.019 5.40666C800.392 5.06507 800.864 4.85039 801.367 4.7934C801.87 4.73641 802.377 4.8401 802.817 5.08947C803.257 5.33883 803.607 5.72124 803.816 6.18175C804.025 6.64226 804.084 7.15726 803.982 7.6531L804.007 7.62014Z" fill="white"/>
590
+ <path opacity="0.5" d="M594.377 121.979C594.276 122.477 594.017 122.93 593.639 123.27C593.408 123.486 593.135 123.654 592.837 123.761C592.539 123.868 592.222 123.912 591.906 123.892C591.273 123.862 590.677 123.584 590.247 123.117C589.83 122.649 589.611 122.038 589.635 121.412C589.659 120.785 589.926 120.192 590.377 119.757C590.844 119.336 591.456 119.114 592.084 119.138C592.711 119.162 593.304 119.43 593.737 119.885C594.004 120.156 594.202 120.488 594.313 120.853C594.425 121.218 594.447 121.604 594.377 121.979V121.979Z" fill="white"/>
591
+ <path opacity="0.5" d="M433.23 163.372C433.141 163.875 432.885 164.332 432.504 164.672C432.038 165.092 431.426 165.312 430.799 165.287C430.173 165.261 429.582 164.99 429.153 164.533C428.893 164.249 428.709 163.905 428.615 163.532C428.521 163.159 428.521 162.769 428.615 162.395C428.704 161.893 428.96 161.435 429.341 161.096C429.808 160.675 430.42 160.453 431.047 160.477C431.675 160.501 432.268 160.769 432.701 161.224C432.96 161.509 433.145 161.856 433.237 162.231C433.33 162.606 433.327 162.998 433.23 163.372V163.372Z" fill="white"/>
592
+ <path opacity="0.5" d="M397.586 89.5495C397.494 90.0557 397.235 90.5166 396.852 90.8596C396.618 91.0724 396.344 91.237 396.047 91.3437C395.749 91.4504 395.434 91.4972 395.118 91.4815C394.774 91.4625 394.439 91.3701 394.134 91.2103C393.829 91.0506 393.561 90.8274 393.35 90.5556C393.139 90.2839 392.988 89.9698 392.908 89.6347C392.829 89.2997 392.822 88.9515 392.888 88.6134C392.991 88.1162 393.245 87.6626 393.615 87.314C394.08 86.89 394.692 86.6658 395.321 86.6896C395.949 86.7135 396.543 86.9837 396.974 87.4417C397.238 87.7174 397.432 88.0531 397.539 88.4201C397.646 88.7871 397.662 89.1746 397.586 89.5495V89.5495Z" fill="white"/>
593
+ <path opacity="0.5" d="M299.114 97.2601C299.008 97.7613 298.752 98.2183 298.379 98.5703C298.147 98.7814 297.874 98.9441 297.578 99.049C297.282 99.1539 296.968 99.1988 296.654 99.1812C296.337 99.1715 296.026 99.0971 295.739 98.9625C295.451 98.8279 295.195 98.636 294.985 98.3985C294.729 98.1121 294.547 97.7681 294.453 97.3959C294.36 97.0237 294.357 96.6343 294.447 96.2608C294.547 95.7622 294.806 95.3093 295.184 94.9698C295.558 94.6282 296.03 94.4136 296.532 94.3566C297.035 94.2996 297.543 94.4032 297.983 94.6525C298.423 94.9019 298.772 95.2842 298.982 95.7447C299.191 96.2052 299.249 96.7203 299.148 97.2161L299.114 97.2601Z" fill="white"/>
594
+ <path opacity="0.5" d="M253.671 226.252C253.568 226.749 253.314 227.203 252.945 227.551C252.48 227.975 251.867 228.199 251.238 228.176C250.61 228.152 250.016 227.882 249.585 227.424C249.309 227.121 249.115 226.753 249.022 226.354C248.929 225.956 248.939 225.54 249.052 225.146C249.166 224.752 249.378 224.394 249.669 224.105C249.96 223.817 250.32 223.608 250.714 223.498C251.109 223.388 251.525 223.381 251.923 223.478C252.321 223.574 252.687 223.772 252.987 224.05C253.287 224.329 253.51 224.68 253.636 225.07C253.761 225.46 253.785 225.875 253.704 226.277L253.671 226.252Z" fill="white"/>
595
+ <path opacity="0.5" d="M640.998 356.865C640.879 357.423 640.567 357.922 640.118 358.273C639.668 358.625 639.108 358.806 638.538 358.786C637.901 358.751 637.302 358.47 636.868 358.003C636.448 357.537 636.228 356.926 636.255 356.299C636.281 355.672 636.552 355.081 637.009 354.651C637.473 354.228 638.086 354.005 638.714 354.031C639.341 354.057 639.933 354.329 640.36 354.79C640.627 355.058 640.825 355.387 640.936 355.748C641.047 356.11 641.068 356.493 640.998 356.865V356.865Z" fill="white"/>
596
+ <path opacity="0.5" d="M702.05 302.361C701.903 303.073 701.538 303.721 701.006 304.215C700.331 304.828 699.44 305.149 698.53 305.106C697.619 305.064 696.763 304.662 696.149 303.989C695.786 303.59 695.523 303.111 695.38 302.591C695.237 302.071 695.219 301.524 695.327 300.996C695.475 300.28 695.843 299.628 696.379 299.131C696.712 298.825 697.103 298.589 697.528 298.435C697.953 298.281 698.404 298.213 698.855 298.234C699.307 298.255 699.749 298.365 700.158 298.557C700.566 298.75 700.933 299.022 701.236 299.357C701.604 299.755 701.87 300.235 702.012 300.759C702.153 301.282 702.166 301.831 702.05 302.361V302.361Z" fill="white"/>
597
+ <path opacity="0.5" d="M782.107 47.6471C782.035 48.0159 781.847 48.3522 781.57 48.6058C781.22 48.9127 780.763 49.069 780.299 49.0408C779.835 49.0126 779.401 48.8022 779.092 48.4553C778.905 48.2516 778.768 48.0064 778.694 47.7397C778.62 47.4731 778.61 47.1927 778.666 46.9214C778.745 46.504 778.974 46.1297 779.309 45.8683C779.644 45.6069 780.063 45.4765 780.487 45.5011C780.729 45.507 780.967 45.5635 781.186 45.6671C781.405 45.7707 781.6 45.9191 781.758 46.1026C781.931 46.316 782.052 46.5663 782.113 46.8341C782.173 47.1019 782.171 47.38 782.107 47.6471V47.6471Z" fill="white"/>
598
+ <path opacity="0.5" d="M676.215 52.9744C676.091 53.4971 675.796 53.9635 675.377 54.2988C674.957 54.634 674.437 54.8186 673.9 54.8231C673.364 54.8276 672.841 54.6518 672.416 54.3237C671.992 53.9955 671.69 53.5342 671.559 53.0136C671.428 52.493 671.475 51.9432 671.694 51.4526C671.912 50.962 672.289 50.5589 672.764 50.3079C673.239 50.0569 673.784 49.9725 674.312 50.0684C674.84 50.1643 675.321 50.4348 675.677 50.8366C675.93 51.1243 676.111 51.4684 676.204 51.8402C676.298 52.212 676.301 52.6008 676.215 52.9744V52.9744Z" fill="white"/>
599
+ <path opacity="0.5" d="M591.848 56.1912C591.653 57.1256 591.128 57.959 590.371 58.5396C589.613 59.1203 588.672 59.4094 587.72 59.3545C587.145 59.3269 586.584 59.1756 586.073 58.9109C585.563 58.6463 585.116 58.2744 584.763 57.8208C584.41 57.3673 584.159 56.8427 584.027 56.283C583.895 55.7232 583.886 55.1416 584 54.5777C584.195 53.6433 584.719 52.8099 585.477 52.2292C586.234 51.6486 587.175 51.3594 588.128 51.4144C588.65 51.4319 589.164 51.5556 589.637 51.7778C590.11 51.9999 590.533 52.316 590.88 52.7069C591.305 53.1697 591.614 53.7267 591.782 54.3323C591.951 54.9379 591.973 55.575 591.848 56.1912V56.1912Z" fill="white"/>
600
+ <path opacity="0.5" d="M512.577 180.53C512.384 181.476 511.824 182.306 511.02 182.839C510.215 183.372 509.232 183.563 508.287 183.371C507.342 183.179 506.512 182.62 505.98 181.816C505.448 181.011 505.257 180.028 505.45 179.083C505.601 178.328 505.993 177.642 506.569 177.13C507.134 176.597 507.856 176.259 508.627 176.166C509.398 176.073 510.179 176.23 510.854 176.613C511.53 176.996 512.065 177.585 512.381 178.294C512.697 179.004 512.777 179.796 512.61 180.555L512.577 180.53Z" fill="white"/>
601
+ </g>
602
+ <path d="M588.104 -0.0735035L588.21 0.196991L599.725 96.6192L538.176 83.9047L538.08 83.4855L538.033 83.9343L490.706 123.968L425.947 117.534L425.86 117.468L425.81 117.534L386.16 184.163L337.384 188.162L313.634 229.895L267.259 193.948L267.352 194.191L265.383 278.48L185.76 303.072L146.628 231.112L48.5723 243.534L48.1767 243.373L48.4947 243.614L9.37552 374.499L-93.623 166.638L-93.7437 166.547L-76.5766 348.716L-215.367 172.883L-215.377 172.737L-165.68 400.446L-105.018 482.791L-105.134 482.807L-105.035 482.882L-467.912 385.502L-467.962 385.568L-467.885 385.626L-161.384 579.127L-198.022 640.83L-198.113 640.951L-130.002 637.614L-80.8992 680.646L-66.2137 715.656L-97.1137 759.661L-47.0973 870.249L-46.956 870.564L-44.213 767.717L13.0317 741.486L40.9388 625.356L83.4987 647.997L83.6707 648.249L76.1902 570.765L113.172 538.672L99.0096 416.928L241.597 391.183L241.696 391.258L241.763 391.17L241.887 391.143L241.832 391.101L313.48 323.136L294.466 269.848L344.685 254.336L386.204 184.56L423.045 181.554L470.84 141.132L529.038 171.176L529.103 171.226L555.322 228.546L555.264 228.622L555.341 228.681L578.632 244.104L579.371 280.275L479.869 362.474L459.896 428.883L402.555 486.396L402.372 486.637L480.368 464.737L480.169 405.784L525.111 354.273L573.644 345.559L575.879 320.932L648.525 290.026L648.666 289.978L610.915 264.984L678.874 232.217L679.268 232.222L678.955 232.088L725.93 116.676L726.313 116.603L725.901 116.532L654.17 55.8815L662.684 15.6448L662.757 15.3202L640.339 44.229L588.191 0.130898L588.104 -0.0735035ZM337.451 188.506L344.665 253.906L313.837 230.015L337.451 188.506ZM313.636 230.052L293.139 266.04L267.609 194.49L313.636 230.052ZM267.578 194.622L293.087 266.155L290.464 270.772L265.626 278.457L267.578 194.622ZM293.162 266.351L294.322 269.583L290.691 270.702L293.162 266.351ZM12.8593 741.304L-44.1619 767.444L-22.5281 710.736L12.8593 741.304ZM-44.1423 766.94L-36.0478 703.729L-22.6598 710.636L-44.1423 766.94ZM191.343 346.342L175.751 332.524L185.747 303.407L208.574 339.233L191.343 346.342ZM208.705 339.402L241.331 390.6L191.477 346.461L208.705 339.402ZM-37.3315 583.368L-50.3773 512.194L16.3234 545.335L-37.3315 583.368ZM-37.4916 583.42L-99.0875 578.193L-50.9427 511.869L-50.5308 512.078L-37.4916 583.42ZM-58.4728 474.558L-51.1385 511.444L-104.588 482.84L-58.4728 474.558ZM-32.6334 469.95L-50.9905 511.59L-58.3435 474.569L-32.6334 469.95ZM-58.3756 474.407L-72.4813 403.172L-7.86039 413.773L-32.5274 469.719L-58.3756 474.407ZM-32.4593 469.857L5.92251 462.954L-50.8498 511.542L-32.4593 469.857ZM-32.3428 469.704L-7.71747 413.812L7.84763 416.369L6.15483 462.784L-32.3428 469.704ZM-7.6477 413.675L9.34979 375.102L7.81552 416.206L-7.6477 413.675ZM9.54976 374.838L56.8854 424.209L8.03871 416.186L9.54976 374.838ZM9.64969 374.707L66.7171 368.024L57.0345 424.149L9.64969 374.707ZM-7.76571 413.603L-72.2353 403.03L9.34622 374.788L-7.76571 413.603ZM-58.469 474.37L-104.659 482.683L-72.5869 403.334L-58.469 474.37ZM-51.0871 511.604L-51.0322 511.645L-102.035 528.464L-104.787 482.966L-51.0871 511.604ZM-51.1935 511.904L-99.1884 578.03L-102.064 528.685L-51.1935 511.904ZM-99.3427 578.051L-138.333 540.616L-102.246 528.72L-99.3427 578.051ZM-99.5905 578.036L-149.544 559.401L-138.455 540.731L-99.5905 578.036ZM-37.5889 583.571L-69.2163 617.011L-99.1189 578.394L-37.5889 583.571ZM-37.6818 583.898L-58.6366 630.693L-69.0987 617.152L-37.6818 583.898ZM-37.4858 583.822L-31.4424 665.82L-58.486 630.859L-37.4858 583.822ZM-50.401 512.021L-50.4305 511.877L-50.6717 511.694L6.08211 462.971L16.3329 545.117L-50.401 512.021ZM8.00986 416.406L56.8952 424.424L6.29031 462.697L8.00986 416.406ZM66.8601 368.063L86.6596 365.79L96.0283 392.252L57.1222 424.216L66.8601 368.063ZM66.8859 367.892L73.6253 328.696L86.6498 365.576L66.8859 367.892ZM86.8499 365.745L105.026 363.607L96.1698 392.065L86.8499 365.745ZM86.7986 365.585L73.6874 328.432L110.693 302.549L121.037 312.352L105.074 363.453L86.7986 365.585ZM175.642 332.44L128.281 290.505L185.667 303.33L175.642 332.44ZM175.542 332.572L167.464 356.018L128.293 290.739L175.542 332.572ZM110.778 302.458L127.807 290.56L121.043 312.184L110.778 302.458ZM121.121 312.468L167.296 356.149L105.207 363.415L121.121 312.468ZM121.221 312.336L128.016 290.581L167.149 355.796L121.221 312.336ZM175.703 332.747L191.204 346.479L167.656 356.129L175.703 332.747ZM185.89 303.378L264.283 316.438L208.72 339.223L185.89 303.378ZM127.996 290.288L127.897 290.214L127.814 290.323L110.708 302.301L48.9833 243.881L184.978 302.963L127.996 290.288ZM110.6 302.444L73.6992 328.302L48.8286 243.971L110.6 302.444ZM73.5909 328.445L66.7808 367.985L9.62513 374.671L48.6659 244.003L73.5909 328.445ZM-72.4585 403.051L-76.3218 348.927L9.24444 374.763L-72.4585 403.051ZM-104.708 482.542L-110.747 402.156L-72.6497 403.235L-104.708 482.542ZM-102.18 528.701L-138.335 540.528L-104.937 483.095L-102.18 528.701ZM-149.633 559.472L-467.628 385.561L-138.681 540.801L-149.633 559.472ZM-149.733 559.604L-154.446 567.546L-467.563 385.749L-149.733 559.604ZM-149.601 559.703L-99.3864 578.45L-122.194 599.765L-154.364 567.712L-149.601 559.703ZM-99.2465 578.539L-69.3105 617.112L-86.4943 635.205L-122.136 599.688L-99.2465 578.539ZM-86.6688 635.367L-146.579 622.771L-122.151 599.936L-86.6688 635.367ZM-87.0494 635.458L-129.916 637.523L-146.523 622.969L-87.0494 635.458ZM-86.3003 635.473L-69.1165 617.38L-58.5887 630.972L-65.7179 646.904L-86.3003 635.473ZM-58.5483 631.123L-31.6028 665.94L-65.6415 647.031L-58.5483 631.123ZM-31.2741 666.691L-22.7388 710.489L-36.0939 703.608L-31.2741 666.691ZM-36.1658 703.657L-51.8189 695.568L-31.471 666.472L-36.1658 703.657ZM-31.2107 666.22L11.4035 628.093L-22.5212 710.499L-31.2107 666.22ZM-31.2261 666.035L-37.2871 583.765L17.6327 612.982L11.5788 627.794L-31.2261 666.035ZM-36.9538 583.759L26.1901 592.184L17.6914 612.837L-36.9538 583.759ZM17.77 613.052L24.1723 616.457L11.8172 627.525L17.77 613.052ZM17.8616 612.931L26.3852 592.246L48.0707 595.14L24.3271 616.367L17.8616 612.931ZM48.1138 595.311L40.9616 625.235L24.5193 616.478L48.1138 595.311ZM48.0882 594.98L26.4413 592.081L34.1965 573.25L48.0882 594.98ZM34.2802 573.072L68.0842 490.575L48.0951 594.743L34.2802 573.072ZM26.2817 592.063L-37.1346 583.587L16.5038 545.575L34.0955 573.087L26.2817 592.063ZM6.36286 463.011L56.965 424.719L16.4579 544.952L6.36286 463.011ZM96.1174 392.544L98.9495 416.848L57.3968 424.355L96.1174 392.544ZM105.232 363.677L167.129 356.438L96.312 392.242L105.232 363.677ZM167.76 356.311L191.405 346.58L241.316 390.779L167.76 356.311ZM208.898 339.444L264.547 316.638L241.706 390.971L208.898 339.444ZM290.369 271.149L264.759 316.176L265.632 278.79L290.369 271.149ZM264.592 316.396L186.062 303.197L265.407 278.654L264.592 316.396ZM185.638 303.187L48.9425 243.798L146.613 231.429L185.638 303.187ZM-93.5041 167.005L8.86858 374.529L-76.3485 348.803L-93.5041 167.005ZM-76.5218 348.758L-72.6919 402.926L-110.828 401.853L-215.325 172.897L-76.5218 348.758ZM-110.974 401.863L-165.398 400.348L-215.506 173.089L-110.974 401.863ZM-165.38 400.483L-110.944 402.007L-104.906 482.461L-165.38 400.483ZM-138.564 540.51L-467.583 385.388L-105.274 483.357L-138.564 540.51ZM-467.613 385.815L-154.526 567.606L-161.248 578.902L-467.613 385.815ZM-161.194 579.081L-154.444 567.703L-122.299 599.72L-146.782 622.651L-161.194 579.081ZM-146.876 622.684L-197.85 640.649L-161.387 579.246L-146.876 622.684ZM-197.41 640.706L-146.789 622.819L-130.191 637.384L-197.41 640.706ZM-129.842 637.562L-86.5398 635.447L-65.8889 646.948L-80.9615 680.478L-129.842 637.562ZM-80.8076 680.526L-65.7349 646.995L-31.433 666.103L-51.9941 695.366L-80.8076 680.526ZM-80.74 680.733L-52.1848 695.481L-66.2125 715.449L-80.74 680.733ZM-66.098 715.64L-52.0062 695.564L-36.2707 703.681L-44.4255 767.313L-66.098 715.64ZM-97.0089 759.637L-66.2562 715.849L-44.5565 767.577L-97.0089 759.637ZM-97.0071 759.794L-44.5134 767.748L-44.5912 768.329L-44.4746 768.175L-47.1641 869.904L-97.0071 759.794ZM12.8348 741.268L-22.5773 710.664L11.5459 627.769L24.1916 616.454L40.7191 625.259L12.8348 741.268ZM40.9041 625.174L48.1229 595.162L83.2166 647.731L40.9041 625.174ZM83.377 647.611L48.1956 594.975L75.9776 570.863L83.377 647.611ZM48.2052 594.758L68.2508 490.355L76.0012 570.604L48.2052 594.758ZM76.1033 570.56L68.3861 489.835L68.3632 489.524L34.081 572.765L16.5274 545.316L57.0623 424.568L113.027 538.545L76.1033 570.56ZM112.913 538.148L57.085 424.447L98.8224 416.924L112.913 538.148ZM96.1296 392.346L167.388 356.323L167.454 356.373L241.347 391.08L98.9719 416.796L96.1296 392.346ZM313.227 323.013L241.771 390.795L264.589 316.445L290.436 270.993L294.227 269.822L313.227 323.013ZM293.141 266.266L313.58 230.217L344.419 254.117L294.476 269.631L293.141 266.266ZM344.69 253.942L337.46 188.426L386.134 184.402L344.69 253.942ZM725.467 116.671L637.623 134.332L644.079 103.845L725.467 116.671ZM599.699 229.684L610.391 202.792L678.484 232.093L599.699 229.684ZM599.531 229.678L578.595 229.029L577.756 188.753L610.246 202.733L599.531 229.678ZM625.093 100.855L637.318 134.119L599.999 96.896L625.093 100.855ZM529.457 171.01L563.195 159.614L577.556 188.515L529.457 171.01ZM529.491 170.829L555.267 143.689L563.097 159.471L529.491 170.829ZM555.375 143.547L599.74 96.8728L637.333 134.372L563.218 159.425L555.375 143.547ZM599.583 96.8057L555.429 143.362L548.699 129.799L538.252 84.1007L599.583 96.8057ZM548.399 129.761L533.601 128.288L538.052 84.5019L548.399 129.761ZM548.381 129.921L529.303 170.53L533.584 128.448L548.381 129.921ZM548.513 130.021L555.199 143.482L529.474 170.556L548.513 130.021ZM577.542 188.625L555.55 228.2L529.432 171.112L577.542 188.625ZM577.595 188.873L578.411 228.976L555.671 228.291L577.595 188.873ZM577.82 188.577L563.435 159.572L637.47 134.58L610.404 202.593L577.82 188.577ZM637.536 134.059L625.313 100.815L643.958 103.754L637.536 134.059ZM625.251 100.646L616.123 75.8033L640.462 44.4086L654.087 55.9224L643.987 103.603L625.251 100.646ZM625.07 100.612L599.956 96.6562L615.999 75.9679L625.07 100.612ZM599.866 96.5015L588.402 0.809571L616.041 75.8442L599.866 96.5015ZM538.004 84.1546L533.513 128.222L490.915 123.988L538.004 84.1546ZM426.318 117.729L490.573 124.143L470.936 140.755L426.318 117.729ZM386.338 184.246L425.771 117.971L423.036 181.271L386.338 184.246ZM423.186 181.073L426.004 117.802L470.77 140.906L423.186 181.073ZM471.029 140.792L490.738 124.13L533.485 128.373L529.164 170.805L471.029 140.792ZM555.846 228.424L578.528 229.117L578.824 243.645L555.846 228.424ZM578.986 243.75L578.688 229.135L599.572 229.76L590.873 251.611L578.986 243.75ZM590.806 251.767L579.711 279.668L578.985 243.957L590.806 251.767ZM579.897 279.81L590.992 251.909L610.791 265.011L579.927 279.884L580.086 279.676L579.897 279.81ZM402.933 486.354L459.996 429.115L480.247 464.646L402.933 486.354ZM480.213 464.395L460.027 428.983L480.088 405.982L480.213 464.395ZM460.128 428.644L479.999 362.849L480.087 405.756L460.128 428.644ZM480.259 405.575L480.191 362.39L524.956 354.363L480.259 405.575ZM480.358 362.171L579.232 280.481L541.337 335.505L525.123 354.074L480.358 362.171ZM541.436 335.649L573.369 345.489L525.396 354.057L541.436 335.649ZM573.62 345.385L541.67 335.568L575.862 321.023L573.62 345.385ZM541.624 335.377L579.52 280.353L575.852 320.808L541.624 335.377ZM579.689 280.153L648.28 289.962L575.968 320.723L579.689 280.153ZM648.251 289.887L579.863 280.06L610.92 265.022L648.251 289.887ZM590.955 251.776L599.69 229.833L678.623 232.251L610.861 264.873L590.955 251.776ZM610.516 202.627L637.583 134.613L678.817 232.018L610.516 202.627ZM637.691 134.471L725.842 116.747L679.035 231.959L637.691 134.471ZM725.711 116.509L644.19 103.653L654.265 56.0749L725.711 116.509ZM662.599 15.9612L654.198 55.7301L640.639 44.2662L662.599 15.9612ZM640.385 44.3504L616.105 75.6682L588.483 0.473926L640.385 44.3504Z" fill="white"/>
603
+ <path d="M85.9335 648.254C85.8614 648.723 85.6521 649.159 85.332 649.509C85.0119 649.859 84.5954 650.106 84.1351 650.219C83.6749 650.332 83.1916 650.306 82.7463 650.144C82.301 649.983 81.9137 649.693 81.6335 649.311C81.3532 648.929 81.1924 648.472 81.1716 647.999C81.1507 647.525 81.2706 647.056 81.5163 646.651C81.7619 646.245 82.1222 645.922 82.5515 645.721C82.9808 645.52 83.46 645.451 83.9284 645.522C84.5552 645.621 85.1172 645.964 85.4927 646.476C85.8681 646.987 86.0265 647.626 85.9335 648.254V648.254Z" fill="white"/>
604
+ <path d="M70.0545 490.1C69.9513 490.53 69.6908 490.905 69.3244 491.152C68.9581 491.398 68.5126 491.499 68.0761 491.433C67.6396 491.367 67.244 491.139 66.9673 490.795C66.6906 490.452 66.5531 490.016 66.582 489.576C66.5979 489.332 66.6644 489.094 66.777 488.877C66.8896 488.661 67.0459 488.47 67.2362 488.317C67.4264 488.163 67.6464 488.051 67.8821 487.987C68.1179 487.924 68.3642 487.91 68.6056 487.946C68.847 487.983 69.078 488.069 69.2842 488.199C69.4904 488.33 69.6673 488.502 69.8035 488.705C69.9398 488.907 70.0325 489.136 70.0757 489.376C70.1189 489.616 70.1116 489.863 70.0545 490.1Z" fill="white"/>
605
+ <path d="M169.867 356.545C169.795 357.014 169.586 357.45 169.266 357.8C168.945 358.15 168.529 358.397 168.069 358.51C167.609 358.623 167.125 358.597 166.68 358.435C166.235 358.274 165.847 357.984 165.567 357.602C165.287 357.22 165.126 356.763 165.105 356.29C165.084 355.817 165.204 355.347 165.45 354.942C165.696 354.536 166.056 354.213 166.485 354.012C166.914 353.811 167.394 353.742 167.862 353.813C168.173 353.861 168.472 353.969 168.741 354.132C169.01 354.295 169.245 354.509 169.431 354.763C169.617 355.017 169.751 355.305 169.826 355.611C169.901 355.916 169.915 356.234 169.867 356.545Z" fill="white"/>
606
+ <path d="M244.061 391.376C243.988 391.844 243.778 392.279 243.458 392.628C243.137 392.976 242.721 393.222 242.262 393.335C241.802 393.447 241.32 393.421 240.875 393.26C240.431 393.099 240.044 392.809 239.763 392.428C239.483 392.047 239.322 391.592 239.3 391.119C239.278 390.647 239.397 390.178 239.641 389.772C239.885 389.367 240.243 389.043 240.671 388.84C241.099 388.638 241.577 388.567 242.045 388.636C242.675 388.732 243.241 389.075 243.619 389.589C243.997 390.102 244.156 390.745 244.061 391.376V391.376Z" fill="white"/>
607
+ <path d="M315.76 323.364C315.688 323.832 315.478 324.269 315.158 324.619C314.838 324.968 314.422 325.215 313.961 325.328C313.501 325.441 313.018 325.415 312.572 325.254C312.127 325.092 311.74 324.802 311.46 324.42C311.179 324.038 311.019 323.582 310.998 323.108C310.977 322.635 311.097 322.166 311.342 321.76C311.588 321.355 311.948 321.031 312.378 320.83C312.807 320.629 313.286 320.56 313.754 320.632C314.066 320.679 314.364 320.787 314.634 320.95C314.903 321.113 315.137 321.328 315.323 321.582C315.51 321.835 315.644 322.123 315.719 322.429C315.794 322.735 315.808 323.052 315.76 323.364V323.364Z" fill="white"/>
608
+ <path d="M269.835 194.606C269.765 195.075 269.558 195.513 269.239 195.864C268.92 196.215 268.505 196.465 268.045 196.58C267.585 196.695 267.101 196.671 266.655 196.511C266.209 196.351 265.82 196.063 265.538 195.682C265.256 195.301 265.094 194.844 265.071 194.371C265.049 193.897 265.167 193.428 265.412 193.021C265.656 192.615 266.015 192.29 266.444 192.087C266.873 191.885 267.352 191.814 267.821 191.885C268.447 191.982 269.01 192.322 269.387 192.831C269.763 193.341 269.924 193.978 269.835 194.606Z" fill="white"/>
609
+ <path d="M15.3366 741.749C15.2654 742.22 15.056 742.66 14.7347 743.013C14.4134 743.366 13.9946 743.616 13.5316 743.731C13.0686 743.845 12.5821 743.82 12.1336 743.658C11.6852 743.496 11.295 743.205 11.0125 742.82C10.7299 742.436 10.5677 741.977 10.5463 741.501C10.525 741.024 10.6455 740.552 10.8926 740.144C11.1397 739.735 11.5024 739.41 11.9346 739.207C12.3668 739.005 12.8491 738.936 13.3204 739.008C13.9509 739.105 14.5171 739.448 14.8951 739.961C15.273 740.475 15.4318 741.118 15.3366 741.749V741.749Z" fill="white"/>
610
+ <path d="M50.5282 595.294C50.4561 595.762 50.2468 596.199 49.9267 596.548C49.6066 596.898 49.1901 597.145 48.7299 597.258C48.2696 597.371 47.7863 597.345 47.341 597.184C46.8957 597.022 46.5085 596.732 46.2282 596.35C45.9479 595.968 45.7872 595.511 45.7663 595.038C45.7455 594.564 45.8654 594.095 46.111 593.69C46.3566 593.284 46.7168 592.961 47.1462 592.76C47.5755 592.559 48.0546 592.49 48.523 592.561C48.8342 592.609 49.1328 592.717 49.4021 592.88C49.6713 593.043 49.9057 593.258 50.0919 593.511C50.2782 593.765 50.4126 594.053 50.4874 594.359C50.5623 594.665 50.5761 594.982 50.5282 595.294V595.294Z" fill="white"/>
611
+ <path d="M8.56332 463.209C8.49121 463.678 8.28184 464.115 7.96174 464.464C7.64164 464.814 7.22514 465.061 6.76491 465.174C6.30468 465.287 5.82144 465.261 5.37616 465.099C4.93088 464.938 4.5436 464.648 4.26331 464.266C3.98302 463.884 3.82226 463.427 3.80141 462.954C3.78055 462.481 3.90051 462.011 4.14612 461.606C4.39173 461.201 4.75202 460.877 5.18134 460.676C5.61065 460.475 6.08968 460.406 6.55804 460.477C6.86921 460.525 7.168 460.633 7.43721 460.796C7.70641 460.959 7.94076 461.174 8.12698 461.427C8.3132 461.681 8.44761 461.969 8.52247 462.275C8.59733 462.581 8.61123 462.898 8.56332 463.209V463.209Z" fill="white"/>
612
+ <path d="M18.8532 545.645C18.7535 546.272 18.4105 546.835 17.8988 547.211C17.3871 547.587 16.7479 547.746 16.1201 547.653C15.6518 547.581 15.2154 547.372 14.866 547.052C14.5167 546.733 14.2701 546.316 14.1574 545.856C14.0447 545.396 14.0711 544.912 14.233 544.467C14.395 544.021 14.6853 543.634 15.0674 543.353C15.4494 543.072 15.9059 542.911 16.3793 542.89C16.8526 542.869 17.3216 542.988 17.7268 543.234C18.132 543.479 18.4553 543.839 18.6558 544.268C18.8563 544.697 18.925 545.177 18.8532 545.645V545.645Z" fill="white"/>
613
+ <path d="M61.2103 425.001C61.0826 425.824 60.7141 426.59 60.1513 427.204C59.5884 427.818 58.8564 428.252 58.0477 428.451C57.239 428.649 56.3898 428.604 55.6073 428.32C54.8248 428.036 54.1441 427.527 53.651 426.856C53.158 426.186 52.8747 425.384 52.8369 424.552C52.7991 423.72 53.0086 422.896 53.4388 422.182C53.869 421.469 54.5007 420.899 55.2542 420.544C56.0077 420.19 56.8491 420.066 57.6724 420.189C58.7794 420.358 59.7738 420.96 60.4371 421.862C61.1004 422.764 61.3785 423.893 61.2103 425.001Z" fill="white"/>
614
+ <path d="M75.9387 328.725C75.8689 329.194 75.6616 329.632 75.343 329.983C75.0244 330.335 74.6089 330.584 74.1489 330.699C73.689 330.814 73.2053 330.79 72.7591 330.63C72.313 330.47 71.9243 330.182 71.6424 329.801C71.3605 329.42 71.198 328.964 71.1754 328.49C71.1528 328.016 71.2712 327.547 71.5156 327.14C71.7599 326.734 72.1193 326.409 72.5482 326.206C72.9771 326.004 73.4564 325.934 73.9252 326.004C74.5513 326.101 75.1137 326.441 75.4905 326.95C75.8674 327.46 76.0284 328.097 75.9387 328.725V328.725Z" fill="white"/>
615
+ <path d="M129.748 290.599C129.694 290.948 129.538 291.274 129.299 291.535C129.061 291.796 128.75 291.98 128.407 292.065C128.063 292.15 127.703 292.131 127.37 292.011C127.038 291.891 126.748 291.675 126.538 291.391C126.329 291.106 126.208 290.766 126.191 290.413C126.174 290.06 126.262 289.709 126.444 289.406C126.626 289.103 126.894 288.86 127.214 288.709C127.533 288.557 127.89 288.504 128.24 288.555C128.474 288.589 128.698 288.669 128.901 288.791C129.103 288.912 129.28 289.073 129.42 289.262C129.56 289.452 129.661 289.668 129.718 289.898C129.774 290.127 129.784 290.365 129.748 290.599V290.599Z" fill="white"/>
616
+ <path d="M116.602 539.096C116.503 539.787 116.202 540.434 115.735 540.954C115.269 541.473 114.659 541.843 113.982 542.016C113.306 542.189 112.593 542.157 111.936 541.924C111.278 541.692 110.704 541.269 110.286 540.71C109.869 540.15 109.627 539.48 109.592 538.782C109.556 538.085 109.728 537.393 110.086 536.793C110.444 536.194 110.972 535.714 111.603 535.414C112.234 535.115 112.939 535.009 113.629 535.111C114.551 535.247 115.381 535.743 115.938 536.489C116.496 537.236 116.734 538.173 116.602 539.096V539.096Z" fill="white"/>
617
+ <path d="M98.4894 392.632C98.3943 393.262 98.0531 393.828 97.5408 394.206C97.0285 394.585 96.3871 394.744 95.7576 394.65C95.1282 394.555 94.5623 394.214 94.1844 393.702C93.8066 393.19 93.6476 392.549 93.7427 391.919C93.7898 391.607 93.8978 391.308 94.0605 391.038C94.2233 390.767 94.4376 390.532 94.6913 390.345C94.945 390.157 95.233 390.022 95.539 389.946C95.8449 389.87 96.1628 389.855 96.4745 389.901C96.7862 389.948 97.0855 390.056 97.3555 390.218C97.6254 390.381 97.8606 390.595 98.0477 390.849C98.2348 391.102 98.3701 391.39 98.4458 391.696C98.5216 392.002 98.5365 392.32 98.4894 392.632Z" fill="white"/>
618
+ <path d="M639.971 134.748C639.898 135.251 639.665 135.717 639.307 136.078C638.855 136.529 638.245 136.785 637.606 136.793C637.259 136.795 636.916 136.721 636.601 136.576C636.285 136.432 636.005 136.221 635.779 135.958C635.554 135.694 635.388 135.385 635.293 135.051C635.199 134.717 635.178 134.366 635.232 134.024C635.304 133.52 635.537 133.054 635.896 132.694C636.252 132.331 636.714 132.091 637.215 132.008C637.716 131.925 638.231 132.003 638.684 132.232C639.138 132.461 639.507 132.827 639.738 133.28C639.969 133.732 640.051 134.246 639.971 134.748V134.748Z" fill="white"/>
619
+ <path d="M557.923 228.721C557.851 229.229 557.611 229.698 557.24 230.054C557.016 230.283 556.747 230.465 556.451 230.588C556.155 230.711 555.837 230.773 555.516 230.771C555.195 230.768 554.879 230.7 554.585 230.572C554.291 230.444 554.026 230.258 553.806 230.025C553.582 229.798 553.405 229.529 553.285 229.233C553.165 228.937 553.105 228.621 553.108 228.301C553.111 227.982 553.177 227.667 553.302 227.373C553.427 227.079 553.609 226.813 553.837 226.59C554.063 226.362 554.331 226.182 554.627 226.06C554.923 225.938 555.241 225.876 555.561 225.879C555.881 225.882 556.198 225.948 556.491 226.076C556.785 226.203 557.05 226.387 557.272 226.619C557.542 226.89 557.743 227.223 557.856 227.589C557.97 227.956 557.992 228.344 557.923 228.721Z" fill="white"/>
620
+ <path d="M651.036 290.271C650.961 290.779 650.726 291.248 650.364 291.612C650.139 291.84 649.87 292.02 649.574 292.142C649.278 292.264 648.961 292.326 648.641 292.323C648.32 292.32 648.004 292.253 647.71 292.126C647.417 291.999 647.151 291.815 646.93 291.583C646.661 291.317 646.459 290.99 646.342 290.631C646.224 290.271 646.194 289.888 646.254 289.514C646.324 289.01 646.557 288.543 646.917 288.184C647.141 287.961 647.407 287.784 647.699 287.665C647.992 287.545 648.305 287.485 648.621 287.487C648.937 287.48 649.251 287.539 649.543 287.659C649.836 287.78 650.1 287.96 650.319 288.188C650.598 288.451 650.809 288.778 650.934 289.141C651.059 289.504 651.094 289.892 651.036 290.271Z" fill="white"/>
621
+ <path d="M680.83 232.419C680.769 232.811 680.589 233.176 680.314 233.463C680.036 233.742 679.676 233.926 679.287 233.989C678.898 234.052 678.499 233.99 678.147 233.813C677.795 233.636 677.508 233.353 677.327 233.003C677.146 232.653 677.079 232.255 677.137 231.865C677.196 231.472 677.381 231.108 677.664 230.829C677.836 230.654 678.042 230.515 678.268 230.42C678.495 230.324 678.738 230.275 678.984 230.274C679.477 230.277 679.95 230.469 680.305 230.81C680.514 231.017 680.67 231.271 680.761 231.551C680.853 231.831 680.876 232.128 680.83 232.419V232.419Z" fill="white"/>
622
+ <path d="M728.36 116.981C728.29 117.485 728.057 117.952 727.696 118.311C727.475 118.538 727.211 118.719 726.919 118.842C726.626 118.965 726.312 119.028 725.995 119.027C725.359 119.027 724.749 118.775 724.298 118.326C724.028 118.06 723.827 117.733 723.709 117.373C723.592 117.014 723.561 116.631 723.621 116.257C723.689 115.752 723.927 115.286 724.296 114.935C724.517 114.707 724.781 114.527 725.073 114.404C725.366 114.281 725.68 114.218 725.997 114.219C726.343 114.217 726.685 114.291 726.999 114.435C727.314 114.578 727.594 114.789 727.818 115.052C728.043 115.315 728.208 115.623 728.302 115.956C728.395 116.29 728.415 116.639 728.36 116.981V116.981Z" fill="white"/>
623
+ <path d="M590.633 0.580841C590.556 1.08255 590.324 1.54778 589.969 1.91081C589.745 2.13401 589.48 2.31041 589.187 2.42997C588.895 2.54953 588.581 2.60975 588.266 2.60713C587.95 2.61343 587.636 2.55455 587.344 2.43408C587.051 2.3136 586.787 2.13423 586.568 1.90703C586.301 1.64321 586.101 1.31972 585.984 0.963262C585.867 0.606801 585.836 0.227535 585.894 -0.143278C585.969 -0.650476 586.204 -1.12052 586.566 -1.48424C586.787 -1.70886 587.05 -1.88692 587.341 -2.00797C587.632 -2.12902 587.944 -2.19062 588.259 -2.18901C588.895 -2.18907 589.505 -1.93731 589.956 -1.48876C590.228 -1.22452 590.432 -0.898109 590.55 -0.537594C590.667 -0.177079 590.696 0.206755 590.633 0.580841V0.580841Z" fill="white"/>
624
+ <path d="M543.783 335.926C543.711 336.429 543.478 336.895 543.12 337.255C542.895 337.48 542.628 337.659 542.334 337.78C542.04 337.902 541.726 337.964 541.408 337.963C541.095 337.965 540.785 337.905 540.495 337.786C540.205 337.667 539.942 337.492 539.721 337.271C539.454 337.003 539.253 336.677 539.136 336.317C539.018 335.958 538.987 335.575 539.045 335.201C539.117 334.698 539.349 334.232 539.708 333.872C540.064 333.509 540.526 333.269 541.028 333.186C541.529 333.103 542.043 333.181 542.497 333.41C542.95 333.638 543.319 334.005 543.55 334.457C543.782 334.91 543.863 335.424 543.783 335.926Z" fill="white"/>
625
+ <path d="M482.138 464.957C482.087 465.3 481.941 465.622 481.717 465.888C481.493 466.153 481.2 466.351 480.87 466.46C480.541 466.568 480.187 466.583 479.85 466.503C479.512 466.422 479.204 466.249 478.959 466.003C478.755 465.795 478.603 465.542 478.514 465.264C478.425 464.986 478.401 464.692 478.445 464.403C478.515 463.963 478.74 463.561 479.078 463.27C479.416 462.978 479.846 462.816 480.292 462.812C480.558 462.817 480.82 462.878 481.06 462.991C481.301 463.104 481.515 463.267 481.689 463.468C481.862 463.67 481.991 463.906 482.066 464.161C482.142 464.416 482.162 464.684 482.127 464.948L482.138 464.957Z" fill="white"/>
626
+ <path d="M482.452 362.669C482.368 363.234 482.084 363.75 481.652 364.124C481.22 364.497 480.667 364.703 480.096 364.703C479.78 364.71 479.467 364.651 479.174 364.53C478.882 364.41 478.618 364.23 478.399 364.003C478.129 363.739 477.926 363.415 477.807 363.057C477.688 362.699 477.656 362.317 477.714 361.944C477.786 361.436 478.026 360.967 478.397 360.612C478.621 360.383 478.889 360.201 479.186 360.078C479.482 359.955 479.8 359.892 480.121 359.895C480.441 359.898 480.758 359.965 481.052 360.093C481.346 360.221 481.611 360.408 481.831 360.641C482.082 360.909 482.269 361.231 482.377 361.582C482.484 361.934 482.51 362.305 482.452 362.669Z" fill="white"/>
627
+ <path d="M577.652 346.109C577.518 346.945 577.126 347.718 576.529 348.319C575.935 348.915 575.168 349.309 574.337 349.444C573.506 349.579 572.654 349.448 571.903 349.069C571.151 348.691 570.538 348.084 570.152 347.337C569.766 346.589 569.626 345.738 569.752 344.906C569.885 344.07 570.278 343.297 570.875 342.697C571.242 342.325 571.68 342.03 572.162 341.829C572.644 341.627 573.161 341.524 573.683 341.524C574.26 341.522 574.83 341.644 575.355 341.884C575.879 342.123 576.346 342.473 576.722 342.909C577.099 343.346 577.376 343.859 577.535 344.414C577.694 344.968 577.731 345.55 577.644 346.12L577.652 346.109Z" fill="white"/>
628
+ <path d="M582.006 280.423C581.935 280.931 581.694 281.4 581.324 281.755C581.103 281.98 580.839 282.158 580.549 282.279C580.258 282.4 579.946 282.462 579.631 282.46C578.995 282.46 578.384 282.208 577.933 281.76C577.665 281.497 577.463 281.174 577.346 280.817C577.229 280.46 577.199 280.08 577.26 279.709C577.325 279.271 577.511 278.859 577.797 278.519C578.083 278.18 578.457 277.926 578.878 277.787C579.299 277.647 579.75 277.628 580.182 277.729C580.613 277.831 581.008 278.051 581.322 278.364C581.592 278.628 581.795 278.952 581.914 279.31C582.033 279.668 582.065 280.05 582.006 280.423V280.423Z" fill="white"/>
629
+ <path d="M582.27 189.272C582.147 190.109 581.794 190.895 581.249 191.542C580.705 192.189 579.991 192.672 579.188 192.935C578.384 193.199 577.524 193.234 576.702 193.035C575.881 192.836 575.131 192.412 574.538 191.811C574.028 191.308 573.646 190.69 573.423 190.01C573.2 189.329 573.143 188.605 573.255 187.898C573.346 187.306 573.553 186.737 573.863 186.225C574.173 185.712 574.581 185.266 575.064 184.911C575.547 184.556 576.094 184.3 576.676 184.156C577.258 184.013 577.861 183.986 578.453 184.076C579.045 184.166 579.613 184.372 580.126 184.682C580.638 184.992 581.084 185.4 581.438 185.883C581.793 186.365 582.048 186.913 582.191 187.494C582.334 188.076 582.361 188.68 582.27 189.272V189.272Z" fill="white"/>
630
+ <path d="M550.984 130.203C550.912 130.706 550.68 131.173 550.321 131.533C550.096 131.758 549.829 131.936 549.535 132.058C549.242 132.179 548.927 132.241 548.609 132.24C548.296 132.242 547.986 132.182 547.696 132.063C547.407 131.944 547.144 131.769 546.922 131.548C546.655 131.281 546.454 130.954 546.337 130.595C546.22 130.235 546.188 129.853 546.246 129.479C546.318 128.976 546.551 128.509 546.91 128.149C547.266 127.786 547.728 127.546 548.229 127.463C548.73 127.38 549.244 127.459 549.698 127.687C550.151 127.916 550.52 128.283 550.752 128.735C550.983 129.187 551.064 129.701 550.984 130.203V130.203Z" fill="white"/>
631
+ <path d="M428.329 117.995C428.244 118.498 428.005 118.964 427.646 119.327C427.245 119.721 426.716 119.96 426.155 120C425.594 120.04 425.037 119.879 424.584 119.546C424.131 119.213 423.811 118.73 423.682 118.182C423.553 117.634 423.623 117.059 423.88 116.558C424.137 116.057 424.563 115.664 425.083 115.448C425.603 115.233 426.182 115.21 426.717 115.382C427.252 115.555 427.708 115.913 428.004 116.391C428.299 116.87 428.414 117.438 428.329 117.995V117.995Z" fill="white"/>
632
+ <path d="M347.097 254.506C347.012 255.01 346.773 255.476 346.414 255.839C346.193 256.064 345.93 256.242 345.639 256.363C345.348 256.484 345.036 256.545 344.721 256.544C344.085 256.544 343.475 256.292 343.023 255.843C342.754 255.577 342.553 255.251 342.435 254.891C342.317 254.531 342.287 254.148 342.347 253.774C342.422 253.272 342.659 252.808 343.022 252.452C343.242 252.228 343.506 252.05 343.797 251.928C344.087 251.807 344.399 251.746 344.714 251.747C345.351 251.747 345.961 251.999 346.412 252.448C346.681 252.712 346.883 253.037 347.002 253.394C347.121 253.752 347.154 254.133 347.097 254.506Z" fill="white"/>
633
+ <path d="M188.124 303.602C188.076 303.913 187.968 304.212 187.804 304.481C187.641 304.751 187.426 304.985 187.173 305.172C186.919 305.358 186.631 305.493 186.325 305.568C186.019 305.643 185.702 305.657 185.391 305.61C185.08 305.562 184.781 305.454 184.512 305.291C184.243 305.128 184.008 304.913 183.822 304.66C183.636 304.406 183.502 304.118 183.427 303.812C183.352 303.506 183.338 303.189 183.386 302.878C183.456 302.374 183.689 301.907 184.049 301.548C184.276 301.321 184.545 301.142 184.841 301.021C185.137 300.899 185.455 300.837 185.775 300.839C186.095 300.841 186.411 300.906 186.706 301.03C187.001 301.155 187.268 301.337 187.492 301.565C187.746 301.833 187.936 302.157 188.045 302.51C188.155 302.863 188.182 303.236 188.124 303.602V303.602Z" fill="white"/>
634
+ <path d="M148.964 231.586C148.891 232.094 148.655 232.564 148.292 232.927C147.839 233.371 147.233 233.623 146.6 233.632C145.963 233.632 145.353 233.38 144.902 232.931C144.633 232.665 144.431 232.339 144.314 231.979C144.196 231.619 144.166 231.236 144.226 230.862C144.304 230.361 144.536 229.896 144.889 229.532C145.114 229.304 145.383 229.124 145.679 229.002C145.975 228.88 146.293 228.818 146.613 228.821C146.933 228.824 147.249 228.891 147.543 229.018C147.837 229.145 148.102 229.329 148.323 229.561C148.581 229.825 148.772 230.146 148.884 230.497C148.995 230.849 149.022 231.222 148.964 231.586V231.586Z" fill="white"/>
635
+ <path d="M50.9481 244.006C50.8732 244.513 50.6378 244.983 50.2764 245.346C50.051 245.574 49.7823 245.754 49.4862 245.876C49.1901 245.998 48.8727 246.06 48.5525 246.057C48.2324 246.055 47.9161 245.988 47.6223 245.861C47.3286 245.734 47.0633 245.549 46.8421 245.318C46.573 245.051 46.3713 244.725 46.2537 244.365C46.1361 244.005 46.1059 243.622 46.1658 243.248C46.2359 242.744 46.4689 242.277 46.8293 241.918C47.2833 241.47 47.8925 241.213 48.5302 241.202C48.8757 241.206 49.2165 241.283 49.5297 241.429C49.843 241.574 50.1213 241.786 50.3462 242.048C50.571 242.31 50.7371 242.618 50.8334 242.95C50.9296 243.281 50.9538 243.63 50.9042 243.972L50.9481 244.006Z" fill="white"/>
636
+ <path d="M11.7792 375.043C11.7314 375.354 11.6228 375.653 11.4596 375.923C11.2964 376.192 11.0816 376.427 10.8278 376.613C10.5741 376.8 10.2862 376.934 9.98044 377.009C9.67471 377.084 9.35721 377.099 9.04608 377.051C8.73496 377.004 8.43629 376.895 8.16714 376.732C7.89799 376.569 7.66363 376.355 7.47743 376.101C7.29122 375.847 7.15678 375.559 7.08187 375.254C7.00696 374.948 6.99302 374.63 7.04081 374.319C7.11084 373.815 7.34379 373.348 7.70418 372.989C8.15371 372.541 8.76195 372.287 9.39672 372.284C9.74263 372.284 10.0845 372.359 10.3989 372.503C10.7134 372.647 10.9932 372.857 11.2192 373.118C11.4452 373.38 11.6121 373.688 11.7088 374.02C11.8054 374.352 11.8295 374.701 11.7792 375.043V375.043Z" fill="white"/>
637
+ <path d="M404.96 486.87C404.875 487.374 404.637 487.84 404.278 488.203C404.057 488.428 403.793 488.606 403.502 488.727C403.212 488.848 402.9 488.909 402.585 488.908C401.949 488.908 401.338 488.656 400.887 488.207C400.618 487.941 400.416 487.615 400.299 487.255C400.181 486.895 400.151 486.512 400.211 486.138C400.281 485.634 400.514 485.167 400.874 484.808C401.233 484.449 401.696 484.213 402.197 484.132C402.698 484.052 403.212 484.131 403.665 484.36C404.117 484.588 404.486 484.954 404.719 485.405C404.952 485.856 405.036 486.369 404.96 486.87V486.87Z" fill="white"/>
638
+ <path d="M463.321 429.493C463.216 430.213 462.879 430.881 462.362 431.394C462.035 431.713 461.649 431.963 461.225 432.131C460.8 432.299 460.347 432.382 459.891 432.373C459.395 432.371 458.906 432.262 458.456 432.055C458.006 431.847 457.606 431.545 457.283 431.169C456.961 430.792 456.723 430.351 456.586 429.875C456.449 429.398 456.415 428.898 456.489 428.408C456.629 427.507 457.121 426.699 457.856 426.161C458.592 425.623 459.511 425.399 460.411 425.538C461.311 425.678 462.119 426.169 462.656 426.904C463.194 427.64 463.417 428.559 463.277 429.459L463.321 429.493Z" fill="white"/>
639
+ <path d="M531.038 171.226C530.977 171.598 530.805 171.944 530.545 172.218C530.21 172.546 529.76 172.73 529.292 172.73C528.823 172.73 528.373 172.546 528.039 172.218C527.843 172.023 527.696 171.784 527.61 171.521C527.524 171.257 527.503 170.977 527.546 170.704C527.592 170.326 527.766 169.976 528.04 169.712C528.205 169.547 528.401 169.416 528.616 169.327C528.832 169.239 529.063 169.194 529.296 169.195C529.763 169.201 530.211 169.385 530.546 169.711C530.74 169.908 530.886 170.147 530.972 170.41C531.057 170.673 531.08 170.952 531.038 171.226V171.226Z" fill="white"/>
640
+ <path d="M664.269 15.8603C664.226 16.1842 664.077 16.4847 663.845 16.7147C663.704 16.8599 663.534 16.9752 663.347 17.0532C663.16 17.1313 662.96 17.1707 662.757 17.1691C662.533 17.1705 662.312 17.1233 662.108 17.0305C661.905 16.9377 661.723 16.8017 661.578 16.6319C661.432 16.462 661.325 16.2625 661.264 16.0471C661.203 15.8316 661.19 15.6055 661.225 15.3844C661.279 15.0642 661.431 14.7686 661.66 14.5382C661.801 14.3867 661.97 14.2648 662.159 14.18C662.347 14.0953 662.551 14.0492 662.757 14.0446C662.964 14.0401 663.169 14.0771 663.361 14.1534C663.553 14.2298 663.728 14.344 663.875 14.4891C664.048 14.6677 664.174 14.8862 664.243 15.1253C664.312 15.3645 664.321 15.6169 664.269 15.8603Z" fill="white"/>
641
+ <path d="M542.023 84.5763C541.902 85.4114 541.515 86.1853 540.919 86.7827C540.177 87.5229 539.173 87.9397 538.125 87.942C537.078 87.9443 536.072 87.532 535.328 86.7951C534.887 86.3557 534.556 85.8183 534.363 85.2265C534.169 84.6348 534.118 84.0055 534.214 83.39C534.344 82.5583 534.735 81.789 535.328 81.1919C536.07 80.4524 537.074 80.0369 538.12 80.0366C539.167 80.0363 540.17 80.4513 540.911 81.1905C541.352 81.6255 541.683 82.1596 541.877 82.7484C542.07 83.3373 542.12 83.964 542.023 84.5763V84.5763Z" fill="white"/>
642
+ <path d="M425.515 181.649C425.443 182.157 425.203 182.626 424.833 182.981C424.383 183.431 423.773 183.685 423.138 183.686C422.502 183.687 421.892 183.435 421.442 182.986C420.992 182.536 420.739 181.927 420.739 181.291C420.739 180.655 420.991 180.045 421.44 179.595C421.667 179.369 421.936 179.19 422.232 179.069C422.527 178.948 422.844 178.887 423.164 178.89C423.484 178.892 423.799 178.959 424.093 179.085C424.387 179.211 424.652 179.394 424.875 179.623C425.132 179.888 425.323 180.208 425.435 180.56C425.546 180.911 425.573 181.284 425.515 181.649V181.649Z" fill="white"/>
643
+ <path d="M341.411 188.914C341.271 189.752 340.876 190.528 340.279 191.134C339.815 191.599 339.243 191.942 338.615 192.133C337.987 192.324 337.321 192.358 336.677 192.231C336.033 192.103 335.431 191.819 334.923 191.403C334.415 190.987 334.018 190.452 333.766 189.846C333.515 189.24 333.417 188.581 333.48 187.927C333.544 187.273 333.768 186.645 334.132 186.099C334.497 185.552 334.99 185.104 335.569 184.793C336.147 184.482 336.793 184.319 337.45 184.318C338.027 184.315 338.597 184.438 339.122 184.677C339.646 184.916 340.113 185.266 340.489 185.703C340.865 186.14 341.143 186.653 341.302 187.207C341.461 187.761 341.498 188.344 341.411 188.914V188.914Z" fill="white"/>
644
+ <path d="M268.203 316.923C268.083 317.689 267.726 318.398 267.182 318.951C266.85 319.289 266.453 319.558 266.017 319.743C265.58 319.928 265.111 320.025 264.637 320.028C264.148 320.031 263.664 319.935 263.213 319.747C262.762 319.56 262.353 319.283 262.01 318.935C261.59 318.535 261.274 318.038 261.089 317.488C260.904 316.938 260.856 316.351 260.949 315.778C261.048 315.113 261.33 314.489 261.763 313.975C262.196 313.461 262.763 313.077 263.402 312.867C264.04 312.657 264.724 312.628 265.377 312.785C266.03 312.941 266.627 313.276 267.101 313.752C267.528 314.151 267.852 314.648 268.045 315.201C268.237 315.753 268.291 316.344 268.203 316.923V316.923Z" fill="white"/>
645
+ <path d="M602.219 97.1136C602.149 97.6173 601.916 98.0845 601.556 98.4436C601.331 98.6712 601.062 98.8513 600.766 98.9734C600.47 99.0954 600.152 99.1569 599.832 99.1542C599.512 99.1515 599.196 99.0848 598.902 98.9578C598.608 98.8308 598.343 98.6461 598.122 98.4148C597.852 98.1511 597.649 97.8266 597.53 97.4686C597.411 97.1105 597.379 96.7291 597.437 96.3561C597.512 95.8489 597.747 95.3789 598.109 95.0152C598.334 94.7875 598.603 94.6074 598.899 94.4853C599.195 94.3632 599.513 94.3018 599.833 94.3045C600.153 94.3072 600.469 94.3739 600.763 94.5009C601.057 94.6279 601.322 94.8126 601.543 95.044C601.815 95.3082 602.019 95.6346 602.137 95.9951C602.254 96.3557 602.283 96.7395 602.219 97.1136V97.1136Z" fill="white"/>
646
+ </g>
647
+ <g opacity="0.25">
648
+ <g clip-path="url(#clip0_960_56139)">
649
+ <path d="M377.72 903.144C378.013 911.747 378.036 919.914 377.671 927.635C388.593 920.01 399.12 911.838 409.212 903.149C398.718 903.753 388.203 903.752 377.72 903.144V903.144Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
650
+ <path d="M308.351 866.289C304.949 875.593 301.484 884.729 297.881 893.663C296.942 866.464 294.78 837.293 291.438 806.534C297.872 827.289 303.412 847.296 308.351 866.289Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
651
+ <path d="M337.649 513.195C354.196 520.118 370.186 528.274 385.484 537.594C381.046 539.579 376.1 541.948 370.599 544.743C360.089 533.724 349.047 523.211 337.649 513.195Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
652
+ <path d="M337.649 513.195C312.456 478.893 306.329 467.925 264.655 457.877C290.736 473.921 315.181 492.446 337.649 513.195V513.195Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
653
+ <path d="M337.649 513.196C327.085 498.233 315.375 484.11 302.622 470.953C326.388 491.139 349.428 516.03 370.589 544.75C360.089 533.724 349.047 523.212 337.649 513.196Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
654
+ <path d="M337.649 513.194C344.533 532.642 350.128 555.194 354.442 580.463C361.05 567.167 366.536 555.28 370.62 544.73C360.089 533.723 349.048 523.21 337.649 513.194Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
655
+ <path d="M439.864 632.668C438.188 628.025 436.473 623.407 434.665 618.819C439.164 618.145 443.693 617.712 448.234 617.523C445.93 622.82 443.127 627.891 439.864 632.668V632.668Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
656
+ <path d="M439.864 632.668C438.188 628.025 436.473 623.407 434.665 618.819C439.164 618.145 443.693 617.712 448.234 617.523C445.93 622.82 443.127 627.891 439.864 632.668V632.668Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
657
+ <path d="M439.864 632.668C438.188 628.025 436.473 623.407 434.665 618.819C439.164 618.145 443.693 617.712 448.234 617.523C445.93 622.82 443.127 627.891 439.864 632.668V632.668Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
658
+ <path d="M329.847 574.889C338.333 576.638 346.536 578.466 354.41 580.457C361.017 567.16 366.503 555.274 370.587 544.723C359.301 552.825 345.755 562.822 329.847 574.889Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
659
+ <path d="M329.847 574.89C305.84 560.136 281.016 546.73 255.491 534.732C289.64 547.381 322.738 562.637 354.491 580.365C346.536 578.466 338.323 576.644 329.847 574.89Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
660
+ <path d="M286.953 869.396C262.679 883.414 237.544 896.76 211.829 909.148C216.058 883.889 219.932 856.985 223.499 828.76C245.895 843.276 267.059 856.923 286.953 869.396Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
661
+ <path d="M195.141 855.719C204.613 846.862 214.132 837.922 223.521 828.774C214.265 804.32 204.541 779.155 194.434 753.486C195.005 788.559 195.346 822.813 195.141 855.719Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
662
+ <path d="M380.053 872.707C381.886 886.219 383.014 899.823 383.431 913.464C372.065 914.669 359.492 915.342 345.71 915.484C357.803 901.625 369.271 887.317 380.053 872.707Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
663
+ <path d="M380.053 872.707C363.958 879.647 346.365 886.363 327.388 892.635C333.999 900.721 340.046 908.389 345.72 915.478C357.803 901.626 369.271 887.317 380.053 872.707Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
664
+ <path d="M33.3741 480.545C53.082 483.33 72.5695 487.425 91.7066 492.802C64.0229 501.437 36.904 511.814 10.5146 523.87C17.2946 509.009 24.9271 494.544 33.3741 480.545V480.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
665
+ <path d="M33.3741 480.545C53.082 483.33 72.5695 487.425 91.7066 492.802C64.0229 501.437 36.904 511.814 10.5146 523.87C17.2946 509.009 24.9271 494.544 33.3741 480.545V480.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
666
+ <path d="M397.477 930.182C393.646 925.326 389.007 919.749 383.431 913.464C372.065 914.669 359.492 915.343 345.71 915.484C366.846 922.876 384.001 927.852 397.477 930.182Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
667
+ <path d="M397.477 930.182C407.268 913.799 416.017 896.827 423.671 879.366C411.058 891.638 397.612 903.032 383.43 913.463C389.047 919.724 393.646 925.325 397.477 930.182Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
668
+ <path d="M397.477 930.182C407.268 913.799 416.017 896.827 423.671 879.366C411.058 891.638 397.612 903.032 383.43 913.463C389.047 919.724 393.646 925.325 397.477 930.182Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
669
+ <path d="M286.953 869.396C312.528 884.122 330.275 891.214 345.71 915.485C328.722 902.514 309.247 887.009 286.953 869.396Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
670
+ <path d="M286.953 869.395C262.679 883.414 237.544 896.759 211.829 909.147C206.531 892.211 200.961 874.397 195.118 855.704C227.261 861.358 258.023 865.948 286.953 869.395Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
671
+ <path d="M356.285 845.015C365.049 854.827 372.946 864.092 380.053 872.708C348.969 873.172 317.896 872.067 286.953 869.396C311.716 861.662 334.931 853.53 356.285 845.015Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
672
+ <path d="M418.683 854.955C420.749 862.987 422.406 871.121 423.647 879.327C411.034 891.599 397.588 902.993 383.406 913.424C396.35 894.662 408.132 875.135 418.683 854.955V854.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
673
+ <path d="M265.682 537.083C249.741 533.015 233.439 532.988 216.7 531.721C233.431 533.02 249.781 534.844 265.682 537.083Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
674
+ <path d="M380.053 872.707C378.331 869.932 376.452 867.173 374.55 864.331C359.89 873.963 344.134 883.438 327.388 892.635C346.365 886.363 363.958 879.647 380.053 872.707Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
675
+ <path d="M418.683 854.955C420.749 862.987 422.406 871.121 423.647 879.327C426.787 867.345 429.484 854.828 431.664 841.835C427.574 846.203 423.247 850.577 418.683 854.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
676
+ <path d="M418.683 854.955C420.749 862.987 422.406 871.121 423.647 879.327C426.787 867.345 429.484 854.828 431.664 841.835C427.574 846.203 423.247 850.577 418.683 854.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
677
+ <path d="M418.683 854.955C420.749 862.987 422.406 871.121 423.647 879.327C426.787 867.345 429.484 854.828 431.664 841.835C427.574 846.203 423.247 850.577 418.683 854.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
678
+ <path d="M274.24 830.368C248.697 839.259 222.227 847.75 195.141 855.717C204.614 846.861 214.132 837.921 223.521 828.773C240.887 829.487 257.804 830.08 274.24 830.368Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
679
+ <path d="M379.106 915.474C380.145 901.237 380.461 886.963 380.053 872.706C381.886 886.219 383.013 899.823 383.43 913.463C381.991 914.137 380.568 914.814 379.106 915.474Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
680
+ <path d="M257.095 868.721C294.097 866.638 298.231 877.209 327.378 892.642C305.94 886.014 282.465 878.001 257.095 868.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
681
+ <path d="M356.285 845.014C362.781 851.745 368.869 858.184 374.55 864.331C359.89 873.963 344.134 883.438 327.388 892.635C337.536 877.183 347.207 861.23 356.285 845.014Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
682
+ <path d="M418.683 854.955C404.158 858.858 389.439 861.979 374.59 864.306C378.536 880.484 381.502 896.891 383.471 913.439C396.393 894.67 408.153 875.139 418.683 854.955V854.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
683
+ <path d="M257.095 868.72C267.247 869.133 277.209 869.307 286.959 869.406C258.017 865.939 227.267 861.369 195.147 855.729C216.379 860.581 237.028 864.911 257.095 868.72Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
684
+ <path d="M379.106 915.475C380.145 901.238 380.461 886.964 380.053 872.708C378.331 869.933 376.452 867.173 374.55 864.331C377.086 881.265 378.607 898.343 379.106 915.475V915.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
685
+ <path d="M257.763 914C292.117 893.22 325.043 870.166 356.315 844.996C334.961 853.511 311.759 861.663 286.983 869.377C277.475 884.789 267.671 899.657 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
686
+ <path d="M265.682 537.083C256.303 516.667 245.635 496.871 233.742 477.813C228.877 493.158 223.196 511.127 216.7 531.72C233.431 533.019 249.781 534.843 265.682 537.083Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
687
+ <path d="M265.682 537.083C256.303 516.667 245.635 496.871 233.742 477.813C228.877 493.158 223.196 511.127 216.7 531.72C233.431 533.019 249.781 534.843 265.682 537.083Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
688
+ <path d="M274.24 830.368C278.767 843.783 283.041 856.792 286.953 869.395C286.522 870.555 286.097 871.724 285.65 872.88C282.186 859.19 278.367 844.992 274.24 830.368Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
689
+ <path d="M356.286 845.015C341.876 850.36 326.546 855.452 310.41 860.428C316.504 871.745 322.232 882.383 327.378 892.642C337.536 877.183 347.207 861.231 356.286 845.015Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
690
+ <path d="M257.763 914C263.893 887.851 269.449 859.861 274.24 830.369C294.044 853.15 311.875 873.89 327.388 892.635C305.523 900.396 282.23 907.507 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
691
+ <path d="M274.24 830.368C278.767 843.783 283.041 856.792 286.953 869.395C268.803 864.79 249.831 859.633 230.037 853.926C245.036 846.225 259.822 838.381 274.24 830.368Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
692
+ <path d="M257.095 868.721C275.559 866.268 293.377 863.489 310.42 860.421C316.514 871.739 322.242 882.377 327.388 892.636C305.94 886.014 282.465 878.001 257.095 868.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
693
+ <path d="M369.287 840.749C365.037 842.164 360.723 843.633 356.286 845.014C362.781 851.744 368.869 858.183 374.55 864.331C373.006 856.682 371.228 848.836 369.287 840.749Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
694
+ <path d="M369.287 840.749C365.037 842.164 360.723 843.633 356.286 845.014C362.781 851.744 368.869 858.183 374.55 864.331C373.006 856.682 371.228 848.836 369.287 840.749Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
695
+ <path d="M369.287 840.749C365.037 842.164 360.723 843.633 356.286 845.014C362.781 851.744 368.869 858.183 374.55 864.331C373.006 856.682 371.228 848.836 369.287 840.749Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
696
+ <path d="M286.953 869.395C268.803 864.79 249.831 859.633 230.037 853.926C249.366 860.819 267.901 867.134 285.644 872.87C286.097 871.724 286.482 870.579 286.953 869.395Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
697
+ <path d="M257.763 914C275.861 896.908 293.546 879.017 310.44 860.408C316.534 871.726 322.262 882.364 327.408 892.622C305.523 900.396 282.23 907.506 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
698
+ <path d="M257.095 868.72C248.261 863.976 239.249 859.012 230.043 853.936C218.545 854.661 206.888 855.127 195.121 855.73C216.37 860.581 237.028 864.911 257.095 868.72Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
699
+ <path d="M344.11 902.518C326.65 894.081 307.167 884.208 285.663 872.9C306.696 883.389 325.653 890.733 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
700
+ <path d="M274.24 830.369C268.698 843.416 262.913 856.161 257.095 868.72C266.82 870.276 276.341 871.615 285.65 872.88C282.186 859.19 278.367 844.993 274.24 830.369Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
701
+ <path d="M274.24 830.369C268.698 843.416 262.913 856.161 257.095 868.72C266.82 870.276 276.341 871.615 285.65 872.88C282.186 859.19 278.367 844.993 274.24 830.369Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
702
+ <path d="M274.24 830.369C286.925 840.918 299.019 850.915 310.42 860.421C274.816 860.401 236.098 858.759 195.141 855.719C222.227 847.751 248.697 839.26 274.24 830.369Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
703
+ <path d="M230.043 853.937C249.372 860.83 267.908 867.145 285.65 872.881C257.134 868.381 226.844 862.497 195.141 855.719C206.888 855.128 218.545 854.661 230.043 853.937Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
704
+ <path d="M274.24 830.368C268.698 843.415 262.913 856.16 257.095 868.719C248.261 863.975 239.249 859.012 230.043 853.936C245.036 846.224 259.822 838.381 274.24 830.368Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
705
+ <path d="M257.763 914C292.117 893.22 325.043 870.166 356.316 844.996C341.906 850.341 326.576 855.433 310.44 860.408C293.546 879.017 275.861 896.908 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
706
+ <path d="M257.763 913.999C257.786 899.563 257.564 884.47 257.095 868.72C266.82 870.276 276.341 871.615 285.65 872.88C276.582 887.058 267.213 900.75 257.763 913.999Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
707
+ <path d="M257.763 914C263.893 887.851 269.449 859.861 274.24 830.369C278.366 844.994 282.232 859.176 285.65 872.881C276.582 887.059 267.213 900.751 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
708
+ <path d="M225.759 966.8C236.465 950.549 247.206 932.903 257.763 913.999C249.346 895.297 240.01 875.271 230.043 853.936C229.711 896.198 228.263 934.047 225.759 966.8Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
709
+ <path d="M274.24 830.369C268.698 843.416 262.913 856.161 257.095 868.72C275.559 866.267 293.377 863.488 310.42 860.421C299.019 850.914 286.926 840.917 274.24 830.369Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
710
+ <path d="M344.11 902.519C348.795 884.293 352.875 865.071 356.286 845.014C334.575 854.698 310.887 863.988 285.65 872.881C307.13 884.223 326.617 894.102 344.11 902.519Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
711
+ <path d="M344.11 902.519C348.795 884.293 352.875 865.071 356.286 845.014C334.575 854.698 310.887 863.988 285.65 872.881C307.13 884.223 326.617 894.102 344.11 902.519Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
712
+ <path d="M257.763 914C257.786 899.564 257.564 884.47 257.095 868.72C248.261 863.976 239.249 859.013 230.043 853.937C240.011 875.272 249.346 895.298 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
713
+ <path d="M257.095 868.721C275.559 866.268 293.377 863.489 310.42 860.421C302.338 864.64 294.081 868.794 285.65 872.881C276.341 871.616 266.87 870.246 257.095 868.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
714
+ <path d="M301.698 894.699C296.561 887.702 291.212 880.429 285.65 872.881C300.447 880.079 314.36 886.664 327.388 892.635C319.07 893.391 310.524 894.136 301.698 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
715
+ <path d="M344.11 902.518C343.426 904.946 342.736 907.356 342.039 909.747C353.483 895.042 364.32 879.903 374.55 864.331C364.899 877.293 354.752 890.022 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
716
+ <path d="M379.106 915.474C368.714 911.994 357.048 907.675 344.109 902.518C353.237 882.785 361.698 862.134 369.286 840.748C374.908 868.459 378.279 893.435 379.106 915.474Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
717
+ <path d="M149.051 882.243C164.352 873.778 179.709 864.867 195.141 855.717C184.884 840.678 174.388 825.206 163.651 809.303C158.799 834.563 153.841 858.916 149.051 882.243Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
718
+ <path d="M344.11 902.518C353.237 882.785 361.698 862.134 369.287 840.748C351.188 847.586 331.525 854.16 310.42 860.42C322.926 875.706 334.236 889.689 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
719
+ <path d="M344.11 902.518C353.237 882.785 361.698 862.134 369.287 840.748C351.188 847.586 331.525 854.16 310.42 860.42C322.926 875.706 334.236 889.689 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
720
+ <path d="M342.039 909.746C352.316 887.224 361.411 864.193 369.287 840.748C351.188 847.586 331.525 854.16 310.42 860.42C322.423 878.379 332.923 894.854 342.039 909.746Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
721
+ <path d="M379.106 915.474C368.714 911.994 357.049 907.675 344.11 902.518C343.426 904.946 342.736 907.355 342.039 909.746C355.643 912.327 367.995 914.298 379.106 915.474Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
722
+ <path d="M301.697 894.699C316.77 897.837 330.925 900.391 344.109 902.519C354.74 890.048 364.887 877.319 374.55 864.331C350.83 875.768 326.509 885.906 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
723
+ <path d="M138.205 926.927C125.412 917.611 112.351 908.022 99.3472 897.809C115.659 893.026 132.255 887.876 149.021 882.263C145.352 897.771 141.776 912.714 138.205 926.927Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
724
+ <path d="M138.205 926.927C125.412 917.611 112.351 908.022 99.3472 897.809C115.659 893.026 132.255 887.876 149.021 882.263C145.352 897.771 141.776 912.714 138.205 926.927Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
725
+ <path d="M189.494 963.169C172.956 952.307 155.807 940.15 138.205 926.927C141.777 912.715 145.319 897.806 149.051 882.245C163.311 912.172 176.89 939.215 189.494 963.169Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
726
+ <path d="M342.039 909.747C353.483 895.042 364.32 879.903 374.55 864.331C377.526 866.602 380.428 868.755 383.227 870.875C370.399 884.064 356.627 897.071 342.039 909.747Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
727
+ <path d="M301.697 894.699C304.766 883.584 307.652 872.131 310.438 860.45C302.356 864.669 294.1 868.822 285.668 872.91C291.234 880.419 296.576 887.682 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
728
+ <path d="M257.763 914C246.419 896.566 234.121 877.774 221.06 857.686C224.089 856.492 227.034 855.118 230.043 853.937C240.011 875.272 249.346 895.298 257.763 914Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
729
+ <path d="M138.205 926.927C146.826 928.894 155.381 930.887 163.957 932.69C142.709 922.101 121.154 910.371 99.4175 897.766C112.352 908.023 125.412 917.612 138.205 926.927Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
730
+ <path d="M230.043 853.935C203.309 864.101 176.211 873.613 149.045 882.234C153.835 858.906 158.803 834.548 163.645 809.293C186.392 824.91 208.589 839.865 230.043 853.935Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
731
+ <path d="M379.106 915.475C357.775 911.252 331.972 904.326 301.697 894.699C327.39 905.728 353.42 913.816 379.106 915.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
732
+ <path d="M342.039 909.746C352.316 887.224 361.411 864.193 369.287 840.749C374.435 851.28 379.172 861.325 383.227 870.875C370.399 884.064 356.627 897.071 342.039 909.746Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
733
+ <path d="M116.11 981.691C131.366 967.256 147.304 950.86 163.917 932.714C142.669 922.125 121.115 910.395 99.3776 897.79C104.786 929.065 110.379 957.109 116.11 981.691Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
734
+ <path d="M344.11 902.518C334.236 889.689 322.966 875.681 310.42 860.42C337.818 865.285 362.139 868.696 383.226 870.875C371.031 881.599 357.928 892.132 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
735
+ <path d="M301.697 894.699C316.77 897.837 330.925 900.391 344.109 902.519C343.426 904.947 342.736 907.356 342.039 909.747C329.557 905.468 316.128 900.377 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
736
+ <path d="M344.11 902.518C343.426 904.946 342.736 907.355 342.039 909.746C356.627 897.07 370.451 884.059 383.227 870.874C371.032 881.598 357.928 892.131 344.11 902.518Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
737
+ <path d="M245.253 949.791C264.508 932.71 283.387 914.242 301.697 894.7C287.459 901.394 272.811 907.875 257.763 914C253.712 926.479 249.551 938.381 245.253 949.791Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
738
+ <path d="M245.253 949.79C264.507 932.709 283.387 914.241 301.697 894.699C296.561 887.701 291.212 880.429 285.65 872.88C272.736 900.494 259.13 926.232 245.253 949.79Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
739
+ <path d="M221.059 857.686C224.089 856.492 227.033 855.118 230.043 853.937C208.558 839.817 186.391 824.911 163.651 809.305C183.316 826.12 202.476 842.3 221.059 857.686Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
740
+ <path d="M163.917 932.714C159.085 916.798 154.155 899.94 149.051 882.244C153.841 858.916 158.809 834.558 163.651 809.304C163.906 853.961 164.053 895.432 163.917 932.714Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
741
+ <path d="M301.697 894.699C304.766 883.584 307.652 872.131 310.438 860.45C309.495 887.966 307.346 913.54 304.353 936.727C303.897 923.558 303.012 909.549 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
742
+ <path d="M90.8887 896.551C99.2873 928.29 107.517 956.853 116.11 981.691C123.057 965.219 130.422 946.964 138.205 926.926C122.508 917.414 106.736 907.288 90.8887 896.551Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
743
+ <path d="M101.397 473.708C94.3 477.549 87.1876 481.633 80.0005 485.887C100.822 480.223 121.914 475.634 143.193 472.137C129.156 472.186 115.219 472.777 101.397 473.708Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
744
+ <path d="M101.397 473.708C94.3 477.549 87.1876 481.633 80.0005 485.887C100.822 480.223 121.914 475.634 143.193 472.137C129.156 472.186 115.219 472.777 101.397 473.708Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
745
+ <path d="M101.397 473.708C94.3 477.549 87.1876 481.633 80.0005 485.887C100.822 480.223 121.914 475.634 143.193 472.137C129.156 472.186 115.219 472.777 101.397 473.708Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
746
+ <path d="M90.8887 896.551C110.459 899.053 129.428 886.939 149.051 882.244C129.38 887.532 109.967 892.385 90.8887 896.551Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
747
+ <path d="M379.106 915.475C374.752 922.597 370.258 929.517 365.689 936.292C373.065 914.892 378.945 893.022 383.286 870.839C382.519 886.697 381.126 901.576 379.106 915.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
748
+ <path d="M379.106 915.475C374.752 922.597 370.258 929.517 365.689 936.292C373.065 914.892 378.945 893.022 383.286 870.839C382.519 886.697 381.126 901.576 379.106 915.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
749
+ <path d="M138.205 926.926C161.422 933.808 185.88 934.046 209.683 934.279C186.256 932.687 162.334 930.319 138.205 926.926Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
750
+ <path d="M289.394 454.234C304.727 460.465 319.626 467.69 333.998 475.861C323.185 475.858 309.578 478.811 293.43 484.438C292.874 472.128 291.606 462.044 289.394 454.234Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
751
+ <path d="M221.059 857.684C197.221 866.464 173.129 874.633 149.001 882.275C153.791 858.947 158.76 834.589 163.602 809.334C183.316 826.118 202.476 842.299 221.059 857.684Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
752
+ <path d="M149.051 882.243C153.841 858.916 158.809 834.557 163.651 809.303C174.738 805.773 185.81 802.128 196.839 798.482C180.813 827.602 164.826 855.668 149.051 882.243Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
753
+ <path d="M90.8887 896.551C115.372 909.785 139.829 921.815 163.917 932.714C139.687 922.904 117.161 903.13 90.8887 896.551Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
754
+ <path d="M90.8887 896.551C114.434 911.891 135.513 929.736 163.917 932.714C139.879 921.784 115.382 909.779 90.8887 896.551Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
755
+ <path d="M221.059 857.685C217.577 884.951 213.692 910.586 209.683 934.28C216.742 909.448 223.541 882.567 230.043 853.936C227.004 855.135 224.089 856.491 221.059 857.685Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
756
+ <path d="M95.9551 719.883C118.286 749.84 140.966 779.868 163.652 809.303C154.789 779.541 145.735 749.292 136.781 718.914C123.098 719.214 109.49 719.537 95.9551 719.883Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
757
+ <path d="M289.394 454.234C313.397 464.349 335.824 473.465 352.134 493.899C332.44 478.868 311.446 465.596 289.394 454.234Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
758
+ <path d="M189.494 963.169C181.292 953.613 172.652 943.532 163.917 932.715C143.535 929.33 123.073 925.212 102.623 920.621C130.833 936.25 159.827 950.451 189.494 963.169V963.169Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
759
+ <path d="M379.106 915.475C388.797 912.865 398.332 909.698 407.663 905.991C394.342 916.998 380.309 927.117 365.657 936.284C370.259 929.516 374.727 922.557 379.106 915.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
760
+ <path d="M193.971 910.456C183.886 918.169 173.829 925.549 163.917 932.715C159.085 916.798 154.155 899.941 149.051 882.245C164.326 892.12 179.3 901.524 193.971 910.456Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
761
+ <path d="M221.059 857.686C202.476 842.3 183.316 826.12 163.651 809.305C174.738 805.774 185.81 802.13 196.839 798.484C205.231 818.821 213.361 838.579 221.059 857.686Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
762
+ <path d="M245.253 949.79C215.956 927.504 182.845 902.041 149.051 882.244C183.337 908.461 215.68 931.08 245.253 949.79Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
763
+ <path d="M314.31 497.74C291.875 491.093 268.982 486.034 245.804 482.6C271.717 482.525 294.85 480.249 314.31 497.74Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
764
+ <path d="M333.998 475.861C345.506 487.443 355.938 500.039 365.168 513.497C356.986 498.726 346.191 486.578 333.998 475.861Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
765
+ <path d="M193.971 910.456C203.049 893.636 211.997 875.936 221.059 857.685C197.221 866.465 173.129 874.633 149.001 882.275C164.31 892.13 179.3 901.523 193.971 910.456Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
766
+ <path d="M301.697 894.699C292.504 918.162 282.105 941.149 270.544 963.567C282.017 955.075 293.257 946.028 304.335 936.697C303.891 923.549 303.012 909.549 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
767
+ <path d="M245.253 949.79C229.142 938.1 211.983 924.987 193.971 910.455C234.135 922.401 271.22 931.152 304.329 936.687C285.541 941.701 265.768 946.064 245.253 949.79Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
768
+ <path d="M301.698 894.698C276.934 884.095 249.939 871.705 221.059 857.685C217.577 884.951 213.692 910.586 209.683 934.28C241.014 922.69 271.728 909.478 301.698 894.698V894.698Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
769
+ <path d="M245.253 949.79C229.142 938.1 211.983 924.987 193.971 910.455C199.269 918.725 204.623 926.617 209.683 934.28C221.87 940.004 233.823 944.995 245.253 949.79Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
770
+ <path d="M193.971 910.456C203.049 893.636 211.997 875.937 221.06 857.686C213.362 838.579 205.252 818.808 196.81 798.502C196.358 838.204 195.437 875.74 193.971 910.456Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
771
+ <path d="M301.697 894.699C295.2 906.073 288.474 917.056 281.701 927.695C289.534 930.892 297.096 933.832 304.316 936.668C303.885 923.539 303.012 909.549 301.697 894.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
772
+ <path d="M140.396 493.829C119.655 490.132 99.476 487.431 80.0205 485.873C100.836 480.215 121.921 475.629 143.193 472.136C142.251 478.897 141.319 486.128 140.396 493.829Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
773
+ <path d="M301.698 894.698C271.728 909.478 241.014 922.689 209.683 934.279C234.634 933.1 258.749 930.709 281.72 927.724C288.474 917.055 295.176 906.033 301.698 894.698Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
774
+ <path d="M140.396 493.829C141.323 486.135 142.255 478.904 143.193 472.136C127.049 467.934 111.402 464.644 96.2524 462.268C111.601 471.887 126.342 482.426 140.396 493.829Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
775
+ <path d="M301.697 894.698C292.504 918.162 282.105 941.148 270.544 963.566C275.014 945.172 278.916 924.948 282.366 903.056C288.89 900.325 295.339 897.518 301.697 894.698Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
776
+ <path d="M36.5824 473.653C51.2969 476.855 65.796 480.94 80.0005 485.886C51.1578 487.406 22.4761 491.368 -5.73371 497.729C8.04815 489.026 22.2058 480.996 36.5824 473.653Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
777
+ <path d="M36.5825 473.652C51.297 476.853 65.7961 480.939 80.0006 485.885C85.49 477.332 90.8451 469.411 96.2527 462.267C76.1682 464.911 56.2446 468.712 36.5825 473.652V473.652Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
778
+ <path d="M36.5825 473.652C51.297 476.853 65.7961 480.939 80.0006 485.885C85.49 477.332 90.8451 469.411 96.2527 462.267C76.1682 464.911 56.2446 468.712 36.5825 473.652V473.652Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
779
+ <path d="M301.697 894.698C283.625 916.454 264.845 936.782 245.863 955.575C258.207 939.24 270.44 921.698 282.366 903.056C288.89 900.325 295.339 897.518 301.697 894.698Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
780
+ <path d="M90.8887 896.552C71.9526 888.907 53.3615 880.746 35.1177 872.273C57.2904 889.289 79.8437 905.533 102.622 920.621C98.7454 912.787 94.8501 904.745 90.8887 896.552Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
781
+ <path d="M90.8887 896.552C71.9526 888.907 53.3615 880.746 35.1177 872.273C57.2904 889.289 79.8437 905.533 102.622 920.621C98.7454 912.787 94.8501 904.745 90.8887 896.552Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
782
+ <path d="M214.513 924.351C207.765 919.864 200.904 915.24 193.931 910.48C203.009 893.661 211.957 875.961 221.019 857.71C219.083 881.147 217.066 903.427 214.513 924.351Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
783
+ <path d="M169.215 462.99C195.158 467.809 220.73 474.365 245.757 482.615C229.67 467.889 212.311 454.599 193.877 442.896C185.266 449.102 177.03 455.812 169.215 462.99V462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
784
+ <path d="M169.215 462.989C177.03 455.811 185.266 449.101 193.877 442.896C191.191 437.973 188.191 433.228 184.896 428.69C180.141 436.952 174.97 448.342 169.215 462.989Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
785
+ <path d="M144.914 432.471C161.448 434.96 177.808 438.435 193.907 442.878C191.22 437.955 188.221 433.21 184.926 428.671C171.537 429.241 158.182 430.51 144.914 432.471V432.471Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
786
+ <path d="M90.889 896.552C101.238 920.177 111.436 942.084 121.592 962.025C111.678 941.425 101.669 917.946 90.889 896.552Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
787
+ <path d="M90.8887 896.551C125.166 902.651 159.792 907.327 193.971 910.455C177.151 904.009 160.077 896.952 142.718 889.55C125.258 892.19 107.917 894.577 90.8887 896.551Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
788
+ <path d="M193.971 910.455C177.151 904.009 160.077 896.952 142.719 889.55C129.025 900.449 115.716 910.807 102.623 920.62C132.788 918.442 163.386 915.062 193.971 910.455Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
789
+ <path d="M169.215 462.99C160.66 450.455 152.626 440.232 144.884 432.49C161.418 434.979 177.778 438.455 193.877 442.897C185.266 449.103 177.03 455.812 169.215 462.99V462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
790
+ <path d="M270.544 963.567C253.356 952.531 234.705 939.314 214.553 924.326C237.943 926.284 260.388 927.455 281.72 927.725C278.113 940.34 274.471 952.317 270.544 963.567Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
791
+ <path d="M169.215 462.99C160 471.965 150.394 482.245 140.396 493.829C126.342 482.426 111.601 471.887 96.2524 462.268C120.577 460.943 144.949 461.184 169.215 462.99V462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
792
+ <path d="M36.5824 473.653C19.3035 484.718 2.66751 496.755 -13.2434 509.704C-3.85458 490.303 19.2653 484.275 36.5824 473.653Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
793
+ <path d="M287.855 924.167C311.027 924.277 334.197 922.969 357.232 920.25C334.803 924.175 309.503 926.532 281.71 927.732C283.741 926.472 285.86 925.418 287.855 924.167Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
794
+ <path d="M129.345 574.23C136.002 573.97 142.741 573.193 149.362 573.298C142.684 573.503 136.014 573.922 129.345 574.23Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
795
+ <path d="M193.971 910.455C177.151 904.009 160.077 896.952 142.718 889.55C135.231 915.924 128.234 940.141 121.592 962.024C144.945 946.902 169.152 929.603 193.971 910.455Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
796
+ <path d="M214.513 924.352C225.432 935.626 235.933 946.006 245.823 955.6C258.167 939.265 270.4 921.723 282.326 903.082C260.459 910.817 237.778 917.932 214.513 924.352Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
797
+ <path d="M169.215 462.99C195.158 467.809 220.73 474.366 245.757 482.615C220.484 474.071 195.892 463.388 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
798
+ <path d="M214.513 924.352C193.351 907.671 167.654 900.789 142.678 889.576C167.362 902.329 191.423 913.945 214.513 924.352Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
799
+ <path d="M287.855 924.165C264.643 925.199 240.134 925.213 214.525 924.371C225.444 935.646 235.946 946.026 245.835 955.62C260.061 945.667 274.108 935.18 287.855 924.165Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
800
+ <path d="M201.931 501.821C191.747 488.29 180.825 475.327 169.215 462.99C160.001 471.966 150.394 482.245 140.396 493.83C160.864 495.611 181.449 498.252 201.931 501.821Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
801
+ <path d="M169.215 462.99C160.66 450.455 152.626 440.232 144.884 432.49C127.759 440.836 111.472 450.809 96.2526 462.268C120.577 460.944 144.949 461.185 169.215 462.99V462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
802
+ <path d="M302.832 923.533C306.911 940.493 310 955.789 312.254 969.406C328.154 953.861 343.173 937.447 357.242 920.243C339.165 922.249 321.005 923.347 302.832 923.533V923.533Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
803
+ <path d="M169.215 462.99C154.462 465.281 139.46 468.153 124.318 471.715C129.505 478.489 134.852 485.877 140.396 493.829C150.384 482.243 159.99 471.963 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
804
+ <path d="M169.215 462.99C154.462 465.281 139.46 468.153 124.318 471.715C129.505 478.489 134.852 485.877 140.396 493.829C150.384 482.243 159.99 471.963 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
805
+ <path d="M169.215 462.99C154.462 465.281 139.46 468.153 124.318 471.715C129.505 478.489 134.852 485.877 140.396 493.829C150.384 482.243 159.99 471.963 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
806
+ <path d="M214.513 924.351C191.366 914.007 167.322 902.353 142.678 889.575C128.984 900.474 115.676 910.833 102.582 920.645C139.789 923.766 177.147 925.003 214.513 924.351V924.351Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
807
+ <path d="M144.914 432.471C158.182 430.51 171.537 429.241 184.926 428.671C184.119 434.072 183.234 440.62 182.163 448.476C170.139 442.29 157.693 436.942 144.914 432.471V432.471Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
808
+ <path d="M302.832 923.532C275.382 925.261 245.799 925.43 214.603 924.295C225.521 935.57 236.023 945.95 245.912 955.544C265.379 945.661 284.428 934.925 302.832 923.532Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
809
+ <path d="M287.855 924.165C264.643 925.199 240.134 925.213 214.525 924.371C237.916 926.328 260.361 927.5 281.692 927.77C283.741 926.471 285.86 925.417 287.855 924.165Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
810
+ <path d="M148.923 573.172C129.647 569.76 110.637 566.887 91.8926 564.555C110.73 566.949 129.934 569.843 149.362 573.298C149.224 573.233 149.091 573.219 148.923 573.172Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
811
+ <path d="M129.345 574.231C116.69 570.745 104.193 567.492 91.8804 564.535C110.718 566.929 129.922 569.823 149.35 573.279C142.684 573.503 136.014 573.922 129.345 574.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
812
+ <path d="M124.318 471.715C114.7 468.075 105.329 464.968 96.2725 462.256C126.563 460.498 156.925 461.142 187.071 464.182C166.042 465.563 145.093 468.078 124.318 471.715V471.715Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
813
+ <path d="M52.7824 769.65C66.8169 753.269 81.1886 736.582 95.955 719.884C81.5045 729.743 67.3795 739.702 53.4538 749.468C53.1772 756.215 52.9728 762.944 52.7824 769.65Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
814
+ <path d="M302.833 923.532C297.913 923.757 292.924 924.025 287.865 924.159C286.139 917.342 284.306 910.308 282.366 903.056C289.502 910.268 296.324 917.093 302.833 923.532Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
815
+ <path d="M124.318 471.716C107.899 466.084 91.1179 461.535 74.0815 458.1C91.2659 460.353 107.606 465.244 124.318 471.716Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
816
+ <path d="M302.832 923.532C275.382 925.261 245.799 925.43 214.603 924.295C237.828 917.9 260.509 910.785 282.416 903.025C289.518 910.258 296.324 917.093 302.832 923.532Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
817
+ <path d="M129.344 574.231C135.87 573.847 142.395 573.463 148.923 573.173C131.897 571.755 115.008 570.582 98.3179 569.93C108.577 571.141 118.916 572.659 129.344 574.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
818
+ <path d="M129.344 574.231C135.87 573.847 142.395 573.463 148.923 573.173C131.897 571.755 115.008 570.582 98.3179 569.93C108.577 571.141 118.916 572.659 129.344 574.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
819
+ <path d="M169.215 462.99C173.684 457.706 177.957 452.844 182.133 448.496C183.746 453.328 185.377 458.548 187.051 464.194C181.119 463.702 175.173 463.301 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
820
+ <path d="M169.215 462.99C173.684 457.706 177.957 452.844 182.133 448.496C183.746 453.328 185.377 458.548 187.051 464.194C181.119 463.702 175.173 463.301 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
821
+ <path d="M169.215 462.99C173.684 457.706 177.957 452.844 182.133 448.496C183.746 453.328 185.377 458.548 187.051 464.194C181.119 463.702 175.173 463.301 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
822
+ <path d="M124.317 471.714C131.43 455.405 138.285 442.33 144.884 432.489C157.663 436.96 170.109 442.308 182.133 448.495C162.345 454.867 143.025 462.626 124.317 471.714V471.714Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
823
+ <path d="M74.0819 458.099C68.4908 455.033 62.7342 452.273 56.8374 449.83C70.2993 452.912 83.4804 457.071 96.2527 462.268C88.6522 460.629 81.2633 459.175 74.0819 458.099Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
824
+ <path d="M201.931 501.821C191.746 488.29 180.825 475.327 169.215 462.99C179.96 466.905 190.939 471.197 201.904 476.047C202.019 484.005 201.99 492.602 201.931 501.821Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
825
+ <path d="M129.344 574.23C135.87 573.846 142.395 573.462 148.923 573.172C129.647 569.76 110.637 566.887 91.8926 564.555C104.181 567.472 116.665 570.705 129.344 574.23Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
826
+ <path d="M287.855 924.166C264.643 925.199 240.134 925.213 214.525 924.371C227.95 940.377 240.559 954.734 252.155 967.524C264.26 954.042 276.118 939.492 287.855 924.166Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
827
+ <path d="M124.318 471.716C107.899 466.084 91.1179 461.535 74.0815 458.1C109.705 451.221 145.913 448.003 182.133 448.496C162.346 454.868 143.025 462.628 124.318 471.716V471.716Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
828
+ <path d="M50.7744 533.559C84.1899 545.01 116.953 558.233 148.923 573.172C131.897 571.754 115.008 570.581 98.3178 569.929C81.5705 556.52 65.7227 544.396 50.7744 533.559Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
829
+ <path d="M201.931 501.822C196.937 487.818 191.977 475.275 187.051 464.194C191.95 467.935 196.89 471.898 201.904 476.047C202.019 484.006 201.99 492.603 201.931 501.822Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
830
+ <path d="M201.931 501.822C196.937 487.818 191.977 475.275 187.051 464.194C191.95 467.935 196.89 471.898 201.904 476.047C202.019 484.006 201.99 492.603 201.931 501.822Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
831
+ <path d="M201.931 501.822C196.937 487.818 191.977 475.275 187.051 464.194C191.95 467.935 196.89 471.898 201.904 476.047C202.019 484.006 201.99 492.603 201.931 501.822Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
832
+ <path d="M-2.34195 805.694C61.8172 760.31 53.8417 770.172 130.666 761.594C83.5474 777.394 38.784 792.254 -2.34195 805.694Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
833
+ <path d="M52.7824 769.65C78.113 767.095 104.145 764.421 130.641 761.555C104.401 757.55 78.5632 753.57 53.4538 749.468C53.1772 756.214 52.9728 762.943 52.7824 769.65Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
834
+ <path d="M129.345 574.231C116.69 570.745 104.193 567.492 91.8804 564.535C93.9906 566.328 96.1571 568.099 98.3058 569.909C108.577 571.14 118.916 572.658 129.345 574.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
835
+ <path d="M124.318 471.714C100.685 478.503 77.4583 486.655 54.7556 496.128C60.4163 483.06 66.8743 470.344 74.0931 458.05C91.1267 461.502 107.904 466.066 124.318 471.714V471.714Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
836
+ <path d="M302.833 923.532C275.382 925.261 245.799 925.43 214.603 924.295C213.082 941.298 211.242 957.14 209.424 971.789C241.581 957.772 272.786 941.651 302.833 923.532V923.532Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
837
+ <path d="M108.319 852.094C89.3793 825.413 70.7936 797.717 52.7822 769.65C78.1128 767.096 104.145 764.421 130.641 761.556C122.921 792.603 115.428 822.921 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
838
+ <path d="M124.318 471.715C157.88 460.113 189.776 452.414 218.939 448.909C208.017 453.367 197.369 458.471 187.051 464.194C166.029 465.572 145.087 468.083 124.318 471.715V471.715Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
839
+ <path d="M108.319 852.094C119.839 864.986 131.402 877.411 142.668 889.582C146.847 876.392 151.067 862.793 155.329 848.784C139.611 850.063 123.941 851.166 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
840
+ <path d="M108.319 852.094C119.839 864.986 131.402 877.411 142.668 889.582C146.847 876.392 151.067 862.793 155.329 848.784C139.611 850.063 123.941 851.166 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
841
+ <path d="M108.319 852.094C119.839 864.986 131.402 877.411 142.668 889.582C146.847 876.392 151.067 862.793 155.329 848.784C139.611 850.063 123.941 851.166 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
842
+ <path d="M169.215 462.99C185.455 457.169 202.069 452.464 218.938 448.91C213.702 456.441 208.099 465.504 201.904 476.047C190.909 471.216 179.986 466.903 169.215 462.99Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
843
+ <path d="M-2.27867 499.813C16.651 497.443 35.6971 496.213 54.7557 496.129C60.4164 483.061 66.8744 470.345 74.0932 458.051C47.543 469.865 21.999 483.833 -2.27867 499.813V499.813Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
844
+ <path d="M49.9088 812.529C75.816 796.206 102.872 779.144 130.629 761.536C138.976 791.316 147.159 820.54 155.372 848.743C119.731 837.518 84.3253 825.488 49.9088 812.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
845
+ <path d="M50.7744 533.559C65.5489 544.28 82.7437 556.958 98.3039 569.951C81.5659 556.527 65.7227 544.396 50.7744 533.559Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
846
+ <path d="M49.9092 812.528C31.9114 810.326 14.4292 808.107 -2.35421 805.674C15.1105 794.15 33.4859 782.062 52.7702 769.629C51.6592 784.1 50.7055 798.399 49.9092 812.528Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
847
+ <path d="M49.9091 812.528C51.0379 791.788 52.9966 770.464 53.4415 749.448C51.94 770.749 50.7986 791.827 49.9091 812.528Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
848
+ <path d="M49.9091 812.528C51.0379 791.788 52.9966 770.464 53.4415 749.448C51.94 770.749 50.7986 791.827 49.9091 812.528Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
849
+ <path d="M218.938 448.908C206.949 448.304 194.66 448.133 182.133 448.494C189.203 457.32 195.8 466.514 201.898 476.036C208.099 465.503 213.702 456.44 218.938 448.908Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
850
+ <path d="M218.938 448.908C206.949 448.304 194.66 448.133 182.133 448.494C189.203 457.32 195.8 466.514 201.898 476.036C208.099 465.503 213.702 456.44 218.938 448.908Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
851
+ <path d="M108.319 852.094C88.5925 839.312 69.0921 825.978 49.9088 812.529C75.816 796.206 102.872 779.144 130.629 761.536C122.921 792.604 115.428 822.921 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
852
+ <path d="M136.289 514.057C158.575 508.875 180.535 504.775 201.931 501.821C201.99 492.601 201.979 484.029 201.904 476.046C179.264 487.338 157.349 500.034 136.289 514.057V514.057Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
853
+ <path d="M130.641 761.555C105.22 739.706 80.4123 717.998 56.4955 696.877C55.2549 714.31 54.2111 731.882 53.4536 749.468C78.5931 753.552 104.4 757.551 130.641 761.555Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
854
+ <path d="M49.9088 812.529C31.9111 810.328 14.4288 808.108 -2.35455 805.675C15.0705 787.588 33.7148 768.785 53.4413 749.448C51.9397 770.75 50.7983 791.827 49.9088 812.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
855
+ <path d="M108.319 852.093C88.5928 839.31 69.0924 825.976 49.9091 812.528C50.727 798.404 51.6725 784.091 52.7456 769.59C70.7939 797.715 89.3449 825.378 108.319 852.093Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
856
+ <path d="M179.739 829.422C163.61 807.338 147.165 784.655 130.7 761.559C139.047 791.34 147.23 820.564 155.443 848.766C163.509 842.444 171.538 835.883 179.739 829.422Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
857
+ <path d="M50.7748 533.56C63.7897 542.875 77.4449 553.289 91.8928 564.556C77.9172 538.117 65.5382 515.308 54.7558 496.129C53.1896 507.588 51.8298 520.071 50.7748 533.56Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
858
+ <path d="M136.288 514.057C107.463 519.013 78.9166 525.523 50.7744 533.559C65.7289 544.347 81.5721 556.477 98.3039 569.951C111.241 549.68 123.857 530.967 136.288 514.057Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
859
+ <path d="M136.288 514.057C107.463 519.013 78.9166 525.523 50.7744 533.559C65.7289 544.347 81.5721 556.477 98.3039 569.951C111.241 549.68 123.857 530.967 136.288 514.057Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
860
+ <path d="M224.403 477.348C210.974 466.809 196.853 457.17 182.133 448.494C189.203 457.32 195.8 466.514 201.898 476.036C209.478 476.369 216.985 476.763 224.403 477.348Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
861
+ <path d="M297.053 456.661C298.794 463.336 299.86 470.173 300.237 477.071C296.777 465.397 292.692 455.976 287.952 449.007C290.995 451.388 294.052 453.924 297.053 456.661Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
862
+ <path d="M-2.3419 805.694C15.0831 787.607 33.7275 768.805 53.454 749.468C53.5233 740.846 53.8281 732.202 53.942 723.607C33.7167 751.722 14.8568 779.224 -2.3419 805.694Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
863
+ <path d="M74.0819 458.099C68.4908 455.033 62.7342 452.273 56.8374 449.83C61.4236 454.273 68.0944 454.883 74.0819 458.099Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
864
+ <path d="M218.938 448.909C220.918 457.124 222.789 466.573 224.403 477.349C211.934 472.458 199.483 468.073 187.051 464.193C197.369 458.471 208.017 453.367 218.938 448.909V448.909Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
865
+ <path d="M20.6453 485.024C12.9313 489.747 5.29003 494.676 -2.27853 499.812C16.6511 497.442 35.6972 496.212 54.7559 496.128C42.6562 491.594 31.2861 487.893 20.6453 485.024Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
866
+ <path d="M50.7746 533.558C39.1087 514.333 29.0975 498.199 20.6426 484.998C31.2834 487.866 42.6537 491.568 54.7533 496.102C53.1895 507.586 51.8296 520.07 50.7746 533.558Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
867
+ <path d="M52.7824 769.651C53.5934 745.36 54.8653 721.031 56.4956 696.877C53.511 720.993 53.1286 745.415 52.7824 769.651Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
868
+ <path d="M108.319 852.094C131.912 845.086 155.757 837.413 179.72 829.393C171.562 835.924 163.509 842.445 155.385 848.763C139.63 850.056 123.941 851.166 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
869
+ <path d="M218.939 448.908C220.918 457.124 222.789 466.573 224.403 477.348C216.985 476.763 209.479 476.369 201.904 476.046C208.1 465.503 213.702 456.44 218.939 448.908Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
870
+ <path d="M108.319 852.092C88.5929 839.31 69.0925 825.976 49.9092 812.527C80.5559 841.703 111.974 869.508 143.264 895.209C131.653 881.454 120.078 866.977 108.319 852.092Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
871
+ <path d="M56.4956 696.877C54.3068 682.986 52.3834 669.232 50.5883 655.796C50.7906 686.321 51.8119 717.696 53.4538 749.469C54.2113 731.882 55.255 714.311 56.4956 696.877Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
872
+ <path d="M50.6283 655.771C50.8306 686.295 51.8519 717.671 53.4938 749.443C54.79 718.318 51.1808 686.257 50.6283 655.771Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
873
+ <path d="M108.319 852.094C111.911 865.76 115.528 879.071 119.17 892.029C138.962 872.418 159.203 851.431 179.745 829.433C155.77 837.433 131.912 845.086 108.319 852.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
874
+ <path d="M49.909 812.528C34.4116 786.525 19.6723 760.382 6.0047 734.424C21.4874 730.875 37.4515 727.26 53.8972 723.58C52.0107 753.575 50.6577 783.335 49.909 812.528Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
875
+ <path d="M8.89931 956.018C-5.22365 950.479 -18.8231 944.533 -31.8653 938.323C-40.8532 923.503 -49.4428 907.873 -57.5602 891.553C-36.9226 914.538 -14.7176 936.077 8.89931 956.018V956.018Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
876
+ <path d="M6.0172 734.445C22.2275 722.039 39.0304 709.471 56.4957 696.877C55.5442 705.767 54.693 714.677 53.942 723.608C37.4933 727.253 21.5184 730.866 6.0172 734.445Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
877
+ <path d="M6.0172 734.445C22.2275 722.039 39.0304 709.471 56.4957 696.877C55.5442 705.767 54.693 714.677 53.942 723.608C37.4933 727.253 21.5184 730.866 6.0172 734.445Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
878
+ <path d="M6.0172 734.445C22.2275 722.039 39.0304 709.471 56.4957 696.877C55.5442 705.767 54.693 714.677 53.942 723.608C37.4933 727.253 21.5184 730.866 6.0172 734.445Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
879
+ <path d="M56.4956 696.877C55.5441 705.767 54.6928 714.677 53.9418 723.607C55.4639 691.752 57.6242 660.612 60.4455 630.627C58.7684 652.092 57.4517 674.175 56.4956 696.877Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
880
+ <path d="M20.6452 485.024C31.286 487.893 42.6561 491.594 54.7558 496.128C30.8154 486.785 9.88916 480.869 -7.72217 478.441C1.88015 479.982 11.3585 482.181 20.6452 485.024V485.024Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
881
+ <path d="M97.2934 633.925C83.4802 654.438 69.7752 675.46 56.4955 696.877C57.4388 674.23 58.7554 652.147 60.4454 630.628C72.5468 631.547 84.8343 632.721 97.2934 633.925Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
882
+ <path d="M110.422 458.568C79.8275 464.876 49.7964 473.726 20.6451 485.025C32.8655 473.254 45.8563 462.304 59.5303 452.249C76.633 453.157 93.6393 455.269 110.422 458.568V458.568Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
883
+ <path d="M119.145 891.988C138.937 872.377 159.178 851.39 179.72 829.392C167.446 852.34 155.252 874.346 143.276 895.229C135.233 894.208 127.189 893.128 119.145 891.988Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
884
+ <path d="M119.145 891.988C138.937 872.377 159.178 851.39 179.72 829.392C167.446 852.34 155.252 874.346 143.276 895.229C135.233 894.208 127.189 893.128 119.145 891.988Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
885
+ <path d="M97.2936 633.924C83.4805 654.436 69.7755 675.459 56.4958 696.876C54.307 682.984 52.3836 669.23 50.5884 655.795C65.933 648.359 81.5061 641.002 97.2936 633.924Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
886
+ <path d="M20.6451 485.025C34.9116 475.294 48.6475 465.11 59.5303 452.249C45.8563 462.304 32.8655 473.254 20.6451 485.025V485.025Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
887
+ <path d="M20.6451 485.025C34.9116 475.294 48.6475 465.11 59.5303 452.249C45.8563 462.304 32.8655 473.254 20.6451 485.025V485.025Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
888
+ <path d="M8.4626 597.533C-16.7943 584.124 -38.8483 573.152 -57.6992 564.617C-49.1308 565.024 -39.9547 565.74 -30.2863 566.714C-18.5618 575.937 -5.54742 586.145 8.4626 597.533Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
889
+ <path d="M8.46262 597.534C21.3173 615.637 35.4145 635.028 50.5882 655.796C51.2955 677.931 52.3984 700.526 53.8971 723.58C35.9896 678.415 20.7766 635.985 8.46262 597.534Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
890
+ <path d="M110.422 458.568C148.988 460.98 187.176 467.272 224.403 477.35C186.949 466.509 148.923 459.303 110.422 458.568Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
891
+ <path d="M25.5737 666.074C48.7668 655.004 72.7714 644.282 97.2936 633.925C83.4804 654.438 69.7755 675.46 56.4957 696.877C45.8392 686.359 35.5319 676.092 25.5737 666.074Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
892
+ <path d="M97.2933 633.924C81.4935 640.982 65.9327 648.359 50.5881 655.795C53.8359 647.314 57.0745 638.908 60.4454 630.626C72.5468 631.545 84.8343 632.719 97.2933 633.924Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
893
+ <path d="M97.2933 633.924C81.4935 640.982 65.9327 648.359 50.5881 655.795C53.8359 647.314 57.0745 638.908 60.4454 630.626C72.5468 631.545 84.8343 632.719 97.2933 633.924Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
894
+ <path d="M110.422 458.567C104.368 452.899 97.9719 447.604 91.2694 442.711C80.6404 445.49 70.0608 448.669 59.5303 452.248C76.6329 453.156 93.6392 455.268 110.422 458.567V458.567Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
895
+ <path d="M25.5739 666.074C48.7669 655.004 72.7715 644.282 97.2938 633.925C82.4018 663.04 67.8339 693.081 53.8974 723.58C43.96 703.969 34.5001 684.748 25.5739 666.074Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
896
+ <path d="M119.146 891.989C130.232 912.246 141.41 931.019 152.018 948.539C149.123 931.902 146.34 914.082 143.277 895.23C135.233 894.209 127.189 893.129 119.146 891.989Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
897
+ <path d="M110.422 458.568C88.2171 460.442 66.1434 463.732 44.3369 468.416C81.2948 462.42 118.748 460.292 156.084 462.065C140.642 460.245 125.421 459.079 110.422 458.568Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
898
+ <path d="M110.422 458.568C104.368 452.901 97.9718 447.606 91.2693 442.713C75.0904 450.262 59.4131 458.848 44.337 468.417C66.1435 463.733 88.2171 460.443 110.422 458.568V458.568Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
899
+ <path d="M24.1993 759.056C33.8557 747.368 43.7276 735.491 53.942 723.607C55.4641 691.752 57.6244 660.612 60.4457 630.627C46.8793 672.221 34.7168 715.497 24.1993 759.056Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
900
+ <path d="M20.6452 485.024C11.3585 482.181 1.88015 479.982 -7.72217 478.441C9.36288 473.879 26.7439 470.538 44.2872 468.447C36.437 473.62 28.4935 479.111 20.6452 485.024Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
901
+ <path d="M55.1333 888.225C83.8207 891.013 114.248 890.553 143.307 895.279C113.342 893.805 83.8251 891.422 55.1333 888.225Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
902
+ <path d="M136.289 514.057C152.824 516.314 169.526 519.018 186.213 522.39C181.807 503.601 177.423 486.908 173.06 472.312C161.378 484.31 149.039 498.198 136.289 514.057Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
903
+ <path d="M55.1333 888.225C76.0268 889.934 97.4115 891.228 119.145 891.99C92.9691 901.602 67.8047 910.121 43.8647 917.262C47.4563 907.95 51.1643 898.224 55.1333 888.225Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
904
+ <path d="M55.1333 888.225C76.0268 889.934 97.4115 891.228 119.145 891.99C92.9691 901.602 67.8047 910.121 43.8647 917.262C47.4563 907.95 51.1643 898.224 55.1333 888.225Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
905
+ <path d="M91.2692 442.711C75.0903 450.261 59.413 458.847 44.3369 468.415C55.4386 451.328 72.794 447.134 91.2692 442.711Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
906
+ <path d="M186.212 522.391C199.945 504.957 212.675 489.943 224.403 477.35C201.967 470.925 179.159 465.828 156.096 462.085C167.197 481.637 177.25 501.767 186.212 522.391V522.391Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
907
+ <path d="M25.5734 666.074C18.959 642.013 13.2553 619.166 8.46247 597.534C24.7716 607.646 42.1005 618.731 60.4453 630.628C48.5904 642.257 36.9664 654.073 25.5734 666.074Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
908
+ <path d="M113.341 431.308C96.8154 440.793 78.0692 446.811 59.5303 452.248C76.9294 443.946 94.9164 436.947 113.341 431.308V431.308Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
909
+ <path d="M113.341 431.308C96.8154 440.793 78.0692 446.811 59.5303 452.248C76.9294 443.946 94.9164 436.947 113.341 431.308V431.308Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
910
+ <path d="M24.199 759.055C18.0013 750.794 11.9406 742.59 6.01686 734.444C19.9268 708.078 34.9178 681.825 50.6281 655.77C40.7615 689.701 31.9178 724.343 24.199 759.055Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
911
+ <path d="M186.212 522.391C199.945 504.957 212.675 489.943 224.403 477.35C207.546 474.976 190.383 473.272 173.059 472.313C177.434 486.912 181.818 503.605 186.212 522.391Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
912
+ <path d="M25.5735 666.073C33.7758 662.562 42.115 659.227 50.5881 655.795C53.836 647.315 57.0745 638.909 60.4454 630.627C48.5905 642.256 36.9665 654.072 25.5735 666.073Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
913
+ <path d="M25.5735 666.073C33.7758 662.562 42.115 659.227 50.5881 655.795C53.836 647.315 57.0745 638.909 60.4454 630.627C48.5905 642.256 36.9665 654.072 25.5735 666.073Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
914
+ <path d="M224.403 477.349C201.473 472.649 175.2 477.682 156.096 462.084C179.159 465.827 201.967 470.924 224.403 477.349V477.349Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
915
+ <path d="M44.3372 468.417C29.8731 466.715 15.2695 466.361 0.71582 467.359C19.9331 460.826 39.6122 455.764 59.5804 452.219C54.4858 457.164 49.4101 462.565 44.3372 468.417Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
916
+ <path d="M8.46261 597.533C-7.38259 599.203 -22.4701 601.148 -36.7998 603.369C-7.87188 610.387 24.6788 619.535 60.4855 630.602C42.1006 618.731 24.7718 607.646 8.46261 597.533Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
917
+ <path d="M24.1991 759.055C23.8049 727.73 24.2078 696.527 25.5736 666.073C34.4998 684.747 43.9597 703.968 53.9417 723.606C43.7274 735.49 33.8554 747.367 24.1991 759.055Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
918
+ <path d="M-7.72217 478.441C23.8749 462.926 57.0761 450.943 91.2695 442.711C75.0906 450.261 59.4133 458.847 44.3371 468.416C26.7763 470.515 9.37852 473.866 -7.72217 478.441Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
919
+ <path d="M24.1988 759.056C0.550113 743.616 -21.5285 728.628 -41.7422 714.145C-26.7258 720.721 -10.7668 727.455 6.01675 734.445C11.9472 742.588 18.0079 750.792 24.1988 759.056Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
920
+ <path d="M8.4626 597.532C-7.38262 599.202 -22.4701 601.147 -36.7998 603.368C-12.9864 579.091 12.3514 556.345 39.0578 535.27C28.5233 554.544 18.3057 575.379 8.4626 597.532Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
921
+ <path d="M-81.7791 634.052C-52.5074 619.953 -22.3632 607.754 8.46291 597.533C-40.1134 600.731 -44.5685 606.707 -81.7791 634.052Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
922
+ <path d="M-7.72223 478.442C-16.1231 478.406 -24.5158 479.148 -32.7925 480.656C-21.9147 475.564 -10.7413 471.134 0.665719 467.39C-2.15807 470.858 -4.99974 474.542 -7.72223 478.442Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
923
+ <path d="M-7.72223 478.442C-16.1231 478.406 -24.5158 479.148 -32.7925 480.656C-21.9147 475.564 -10.7413 471.134 0.665719 467.39C-2.15807 470.858 -4.99974 474.542 -7.72223 478.442Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
924
+ <path d="M-7.72223 478.442C-16.1231 478.406 -24.5158 479.148 -32.7925 480.656C-21.9147 475.564 -10.7413 471.134 0.665719 467.39C-2.15807 470.858 -4.99974 474.542 -7.72223 478.442Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
925
+ <path d="M173.059 472.313C164.039 466.71 155.062 462.027 147.624 454.797C155.878 459.969 164.348 465.846 173.059 472.313Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
926
+ <path d="M173.059 472.313C164.039 466.71 155.062 462.027 147.624 454.797C155.878 459.969 164.348 465.846 173.059 472.313Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
927
+ <path d="M173.059 472.313C164.039 466.71 155.062 462.027 147.624 454.797C155.878 459.969 164.348 465.846 173.059 472.313Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
928
+ <path d="M24.1992 759.056C0.550436 743.616 -21.5282 728.628 -41.7419 714.145C-20.9057 698.182 1.6419 682.118 25.5737 666.074C24.1879 696.541 23.7804 727.691 24.1992 759.056Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
929
+ <path d="M24.1992 759.056C0.550436 743.616 -21.5282 728.628 -41.7419 714.145C-20.9057 698.182 1.6419 682.118 25.5737 666.074C24.1879 696.541 23.7804 727.691 24.1992 759.056Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
930
+ <path d="M91.2693 442.712C89.7167 449.769 88.3116 458.003 87.054 467.412C109.949 464.27 133 462.485 156.084 462.065C133.024 452.957 111.251 446.413 91.2693 442.712Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
931
+ <path d="M87.0542 467.412C109.949 464.27 133 462.484 156.084 462.064C153.159 459.583 150.402 457.107 147.624 454.796C127.226 457.89 107.005 462.102 87.0542 467.412V467.412Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
932
+ <path d="M146.088 947.181C115.982 929.776 85.3992 910.018 55.1333 888.225C93.1545 930.737 90.3579 932.595 146.088 947.181Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
933
+ <path d="M237.672 462.526C251.505 466.392 265.103 470.816 278.387 475.696C246.151 471.142 210.593 469.968 173.072 472.332C194.371 467.615 215.954 464.339 237.672 462.526V462.526Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
934
+ <path d="M-37.6728 530.106C-48.5131 535.24 -58.7944 540.591 -68.5167 546.157C-46.9778 526.433 -23.8681 508.485 0.580667 492.493C-12.8027 504.376 -25.5707 516.931 -37.6728 530.106V530.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
935
+ <path d="M387.195 930.276C361.995 924.24 338.607 931.601 310.12 931.928C340.588 933.899 366.404 933.446 387.195 930.276Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
936
+ <path d="M404.454 898.071C402.417 911.756 399.305 925.271 395.148 938.49C384.957 935.193 374.973 931.305 365.248 926.846C378.833 917.977 391.922 908.37 404.454 898.071V898.071Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
937
+ <path d="M284.505 556.631C317.469 587.418 347.765 620.919 375.077 656.783C347.313 622.717 315.715 588.188 284.505 556.631Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
938
+ <path d="M404.454 898.071C391.919 908.372 378.827 917.981 365.238 926.852C381.983 912.792 397.786 897.653 412.544 881.535C409.925 887.113 407.229 892.625 404.454 898.071Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
939
+ <path d="M395.148 938.49C384.957 935.193 374.974 931.305 365.248 926.846C381.993 912.786 397.796 897.647 412.554 881.529C408.488 900.986 402.662 920.051 395.148 938.49V938.49Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
940
+ <path d="M237.718 526.929C253.57 536.172 269.163 546.179 284.505 556.631C254.004 564.233 220.779 574.212 185.483 586.505C204.15 564.367 221.563 544.406 237.718 526.929Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
941
+ <path d="M-37.6731 530.105C-25.5679 516.927 -12.7966 504.371 0.59037 492.485C-5.27994 501.207 -11.0868 510.589 -16.7256 520.621C-23.8973 523.671 -30.8783 526.85 -37.6731 530.105Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
942
+ <path d="M-37.6731 530.106C-53.3549 533.424 -68.7407 538.044 -83.6684 543.919C-60.9208 527.909 -34.2245 513.238 -4.42149 500.469C-15.7592 509.783 -26.881 519.69 -37.6731 530.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
943
+ <path d="M-37.6729 530.107C-26.8708 519.684 -15.7589 509.783 -4.42127 500.47C-4.02439 491.457 -3.02778 482.474 -1.43802 473.582C-14.0708 489.162 -26.281 508.104 -37.6729 530.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
944
+ <path d="M237.718 526.928C273.928 545.637 303.521 572.667 329.183 604.262C300.632 576.299 270.064 550.453 237.718 526.928Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
945
+ <path d="M454.998 776.446C460.924 763.034 465.769 749.181 469.487 735.021C464.595 725.638 458.883 716.708 452.415 708.334C454.859 730.937 455.722 753.696 454.998 776.446V776.446Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
946
+ <path d="M-13.9671 928.906C5.82482 921.759 27.6212 913.285 51.1261 903.12C51.5829 891.348 52.2369 879.179 52.9535 866.641C27.7996 890.32 5.50064 911.185 -13.9671 928.906Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
947
+ <path d="M454.998 776.446C452.057 764.783 448.512 753.284 444.377 741.995C447.633 730.49 450.279 719.254 452.375 708.359C454.832 730.953 455.708 753.703 454.998 776.446V776.446Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
948
+ <path d="M454.998 776.446C460.924 763.034 465.769 749.182 469.487 735.021C461.256 737.776 452.887 740.096 444.417 741.971C448.539 753.269 452.071 764.776 454.998 776.446V776.446Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
949
+ <path d="M0.590427 492.487C-1.08631 495.078 -2.73386 497.761 -4.41144 500.463C-4.0176 491.452 -3.02436 482.472 -1.43824 473.582C-1.12781 479.145 -0.451592 485.447 0.590427 492.487Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
950
+ <path d="M0.590427 492.487C-1.08631 495.078 -2.73386 497.761 -4.41144 500.463C-4.0176 491.452 -3.02436 482.472 -1.43824 473.582C-1.12781 479.145 -0.451592 485.447 0.590427 492.487Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
951
+ <path d="M469.447 735.045C461.215 737.801 452.847 740.121 444.376 741.996C447.632 730.491 450.279 719.254 452.375 708.359C458.843 716.733 464.555 725.663 469.447 735.045Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
952
+ <path d="M0.590618 492.487C-5.27968 501.208 -11.0866 510.59 -16.7253 520.623C-11.0566 510.75 -5.29316 501.834 0.590618 492.487Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
953
+ <path d="M0.590618 492.487C-5.27968 501.208 -11.0866 510.59 -16.7253 520.623C-11.0566 510.75 -5.29316 501.834 0.590618 492.487Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
954
+ <path d="M454.998 776.446C448.129 758.725 439.713 741.649 429.846 725.413C437.64 720.113 445.159 714.421 452.375 708.359C454.832 730.953 455.708 753.703 454.998 776.446Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
955
+ <path d="M429.846 725.413C435.134 731.063 439.978 736.59 444.376 741.996C447.632 730.491 450.279 719.254 452.375 708.359C445.159 714.421 437.64 720.113 429.846 725.413V725.413Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
956
+ <path d="M469.447 735.047C460.167 731.841 447.059 728.72 429.846 725.414C435.134 731.063 439.978 736.591 444.376 741.997C452.847 740.122 461.215 737.802 469.447 735.047V735.047Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
957
+ <path d="M-4.42121 500.469C-4.02432 491.456 -3.02771 482.474 -1.43795 473.582C17.9424 466.426 37.7934 460.635 57.9674 456.252C36.0418 469.332 15.1799 484.118 -4.42121 500.469V500.469Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
958
+ <path d="M79.225 487.629C71.3476 475.113 64.252 464.705 57.957 456.258C80.6659 447.744 103.982 440.972 127.7 436C112.304 448.422 96.1084 465.788 79.225 487.629Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
959
+ <path d="M196.154 971.444C187.142 950.6 177.44 927.123 167.168 901.144C193.209 917.379 217.964 931.9 241.348 944.1C226.339 953.908 211.177 962.932 196.154 971.444Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
960
+ <path d="M196.154 971.444C187.142 950.6 177.44 927.123 167.168 901.144C193.209 917.379 217.964 931.9 241.348 944.1C226.339 953.908 211.177 962.932 196.154 971.444Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
961
+ <path d="M196.154 971.444C187.142 950.6 177.44 927.123 167.168 901.144C193.209 917.379 217.964 931.9 241.348 944.1C226.339 953.908 211.177 962.932 196.154 971.444Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
962
+ <path d="M387.64 838.721C386.44 828.805 384.944 818.629 383.153 808.192C375.483 834.217 366.379 859.812 355.884 884.862C367.176 869.757 377.79 854.318 387.64 838.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
963
+ <path d="M387.64 838.721C386.44 828.805 384.944 818.629 383.153 808.192C375.483 834.217 366.379 859.812 355.884 884.862C367.176 869.757 377.79 854.318 387.64 838.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
964
+ <path d="M387.64 838.722C377.79 854.319 367.176 869.758 355.854 884.882C351.099 903.603 345.392 922.079 338.755 940.238C357.999 907.868 374.357 873.898 387.64 838.722Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
965
+ <path d="M317.697 963.325C332.347 938.126 345.114 911.898 355.894 884.857C347.758 915.724 342.325 943.02 317.697 963.325Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
966
+ <path d="M317.697 963.325C332.347 938.126 345.114 911.898 355.894 884.857C347.758 915.724 342.325 943.02 317.697 963.325Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
967
+ <path d="M167.168 901.144C156.87 879.656 146.566 856.773 135.806 832.978C148.387 855.039 156.578 879.989 167.168 901.144Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
968
+ <path d="M224.353 667.485C196.29 657.707 167.86 648.364 139.374 639.713C176.099 634.37 212.22 630.13 247.002 627.037C239.776 640.14 232.215 653.575 224.353 667.485Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
969
+ <path d="M355.842 884.862C348.368 883.763 340.593 882.424 332.475 880.955C349.314 878.742 364.893 876.144 379.211 873.162C371.739 877.112 363.964 881.044 355.842 884.862Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
970
+ <path d="M21.7393 462.15C43.2381 456.95 67.3285 454.273 89.0746 447.326C66.3018 450.578 43.7927 455.533 21.7393 462.15Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
971
+ <path d="M21.7393 462.15C43.2381 456.95 67.3285 454.273 89.0746 447.326C66.3018 450.578 43.7927 455.533 21.7393 462.15Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
972
+ <path d="M64.7358 650.229C124.051 641.218 188.273 632.389 247.002 627.036C187.522 631.715 125.582 639.554 64.7358 650.229Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
973
+ <path d="M169.512 905.77C158.587 882.915 147.346 858.567 135.825 833.007C149.202 856.688 158.186 883.273 169.512 905.77Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
974
+ <path d="M100.409 431.866C116.875 429.77 133.437 428.58 150.019 428.301C129.221 432.945 108.833 439.305 89.0684 447.317C92.4766 441.908 96.2665 436.744 100.409 431.866V431.866Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
975
+ <path d="M100.409 431.866C116.875 429.77 133.437 428.58 150.019 428.301C129.221 432.945 108.833 439.305 89.0684 447.317C92.4766 441.908 96.2665 436.744 100.409 431.866V431.866Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
976
+ <path d="M100.409 431.865C87.7898 438.375 75.6851 445.84 64.2028 454.194C72.4484 451.713 80.7302 449.425 89.0483 447.329C92.4624 441.914 96.259 436.747 100.409 431.865Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
977
+ <path d="M402.567 817.188C380.711 840.034 357.295 861.348 332.488 880.974C349.326 878.761 364.905 876.163 379.224 873.18C387.862 854.959 395.63 836.207 402.567 817.188Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
978
+ <path d="M-27.3608 637.455C0.919351 640.592 31.708 644.89 64.7359 650.229C89.1894 646.283 114.174 642.79 139.374 639.713C79.1421 636.211 22.7344 635.387 -27.3608 637.455Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
979
+ <path d="M-26.2885 573.582C-30.3877 558.31 -33.6019 544.418 -35.9311 531.909C-12.9414 522.302 10.6574 514.239 34.7057 507.775C12.9476 528.357 -7.42855 550.341 -26.2885 573.582V573.582Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
980
+ <path d="M242.3 437.529C229.826 434.328 217.592 430.284 205.684 425.426C218.108 428.788 230.332 432.829 242.3 437.529V437.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
981
+ <path d="M242.3 437.529C229.826 434.328 217.592 430.284 205.684 425.426C218.108 428.788 230.332 432.829 242.3 437.529V437.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
982
+ <path d="M169.512 905.772C156.652 921.521 144.132 936.345 131.938 950.019C134.203 916.77 136.639 879.419 139.508 838.588C149.705 862.102 159.689 884.58 169.512 905.772Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
983
+ <path d="M131.919 949.988C143.822 937.468 156.009 924.036 168.48 909.691C159.134 887.325 149.37 863.571 139.49 838.557C136.691 879.344 134.172 916.719 131.919 949.988Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
984
+ <path d="M288.172 450.435C272.757 443.461 259.556 430.116 242.31 437.523C257.872 440.827 273.192 445.14 288.172 450.435V450.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
985
+ <path d="M20.1142 482.293C47.4292 460.265 74.6333 443.33 100.409 431.866C73.9818 446.658 46.4733 464.331 20.1142 482.293Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
986
+ <path d="M454.663 763.354C461.193 740.374 459.467 731.315 448.869 710.014C451.786 727.665 453.721 745.473 454.663 763.354V763.354Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
987
+ <path d="M454.663 763.354C461.193 740.374 459.467 731.315 448.869 710.014C451.786 727.665 453.721 745.473 454.663 763.354V763.354Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
988
+ <path d="M454.663 763.354C461.193 740.374 459.467 731.315 448.869 710.014C451.786 727.665 453.721 745.473 454.663 763.354V763.354Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
989
+ <path d="M242.3 437.529C235.462 435.444 228.554 433.513 221.637 431.793C232.999 439.642 243.505 448.647 252.989 458.664C250.122 451.287 246.542 444.209 242.3 437.529V437.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
990
+ <path d="M20.1145 482.292C24.4526 489.73 29.2795 498.224 34.7158 507.767C28.8375 488.89 24.4603 473.817 21.7331 462.14C20.8467 468.829 20.3065 475.555 20.1145 482.292V482.292Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
991
+ <path d="M402.567 817.189C395.629 836.208 387.861 854.96 379.224 873.181C389.53 840.437 397.341 806.986 402.591 773.114C403.008 788.104 403.088 802.796 402.567 817.189Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
992
+ <path d="M-88.062 651.334C-28.3396 631.433 0.942762 640.139 64.7359 650.229C5.25834 647.92 -46.2416 648.238 -88.062 651.334Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
993
+ <path d="M256.151 434.657C240.374 431.723 220.938 433.749 205.734 425.395C222.751 427.276 239.6 430.371 256.151 434.657Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
994
+ <path d="M100.409 431.865C117.343 427.396 134.563 424.127 151.941 422.084C151.255 423.882 150.724 425.997 150.019 428.301C133.437 428.579 116.875 429.769 100.409 431.865V431.865Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
995
+ <path d="M-27.3608 637.456C-43.2931 633.341 -58.008 629.73 -71.5054 626.621C-57.4782 608.418 -42.2634 590.701 -26.2386 573.551C-27.4446 593.475 -27.8659 614.819 -27.3608 637.456Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
996
+ <path d="M-27.3608 637.456C-43.2931 633.341 -58.008 629.73 -71.5054 626.621C-57.4782 608.418 -42.2634 590.701 -26.2386 573.551C-27.4446 593.475 -27.8659 614.819 -27.3608 637.456Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
997
+ <path d="M204.262 921.433C192.889 916.507 181.289 911.214 169.494 905.741C169.168 907.069 168.803 908.379 168.48 909.691C180.543 913.942 192.518 917.739 204.262 921.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
998
+ <path d="M204.262 921.433C192.889 916.507 181.289 911.214 169.494 905.741C169.168 907.069 168.803 908.379 168.48 909.691C180.543 913.942 192.518 917.739 204.262 921.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
999
+ <path d="M204.262 921.433C192.889 916.507 181.289 911.214 169.494 905.741C169.168 907.069 168.803 908.379 168.48 909.691C180.543 913.942 192.518 917.739 204.262 921.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1000
+ <path d="M288.173 450.435C300.812 460.998 313.473 474.747 325.645 491.571C302.385 478.64 278.086 467.634 252.989 458.664C266.272 453.826 278.105 451.095 288.173 450.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1001
+ <path d="M288.173 450.435C300.812 460.998 313.473 474.747 325.645 491.571C302.385 478.64 278.086 467.634 252.989 458.664C266.272 453.826 278.105 451.095 288.173 450.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1002
+ <path d="M347.171 491.954C328.852 476.311 309.094 462.416 288.152 450.447C300.792 461.011 313.453 474.759 325.625 491.584C332.811 491.18 340.013 491.303 347.171 491.954Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1003
+ <path d="M368.637 497.289C356.246 491.883 340.597 490.764 325.645 491.572C343.501 490.842 358.099 492.792 368.637 497.289Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1004
+ <path d="M97.9438 476.385C133.771 474.69 169.652 476.018 205.201 480.355C182.196 491.192 159.867 503.416 138.338 516.958C124.03 501.404 110.617 487.806 97.9438 476.385Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1005
+ <path d="M272.748 437.124C250.705 433.63 229.015 427.845 205.734 425.395C230.59 426.676 253.184 430.678 272.748 437.124Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1006
+ <path d="M256.151 434.657C222.199 425.723 187.134 421.492 151.941 422.084C186.844 422.113 223.043 426.129 256.151 434.657Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1007
+ <path d="M288.172 450.435C266.901 437.308 247.293 430.656 221.647 431.787C244.343 436.052 266.603 442.292 288.172 450.435V450.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1008
+ <path d="M188.662 452.227C200.729 442.86 211.782 436.014 221.685 431.737C233.033 439.607 243.523 448.631 252.989 458.665C231.725 455.107 210.236 452.956 188.662 452.227V452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1009
+ <path d="M347.171 491.955C340.022 491.305 332.829 491.18 325.651 491.582C331.147 493.425 336.472 495.35 341.626 497.358C343.627 495.334 345.464 493.536 347.171 491.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1010
+ <path d="M100.409 431.865C135.82 421.477 170.261 420.091 205.734 425.395C170.533 422.966 135.123 425.141 100.409 431.865V431.865Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1011
+ <path d="M288.172 450.435C266.603 442.292 244.343 436.052 221.647 431.787C233.006 439.639 243.509 448.646 252.988 458.665C266.272 453.827 278.104 451.096 288.172 450.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1012
+ <path d="M379.383 517.332C362.392 506.977 344.39 498.348 325.645 491.572C344.588 497.552 363.836 507.488 379.383 517.332Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1013
+ <path d="M224.125 476.231C212.728 467.63 200.892 459.618 188.662 452.227C194.106 460.479 199.626 469.866 205.22 480.385C211.642 478.83 217.936 477.492 224.125 476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1014
+ <path d="M368.637 497.287C361.789 494.478 354.558 492.681 347.171 491.953C358.341 499.856 369.092 508.326 379.383 517.33C376.565 510.265 372.96 503.543 368.637 497.287V497.287Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1015
+ <path d="M368.637 497.287C361.789 494.478 354.558 492.681 347.171 491.953C358.341 499.856 369.092 508.326 379.383 517.33C376.565 510.265 372.96 503.543 368.637 497.287V497.287Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1016
+ <path d="M272.748 437.125C278.582 440.7 283.791 445.195 288.172 450.435C277.81 444.577 267.127 439.292 256.173 434.604C261.773 434.89 267.326 435.734 272.748 437.125Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1017
+ <path d="M272.748 437.125C278.582 440.7 283.791 445.195 288.172 450.435C277.81 444.577 267.127 439.292 256.173 434.604C261.773 434.89 267.326 435.734 272.748 437.125Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1018
+ <path d="M224.125 476.231C233.389 469.807 243.027 463.941 252.989 458.664C236.515 464.619 220.535 471.872 205.202 480.355C211.642 478.83 217.936 477.491 224.125 476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1019
+ <path d="M188.662 452.227C194.988 456.793 201.426 461.762 207.974 467.133C207.086 471.308 206.214 475.733 205.202 480.356C199.62 469.856 194.106 460.479 188.662 452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1020
+ <path d="M188.662 452.227C194.988 456.793 201.426 461.762 207.974 467.133C207.086 471.308 206.214 475.733 205.202 480.356C199.62 469.856 194.106 460.479 188.662 452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1021
+ <path d="M35.1023 537.271C28.6494 515.704 23.7142 497.408 20.1142 482.292C34.7701 505.331 35.6561 508.322 35.1023 537.271Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1022
+ <path d="M169.512 905.771C169.186 907.099 168.821 908.41 168.498 909.722C162.795 884.024 157.027 856.569 150.865 827.697C157.265 855.076 163.557 881.164 169.512 905.771Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1023
+ <path d="M207.994 467.121C222.798 463.325 237.829 460.5 252.988 458.664C236.515 464.619 220.535 471.872 205.202 480.356C206.214 475.733 207.085 471.308 207.994 467.121Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1024
+ <path d="M207.994 467.121C222.798 463.325 237.829 460.5 252.988 458.664C236.515 464.619 220.535 471.872 205.202 480.356C206.214 475.733 207.085 471.308 207.994 467.121Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1025
+ <path d="M224.125 476.231C212.728 467.629 200.892 459.617 188.662 452.227C210.236 452.956 231.725 455.106 252.989 458.664C243.027 463.941 233.388 469.807 224.125 476.231V476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1026
+ <path d="M402.567 817.188C396.646 823.415 390.437 829.67 383.94 835.952C391.129 815.24 397.346 794.211 402.591 773.113C403.008 788.103 403.088 802.795 402.567 817.188Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1027
+ <path d="M347.172 491.955C358.341 499.858 369.092 508.328 379.383 517.332C367.325 509.733 354.702 503.053 341.62 497.349C343.628 495.335 345.464 493.536 347.172 491.955Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1028
+ <path d="M97.9438 476.385C75.5965 495.202 54.6067 515.566 35.133 537.321C69.0905 528.354 103.574 521.569 138.369 517.008C124.03 501.404 110.616 487.807 97.9438 476.385Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1029
+ <path d="M204.262 921.435C179.928 932.073 155.752 941.693 131.899 950.002C167.284 934.605 201.805 917.281 235.304 898.11C225.027 906.161 214.633 913.914 204.262 921.435Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1030
+ <path d="M188.662 452.227C200.729 442.86 211.782 436.015 221.685 431.737C222.858 438.306 223.608 444.946 223.931 451.618C212.448 451.427 200.685 451.589 188.662 452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1031
+ <path d="M188.662 452.227C200.729 442.86 211.782 436.015 221.685 431.737C222.858 438.306 223.608 444.946 223.931 451.618C212.448 451.427 200.685 451.589 188.662 452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1032
+ <path d="M188.662 452.227C211.03 450.303 232.003 451.715 252.989 458.664C231.725 455.106 210.236 452.956 188.662 452.227V452.227Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1033
+ <path d="M352.239 507.738C348.135 481.021 307.852 464.304 288.172 450.436C309.851 464.957 331.535 484.267 352.239 507.738Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1034
+ <path d="M352.239 507.739C350.847 502.385 349.155 497.116 347.171 491.955C358.34 499.858 369.092 508.328 379.383 517.332C370.611 513.419 361.535 510.211 352.239 507.739V507.739Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1035
+ <path d="M112.169 502.258C107.216 492.868 102.402 484.284 97.9442 476.385C76.3124 485.681 55.204 496.157 34.7158 507.768C60.4177 504.44 86.2789 502.601 112.169 502.258V502.258Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1036
+ <path d="M352.239 507.739C350.847 502.385 349.155 497.116 347.172 491.955C345.464 493.536 343.628 495.334 341.62 497.349C345.25 500.697 348.72 504.212 352.239 507.739Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1037
+ <path d="M224.125 476.231C224.283 467.06 224.176 458.891 223.894 451.668C233.707 453.746 243.411 456.028 252.989 458.664C243.027 463.941 233.388 469.807 224.125 476.231V476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1038
+ <path d="M352.239 507.738C361.535 510.21 370.612 513.418 379.383 517.331C367.325 509.732 354.702 503.052 341.62 497.348C345.25 500.696 348.72 504.211 352.239 507.738Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1039
+ <path d="M112.169 502.259C85.861 512.505 60.1326 524.194 35.1026 537.272C34.7576 526.821 34.6446 516.968 34.7158 507.768C60.4176 504.441 86.2789 502.601 112.169 502.259V502.259Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1040
+ <path d="M402.591 773.113C423.871 769.86 441.159 766.696 454.663 763.354C448.043 750.763 440.513 738.674 432.133 727.179C423.132 743.009 413.269 758.343 402.591 773.113V773.113Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1041
+ <path d="M168.48 909.693C162.777 883.995 157.009 856.54 150.847 827.668C180.279 853.232 208.674 876.791 235.314 898.103C213.44 902.521 191.061 906.525 168.48 909.693Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1042
+ <path d="M204.262 921.433C187.488 892.928 169.522 861.539 150.857 827.661C180.288 853.225 208.683 876.784 235.324 898.096C225.027 906.16 214.633 913.913 204.262 921.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1043
+ <path d="M204.262 921.433C222.539 925.575 240.221 929.084 257.307 931.961C250.371 921.318 243.02 910.053 235.324 898.096C225.027 906.16 214.633 913.913 204.262 921.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1044
+ <path d="M466.971 734.139C463.496 744.137 459.371 753.904 454.623 763.379C445.36 761.852 434.194 760.297 421.065 758.438C441.169 749.738 456.498 741.763 466.971 734.139Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1045
+ <path d="M224.125 476.231C218.736 473.042 213.347 470.03 207.974 467.133C213.563 461.332 218.842 456.148 223.893 451.668C224.176 458.891 224.283 467.06 224.125 476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1046
+ <path d="M224.125 476.231C218.736 473.042 213.347 470.03 207.974 467.133C213.563 461.332 218.842 456.148 223.893 451.668C224.176 458.891 224.283 467.06 224.125 476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1047
+ <path d="M224.125 476.231C218.736 473.042 213.347 470.03 207.974 467.133C213.563 461.332 218.842 456.148 223.893 451.668C224.176 458.891 224.283 467.06 224.125 476.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1048
+ <path d="M394.96 812.546C397.863 799.49 400.403 786.338 402.578 773.092C409.105 768.109 415.278 763.249 421.043 758.423C413.565 776.213 404.869 794.319 394.96 812.546Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1049
+ <path d="M394.96 812.546C397.863 799.49 400.403 786.338 402.578 773.092C409.105 768.109 415.278 763.249 421.043 758.423C413.565 776.213 404.869 794.319 394.96 812.546Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1050
+ <path d="M112.169 502.258C107.215 492.868 102.402 484.284 97.9438 476.385C75.5964 495.203 54.6067 515.566 35.133 537.321C60.1519 524.227 85.87 512.522 112.169 502.258V502.258Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1051
+ <path d="M19.4622 805.342C-6.7899 781.909 -30.8584 758.644 -52.4413 736.101C-51.8172 715.262 -50.5968 694.602 -48.6719 674.274C-28.6032 719.293 -5.85165 763.06 19.4622 805.342V805.342Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1052
+ <path d="M394.961 812.547C391.49 820.356 387.755 828.163 383.928 835.933C391.117 815.22 397.334 794.192 402.579 773.093C400.399 786.333 397.86 799.484 394.961 812.547Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1053
+ <path d="M352.239 507.738C359.311 519.655 365.683 531.976 371.324 544.637C362.64 528.14 352.711 512.332 341.62 497.348C345.25 500.696 348.72 504.211 352.239 507.738Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1054
+ <path d="M371.324 544.637C362.64 528.141 352.711 512.333 341.62 497.348C335.005 503.841 326.838 512.011 317.175 522.125C335.716 528.423 353.805 535.943 371.324 544.637V544.637Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1055
+ <path d="M19.4625 805.341C19.0887 820.932 19.0721 836.206 19.2312 851.137C31.6267 851.86 44.3386 852.221 57.3245 852.578C44.3551 837.126 31.7245 821.327 19.4625 805.341Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1056
+ <path d="M19.4625 805.341C19.0887 820.932 19.0721 836.206 19.2312 851.137C31.6267 851.86 44.3386 852.221 57.3245 852.578C44.3551 837.126 31.7245 821.327 19.4625 805.341Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1057
+ <path d="M19.4625 805.341C19.0887 820.932 19.0721 836.206 19.2312 851.137C20.3629 835.584 21.8488 819.618 23.5788 803.308C22.2103 804.007 20.8149 804.639 19.4625 805.341Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1058
+ <path d="M402.591 773.112C405.875 739.934 406.733 706.583 405.16 673.322C391.117 682.677 375.021 692.802 356.871 703.698C373.431 725.941 388.695 749.117 402.591 773.112V773.112Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1059
+ <path d="M417.133 581.273C402.848 567.891 387.533 555.642 371.324 544.637C362.64 528.14 352.711 512.332 341.62 497.348C370.116 522.167 395.47 550.346 417.133 581.273V581.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1060
+ <path d="M428.64 774.107C431.246 775.002 433.825 775.763 436.228 776.687C443.092 772.113 449.252 767.7 454.663 763.354C447.246 766.858 438.596 770.496 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1061
+ <path d="M428.64 774.106C415.148 795.689 400.214 816.351 383.94 835.952C391.129 815.24 397.346 794.211 402.591 773.113C412.009 773.459 420.684 773.882 428.64 774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1062
+ <path d="M383.94 835.952C391.129 815.24 397.346 794.211 402.591 773.113C415.146 774.45 426.325 775.625 436.229 776.686C420.382 797.768 402.898 817.585 383.94 835.952Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1063
+ <path d="M428.64 774.106C437.289 793.941 443.473 812.284 447.016 828.849C451.107 807.21 453.663 785.324 454.663 763.353C447.246 766.857 438.596 770.495 428.64 774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1064
+ <path d="M405.619 763.274C399.68 787.859 392.437 812.124 383.92 835.966C392.61 812.044 398.457 787.47 405.619 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1065
+ <path d="M451.491 643.544C441.776 621.871 430.285 601.044 417.133 581.272C420.956 603.076 422.626 625.218 422.12 647.384C434.068 645.419 443.785 644.125 451.491 643.544Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1066
+ <path d="M402.591 773.113C415.146 774.45 426.326 775.626 436.229 776.687C435.634 760.42 434.269 743.917 432.133 727.179C423.132 743.009 413.269 758.343 402.591 773.113V773.113Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1067
+ <path d="M422.172 647.422C417.281 655.608 411.621 664.258 405.191 673.373C415.171 690.81 424.176 708.789 432.164 727.229C430.73 700.409 427.391 673.74 422.172 647.422V647.422Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1068
+ <path d="M422.172 647.422C417.281 655.608 411.621 664.258 405.191 673.373C415.171 690.81 424.176 708.789 432.164 727.229C430.73 700.409 427.391 673.74 422.172 647.422V647.422Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1069
+ <path d="M352.239 507.737C359.311 519.655 365.683 531.975 371.324 544.636C353.808 535.959 335.724 528.454 317.189 522.17C328.533 516.566 340.244 511.744 352.239 507.737V507.737Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1070
+ <path d="M428.64 774.107C421.633 770.631 413.966 767.016 405.639 763.261C404.637 766.545 403.621 769.829 402.591 773.113C412.009 773.46 420.684 773.883 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1071
+ <path d="M417.525 685.993C419.676 672.662 421.225 659.805 422.171 647.422C417.281 655.609 411.621 664.259 405.19 673.373C409.444 677.57 413.536 681.797 417.525 685.993Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1072
+ <path d="M417.525 685.993C419.676 672.662 421.225 659.805 422.171 647.422C417.281 655.609 411.621 664.259 405.19 673.373C409.444 677.57 413.536 681.797 417.525 685.993Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1073
+ <path d="M451.491 643.545C441.776 621.872 430.285 601.045 417.133 581.273C432.458 599.984 443.029 621.33 451.491 643.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1074
+ <path d="M390.285 623.284C405.263 667.099 415.574 712.397 421.049 758.434C415.693 712.375 405.379 667.066 390.285 623.284V623.284Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1075
+ <path d="M451.491 643.544C443.785 644.126 434.068 645.419 422.141 647.371C412.983 657.652 401.895 668.842 388.993 681.062C417.779 665.492 438.55 653.29 451.491 643.544Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1076
+ <path d="M394.961 812.547C399.125 796.237 402.68 779.802 405.626 763.241C411.014 761.628 416.102 760.021 421.043 758.424C413.565 776.214 404.87 794.32 394.961 812.547Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1077
+ <path d="M176.829 848.275C205.942 879.693 232.921 907.781 257.308 931.961C239.381 896.526 207.653 875.57 176.829 848.275Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1078
+ <path d="M417.525 685.992C412.719 734.421 401.317 785.557 383.965 835.992C419.281 772.269 426.982 757.676 417.525 685.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1079
+ <path d="M417.525 685.993C413.561 681.837 409.468 677.609 405.184 673.363C400.049 675.854 394.654 678.438 388.997 681.115C399.217 682.598 408.729 684.258 417.525 685.993Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1080
+ <path d="M417.133 581.273C402.848 567.891 387.533 555.642 371.324 544.637C396.387 564.278 417.665 585.033 434.535 606.012C429.14 597.72 423.34 589.473 417.133 581.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1081
+ <path d="M188.366 485.298C200.653 481.736 212.573 478.714 224.125 476.231C188.939 480.838 151.135 489.581 112.169 502.258C137.235 495.163 162.675 489.501 188.366 485.298V485.298Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1082
+ <path d="M417.525 685.993C423.051 699.886 427.929 713.628 432.158 727.219C428.923 737.462 425.227 747.886 421.07 758.49C421.281 734.265 420.097 710.059 417.525 685.993V685.993Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1083
+ <path d="M394.96 812.547C399.125 796.237 402.68 779.802 405.626 763.241C399.687 787.826 392.444 812.09 383.928 835.933C387.768 828.183 391.482 820.388 394.96 812.547Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1084
+ <path d="M436.229 776.687C435.634 760.421 434.268 743.918 432.133 727.179C428.898 737.422 425.202 747.846 421.046 758.45C426.618 764.683 431.651 770.784 436.229 776.687Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1085
+ <path d="M428.64 774.107C431.247 775.002 433.825 775.763 436.229 776.687C431.651 770.784 426.618 764.683 421.056 758.444C423.725 763.774 426.283 768.968 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1086
+ <path d="M428.64 774.107C431.247 775.002 433.825 775.763 436.229 776.687C431.651 770.784 426.618 764.683 421.056 758.444C423.725 763.774 426.283 768.968 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1087
+ <path d="M428.64 774.106C418.076 787.481 406.839 800.318 394.973 812.566C409.449 801.46 423.227 789.477 436.228 776.686C433.815 775.767 431.247 775 428.64 774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1088
+ <path d="M451.491 643.546C443.785 644.127 434.068 645.421 422.141 647.373C438.241 660.813 451.2 674.102 460.843 686.895C458.476 672.289 455.354 657.82 451.491 643.546V643.546Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1089
+ <path d="M428.64 774.108C421.633 770.632 413.965 767.017 405.639 763.262C411.027 761.648 416.115 760.042 421.056 758.445C423.725 763.775 426.283 768.968 428.64 774.108Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1090
+ <path d="M428.64 774.108C421.633 770.632 413.965 767.017 405.639 763.262C411.027 761.648 416.115 760.042 421.056 758.445C423.725 763.775 426.283 768.968 428.64 774.108Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1091
+ <path d="M428.64 774.107C421.09 756.148 412.535 738.631 403.013 721.639C403.497 738.799 403.353 755.959 402.581 773.12C412.009 773.46 420.684 773.883 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1092
+ <path d="M390.285 623.285C400.5 643.673 409.593 664.606 417.526 685.993C413.561 681.837 409.469 677.609 405.185 673.363C400.855 656.349 395.888 639.656 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1093
+ <path d="M451.491 643.545C450.346 649.451 448.883 655.295 447.106 661.049C444.18 642.432 439.97 624.049 434.505 606.03C440.841 618.364 446.533 630.932 451.491 643.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1094
+ <path d="M403.023 721.633C404.36 705.248 405.072 689.145 405.16 673.324C412.393 701.289 417.704 729.728 421.055 758.444C415.728 746.486 409.736 734.172 403.023 721.633Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1095
+ <path d="M390.285 623.284C395.89 639.599 400.847 656.275 405.154 673.313C400.019 675.804 394.623 678.388 388.967 681.065C390.319 660.982 390.758 641.722 390.285 623.284Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1096
+ <path d="M176.829 848.276C136.293 850.918 96.1996 852.353 57.3242 852.578C87.5085 845.159 118.856 836.867 150.857 827.661C159.555 834.681 168.213 841.553 176.829 848.276Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1097
+ <path d="M428.64 774.106C418.076 787.481 406.839 800.318 394.973 812.566C416.922 812.425 434.731 811.642 448.636 810.083C442.887 797.602 436.203 785.576 428.64 774.106V774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1098
+ <path d="M447.136 661.03C439.115 655.972 430.777 651.427 422.171 647.421C428.295 632.05 432.497 618.229 434.566 606.061C440.018 624.064 444.218 642.43 447.136 661.03Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1099
+ <path d="M466.971 734.138C456.37 719.153 439.695 703.023 417.501 685.952C426.232 715.614 432.495 745.96 436.229 776.686C449.622 761.595 459.932 747.318 466.971 734.138Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1100
+ <path d="M466.971 734.139C462.631 709.196 455.991 684.723 447.136 661.03C444.185 683.474 439.162 705.618 432.133 727.179C446.74 729.522 458.269 731.797 466.971 734.139Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1101
+ <path d="M466.971 734.139C462.631 709.196 455.991 684.723 447.136 661.03C444.185 683.474 439.162 705.618 432.133 727.179C446.74 729.522 458.269 731.797 466.971 734.139Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1102
+ <path d="M405.618 763.274C415.489 722.381 421.08 683.211 422.102 647.355C412.944 657.636 401.856 668.826 388.954 681.046C396.105 708.097 401.669 735.553 405.618 763.274V763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1103
+ <path d="M466.972 734.139C463.256 759.938 457.108 785.352 448.611 810.044C446.402 784.416 440.869 756.513 432.109 727.139C446.74 729.522 458.27 731.797 466.972 734.139Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1104
+ <path d="M428.64 774.106C431.246 775.001 433.825 775.762 436.228 776.686C435.633 760.42 434.268 743.917 432.133 727.178C431.599 742.773 430.435 758.416 428.64 774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1105
+ <path d="M176.829 848.276C136.293 850.918 96.1996 852.353 57.3242 852.578C115.639 871.307 175.063 886.518 235.274 898.128C216.684 882.732 197.122 866.06 176.829 848.276Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1106
+ <path d="M352.239 507.738C338.391 509.921 324.739 513.237 311.42 517.652C313.39 519.175 315.294 520.657 317.23 522.146C328.561 516.552 340.258 511.739 352.239 507.738V507.738Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1107
+ <path d="M150.857 827.66C180.289 853.225 208.684 876.783 235.324 898.095C217.371 873.63 197.935 847.175 177.577 818.835C168.699 821.86 159.748 824.723 150.857 827.66Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1108
+ <path d="M417.525 685.993C408.754 684.298 399.241 682.637 388.997 681.115C404.345 695.561 418.761 710.959 432.157 727.219C427.935 713.624 423.058 699.882 417.525 685.993Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1109
+ <path d="M390.285 623.285C401.878 631.313 412.55 639.31 422.134 647.363C412.977 657.643 401.889 668.834 388.986 681.053C390.325 660.979 390.758 641.723 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1110
+ <path d="M428.64 774.108C421.633 770.632 413.965 767.017 405.639 763.262C415.629 750.817 424.5 738.779 432.133 727.18C431.6 742.774 430.435 758.417 428.64 774.108Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1111
+ <path d="M428.64 774.107C427.115 744.484 423.4 715.033 417.526 685.992C426.256 715.654 432.52 746.001 436.253 776.726C433.815 775.768 431.247 775.001 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1112
+ <path d="M371.324 544.636C347.759 533.496 323.28 524.351 298.144 517.297C323.663 522.751 349.756 534.067 371.324 544.636Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1113
+ <path d="M383.94 835.953C397.565 826.846 410.723 817.06 423.362 806.632C423.286 790.949 422.517 774.887 421.056 758.444C410.43 785.062 398.03 810.956 383.94 835.953Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1114
+ <path d="M383.94 835.953C397.565 826.846 410.723 817.06 423.362 806.632C423.286 790.949 422.517 774.887 421.056 758.444C410.43 785.062 398.03 810.956 383.94 835.953Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1115
+ <path d="M390.285 623.285C413.38 635.734 432.46 648.368 447.13 661.021C427.527 650.962 409.271 637.377 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1116
+ <path d="M405.16 673.324C391.117 682.678 375.021 692.803 356.871 703.699C344.021 670.61 329.266 638.3 312.679 606.928C348.065 628.551 379.195 650.934 405.16 673.324Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1117
+ <path d="M447.136 661.029C437.77 669.923 427.873 678.246 417.501 685.952C427.876 655.452 433.634 628.504 434.535 606.011C440 624.03 444.21 642.413 447.136 661.029V661.029Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1118
+ <path d="M451.491 643.544C450.346 649.45 448.883 655.294 447.106 661.048C452.292 669.785 456.853 678.43 460.788 686.873C458.438 672.274 455.335 657.813 451.491 643.544Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1119
+ <path d="M176.829 848.275C168.21 841.562 159.553 834.691 150.857 827.66C159.748 824.723 168.699 821.86 177.577 818.835C177.363 828.741 177.091 838.6 176.829 848.275Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1120
+ <path d="M405.619 763.272C411.165 737.744 415.119 711.912 417.457 685.924C408.685 684.23 399.173 682.569 388.928 681.047C396.088 708.097 401.661 735.552 405.619 763.272V763.272Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1121
+ <path d="M57.3243 852.578C87.5087 845.158 118.856 836.866 150.857 827.661C107.094 820.501 64.248 812.251 23.5786 803.309C34.5521 819.943 45.768 836.455 57.3243 852.578Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1122
+ <path d="M394.96 812.548C400.823 805.616 406.404 798.707 411.705 791.822C403.341 806.442 394.027 821.184 383.928 835.934C387.768 828.184 391.482 820.389 394.96 812.548Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1123
+ <path d="M405.619 763.273C402.992 733.621 403.932 702.772 405.14 673.335C407.303 703.253 407.463 733.299 405.619 763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1124
+ <path d="M405.618 763.273C426.36 725.558 440.345 690.938 447.116 661.042C437.749 669.936 427.853 678.259 417.481 685.964C415.133 711.939 411.172 737.758 405.618 763.273V763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1125
+ <path d="M411.717 791.841C419.806 770.7 426.623 749.107 432.133 727.178C424.672 748.101 417.712 770.03 411.717 791.841Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1126
+ <path d="M417.526 685.992C400.269 691.209 380.059 697.125 356.896 703.738C368.459 695.904 379.089 688.265 388.979 681.085C399.217 682.597 408.73 684.258 417.526 685.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1127
+ <path d="M405.619 763.273C424.236 780.546 438.624 796.16 448.616 810.096C445.188 798.71 441.044 787.556 436.209 776.699C427.306 772.382 417.07 768.013 405.619 763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1128
+ <path d="M403.023 721.633C415.359 739.19 426.453 757.585 436.228 776.687C421.064 761.184 413.332 741.508 403.023 721.633Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1129
+ <path d="M394.96 812.546C399.596 782.421 402.285 752.047 403.011 721.612C415.346 739.169 426.441 757.564 436.216 776.666C423.215 789.457 409.437 801.44 394.96 812.546V812.546Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1130
+ <path d="M442.119 694.066C434.767 691.353 426.589 688.604 417.489 685.933C420.063 709.997 421.25 734.2 421.043 758.424C429.646 737.503 436.691 715.992 442.119 694.066V694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1131
+ <path d="M411.717 791.842C407.236 754.322 399.624 717.265 388.96 681.056C401.38 706.09 412.098 731.937 421.043 758.424C418.267 769.526 415.158 780.665 411.717 791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1132
+ <path d="M394.961 812.547C399.125 796.237 402.68 779.802 405.626 763.241C412.597 778.339 418.541 792.81 423.35 806.613C414.713 808.687 405.25 810.665 394.961 812.547Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1133
+ <path d="M448.635 810.084C448.236 816.454 447.668 822.709 447.016 828.851C444.895 811.18 441.286 793.731 436.228 776.688C441.064 787.544 445.207 798.699 448.635 810.084Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1134
+ <path d="M394.96 812.547C416.879 819.302 434.069 824.736 447.004 828.83C439.594 820.938 431.694 813.518 423.349 806.612C414.713 808.686 405.25 810.664 394.96 812.547Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1135
+ <path d="M219.575 497.131C209.159 492.897 198.755 488.953 188.366 485.298C195.134 478.627 201.712 472.61 207.974 467.132C211.894 476.175 215.761 486.174 219.575 497.131Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1136
+ <path d="M442.119 694.065C451.718 706.553 460.041 719.967 466.969 734.112C459.909 747.305 449.619 761.569 436.226 776.66C440.303 749.3 442.273 721.688 442.119 694.065V694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1137
+ <path d="M442.119 694.065C444.345 683.133 446.016 672.1 447.124 661.01C439.107 655.959 430.772 651.421 422.171 647.421C429.773 662.978 436.4 678.617 442.119 694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1138
+ <path d="M436.228 776.686C432.347 786.589 428.059 796.57 423.362 806.631C428.086 780.36 431.016 753.814 432.133 727.178C434.252 743.89 435.617 760.393 436.228 776.686Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1139
+ <path d="M19.4625 805.341C37.1104 791.343 49.3339 769.676 66.1083 752.171C49.8121 770.312 34.2555 788.105 19.4625 805.341Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1140
+ <path d="M448.635 810.084C432.349 819.106 410.711 827.701 383.94 835.953C395.889 845.806 406.179 854.684 414.764 862.712C427.32 846.004 438.641 828.414 448.635 810.084V810.084Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1141
+ <path d="M403.024 721.633C398.825 708.165 394.14 694.628 388.953 681.087C404.301 695.533 418.716 710.931 432.113 727.191C423.353 725.38 413.662 723.5 403.024 721.633Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1142
+ <path d="M312.679 606.927C289.354 597.792 264.674 589.402 239.041 581.685C229.414 597.724 219.251 614.686 208.552 632.571C245.899 622.176 280.874 613.61 312.679 606.927Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1143
+ <path d="M442.119 694.065C424.657 688.773 406.911 684.43 388.96 681.055C404.309 695.501 418.724 710.899 432.121 727.158C436.073 715.793 439.406 704.762 442.119 694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1144
+ <path d="M405.618 763.274C405.149 749.473 404.277 735.597 403.003 721.646C413.642 723.514 423.342 725.387 432.113 727.192C424.5 738.779 415.629 750.817 405.618 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1145
+ <path d="M405.618 763.274C405.149 749.473 404.277 735.597 403.003 721.646C413.642 723.514 423.342 725.387 432.113 727.192C424.5 738.779 415.629 750.817 405.618 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1146
+ <path d="M428.64 774.107C423.398 779.954 417.721 785.838 411.717 791.842C420.665 786.711 428.827 781.646 436.204 776.648C433.815 775.769 431.246 775.002 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1147
+ <path d="M428.64 774.107C436.203 785.577 442.887 797.603 448.635 810.084C441.42 809.222 433.037 808.041 423.362 806.632C425.405 795.853 427.199 785.008 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1148
+ <path d="M442.119 694.066C439.726 721.032 435.216 747.788 428.628 774.087C419.223 744.524 405.869 713.197 388.93 681.074C406.891 684.443 424.647 688.78 442.119 694.066V694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1149
+ <path d="M412.441 713.469C405.277 702.816 397.454 692.018 388.973 681.074C401.392 706.109 412.11 731.956 421.055 758.443C418.796 743.634 415.967 728.576 412.441 713.469Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1150
+ <path d="M267.556 463.199C253.567 471.166 237.567 482.467 219.557 497.101C221.623 479.101 223.022 463.999 223.875 451.638C238.734 454.922 253.338 458.735 267.556 463.199Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1151
+ <path d="M448.635 810.084C443.852 835.215 436.948 859.918 427.999 883.929C424.047 876.58 419.626 869.494 414.765 862.712C427.32 846.003 438.641 828.414 448.635 810.084V810.084Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1152
+ <path d="M448.635 810.084C443.852 835.215 436.948 859.918 427.999 883.929C424.047 876.58 419.626 869.494 414.765 862.712C427.32 846.003 438.641 828.414 448.635 810.084V810.084Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1153
+ <path d="M428.64 774.107C423.398 779.954 417.721 785.838 411.717 791.842C426.937 805.649 438.704 817.986 447.016 828.85C443.473 812.285 437.288 793.942 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1154
+ <path d="M405.618 763.274C407.891 772.968 409.974 782.533 411.697 791.855C420.645 786.723 428.807 781.658 436.184 776.66C427.306 772.382 417.07 768.014 405.618 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1155
+ <path d="M405.618 763.274C424.236 780.546 438.624 796.161 448.615 810.097C441.4 809.234 433.017 808.054 423.342 806.645C418.553 792.83 412.609 778.359 405.618 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1156
+ <path d="M442.119 694.066C451.718 706.554 460.041 719.969 466.969 734.114C465.799 718.273 463.741 702.517 460.803 686.92C455.703 689.11 449.455 691.436 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1157
+ <path d="M150.857 827.66C159.748 824.724 168.699 821.86 177.577 818.835C171.423 785.196 165.107 750.805 158.565 716.295C156.042 753.864 153.422 791.232 150.857 827.66Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1158
+ <path d="M417.525 685.992C413.357 697.501 408.531 709.394 403.048 721.673C389.097 715.808 373.712 709.829 356.896 703.738C380.052 697.129 400.262 691.214 417.525 685.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1159
+ <path d="M298.156 517.316C302.661 517.362 307.071 517.522 311.39 517.67C313.36 519.192 315.264 520.674 317.2 522.163C311.022 520.383 304.626 518.875 298.156 517.316Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1160
+ <path d="M298.156 517.316C302.661 517.362 307.071 517.522 311.39 517.67C313.36 519.192 315.264 520.674 317.2 522.163C311.022 520.383 304.626 518.875 298.156 517.316Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1161
+ <path d="M390.285 623.285C400.5 643.672 409.593 664.606 417.525 685.992C413.357 697.501 408.531 709.394 403.048 721.673C401.246 688.587 396.98 655.7 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1162
+ <path d="M451.491 643.545C458.43 673.691 466.586 706.446 471.508 736.402C468.411 704.762 461.695 673.608 451.491 643.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1163
+ <path d="M403.023 721.633C389.072 715.768 373.688 709.79 356.871 703.699C368.434 695.865 379.064 688.226 388.954 681.046C394.139 694.629 398.794 708.184 403.023 721.633Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1164
+ <path d="M411.717 791.842C426.937 805.649 438.704 817.985 447.016 828.85C444.895 811.18 441.286 793.731 436.228 776.687C428.835 781.659 420.665 786.71 411.717 791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1165
+ <path d="M394.961 812.546C400.823 805.614 406.404 798.706 411.705 791.821C415.9 796.863 419.717 801.852 423.325 806.572C414.705 808.672 405.25 810.664 394.961 812.546Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1166
+ <path d="M233.819 699.536C236.682 657.735 238.516 618.163 239.034 581.674C229.407 597.713 219.244 614.675 208.545 632.56C217.19 654.333 225.58 676.743 233.819 699.536Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1167
+ <path d="M390.285 623.284C364.767 616.348 338.855 610.886 312.679 606.926C289.354 597.791 264.674 589.4 239.041 581.684C297.489 592.386 348.807 606.539 390.285 623.284Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1168
+ <path d="M411.717 791.842C426.651 798.689 438.932 804.699 448.648 810.104C448.248 816.474 447.68 822.728 447.028 828.87C438.717 817.977 426.946 805.634 411.717 791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1169
+ <path d="M405.619 763.273C408.544 746.515 410.812 729.918 412.421 713.482C419.487 718.138 426.051 722.708 432.113 727.191C424.501 738.778 415.63 750.816 405.619 763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1170
+ <path d="M411.717 791.842C403.353 806.462 394.039 821.204 383.94 835.953C395.889 845.806 406.179 854.684 414.764 862.712C415.48 839.032 414.462 815.345 411.717 791.842V791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1171
+ <path d="M390.285 623.285C396.968 655.685 401.224 688.555 403.018 721.624C389.066 715.759 373.682 709.78 356.865 703.689C369.705 677.608 380.867 650.752 390.285 623.285V623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1172
+ <path d="M428.64 774.107C423.692 803.257 420.676 834.447 414.764 862.712C421.782 833.578 426.423 803.946 428.64 774.107V774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1173
+ <path d="M403.024 721.633C411.954 749.395 418.753 777.81 423.362 806.632C428.086 780.36 431.017 753.815 432.133 727.179C423.353 725.38 413.662 723.5 403.024 721.633Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1174
+ <path d="M442.119 694.066C444.345 683.133 446.016 672.101 447.124 661.01C452.31 669.747 456.87 678.392 460.806 686.835C455.703 689.109 449.455 691.436 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1175
+ <path d="M428.64 774.107C423.398 779.954 417.721 785.838 411.717 791.842C415.913 796.884 419.729 801.873 423.337 806.593C425.405 795.853 427.199 785.008 428.64 774.107Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1176
+ <path d="M57.3243 852.578C33.0111 817.126 6.81108 780.62 -17.3193 745.686C5.3139 781.535 30.437 817.556 57.3243 852.578Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1177
+ <path d="M427.999 883.929C429.754 861.496 428.204 835.5 423.362 806.633C421.515 825.467 418.651 844.197 414.783 862.742C419.637 869.515 424.051 876.591 427.999 883.929V883.929Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1178
+ <path d="M411.717 791.842C410.079 768.29 407.177 744.854 403.024 721.633C413.662 723.501 423.363 725.374 432.133 727.179C426.624 749.108 419.806 770.7 411.717 791.842V791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1179
+ <path d="M442.119 694.065C429.572 703.921 416.518 713.116 403.011 721.613C413.65 723.48 423.35 725.354 432.121 727.159C436.073 715.793 439.406 704.762 442.119 694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1180
+ <path d="M442.119 694.066C439.726 721.031 435.215 747.787 428.628 774.087C421.078 756.128 412.522 738.611 403.001 721.619C416.512 713.121 429.569 703.924 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1181
+ <path d="M417.525 685.991C416.089 695.008 414.393 704.187 412.436 713.527C396.071 710.271 377.555 706.922 356.866 703.756C380.042 697.134 400.262 691.213 417.525 685.991Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1182
+ <path d="M411.717 791.842C420.665 786.71 428.827 781.646 436.204 776.648C432.323 786.55 428.034 796.532 423.337 806.593C419.729 801.873 415.913 796.884 411.717 791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1183
+ <path d="M447.016 828.85C439.606 820.959 431.706 813.539 423.362 806.633C421.515 825.467 418.651 844.197 414.783 862.742C426.332 852.231 437.105 840.904 447.016 828.85V828.85Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1184
+ <path d="M405.618 763.274C408.892 779.54 411.077 795.122 423.342 806.646C418.553 792.83 412.609 778.359 405.618 763.274Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1185
+ <path d="M361.974 743.795C377.992 750.533 392.53 757.077 405.657 763.29C390.484 742.577 374.205 722.694 356.89 703.727C358.899 717.016 360.526 730.405 361.974 743.795Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1186
+ <path d="M405.619 763.273C408.544 746.515 410.811 729.918 412.421 713.482C396.056 710.226 377.541 706.877 356.851 703.711C374.167 722.678 390.446 742.561 405.619 763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1187
+ <path d="M442.119 694.066C451.718 706.554 460.041 719.969 466.969 734.114C468.605 734.897 470.143 735.589 471.506 736.377C465.254 723.264 455.36 709.061 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1188
+ <path d="M411.717 791.842C426.937 805.649 438.704 817.985 447.016 828.85C437.098 840.894 426.319 852.211 414.764 862.712C415.48 839.031 414.462 815.345 411.717 791.842V791.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1189
+ <path d="M176.829 848.277C177.091 838.602 177.306 828.764 177.577 818.837C195.454 807.442 213.271 795.838 230.769 784.101C213.016 805.947 195.014 827.439 176.829 848.277Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1190
+ <path d="M428.64 774.106C424.381 753.599 418.973 733.355 412.441 713.468C418.543 744.166 422.195 775.318 423.362 806.631C425.404 795.852 427.199 785.006 428.64 774.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1191
+ <path d="M361.974 743.797C377.992 750.535 392.53 757.079 405.657 763.291C378.157 779.861 344.972 796.829 306.894 814.088C326.991 790.389 345.46 766.837 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1192
+ <path d="M219.575 497.132C226.538 521.553 233.018 549.843 239.035 581.674C267.014 555.528 291.133 534.194 311.39 517.671C281.375 508.504 250.681 501.638 219.575 497.132V497.132Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1193
+ <path d="M298.156 517.317C263.461 505.093 223.175 500.319 188.341 485.258C225.834 492.762 262.576 503.488 298.156 517.317Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1194
+ <path d="M442.119 694.066C439.726 721.031 435.215 747.787 428.628 774.087C424.369 753.58 418.961 733.336 412.429 713.45C423.831 706.608 433.696 700.102 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1195
+ <path d="M361.974 743.796C376.921 736.123 390.611 728.745 403.042 721.663C398.843 708.195 394.158 694.658 388.971 681.117C381.394 701.137 372.36 722.116 361.974 743.796Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1196
+ <path d="M267.556 463.2C278.15 478.039 288.349 496.197 298.156 517.317C272.427 508.952 246.182 502.211 219.575 497.132C237.579 482.501 253.572 471.191 267.556 463.2Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1197
+ <path d="M442.119 694.065C434.767 691.353 426.589 688.603 417.489 685.932C416.052 694.949 414.356 704.128 412.399 713.468C423.831 706.607 433.696 700.102 442.119 694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1198
+ <path d="M267.556 463.2C278.15 478.039 288.35 496.197 298.156 517.317C302.662 517.363 307.071 517.523 311.39 517.671C298.434 498.247 283.765 480.019 267.556 463.2V463.2Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1199
+ <path d="M405.619 763.273C408.544 746.515 410.811 729.918 412.421 713.482C409.38 716.152 406.27 718.891 403.003 721.645C404.299 735.556 405.17 749.432 405.619 763.273Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1200
+ <path d="M267.556 463.2C253.567 471.166 237.567 482.467 219.557 497.101C250.646 501.62 281.323 508.497 311.322 517.671C298.387 498.25 283.742 480.021 267.556 463.2V463.2Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1201
+ <path d="M23.5788 803.309C9.21446 784.001 -4.50046 764.758 -17.3291 745.691C8.84725 747.828 36.758 749.945 66.1083 752.171C51.3214 769.596 37.0887 786.663 23.5788 803.309Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1202
+ <path d="M23.5788 803.309C9.21446 784.001 -4.50046 764.758 -17.3291 745.691C8.84725 747.828 36.758 749.945 66.1083 752.171C51.3214 769.596 37.0887 786.663 23.5788 803.309Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1203
+ <path d="M356.871 703.699C344.021 670.61 329.266 638.3 312.679 606.928C333.316 617.649 352.667 628.619 370.446 639.85C367.085 660.164 362.479 681.511 356.871 703.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1204
+ <path d="M356.871 703.699C344.021 670.61 329.266 638.3 312.679 606.928C333.316 617.649 352.667 628.619 370.446 639.85C367.085 660.164 362.479 681.511 356.871 703.699Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1205
+ <path d="M57.3244 852.577C96.0958 842.781 136.521 831.45 177.577 818.836C140.182 797.279 102.707 774.811 66.0836 752.131C62.3253 786.637 59.4708 820.321 57.3244 852.577Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1206
+ <path d="M390.285 623.285C364.767 616.349 338.855 610.888 312.679 606.928C333.316 617.649 352.667 628.619 370.446 639.85C377.536 634.01 384.204 628.54 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1207
+ <path d="M361.974 743.797C381.122 760.74 397.745 776.876 411.735 791.872C397.664 764.326 379.265 734.674 356.895 703.739C358.898 717.018 360.526 730.407 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1208
+ <path d="M306.856 814.07C220.014 783.967 224.57 778.065 158.555 716.303C211.766 750.528 262.01 783.589 306.856 814.07Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1209
+ <path d="M390.285 623.285C396.967 655.685 401.223 688.554 403.017 721.623C393.818 693.719 382.937 666.405 370.434 639.83C377.536 634.009 384.204 628.54 390.285 623.285Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1210
+ <path d="M177.577 818.835C195.454 807.44 213.271 795.836 230.77 784.099C207.266 761.857 183.15 739.074 158.59 716.334C165.107 750.805 171.411 785.176 177.577 818.835Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1211
+ <path d="M230.77 784.1C232.242 755.94 233.27 727.644 233.819 699.536C209.219 704.876 184.062 710.48 158.565 716.295C183.15 739.074 207.296 761.838 230.77 784.1Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1212
+ <path d="M65.4829 751.186C121.014 733.309 177.782 715.503 233.194 698.551C176.022 708.043 118.684 728.839 65.4829 751.186Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1213
+ <path d="M411.717 791.841C413.518 765.741 413.759 739.57 412.441 713.469C409.399 716.138 406.29 718.878 403.023 721.632C407.177 744.853 410.079 768.289 411.717 791.841V791.841Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1214
+ <path d="M417.526 685.992C416.089 695.009 414.393 704.187 412.436 713.527C399.997 688.123 385.97 663.532 370.435 639.897C387.006 654.351 402.729 669.741 417.526 685.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1215
+ <path d="M442.119 694.065C431.367 702.357 414.503 710.694 403.011 721.613C416.518 713.116 429.572 703.921 442.119 694.065V694.065Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1216
+ <path d="M412.442 713.47C391.003 717.741 365.828 722.423 336.991 727.702C356.438 711.243 373.812 695.686 388.973 681.076C397.459 691.998 405.282 702.796 412.442 713.47Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1217
+ <path d="M306.856 814.07C305.443 788.497 303.284 762.302 300.21 735.838C279.1 723.818 256.857 711.76 233.809 699.543C260.655 738.832 285.28 777.399 306.856 814.07Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1218
+ <path d="M303.835 851.439C305.047 839.23 306.057 826.771 306.866 814.063C282.995 804.786 257.588 794.664 230.77 784.1C257.072 808.106 281.61 830.585 303.835 851.439Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1219
+ <path d="M361.974 743.797C380.913 733.13 397.785 723.086 412.47 713.493C398.102 726.993 380.803 733.266 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1220
+ <path d="M361.974 743.796C345.469 766.871 327.01 790.418 306.885 814.092C305.472 788.519 303.313 762.324 300.239 735.86C322.293 738.537 342.871 741.182 361.974 743.796Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1221
+ <path d="M259.624 776.861C276.18 789.717 291.925 802.114 306.866 814.064C266.652 816.712 223.169 818.245 177.559 818.807C205.526 805.09 233.03 791.139 259.624 776.861Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1222
+ <path d="M361.974 743.797C381.122 760.74 397.745 776.875 411.735 791.872C413.536 765.772 413.778 739.601 412.46 713.5C397.766 723.056 380.894 733.1 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1223
+ <path d="M259.624 776.86C276.18 789.716 291.925 802.113 306.866 814.063C285.28 777.398 260.655 738.831 233.819 699.536C242.925 725.401 251.617 751.247 259.624 776.86Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1224
+ <path d="M337.003 727.721C343.962 719.615 350.541 711.566 356.884 703.718C362.512 681.517 367.097 660.183 370.452 639.859C360.874 669.704 349.708 699.033 337.003 727.721V727.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1225
+ <path d="M412.442 713.469C391.003 717.74 365.828 722.422 336.991 727.701C361.585 725.411 383.615 723.478 403.024 721.633C406.29 718.878 409.4 716.139 412.442 713.469Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1226
+ <path d="M361.974 743.796C342.893 741.233 322.311 738.59 300.229 735.867C278.221 751.774 254.967 767.905 230.778 784.137C279.296 770.392 323.451 756.898 361.974 743.796Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1227
+ <path d="M259.624 776.862C233.05 791.127 205.527 805.09 177.567 818.843C204.282 802.637 227.883 780.923 259.624 776.862Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1228
+ <path d="M35.4781 792.466C45.316 779.224 55.526 765.793 66.108 752.171C96.3313 740.281 127.3 728.229 158.565 716.296C116.117 742.237 74.5706 767.798 35.4781 792.466Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1229
+ <path d="M259.624 776.862C275.815 802.956 290.552 827.934 303.835 851.44C305.047 839.232 306.057 826.773 306.866 814.064C291.94 802.16 276.18 789.717 259.624 776.862Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1230
+ <path d="M303.835 851.438C304.428 814.422 303.261 775.574 300.22 735.83C278.213 751.737 254.959 767.868 230.769 784.099C257.072 808.106 281.61 830.585 303.835 851.438Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1231
+ <path d="M361.974 743.797C342.893 741.234 322.311 738.59 300.229 735.867C312.953 733.069 325.21 730.359 337 727.738C345.629 733.158 353.976 738.479 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1232
+ <path d="M361.974 743.797C342.893 741.234 322.311 738.59 300.229 735.867C312.953 733.069 325.21 730.359 337 727.738C345.629 733.158 353.976 738.479 361.974 743.797Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1233
+ <path d="M307.557 623.42C348.991 653.451 384.462 683.902 412.429 713.45C399.991 688.046 385.963 663.454 370.428 639.82C351.221 634.017 330.219 628.492 307.557 623.42Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1234
+ <path d="M259.624 776.86C275.816 802.954 290.553 827.932 303.835 851.438C317.268 810.848 328.342 769.54 337.003 727.72C313.244 743.685 287.289 760.064 259.624 776.86Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1235
+ <path d="M259.624 776.86C273.676 763.076 287.227 749.355 300.22 735.83C312.944 733.032 325.201 730.322 336.991 727.7C313.244 743.685 287.289 760.065 259.624 776.86Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1236
+ <path d="M307.557 623.421C306.903 659.088 304.493 696.862 300.22 735.832C312.944 733.033 325.201 730.324 336.991 727.702C328.964 692.452 319.14 657.647 307.557 623.421V623.421Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1237
+ <path d="M361.974 743.795C366.82 733.468 371.354 723.248 375.575 713.134C375.023 688.055 373.265 663.534 370.459 639.868C369.857 674.636 367.023 709.349 361.974 743.795V743.795Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1238
+ <path d="M361.974 743.795C366.82 733.468 371.354 723.248 375.575 713.134C375.023 688.055 373.265 663.534 370.459 639.868C369.857 674.636 367.023 709.349 361.974 743.795V743.795Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1239
+ <path d="M375.556 713.104C388.922 713.156 401.217 713.278 412.441 713.469C400.003 688.065 385.975 663.473 370.44 639.839C373.247 663.504 375.005 688.026 375.556 713.104Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1240
+ <path d="M361.974 743.796C366.82 733.468 371.353 723.248 375.574 713.134C363.547 717.852 350.69 722.728 337.009 727.73C345.629 733.157 353.976 738.478 361.974 743.796Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1241
+ <path d="M35.4781 792.467C30.8077 761.777 27.1222 730.888 24.1938 700.326C37.5801 717.275 51.5748 734.602 66.0779 752.19C55.5657 765.805 45.3658 779.23 35.4781 792.467Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1242
+ <path d="M307.556 623.421C298.929 611.081 290.007 599.048 280.965 587.268C311.864 602.926 341.739 620.488 370.42 639.853C351.221 634.018 330.218 628.493 307.556 623.421Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1243
+ <path d="M307.556 623.421C298.929 611.081 290.007 599.048 280.965 587.268C311.864 602.926 341.739 620.488 370.42 639.853C351.221 634.018 330.218 628.493 307.556 623.421Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1244
+ <path d="M259.624 776.861C303.46 754.588 342.415 733.092 375.581 713.144C332.915 725.756 300.219 753.14 259.624 776.861Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1245
+ <path d="M62.374 898.419C70.3886 870.483 79.2917 840.471 89.1846 808.816C70.8929 803.475 52.9908 798.025 35.4784 792.466C43.4488 829.591 52.4844 865.148 62.374 898.419Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1246
+ <path d="M89.1843 808.816C70.8926 803.475 52.9905 798.025 35.4781 792.467C30.8076 761.777 27.1222 730.888 24.1937 700.326C44.2386 736.025 66.2051 772.453 89.1843 808.816Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1247
+ <path d="M35.4784 792.467C30.8079 761.777 27.1225 730.888 24.194 700.326C-13.9148 706.321 -48.1941 712.479 -78.1899 718.684C-46.0768 741.98 -7.82663 766.836 35.4784 792.467Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1248
+ <path d="M361.518 900.241C360.879 899.993 359.708 901.68 360.606 901.988C361.249 902.22 362.409 900.539 361.518 900.241Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1249
+ <path d="M326.648 899.573C325.848 899.178 324.537 901.13 325.68 901.409C326.466 901.827 327.771 899.865 326.648 899.573Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1250
+ <path d="M291.896 805.439C290.581 804.883 289.665 807.181 291.012 807.676C292.359 808.172 293.243 805.935 291.896 805.439Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1251
+ <path d="M392.781 725.228C391.706 724.702 391.485 726.87 392.293 727.234C393.362 727.75 393.561 725.568 392.781 725.228Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1252
+ <path d="M308.838 865.286C307.768 864.879 306.613 866.927 307.891 867.356C308.927 867.797 310.114 865.689 308.838 865.286Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1253
+ <path d="M431.995 666.225C430.66 665.503 431.96 669.294 432.434 667.49C432.437 667.03 432.282 666.584 431.995 666.225V666.225Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1254
+ <path d="M385.399 537.097C384.373 536.361 385.016 537.732 385.549 538.033C386.58 538.711 385.902 537.416 385.399 537.097Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1255
+ <path d="M298.39 892.674C297.395 892.344 296.086 894.254 297.384 894.671C298.411 895.008 299.708 893.078 298.39 892.674Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1256
+ <path d="M264.742 457.548C263.609 457.152 263.446 457.693 264.511 458.158C265.575 458.623 265.885 458.005 264.742 457.548Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1257
+ <path d="M434.609 618.169C433.786 617.581 434.414 619.264 434.703 619.483C435.524 620.113 434.926 618.411 434.609 618.169Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1258
+ <path d="M367.278 498.625C365.945 497.64 367.93 499.675 367.979 499.329C367.78 499.063 367.544 498.826 367.278 498.625V498.625Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1259
+ <path d="M337.662 512.679C336.476 512.042 336.772 513.3 337.612 513.671C338.842 514.335 338.518 513.054 337.662 512.679Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1260
+ <path d="M438.257 584.224C437.731 583.576 438.453 584.94 438.602 585.136C439.122 585.774 438.426 584.408 438.257 584.224Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1261
+ <path d="M302.651 470.619C301.521 470.071 301.666 470.819 302.579 471.24C303.739 471.77 303.582 471.002 302.651 470.619Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1262
+ <path d="M330.004 574.092C328.631 573.421 328.642 575.226 329.618 575.704C331.019 576.331 331.048 574.569 330.004 574.092Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1263
+ <path d="M448.104 617.001C447.55 616.398 448.121 618.034 448.331 618.15C448.886 618.753 448.313 617.159 448.104 617.001Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1264
+ <path d="M370.573 544.142C369.378 543.511 369.932 544.897 370.585 545.301C371.815 545.966 371.224 544.521 370.573 544.142Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1265
+ <path d="M354.517 579.691C353.2 578.998 353.429 580.819 354.291 581.204C355.63 581.91 355.424 580.103 354.517 579.691Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1266
+ <path d="M255.717 534.001C254.289 533.418 253.816 535.002 255.181 535.527C256.547 536.053 257.045 534.577 255.717 534.001Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1267
+ <path d="M439.824 631.98C439.04 631.409 439.603 633.187 439.869 633.325C440.703 633.932 440.12 632.167 439.824 631.98Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1268
+ <path d="M194.915 752.295C194.59 752.174 194.228 752.186 193.909 752.33C193.59 752.473 193.34 752.737 193.215 753.062C193.09 753.388 193.099 753.748 193.241 754.064C193.382 754.38 193.645 754.627 193.97 754.748C194.296 754.87 194.658 754.858 194.977 754.714C195.296 754.571 195.545 754.307 195.671 753.982C195.796 753.656 195.787 753.296 195.645 752.98C195.503 752.664 195.241 752.417 194.915 752.295V752.295Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1269
+ <path d="M224.015 827.602C222.546 827.045 221.419 829.405 223.044 829.948C224.434 830.513 225.584 828.166 224.015 827.602Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1270
+ <path d="M92.1486 492.129C91.2493 491.864 89.7635 493.087 91.2244 493.499C92.1322 493.8 93.6373 492.496 92.1486 492.129Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1271
+ <path d="M380.49 871.735C379.808 871.418 378.741 873.384 379.594 873.664C380.447 873.945 381.349 872.026 380.49 871.735Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1272
+ <path d="M359.342 490.125C357.967 489.138 359.957 491.116 360.045 490.787C359.834 490.543 359.599 490.321 359.342 490.125V490.125Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1273
+ <path d="M11.0259 523.086C10.3089 522.913 8.72829 524.319 9.96303 524.679C10.6801 524.852 12.2768 523.449 11.0259 523.086Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1274
+ <path d="M166.839 448.529C165.942 448.29 164.778 448.916 166.19 449.316C167.079 449.519 168.239 448.909 166.839 448.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1275
+ <path d="M118.969 536.335C117.758 535.947 116.47 537.625 118.027 538.1C119.227 538.494 120.523 536.853 118.969 536.335Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1276
+ <path d="M287.431 868.289C286.268 867.844 285.011 869.996 286.418 870.454C287.6 870.929 288.836 868.789 287.431 868.289Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1277
+ <path d="M327.891 891.637C326.997 891.313 325.705 893.185 326.884 893.634C327.786 893.925 329.082 892.037 327.891 891.637Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1278
+ <path d="M33.8651 479.951C33.3058 479.832 31.6731 480.886 32.8425 481.162C33.4141 481.302 35.0684 480.193 33.8651 479.951Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1279
+ <path d="M315.085 737.985C313.684 737.358 313.013 739.806 314.298 740.313C315.582 740.82 316.429 738.455 315.085 737.985Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1280
+ <path d="M217.07 530.886C215.674 530.312 214.888 531.993 216.42 532.497C217.953 533.001 218.518 531.456 217.07 530.886Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1281
+ <path d="M356.742 843.963C355.764 843.527 354.773 845.748 355.832 846.093C356.891 846.437 357.844 844.309 356.742 843.963Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1282
+ <path d="M233.988 477.317C233.434 477.139 232.881 477.208 232.723 477.512C232.498 478.914 236.478 478.517 233.988 477.317Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1283
+ <path d="M407.41 531.852C407.25 531.813 407.08 531.834 406.933 531.911C406.786 531.987 406.672 532.114 406.611 532.268C406.55 532.421 406.548 532.591 406.603 532.745C406.659 532.9 406.769 533.028 406.913 533.107C407.074 533.146 407.243 533.125 407.39 533.048C407.537 532.972 407.652 532.845 407.712 532.691C407.773 532.538 407.776 532.368 407.72 532.214C407.665 532.059 407.554 531.931 407.41 531.852V531.852Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1284
+ <path d="M195.634 854.548C194.183 853.952 192.952 856.212 194.629 856.86C196.078 857.498 197.297 855.039 195.634 854.548Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1285
+ <path d="M419.056 854.038C418.514 853.811 417.701 855.674 418.3 855.879C418.898 856.085 419.617 854.294 419.056 854.038Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1286
+ <path d="M261.109 441.039C260.682 440.864 260.273 440.83 260.243 440.917C260.274 441.392 263.22 441.939 261.109 441.039Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1287
+ <path d="M414.251 544.89C413.537 544.139 414.407 545.342 414.663 545.554C415.3 546.312 414.423 545.167 414.251 544.89Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1288
+ <path d="M375.004 863.364C374.207 863.062 373.164 865.068 374.114 865.37C375.065 865.673 375.911 863.665 375.004 863.364Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1289
+ <path d="M265.91 536.31C264.449 535.721 264.085 537.346 265.408 537.87C266.732 538.395 267.251 536.864 265.91 536.31Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1290
+ <path d="M257.597 867.586C256.291 867.023 255.032 869.259 256.591 869.829C257.875 870.268 259.133 868.073 257.597 867.586Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1291
+ <path d="M399.827 649.853C398.622 649.228 398.9 651.307 399.576 651.683C400.739 652.306 400.59 650.189 399.827 649.853Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1292
+ <path d="M274.689 829.239C273.334 828.707 272.223 831.071 273.709 831.59C275.195 832.109 276.202 829.755 274.689 829.239Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1293
+ <path d="M286.179 871.812C285 871.363 283.73 873.538 285.159 874.01C286.301 874.399 287.564 872.325 286.179 871.812Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1294
+ <path d="M369.721 839.683C368.794 839.283 367.84 841.454 368.837 841.81C369.834 842.165 370.695 839.957 369.721 839.683Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1295
+ <path d="M335.547 469.422C334.126 468.519 336.208 469.973 336.252 469.932C336.035 469.738 335.799 469.568 335.547 469.422V469.422Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1296
+ <path d="M101.846 473.114C101.032 472.919 99.4955 473.927 100.932 474.299C101.794 474.505 103.311 473.509 101.846 473.114Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1297
+ <path d="M230.564 852.789C229.192 852.185 227.921 854.649 229.562 855.126C230.925 855.694 232.171 853.233 230.564 852.789Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1298
+ <path d="M99.7874 896.754C99.6445 896.639 99.4761 896.56 99.296 896.522C99.1158 896.485 98.9289 896.49 98.7504 896.538C98.5719 896.585 98.4069 896.674 98.2686 896.796C98.1303 896.919 98.0226 897.072 97.9543 897.243C97.886 897.414 97.859 897.599 97.8754 897.782C97.8919 897.964 97.9514 898.14 98.0491 898.295C98.1468 898.45 98.2798 898.579 98.4376 898.673C98.5954 898.767 98.7735 898.822 98.9573 898.834C99.1003 898.949 99.2686 899.028 99.4488 899.066C99.6289 899.103 99.8157 899.098 99.9942 899.05C100.173 899.003 100.338 898.914 100.476 898.792C100.614 898.669 100.722 898.516 100.79 898.345C100.859 898.174 100.886 897.989 100.869 897.806C100.853 897.624 100.793 897.448 100.696 897.293C100.598 897.138 100.465 897.009 100.307 896.915C100.149 896.821 99.9713 896.766 99.7874 896.754Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1299
+ <path d="M310.926 859.338C309.792 858.917 308.574 861.086 309.932 861.533C311.013 862.002 312.26 859.746 310.926 859.338Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1300
+ <path d="M137.293 717.664C137.126 717.6 136.948 717.569 136.768 717.574C136.589 717.579 136.412 717.619 136.247 717.691C136.083 717.764 135.934 717.869 135.809 717.998C135.684 718.128 135.586 718.281 135.521 718.448C135.455 718.615 135.423 718.793 135.426 718.971C135.429 719.15 135.468 719.326 135.54 719.489C135.612 719.652 135.715 719.8 135.844 719.923C135.973 720.046 136.126 720.142 136.293 720.206C136.63 720.335 137.007 720.325 137.339 720.178C137.672 720.031 137.933 719.759 138.066 719.422C138.198 719.085 138.191 718.71 138.047 718.38C137.902 718.05 137.631 717.793 137.293 717.664V717.664Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1301
+ <path d="M314.327 497.276C313.102 496.664 313.259 497.788 314.203 498.259C315.513 498.874 315.334 497.736 314.327 497.276Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1302
+ <path d="M149.496 881.131C148.021 880.495 146.861 882.848 148.551 883.337C150.083 884.019 151.243 881.667 149.496 881.131Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1303
+ <path d="M164.154 808.06C162.555 807.404 161.418 809.949 163.159 810.544C164.9 811.138 165.856 808.637 164.154 808.06Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1304
+ <path d="M287.758 602.748C286.21 602.062 285.868 604.169 287.186 604.751C288.732 605.411 289.126 603.3 287.758 602.748Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1305
+ <path d="M333.869 475.653C332.183 474.723 334.393 476.7 334.635 476.33C334.434 476.05 334.172 475.819 333.869 475.653V475.653Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1306
+ <path d="M143.633 471.617C142.612 471.29 141.306 472.334 142.821 472.766C143.753 473.039 145.125 471.968 143.633 471.617Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1307
+ <path d="M289.428 454.022C287.378 453.221 289.754 454.972 290.195 454.589C290.009 454.321 289.74 454.122 289.428 454.022Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1308
+ <path d="M293.492 484.003C292.177 483.446 292.229 484.402 293.292 484.909C294.624 485.469 294.565 484.503 293.492 484.003Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1309
+ <path d="M302.192 893.665C301.184 893.247 299.796 895.275 301.153 895.764C302.253 896.152 303.578 894.067 302.192 893.665Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1310
+ <path d="M383.687 869.875C382.982 869.544 381.938 871.523 382.761 871.822C383.584 872.121 384.6 870.118 383.687 869.875Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1311
+ <path d="M422.479 597.817C421.551 597.103 422.144 598.931 422.573 599.131C423.473 599.822 422.88 597.994 422.479 597.817Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1312
+ <path d="M221.578 856.513C220.166 855.934 218.837 858.214 220.54 858.859C221.988 859.361 223.276 857.038 221.578 856.513Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1313
+ <path d="M197.336 797.228C197 797.098 196.625 797.107 196.292 797.252C195.96 797.398 195.699 797.668 195.565 798.004C195.432 798.34 195.437 798.714 195.581 799.043C195.724 799.372 195.993 799.63 196.329 799.76C197.942 800.393 199.043 797.857 197.336 797.228Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1314
+ <path d="M194.138 442.556C193.202 442.231 192.207 442.861 193.611 443.226C194.579 443.49 195.532 442.926 194.138 442.556Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1315
+ <path d="M352.058 493.576C350.942 492.895 351.587 493.868 352.21 494.223C353.334 494.871 352.673 493.963 352.058 493.576Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1316
+ <path d="M416.311 545.505C415.766 544.827 416.556 545.901 416.704 546.139C417.279 546.798 416.47 545.762 416.311 545.505Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1317
+ <path d="M365.079 513.085C363.933 512.423 364.57 513.538 365.206 513.939C366.352 514.6 365.711 513.433 365.079 513.085Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1318
+ <path d="M80.4911 485.225C80.2241 485.19 79.9518 485.221 79.6986 485.316C79.4454 485.411 79.2192 485.566 79.0403 485.769C78.3081 487.582 82.7183 485.889 80.4911 485.225Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1319
+ <path d="M401.441 526.992C400.634 526.025 402.245 527.976 402.069 527.714C401.872 527.463 401.663 527.222 401.441 526.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1320
+ <path d="M91.2767 895.5C91.1313 895.394 90.9627 895.322 90.7844 895.292C90.606 895.261 90.4226 895.272 90.2486 895.324C90.0745 895.376 89.9145 895.467 89.781 895.59C89.6475 895.713 89.5442 895.865 89.4792 896.034C89.4142 896.203 89.3892 896.385 89.4062 896.564C89.4232 896.744 89.4818 896.916 89.5772 897.069C89.6727 897.222 89.8025 897.35 89.9566 897.444C90.1106 897.537 90.2846 897.594 90.465 897.61C90.6105 897.716 90.779 897.787 90.9573 897.818C91.1357 897.848 91.3191 897.837 91.4931 897.786C91.6672 897.734 91.8273 897.643 91.9607 897.52C92.0942 897.396 92.1975 897.244 92.2625 897.075C92.3275 896.906 92.3525 896.725 92.3355 896.545C92.3185 896.366 92.26 896.193 92.1645 896.04C92.069 895.888 91.9392 895.76 91.7852 895.666C91.6311 895.572 91.4571 895.515 91.2767 895.5Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1321
+ <path d="M149.87 572.241C148.408 571.694 147.231 573.728 148.924 574.311C150.616 574.894 151.517 572.839 149.87 572.241Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1322
+ <path d="M245.989 482.072C244.693 481.614 244.164 482.683 245.541 483.16C246.918 483.637 247.342 482.578 245.989 482.072Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1323
+ <path d="M96.5189 718.559C96.1839 718.466 95.825 718.501 95.5126 718.657C95.2001 718.814 94.9567 719.08 94.8299 719.405C94.7032 719.729 94.7025 720.088 94.8277 720.411C94.953 720.734 95.1952 720.997 95.507 721.15C95.8419 721.243 96.2008 721.208 96.5132 721.051C96.8257 720.895 97.0692 720.628 97.1959 720.304C97.3226 719.979 97.3234 719.62 97.1982 719.298C97.0729 718.975 96.8306 718.711 96.5189 718.559Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1324
+ <path d="M37.066 473.092C36.5006 472.963 34.7894 474.025 36.0288 474.258C36.5997 474.329 38.3578 473.32 37.066 473.092Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1325
+ <path d="M185.152 428.477C184.382 428.309 183.316 428.6 184.64 428.904C185.442 429.079 186.486 428.774 185.152 428.477Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1326
+ <path d="M140.82 493.128C139.692 492.784 138.366 494.087 139.959 494.554C141.103 494.901 142.428 493.598 140.82 493.128Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1327
+ <path d="M35.4669 871.206C33.8445 870.579 33.3069 872.683 34.7808 873.361C36.2546 874.039 36.9716 871.755 35.4669 871.206Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1328
+ <path d="M445.537 596.536C445.106 595.842 445.737 597.372 445.891 597.51C446.358 598.195 445.688 596.689 445.537 596.536Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1329
+ <path d="M252.269 571.664C250.674 570.993 250.097 573.011 251.604 573.586C253.111 574.161 253.83 572.26 252.269 571.664Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1330
+ <path d="M96.7219 461.729C96.4687 461.701 96.212 461.725 95.968 461.801C95.724 461.877 95.498 462.002 95.3043 462.169C94.6425 463.582 98.8798 462.325 96.7219 461.729Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1331
+ <path d="M312.226 694.246C310.683 693.569 310.14 696.089 311.502 696.63C313.028 697.303 313.571 694.783 312.226 694.246Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1332
+ <path d="M169.576 462.478C168.521 462.185 167.322 463.067 168.834 463.515C169.917 463.831 171.092 462.91 169.576 462.478Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1333
+ <path d="M149.396 572.125C147.905 571.554 146.742 573.634 148.461 574.215C149.93 574.772 151.106 572.67 149.396 572.125Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1334
+ <path d="M129.847 573.165C128.421 572.677 127.15 574.715 128.858 575.302C130.305 575.846 131.596 573.795 129.847 573.165Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1335
+ <path d="M145.238 432.188C144.54 432.003 143.15 432.577 144.535 432.775C145.272 432.935 146.624 432.412 145.238 432.188Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1336
+ <path d="M202.29 501.104C202.037 500.992 201.753 500.966 201.482 501.03C201.212 501.094 200.969 501.244 200.791 501.458C200.344 503.396 205.004 502.508 202.29 501.104Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1337
+ <path d="M124.773 471.131C123.801 470.882 122.305 471.866 123.871 472.335C124.812 472.534 126.305 471.566 124.773 471.131Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1338
+ <path d="M187.376 463.689C186.292 463.305 185.186 464.293 186.716 464.703C187.854 465.108 188.911 464.109 187.376 463.689Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1339
+ <path d="M143.19 888.434C141.672 887.798 140.538 890.08 142.247 890.667C143.777 891.323 144.946 888.964 143.19 888.434Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1340
+ <path d="M131.165 760.256C130.991 760.182 130.804 760.144 130.614 760.144C130.424 760.144 130.236 760.183 130.06 760.257C129.885 760.331 129.726 760.44 129.594 760.576C129.461 760.713 129.357 760.874 129.288 761.051C129.22 761.228 129.188 761.416 129.194 761.605C129.2 761.794 129.244 761.98 129.324 762.15C129.404 762.321 129.518 762.474 129.659 762.599C129.801 762.724 129.966 762.82 130.146 762.879C130.49 762.994 130.866 762.971 131.196 762.815C131.527 762.659 131.784 762.383 131.916 762.044C132.048 761.705 132.043 761.33 131.903 760.997C131.763 760.663 131.499 760.398 131.165 760.256V760.256Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1341
+ <path d="M182.441 448.098C182.23 448.028 182.005 448.008 181.784 448.038C181.562 448.069 181.35 448.149 181.164 448.273C180.831 449.412 184.78 448.829 182.441 448.098Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1342
+ <path d="M98.8426 568.876C97.4872 568.345 96.1332 570.407 97.8034 570.976C99.1665 571.476 100.517 569.43 98.8426 568.876Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1343
+ <path d="M53.26 768.365C51.5806 767.692 50.6833 770.266 52.3404 770.926C53.9974 771.586 54.8808 769.034 53.26 768.365Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1344
+ <path d="M74.5699 457.589C73.9236 457.441 72.2672 458.346 73.5774 458.603C74.2359 458.771 75.914 457.812 74.5699 457.589Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1345
+ <path d="M412.834 489.176C412.657 489.104 412.458 489.105 412.28 489.179C412.103 489.253 411.961 489.394 411.887 489.571C411.813 489.748 411.813 489.947 411.886 490.123C411.958 490.299 412.099 490.438 412.276 490.51C412.453 490.583 412.652 490.582 412.83 490.507C413.007 490.433 413.149 490.292 413.223 490.115C413.297 489.938 413.297 489.74 413.224 489.564C413.151 489.388 413.011 489.248 412.834 489.176Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1346
+ <path d="M155.89 847.544C154.275 846.885 153.059 849.437 154.886 849.992C155.049 850.071 155.228 850.116 155.41 850.123C155.592 850.131 155.774 850.101 155.944 850.035C156.115 849.97 156.271 849.87 156.401 849.742C156.532 849.615 156.635 849.462 156.704 849.293C156.773 849.124 156.807 848.944 156.803 848.762C156.799 848.581 156.757 848.403 156.681 848.238C156.604 848.074 156.495 847.928 156.359 847.808C156.222 847.689 156.063 847.599 155.89 847.544Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1347
+ <path d="M297.064 456.433C295.925 455.959 296.087 456.422 297.035 456.877C297.982 457.332 297.975 456.829 297.064 456.433Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1348
+ <path d="M53.9157 748.178C52.3041 747.435 51.286 750.195 52.9623 750.774C54.6386 751.354 55.6605 748.757 53.9157 748.178Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1349
+ <path d="M57.3321 449.399C56.8535 449.298 55.0539 450.195 56.332 450.267C56.8044 450.358 58.5701 449.496 57.3321 449.399Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1350
+ <path d="M423.562 846.781C422.989 846.505 422.211 848.512 422.799 848.723C423.388 848.934 424.133 847.031 423.562 846.781Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1351
+ <path d="M202.228 475.475C200.997 475.032 200.074 476.18 201.566 476.641C202.787 477.023 203.781 475.967 202.228 475.475Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1352
+ <path d="M51.3272 532.64C50.3163 532.307 48.7109 534.031 50.2388 534.483C51.2535 534.8 52.8973 533.094 51.3272 532.64Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1353
+ <path d="M300.298 476.677C299.022 476.096 299.106 476.991 300.177 477.466C301.424 478.024 301.336 477.145 300.298 476.677Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1354
+ <path d="M55.2919 495.385C54.4372 495.147 52.7696 496.525 54.2198 496.874C55.0422 497.105 56.7198 495.721 55.2919 495.385Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1355
+ <path d="M108.771 850.88C108.609 850.802 108.432 850.76 108.252 850.754C108.072 850.748 107.892 850.78 107.724 850.847C107.556 850.914 107.403 851.015 107.276 851.144C107.149 851.272 107.049 851.426 106.984 851.594C106.919 851.762 106.89 851.941 106.898 852.121C106.906 852.3 106.951 852.476 107.031 852.636C107.111 852.797 107.224 852.939 107.362 853.053C107.5 853.167 107.661 853.252 107.834 853.301C107.997 853.378 108.173 853.421 108.354 853.426C108.534 853.432 108.714 853.4 108.882 853.333C109.05 853.266 109.202 853.165 109.33 853.036C109.457 852.908 109.556 852.755 109.622 852.587C109.687 852.418 109.716 852.239 109.708 852.059C109.7 851.88 109.654 851.704 109.575 851.544C109.495 851.384 109.382 851.242 109.244 851.127C109.106 851.013 108.945 850.929 108.771 850.88Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1356
+ <path d="M92.4296 563.521C91.1249 563.027 89.6963 565.08 91.3434 565.568C92.6827 566.095 94.142 564.092 92.4296 563.521Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1357
+ <path d="M219.166 448.562C218.085 448.204 217.312 448.835 218.707 449.273C219.794 449.641 220.545 448.997 219.166 448.562Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1358
+ <path d="M50.3553 811.304C48.7238 810.573 47.8927 813.12 49.4835 813.808C51.0743 814.495 51.9816 811.914 50.3553 811.304Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1359
+ <path d="M390.427 586.301C389.147 585.557 389.727 587.407 390.373 587.844C391.646 588.578 391.113 586.671 390.427 586.301Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1360
+ <path d="M136.799 513.206C136.504 513.117 136.187 513.121 135.892 513.218C135.598 513.314 135.34 513.499 135.153 513.747C134.565 516.06 139.455 514.426 136.799 513.206Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1361
+ <path d="M56.9936 695.578C55.3951 694.923 54.297 697.554 55.9778 698.185C57.6587 698.817 58.7045 696.191 56.9936 695.578Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1362
+ <path d="M287.98 448.851C285.764 448.071 288.484 449.664 288.759 449.37C288.799 449.277 288.423 449.029 287.98 448.851Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1363
+ <path d="M180.247 828.12C178.575 827.414 177.401 830.078 179.19 830.683C180.979 831.288 182.057 828.781 180.247 828.12Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1364
+ <path d="M110.888 458.045C110.632 458.008 110.37 458.026 110.12 458.096C109.87 458.166 109.637 458.287 109.436 458.452C108.825 459.902 113.104 458.646 110.888 458.045Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1365
+ <path d="M224.665 476.788C223.401 476.337 222.651 477.406 224.125 477.905C225.599 478.405 226.171 477.295 224.665 476.788Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1366
+ <path d="M54.4737 722.276C52.8044 721.596 51.7817 724.303 53.4726 724.929C55.1634 725.554 56.1284 722.91 54.4737 722.276Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1367
+ <path d="M21.2311 484.427C20.6456 484.31 18.859 485.474 20.113 485.753C20.6116 485.841 22.4683 484.634 21.2311 484.427Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1368
+ <path d="M436.656 588.746C435.943 588.022 436.719 589.654 436.959 589.862C437.634 590.569 436.839 588.907 436.656 588.746Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1369
+ <path d="M143.778 894.094C142.216 893.43 141.006 895.814 142.799 896.335C144.345 896.996 145.541 894.634 143.778 894.094Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1370
+ <path d="M6.47874 733.155C4.91024 732.481 4.02444 735.185 5.57147 735.735C7.11849 736.285 7.9996 733.707 6.47874 733.155Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1371
+ <path d="M97.8419 632.664C96.228 632.073 94.9907 634.501 96.7585 635.161C98.5263 635.821 99.5913 633.294 97.8419 632.664Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1372
+ <path d="M60.043 451.781C59.5144 451.711 57.7526 452.557 59.0275 452.713C59.5545 452.825 61.3479 451.918 60.043 451.781Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1373
+ <path d="M119.598 890.842C118.032 890.195 116.917 892.575 118.69 893.108C118.991 893.226 119.327 893.219 119.625 893.089C119.922 892.96 120.158 892.718 120.278 892.418C120.398 892.117 120.395 891.783 120.267 891.487C120.14 891.192 119.899 890.96 119.598 890.842V890.842Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1374
+ <path d="M61.0004 629.377C59.5373 628.762 58.1923 631.285 59.8986 631.845C61.3979 632.452 62.699 629.971 61.0004 629.377Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1375
+ <path d="M356.617 516.044C355.295 515.299 355.922 516.598 356.684 517.045C357.993 517.77 357.318 516.459 356.617 516.044Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1376
+ <path d="M9.02906 596.412C7.85589 595.974 6.44093 598.183 7.91493 598.682C9.07579 599.101 10.5092 596.921 9.02906 596.412Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1377
+ <path d="M51.1506 654.513C49.6152 653.915 48.3531 656.482 50.0617 657.069C51.5549 657.666 52.7992 655.137 51.1506 654.513Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1378
+ <path d="M349.723 726.554C348.314 725.891 347.75 728.533 349.004 728.99C350.389 729.682 350.973 727.027 349.723 726.554Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1379
+ <path d="M414.549 573.13C413.219 572.061 415.034 575.478 415.268 574.29C415.124 573.852 414.877 573.454 414.549 573.13V573.13Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1380
+ <path d="M44.8868 467.828C44.2813 467.723 42.4892 468.767 43.811 468.976C44.3642 469.086 46.1724 468.046 44.8868 467.828Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1381
+ <path d="M113.763 431.005C113.159 430.926 111.583 431.424 112.939 431.598C113.518 431.637 115.137 431.209 113.763 431.005Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1382
+ <path d="M186.632 521.527C185.167 521.064 184.14 522.648 185.809 523.26C187.244 523.741 188.281 522.151 186.632 521.527Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1383
+ <path d="M156.479 461.517C155.426 461.182 154.127 462.194 155.683 462.601C156.72 462.932 158.071 461.916 156.479 461.517Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1384
+ <path d="M91.7245 442.305C91.1206 442.158 89.3665 442.972 90.8284 443.095C91.4016 443.192 93.1594 442.54 91.7245 442.305Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1385
+ <path d="M26.1099 664.794C24.6267 664.191 23.4493 666.76 25.0471 667.347C26.6449 667.935 27.73 665.394 26.1099 664.794Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1386
+ <path d="M173.424 471.716C172.251 471.345 171.09 472.423 172.669 472.912C173.851 473.276 175.022 472.193 173.424 471.716Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1387
+ <path d="M55.5728 887.101C53.8912 886.402 53.1903 888.689 54.8004 889.296C56.4105 889.903 57.1429 887.733 55.5728 887.101Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1388
+ <path d="M24.6583 757.742C23.0074 757.091 22.1471 759.725 23.7294 760.377C25.3118 761.028 26.2406 758.393 24.6583 757.742Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1389
+ <path d="M39.6243 534.329C39.3125 534.281 38.9929 534.327 38.7052 534.459C38.4175 534.591 38.1745 534.804 38.0064 535.072C37.0584 537.609 42.0405 535.341 39.6243 534.329Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1390
+ <path d="M1.21234 466.886C0.909948 466.867 -0.866655 467.846 0.102839 467.89C0.417525 467.928 2.18798 466.939 1.21234 466.886Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1391
+ <path d="M394.741 760.798C393.593 760.22 393.164 762.723 394.069 763.109C395.219 763.645 395.638 761.148 394.741 760.798Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1392
+ <path d="M366.768 502.539C365.174 501.469 367.403 503.943 367.573 503.412C367.365 503.071 367.092 502.774 366.768 502.539Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1393
+ <path d="M148.013 454.308C147.074 454.067 145.625 454.925 147.234 455.286C148.174 455.594 149.621 454.71 148.013 454.308Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1394
+ <path d="M443.41 722.213C442.045 721.688 443.105 725.944 443.758 723.645C443.833 723.139 443.709 722.626 443.41 722.213V722.213Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1395
+ <path d="M237.891 462.076C236.673 461.61 236.019 462.455 237.457 462.963C238.895 463.471 239.294 462.551 237.891 462.076Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1396
+ <path d="M359.15 843.085C358.085 842.62 357.003 845.008 358.18 845.431C359.357 845.853 360.317 843.514 359.15 843.085Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1397
+ <path d="M436.835 615.839C435.952 615.152 436.665 617.084 436.986 617.31C437.86 618.004 437.219 616.123 436.835 615.839Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1398
+ <path d="M278.503 475.212C275.826 474.361 278.62 477.143 279.378 476.11C279.44 475.852 279.025 475.451 278.503 475.212Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1399
+ <path d="M87.5653 466.807C86.7406 466.55 85.0085 467.735 86.5427 468.018C87.3589 468.239 89.0817 467.129 87.5653 466.807Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1400
+ <path d="M110.843 601.303C109.223 600.703 107.901 603.129 109.745 603.755C111.282 604.38 112.67 601.926 110.843 601.303Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1401
+ <path d="M221.129 429.144C220.786 429.034 220.419 429.012 220.063 429.078C220.043 429.694 223.312 429.78 221.129 429.144Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1402
+ <path d="M375.281 655.682C372.812 654.853 374.951 659.84 375.998 657.351C376.052 657.032 376.014 656.705 375.886 656.409C375.759 656.113 375.549 655.861 375.281 655.682V655.682Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1403
+ <path d="M238.043 526.067C236.473 525.435 235.773 527.188 237.407 527.834C239.042 528.481 239.682 526.697 238.043 526.067Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1404
+ <path d="M1.18127 491.762C0.635807 491.62 -1.24564 492.966 -0.0100374 493.215C0.545431 493.351 2.4346 491.973 1.18127 491.762Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1405
+ <path d="M185.993 585.338C185.835 585.244 185.659 585.186 185.476 585.167C185.293 585.148 185.108 585.168 184.933 585.227C184.759 585.285 184.598 585.38 184.463 585.506C184.328 585.631 184.221 585.784 184.15 585.953C184.079 586.123 184.046 586.306 184.052 586.489C184.058 586.672 184.104 586.851 184.186 587.014C184.268 587.177 184.385 587.321 184.528 587.434C184.672 587.548 184.838 587.629 185.016 587.673C185.174 587.766 185.35 587.824 185.533 587.844C185.716 587.863 185.901 587.842 186.076 587.784C186.251 587.725 186.411 587.63 186.546 587.505C186.682 587.379 186.788 587.227 186.859 587.057C186.93 586.887 186.964 586.705 186.958 586.522C186.951 586.339 186.906 586.159 186.823 585.996C186.741 585.833 186.624 585.69 186.481 585.576C186.338 585.462 186.171 585.381 185.993 585.338Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1406
+ <path d="M284.765 555.686C281.586 554.762 284.44 559.361 285.694 557.183C285.729 556.864 285.657 556.545 285.488 556.274C285.32 556.003 285.066 555.796 284.765 555.686V555.686Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1407
+ <path d="M43.9187 564.347C42.667 563.915 41.0659 566.048 42.7215 566.572C43.9547 566.973 45.5488 564.941 43.9187 564.347Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1408
+ <path d="M452.469 707.394C451.656 706.911 451.924 709.106 452.287 709.333C453.103 709.801 452.84 707.59 452.469 707.394Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1409
+ <path d="M329.417 603.212C327.791 602.423 327.625 604.791 328.938 605.322C330.65 606.071 330.689 603.81 329.417 603.212Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1410
+ <path d="M444.575 740.954C443.229 740.416 444.117 744.862 444.873 742.416C444.931 742.165 444.935 741.904 444.884 741.651C444.832 741.399 444.727 741.161 444.575 740.954V740.954Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1411
+ <path d="M53.3735 865.421C51.5303 864.684 50.7754 867.198 52.527 867.854C54.2787 868.51 55.139 866.055 53.3735 865.421Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1412
+ <path d="M128.092 435.649C127.349 435.478 125.726 436.169 127.254 436.375C128.027 436.526 129.614 435.912 128.092 435.649Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1413
+ <path d="M79.7914 486.866C78.8298 486.612 77.013 487.972 78.6856 488.389C79.6249 488.63 81.4255 487.266 79.7914 486.866Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1414
+ <path d="M58.5283 455.793C57.9405 455.65 56.0254 456.674 57.4234 456.849C57.9897 456.869 59.8978 455.945 58.5283 455.793Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1415
+ <path d="M383.599 806.969C382.47 806.489 381.655 809.04 382.713 809.427C383.771 809.814 384.643 807.378 383.599 806.969Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1416
+ <path d="M430.04 724.319C428.393 723.653 429.595 728.494 430.457 725.886C430.523 725.61 430.519 725.322 430.447 725.049C430.374 724.775 430.234 724.525 430.04 724.319V724.319Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1417
+ <path d="M49.7447 725.264C47.92 724.557 46.9148 727.405 48.7272 728.092C50.5396 728.779 51.5263 725.902 49.7447 725.264Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1418
+ <path d="M388.115 837.521C387.184 837.069 386.167 839.539 387.17 839.905C388.173 840.271 389.114 837.902 388.115 837.521Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1419
+ <path d="M167.715 899.928C166.061 899.362 164.713 901.791 166.625 902.348C168.244 902.99 169.615 900.643 167.715 899.928Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1420
+ <path d="M224.854 666.103C222.987 665.327 221.969 668.154 223.856 668.85C225.743 669.546 226.725 666.795 224.854 666.103Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1421
+ <path d="M363.323 673.712C361.773 672.957 361.606 675.614 362.76 676.133C364.307 676.862 364.5 674.202 363.323 673.712Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1422
+ <path d="M356.416 883.708C355.465 883.337 354.093 885.616 355.3 886.02C356.241 886.397 357.597 884.115 356.416 883.708Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1423
+ <path d="M169.102 465.777C167.891 465.389 166.541 466.542 168.281 467C169.469 467.374 170.795 466.25 169.102 465.777Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1424
+ <path d="M443.178 671.693C442.227 671.076 442.672 673.38 443.084 673.619C444.082 674.221 443.592 671.958 443.178 671.693Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1425
+ <path d="M136.388 831.615C136.2 831.502 135.988 831.432 135.769 831.41C135.55 831.388 135.329 831.414 135.12 831.487C134.912 831.559 134.721 831.676 134.562 831.83C134.403 831.983 134.28 832.169 134.201 832.375C134.122 832.58 134.089 832.8 134.105 833.019C134.121 833.238 134.185 833.45 134.292 833.641C134.399 833.831 134.548 833.996 134.727 834.122C134.906 834.249 135.111 834.334 135.327 834.373C135.515 834.486 135.726 834.556 135.945 834.578C136.164 834.6 136.386 834.574 136.595 834.501C136.803 834.429 136.994 834.312 137.153 834.158C137.311 834.005 137.435 833.819 137.514 833.613C137.593 833.408 137.626 833.188 137.61 832.969C137.594 832.75 137.53 832.538 137.423 832.347C137.315 832.157 137.167 831.992 136.988 831.866C136.809 831.739 136.604 831.654 136.388 831.615V831.615Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1426
+ <path d="M89.5747 446.837C88.8599 446.69 86.9918 447.589 88.5414 447.808C89.2315 447.915 91.1042 447.068 89.5747 446.837Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1427
+ <path d="M247.447 625.744C245.592 624.987 244.766 627.654 246.56 628.312C248.443 629.134 249.272 626.451 247.447 625.744Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1428
+ <path d="M139.957 638.307C138.138 637.609 136.79 640.395 138.81 641.105C140.637 641.838 141.959 639.054 139.957 638.307Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1429
+ <path d="M242.464 437.303C241.318 436.93 240.8 437.279 242.161 437.753C243.279 438.102 243.823 437.751 242.464 437.303Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1430
+ <path d="M150.451 427.992C149.639 427.823 148.154 428.333 149.693 428.558C150.429 428.76 151.974 428.213 150.451 427.992Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1431
+ <path d="M64.7574 453.659C64.1596 453.523 62.2099 454.513 63.6225 454.734C64.2618 454.804 66.2462 453.847 64.7574 453.659Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1432
+ <path d="M333.073 879.774C331.937 879.394 330.489 881.707 331.907 882.227C333.013 882.625 334.469 880.28 333.073 879.774Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1433
+ <path d="M140.037 837.161C139.853 837.089 139.657 837.055 139.459 837.059C139.261 837.063 139.066 837.105 138.884 837.185C138.702 837.264 138.537 837.378 138.399 837.52C138.26 837.662 138.151 837.83 138.078 838.013C138.004 838.197 137.968 838.392 137.97 838.589C137.972 838.786 138.013 838.981 138.091 839.161C138.169 839.342 138.282 839.505 138.424 839.641C138.565 839.778 138.733 839.885 138.916 839.957C139.287 840.101 139.702 840.093 140.07 839.933C140.437 839.773 140.727 839.475 140.876 839.105C141.024 838.734 141.019 838.321 140.862 837.956C140.705 837.592 140.408 837.306 140.037 837.161V837.161Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1434
+ <path d="M403.003 815.971C402.004 815.589 401.242 818.025 402.13 818.407C403.019 818.789 403.901 816.347 403.003 815.971Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1435
+ <path d="M22.3234 461.596C21.8147 461.692 21.3358 461.909 20.928 462.229C19.923 463.58 23.9691 461.769 22.3234 461.596Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1436
+ <path d="M65.3518 648.831C63.6663 648.147 62.2034 650.949 64.145 651.666C65.8582 652.305 67.2465 649.494 65.3518 648.831Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1437
+ <path d="M325.666 491.092C324.168 490.374 324.561 491.544 325.62 492.067C327.087 492.845 326.677 491.604 325.666 491.092Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1438
+ <path d="M138.865 515.999C138.531 515.895 138.171 515.898 137.837 516.01C137.503 516.121 137.211 516.334 137.005 516.619C136.343 519.171 142.009 517.425 138.865 515.999Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1439
+ <path d="M449.007 709.008C448.114 708.506 448.367 710.902 448.78 711.098C449.655 711.571 449.394 709.207 449.007 709.008Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1440
+ <path d="M205.958 425.243C205.025 425.012 204.062 425.225 205.498 425.529C206.473 425.761 207.414 425.602 205.958 425.243Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1441
+ <path d="M379.759 872.011C378.893 871.643 377.625 874.022 378.678 874.357C379.732 874.692 380.83 872.418 379.759 872.011Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1442
+ <path d="M205.569 479.674C204.154 479.18 203.106 480.462 204.85 481.04C206.3 481.5 207.3 480.275 205.569 479.674Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1443
+ <path d="M35.3487 506.867C34.447 506.575 32.5008 508.264 34.0987 508.672C34.9689 508.846 36.9627 507.279 35.3487 506.867Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1444
+ <path d="M256.231 434.54C255.929 434.382 255.585 434.318 255.244 434.356C255.402 434.766 258.553 435.446 256.231 434.54Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1445
+ <path d="M20.7373 481.578C20.1356 481.457 18.1088 482.77 19.4975 483.02C20.1153 483.144 22.1421 481.832 20.7373 481.578Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1446
+ <path d="M188.981 451.713C188.733 451.626 188.467 451.6 188.205 451.638C187.944 451.676 187.695 451.776 187.48 451.93C187.159 453.31 191.752 452.739 188.981 451.713Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1447
+ <path d="M221.834 431.574C220.807 431.237 219.975 431.616 221.444 431.995C222.469 432.374 223.325 431.967 221.834 431.574Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1448
+ <path d="M253.173 458.248C251.778 457.741 251.351 458.527 252.806 459.107C254.26 459.687 254.649 458.773 253.173 458.248Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1449
+ <path d="M347.085 491.569C344.977 490.406 347.656 493.204 348.011 492.503C347.78 492.124 347.462 491.804 347.085 491.569Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1450
+ <path d="M277.773 802.715C276.107 802.018 274.814 805.004 276.629 805.607C278.445 806.21 279.567 803.372 277.773 802.715Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1451
+ <path d="M288.197 450.228C287.693 450.019 287.35 449.957 287.266 450.023C287.422 450.654 290.624 451.481 288.197 450.228Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1452
+ <path d="M100.907 431.529C100.294 431.457 98.4691 432.068 99.9371 432.2C100.542 432.236 102.365 431.668 100.907 431.529Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1453
+ <path d="M379.244 516.881C378.044 516.02 378.931 517.405 379.513 517.785C380.736 518.659 379.828 517.219 379.244 516.881Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1454
+ <path d="M368.463 496.984C366.893 495.818 369.22 498.203 369.319 497.826C369.065 497.516 368.778 497.234 368.463 496.984V496.984Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1455
+ <path d="M259.191 560.148C255.51 559.22 258.665 564.304 260.206 561.784C260.261 561.434 260.189 561.077 260.003 560.777C259.817 560.477 259.529 560.254 259.191 560.148V560.148Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1456
+ <path d="M402.978 771.884C401.78 771.337 401.265 774.059 402.232 774.434C403.36 774.955 403.881 772.244 402.978 771.884Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1457
+ <path d="M19.6381 849.828C17.7642 849.042 17.1146 851.792 18.8339 852.441C20.7285 853.283 21.3258 850.538 19.6381 849.828Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1458
+ <path d="M272.753 437.066C272.472 436.992 272.194 436.903 271.922 436.799C272.035 437.003 275.052 438 272.753 437.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1459
+ <path d="M98.5025 475.654C97.48 475.369 95.6286 476.696 97.3858 477.116C98.4205 477.421 100.272 476.094 98.5025 475.654Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1460
+ <path d="M152.313 421.881C151.573 421.805 150.07 422.107 151.603 422.322C152.305 422.381 153.827 422.109 152.313 421.881Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1461
+ <path d="M19.9285 803.926C18.0607 803.149 17.2811 805.98 18.9957 806.756C20.9235 807.495 21.6308 804.681 19.9285 803.926Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1462
+ <path d="M341.605 496.877C340.156 496.06 340.755 497.405 341.658 497.833C343.11 498.633 342.517 497.341 341.605 496.877Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1463
+ <path d="M224.439 475.598C222.984 475.018 222.099 476.295 223.832 476.853C225.252 477.399 226.064 476.14 224.439 475.598Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1464
+ <path d="M208.302 466.545C206.936 466.13 205.907 467.153 207.646 467.721C208.95 468.148 210.041 467.114 208.302 466.545Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1465
+ <path d="M405.349 672.177C403.089 671.259 405.053 676.547 406.011 673.935C406.053 673.609 406.015 673.279 405.9 672.972C405.785 672.666 405.595 672.393 405.349 672.177V672.177Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1466
+ <path d="M35.7356 536.194C35.385 536.156 35.0299 536.216 34.7103 536.368C34.3908 536.52 34.1197 536.758 33.9276 537.055C32.8455 539.868 38.4195 537.37 35.7356 536.194Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1467
+ <path d="M151.434 826.178C149.554 825.382 148.197 828.378 150.272 829.109C150.465 829.183 150.671 829.218 150.878 829.213C151.085 829.208 151.289 829.163 151.479 829.079C151.669 828.996 151.841 828.876 151.986 828.726C152.13 828.577 152.243 828.401 152.32 828.209C152.396 828.016 152.433 827.811 152.43 827.605C152.427 827.399 152.383 827.196 152.301 827.007C152.218 826.818 152.099 826.648 151.951 826.506C151.802 826.364 151.626 826.252 151.434 826.178V826.178Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1468
+ <path d="M224.144 451.223C222.873 450.804 222.017 451.569 223.63 452.091C224.932 452.492 225.734 451.774 224.144 451.223Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1469
+ <path d="M451.391 642.714C450.592 642.029 451.236 644.183 451.53 644.412C452.357 645.052 451.687 642.832 451.391 642.714Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1470
+ <path d="M421.365 757.222C420.257 756.688 419.929 759.376 420.759 759.685C421.842 760.179 422.138 757.552 421.365 757.222Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1471
+ <path d="M352.187 507.207C350.745 506.358 351.419 507.779 352.275 508.264C353.698 509.083 353.05 507.66 352.187 507.207Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1472
+ <path d="M317.328 521.411C314.347 520.269 317.411 524.448 318.318 522.76C318.487 522.339 317.968 521.727 317.328 521.411Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1473
+ <path d="M395.431 811.294C394.358 810.793 393.51 813.447 394.531 813.843C395.553 814.238 396.472 811.609 395.431 811.294Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1474
+ <path d="M422.214 646.352C420.957 645.622 421.493 648.049 422.087 648.38C423.369 649.108 422.794 646.706 422.214 646.352Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1475
+ <path d="M417.067 580.586C415.932 579.74 416.783 581.737 417.26 582.059C418.401 582.847 417.489 580.887 417.067 580.586Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1476
+ <path d="M235.955 896.812C234.456 896.205 232.77 898.692 234.689 899.395C236.226 899.951 237.884 897.44 235.955 896.812Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1477
+ <path d="M112.733 501.359C111.434 500.985 109.713 502.588 111.607 503.183C112.89 503.554 114.593 501.989 112.733 501.359Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1478
+ <path d="M371.314 543.929C369.832 543.037 370.522 544.887 371.335 545.371C372.844 546.26 372.145 544.374 371.314 543.929Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1479
+ <path d="M384.43 834.688C383.35 834.22 382.314 836.839 383.42 837.237C384.526 837.635 385.537 835.086 384.43 834.688Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1480
+ <path d="M209.076 631.161C208.887 631.061 208.679 631.003 208.465 630.991C208.251 630.979 208.036 631.012 207.835 631.089C207.634 631.166 207.452 631.285 207.3 631.438C207.149 631.59 207.032 631.773 206.956 631.974C206.881 632.175 206.85 632.389 206.865 632.602C206.88 632.815 206.94 633.022 207.043 633.209C207.145 633.396 207.286 633.559 207.457 633.687C207.628 633.814 207.825 633.903 208.034 633.949C208.223 634.048 208.432 634.106 208.646 634.118C208.86 634.131 209.075 634.097 209.276 634.02C209.477 633.943 209.659 633.824 209.811 633.672C209.962 633.519 210.079 633.336 210.154 633.135C210.23 632.934 210.261 632.72 210.246 632.507C210.231 632.294 210.17 632.087 210.068 631.9C209.966 631.713 209.825 631.55 209.654 631.423C209.483 631.295 209.286 631.206 209.076 631.161Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1481
+ <path d="M177.48 846.802C175.582 846.155 174.178 848.851 176.262 849.686C178.163 850.359 179.48 847.634 177.48 846.802Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1482
+ <path d="M432.376 725.986C430.594 725.348 431.909 730.393 432.807 727.64C432.88 727.349 432.879 727.045 432.803 726.756C432.728 726.467 432.581 726.202 432.376 725.986V725.986Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1483
+ <path d="M428.956 772.895C427.973 772.406 427.612 775.019 428.325 775.318C429.301 775.797 429.646 773.181 428.956 772.895Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1484
+ <path d="M434.44 605.232C433.465 604.465 434.289 606.507 434.646 606.793C435.627 607.57 434.769 605.495 434.44 605.232Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1485
+ <path d="M417.664 684.807C416.377 684.096 416.575 686.76 417.32 687.134C418.603 687.862 418.439 685.164 417.664 684.807Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1486
+ <path d="M389.213 679.854C386.657 678.929 388.774 684.574 389.928 681.676C389.99 681.335 389.956 680.984 389.83 680.662C389.704 680.341 389.49 680.061 389.213 679.854V679.854Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1487
+ <path d="M436.514 775.494C435.628 775.028 435.257 777.646 435.92 777.866C436.812 778.343 437.133 775.755 436.514 775.494Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1488
+ <path d="M405.999 761.966C404.794 761.341 404.323 764.201 405.294 764.559C406.488 765.122 406.955 762.389 405.999 761.966Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1489
+ <path d="M447.142 660.078C446.186 659.409 446.787 661.74 447.136 661.99C448.09 662.633 447.467 660.289 447.142 660.078Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1490
+ <path d="M357.222 702.341C355.585 701.558 355.147 704.493 356.501 705.067C358.119 705.82 358.569 702.905 357.222 702.341Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1491
+ <path d="M390.403 622.222C388.859 621.409 389.27 623.858 390.157 624.351C391.675 625.166 391.306 622.65 390.403 622.222Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1492
+ <path d="M57.8094 851.193C55.8108 850.429 54.9551 853.115 56.8374 853.937C58.7197 854.759 59.7149 851.918 57.8094 851.193Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1493
+ <path d="M24.0526 801.862C22.1357 801.006 21.2473 804.042 23.0782 804.759C24.909 805.476 25.8789 802.527 24.0526 801.862Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1494
+ <path d="M239.494 580.427C237.633 579.661 236.783 582.11 238.628 582.873C240.473 583.636 241.35 581.184 239.494 580.427Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1495
+ <path d="M312.985 605.721C311.134 604.838 310.782 607.486 312.362 608.111C314.219 609.004 314.516 606.335 312.985 605.721Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1496
+ <path d="M307.447 812.632C305.846 811.951 304.603 814.905 306.284 815.537C307.964 816.169 309.134 813.274 307.447 812.632Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1497
+ <path d="M188.795 484.537C188.497 484.43 188.174 484.411 187.864 484.482C187.554 484.552 187.27 484.71 187.047 484.936C186.567 487.045 191.965 485.961 188.795 484.537Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1498
+ <path d="M298.345 516.528C296.614 515.749 296.53 517.489 297.959 518.14C299.714 518.89 299.792 517.14 298.345 516.528Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1499
+ <path d="M267.666 462.775C264.595 461.935 267.958 464.652 268.631 463.659C268.777 463.403 268.326 463.011 267.666 462.775Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1500
+ <path d="M423.76 805.396C422.859 804.994 422.203 807.556 422.974 807.86C423.745 808.164 424.502 805.677 423.76 805.396Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1501
+ <path d="M219.963 496.329C218.335 495.76 217.41 497.24 219.219 497.943C220.811 498.521 221.771 496.964 219.963 496.329Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1502
+ <path d="M415.244 861.564C414.588 861.244 413.485 863.644 414.265 863.874C415.046 864.103 416.019 861.852 415.244 861.564Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1503
+ <path d="M403.296 720.353C401.933 719.675 401.762 722.527 402.725 722.917C404.108 723.583 404.211 720.801 403.296 720.353Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1504
+ <path d="M159.19 714.713C158.777 714.572 158.324 714.596 157.926 714.781C157.529 714.966 157.217 715.296 157.056 715.703C156.896 716.11 156.9 716.562 157.067 716.963C157.234 717.364 157.552 717.684 157.953 717.855C158.366 717.996 158.819 717.971 159.217 717.787C159.615 717.602 159.927 717.271 160.087 716.864C160.247 716.457 160.243 716.006 160.076 715.605C159.909 715.203 159.591 714.884 159.19 714.713V714.713Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1505
+ <path d="M311.513 516.908C309.852 516.086 309.912 517.902 311.257 518.439C312.912 519.252 312.865 517.456 311.513 516.908Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1506
+ <path d="M412.106 790.569C411.061 790.024 410.43 792.804 411.33 793.138C412.359 793.679 413.053 790.888 412.106 790.569Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1507
+ <path d="M178.202 817.297C176.215 816.553 174.872 819.569 176.957 820.361C179.042 821.154 180.303 818.093 178.202 817.297Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1508
+ <path d="M442.237 693.004C441.184 692.38 441.55 694.912 442.022 695.182C443.088 695.783 442.719 693.267 442.237 693.004Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1509
+ <path d="M234.406 698.046C232.47 697.161 231.259 700.369 233.292 701.098C235.324 701.828 236.397 698.732 234.406 698.046Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1510
+ <path d="M231.381 782.54C229.495 781.734 228.139 784.909 230.157 785.661C232.176 786.412 233.431 783.231 231.381 782.54Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1511
+ <path d="M7.87226 571.229C6.6791 570.803 4.85089 573.173 6.61495 573.67C7.71262 574.211 9.58013 571.748 7.87226 571.229Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1512
+ <path d="M66.6879 750.604C64.7032 749.818 63.5517 752.921 65.5326 753.723C67.5134 754.526 68.6942 751.336 66.6879 750.604Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1513
+ <path d="M362.37 742.357C360.775 741.685 360.214 744.6 361.522 745.189C363.094 745.847 363.694 742.949 362.37 742.357Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1514
+ <path d="M412.724 712.182C411.415 711.526 411.385 714.29 412.217 714.693C413.506 715.431 413.57 712.563 412.724 712.182Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1515
+ <path d="M32.4713 579.602C31.0758 579.096 29.3191 581.558 31.147 582.181C32.5863 582.647 34.3615 580.214 32.4713 579.602Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1516
+ <path d="M304.465 850.019C302.982 849.484 301.506 852.198 303.21 852.843C304.739 853.431 306.17 850.69 304.465 850.019Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1517
+ <path d="M300.746 734.311C298.866 733.515 297.939 736.712 299.695 737.352C301.45 737.992 302.486 735.016 300.746 734.311Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1518
+ <path d="M370.667 638.642C368.964 637.818 369.047 640.498 370.219 641.047C371.932 641.865 371.845 639.201 370.667 638.642Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1519
+ <path d="M337.449 726.251C335.688 725.491 335.014 728.559 336.499 729.188C338.284 729.92 338.943 726.917 337.449 726.251Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1520
+ <path d="M62.8219 897.153C60.8533 896.371 59.9499 898.935 61.9323 899.696C63.9147 900.456 64.7542 897.945 62.8219 897.153Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1521
+ <path d="M260.224 775.281C258.338 774.475 257.038 777.697 259.028 778.425C261.018 779.152 262.166 776.066 260.224 775.281Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1522
+ <path d="M36.01 790.956C33.9745 790.132 33.0654 793.291 34.9485 794.003C36.8317 794.715 37.8985 791.788 36.01 790.956Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1523
+ <path d="M281.327 586.039C279.423 585.203 278.872 587.755 280.612 588.46C282.555 589.313 283.087 586.732 281.327 586.039Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1524
+ <path d="M307.918 622.126C304.257 621.007 307.298 627.136 308.904 624.094C308.989 623.701 308.938 623.293 308.759 622.935C308.58 622.577 308.283 622.292 307.918 622.126V622.126Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1525
+ <path d="M24.806 698.766C22.9382 697.989 21.6744 701.135 23.5983 701.89C25.5222 702.645 26.6991 699.472 24.806 698.766Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1526
+ <path d="M375.92 711.726C374.339 710.964 373.944 713.968 375.205 714.503C376.778 715.297 377.169 712.241 375.92 711.726Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1527
+ <path d="M153.16 605.106C151.222 604.373 149.797 607.193 151.939 607.964C153.839 608.748 155.341 605.853 153.16 605.106Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1528
+ <path d="M89.768 807.231C89.5619 807.157 89.3429 807.124 89.1233 807.135C88.9038 807.145 88.6881 807.199 88.4885 807.292C88.289 807.385 88.1095 807.516 87.9603 807.678C87.8112 807.84 87.6952 808.029 87.6191 808.235C87.543 808.441 87.5082 808.659 87.5167 808.878C87.5252 809.096 87.577 809.311 87.6689 809.509C87.7608 809.706 87.8911 809.884 88.0523 810.031C88.2136 810.178 88.4027 810.292 88.6088 810.366C90.705 811.22 91.8896 808.015 89.768 807.231Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1529
+ <path d="M47.3876 608.778C38.6416 614.205 36.6448 627.605 41.1593 650.65C45.6738 673.695 55.3087 699.52 71.3664 731.406C86.9952 762.624 105.439 792.347 126.471 820.212C147.894 848.729 166.77 868.874 185.418 883.135C204.066 897.396 216.956 901.573 225.702 896.146" stroke="white" stroke-width="0.7" stroke-miterlimit="10"/>
1530
+ <path d="M-5.95947 522.137C122.369 442.508 290.354 481.023 369.201 608.092C448.049 735.162 407.937 902.815 279.649 982.419" stroke="white" stroke-width="0.7" stroke-miterlimit="10" stroke-linecap="square"/>
1531
+ <path d="M47.688 608.594C79.71 588.724 112.477 580.553 149.974 583.132C187.471 585.711 218.601 598.197 247.257 622.267C275.914 646.336 293.528 674.745 302.362 711.072C311.196 747.4 308.581 780.867 294.233 815.617C279.884 850.366 258.044 876.079 226.002 895.962" stroke="white" stroke-width="0.7" stroke-miterlimit="10" stroke-linecap="square"/>
1532
+ <path d="M442.119 694.066C451.718 706.554 460.041 719.969 466.969 734.114C468.605 734.897 470.143 735.589 471.506 736.377C465.254 723.264 455.36 709.061 442.119 694.066Z" stroke="white" stroke-width="0.25" stroke-miterlimit="10"/>
1533
+ </g>
1534
+ </g>
1535
+ <g opacity="0.4">
1536
+ <path d="M822.531 31.4078C822.98 31.4454 823.436 31.3381 823.839 31.0994C824.243 30.8608 824.578 30.5014 824.801 30.0671C825.023 29.6327 825.124 29.1429 825.09 28.6594C825.057 28.176 824.89 27.7206 824.611 27.3512C824.332 26.9818 823.954 26.715 823.524 26.5843C823.094 26.4537 822.632 26.4653 822.197 26.6174C821.761 26.7696 821.371 27.0556 821.077 27.4393C820.782 27.8229 820.596 28.287 820.542 28.7726C820.47 29.422 820.639 30.0641 821.012 30.5581C821.385 31.052 821.931 31.3575 822.531 31.4078Z" fill="white"/>
1537
+ <path d="M754.341 20.8197C754.77 20.8566 755.206 20.7548 755.592 20.5271C755.979 20.2993 756.299 19.9561 756.512 19.5408C756.725 19.1255 756.822 18.6568 756.789 18.1944C756.757 17.7321 756.597 17.297 756.33 16.9441C756.063 16.5911 755.701 16.3364 755.29 16.2123C754.878 16.0882 754.436 16.1003 754.02 16.2471C753.604 16.3939 753.232 16.6687 752.951 17.0366C752.671 17.4046 752.494 17.8491 752.445 18.3137C752.379 18.9314 752.541 19.5413 752.896 20.0105C753.251 20.4798 753.77 20.7706 754.341 20.8197V20.8197Z" fill="white"/>
1538
+ <path d="M777.841 29.2446C778.192 29.2691 778.544 29.1436 778.822 28.8952C779.1 28.6467 779.281 28.2953 779.326 27.9162C779.358 27.6322 779.311 27.3483 779.191 27.1004C779.072 26.8525 778.885 26.6518 778.654 26.5236C778.424 26.3954 778.16 26.3455 777.896 26.3802C777.632 26.415 777.38 26.5329 777.172 26.7189C776.964 26.9049 776.81 27.1507 776.728 27.4252C776.645 27.6996 776.64 27.9905 776.711 28.2609C776.783 28.5313 776.928 28.769 777.129 28.9441C777.33 29.1192 777.578 29.2238 777.841 29.2446V29.2446Z" fill="white"/>
1539
+ <path d="M785.314 66.9847C785.588 67.0061 785.863 66.9089 786.08 66.7146C786.297 66.5203 786.436 66.2448 786.469 65.9486C786.501 65.6524 786.423 65.3598 786.253 65.1353C786.082 64.9107 785.832 64.7727 785.558 64.7513C785.283 64.7495 785.014 64.8639 784.808 65.07C784.601 65.2761 784.475 65.5574 784.455 65.8536C784.436 66.1301 784.514 66.3996 784.673 66.6089C784.832 66.8182 785.06 66.9523 785.314 66.9847V66.9847Z" fill="white"/>
1540
+ <path d="M735.874 120.916C736.225 120.941 736.578 120.815 736.855 120.567C737.133 120.319 737.314 119.967 737.36 119.588C737.391 119.304 737.344 119.02 737.225 118.772C737.105 118.524 736.918 118.324 736.688 118.196C736.457 118.067 736.193 118.017 735.93 118.052C735.666 118.087 735.414 118.205 735.206 118.391C734.998 118.577 734.843 118.823 734.761 119.097C734.679 119.372 734.673 119.662 734.745 119.933C734.817 120.203 734.962 120.441 735.163 120.616C735.364 120.791 735.611 120.896 735.874 120.916V120.916Z" fill="white"/>
1541
+ <path d="M653.456 90.4535C653.649 90.469 653.844 90.4223 654.018 90.3191C654.191 90.2159 654.334 90.0609 654.43 89.8739C654.525 89.6869 654.568 89.4762 654.553 89.2684C654.538 89.0607 654.465 88.8652 654.345 88.7067C654.225 88.5483 654.062 88.4341 653.877 88.3785C653.692 88.3228 653.494 88.3284 653.306 88.3943C653.119 88.4602 652.952 88.5834 652.826 88.7487C652.699 88.9139 652.62 89.1137 652.597 89.3225C652.57 89.6012 652.644 89.8755 652.804 90.0868C652.965 90.2981 653.199 90.4297 653.456 90.4535V90.4535Z" fill="white"/>
1542
+ <path d="M567.033 130.846C567.382 130.873 567.734 130.75 568.011 130.503C568.289 130.257 568.47 129.907 568.515 129.529C568.548 129.335 568.543 129.138 568.502 128.949C568.462 128.761 568.385 128.585 568.277 128.432C568.169 128.28 568.033 128.154 567.876 128.063C567.719 127.972 567.545 127.917 567.364 127.901C567.184 127.886 567.001 127.911 566.826 127.974C566.651 128.037 566.489 128.138 566.348 128.269C566.208 128.401 566.093 128.56 566.01 128.739C565.927 128.917 565.878 129.11 565.866 129.306C565.843 129.494 565.856 129.684 565.903 129.864C565.95 130.044 566.03 130.211 566.138 130.354C566.247 130.497 566.382 130.614 566.536 130.699C566.689 130.783 566.858 130.833 567.033 130.846V130.846Z" fill="white"/>
1543
+ <path d="M574.675 178.85C575.015 178.857 575.352 178.724 575.615 178.478C575.879 178.231 576.049 177.889 576.091 177.523C576.133 177.156 576.044 176.792 575.842 176.506C575.639 176.22 575.34 176.033 575.004 175.984C574.825 175.958 574.641 175.971 574.464 176.024C574.286 176.077 574.119 176.167 573.973 176.29C573.826 176.414 573.703 176.566 573.611 176.74C573.519 176.913 573.46 177.103 573.437 177.298C573.415 177.494 573.43 177.69 573.48 177.875C573.531 178.061 573.617 178.231 573.733 178.377C573.849 178.522 573.992 178.639 574.154 178.72C574.316 178.801 574.493 178.845 574.675 178.85Z" fill="white"/>
1544
+ <path d="M527.557 211.619C527.898 211.627 528.234 211.494 528.498 211.247C528.761 211 528.931 210.658 528.973 210.292C529.015 209.925 528.926 209.562 528.724 209.275C528.522 208.989 528.222 208.803 527.886 208.753C527.534 208.725 527.179 208.849 526.899 209.097C526.619 209.345 526.436 209.698 526.39 210.078C526.348 210.459 526.447 210.835 526.666 211.123C526.885 211.412 527.205 211.59 527.557 211.619Z" fill="white"/>
1545
+ <path d="M465.369 167.546C465.72 167.571 466.072 167.445 466.35 167.197C466.628 166.948 466.809 166.597 466.854 166.218C466.883 166.025 466.876 165.83 466.832 165.644C466.789 165.458 466.711 165.285 466.602 165.135C466.494 164.986 466.358 164.863 466.201 164.774C466.045 164.685 465.873 164.632 465.694 164.617C465.515 164.603 465.333 164.628 465.16 164.691C464.987 164.754 464.826 164.853 464.687 164.982C464.548 165.112 464.433 165.27 464.349 165.445C464.266 165.621 464.216 165.812 464.202 166.006C464.163 166.385 464.263 166.759 464.482 167.047C464.7 167.335 465.019 167.514 465.369 167.546V167.546Z" fill="white"/>
1546
+ <path d="M762.707 56.2406C763.058 56.2651 763.41 56.1398 763.688 55.8914C763.966 55.643 764.147 55.2914 764.192 54.9123C764.224 54.6283 764.177 54.3445 764.057 54.0966C763.938 53.8487 763.751 53.6479 763.52 53.5197C763.29 53.3916 763.026 53.3417 762.762 53.3765C762.498 53.4113 762.247 53.5291 762.039 53.7151C761.831 53.9011 761.676 54.1468 761.594 54.4213C761.512 54.6957 761.506 54.9866 761.578 55.257C761.649 55.5273 761.794 55.7652 761.995 55.9403C762.196 56.1154 762.444 56.2199 762.707 56.2406V56.2406Z" fill="white"/>
1547
+ <path d="M874.471 74.3888C874.734 74.41 875 74.3465 875.236 74.2063C875.472 74.0662 875.667 73.8555 875.796 73.6012C875.926 73.3469 875.985 73.0603 875.964 72.7776C875.944 72.495 875.846 72.229 875.682 72.0134C875.519 71.7977 875.298 71.642 875.046 71.5661C874.795 71.4902 874.524 71.4974 874.27 71.5868C874.015 71.6763 873.787 71.8438 873.615 72.0684C873.443 72.293 873.335 72.5645 873.304 72.8485C873.265 73.2281 873.365 73.6022 873.584 73.8902C873.802 74.1782 874.121 74.3573 874.471 74.3888V74.3888Z" fill="white"/>
1548
+ <path d="M796.48 92.2035C796.655 92.2189 796.832 92.1968 797.001 92.1381C797.17 92.0795 797.329 91.9855 797.467 91.8619C797.605 91.7383 797.721 91.5874 797.806 91.418C797.892 91.2486 797.946 91.0641 797.965 90.8752C797.997 90.5912 797.95 90.3074 797.831 90.0595C797.711 89.8116 797.524 89.6108 797.294 89.4826C797.063 89.3544 796.799 89.3046 796.536 89.3394C796.272 89.3742 796.02 89.4919 795.812 89.6779C795.604 89.8639 795.449 90.1097 795.367 90.3842C795.285 90.6586 795.279 90.9495 795.351 91.2198C795.422 91.4902 795.568 91.7281 795.769 91.9032C795.97 92.0783 796.217 92.1828 796.48 92.2035V92.2035Z" fill="white"/>
1549
+ <path d="M712.759 93.1226C713.103 93.1348 713.444 93.0029 713.711 92.7546C713.978 92.5062 714.15 92.1606 714.191 91.79C714.232 91.4195 714.139 91.0528 713.932 90.7665C713.724 90.4802 713.418 90.2965 713.077 90.254C712.899 90.2317 712.717 90.2488 712.542 90.304C712.368 90.3591 712.203 90.4513 712.059 90.5749C711.915 90.6986 711.795 90.8511 711.705 91.0235C711.615 91.1958 711.558 91.3845 711.536 91.578C711.515 91.7714 711.53 91.9657 711.58 92.1493C711.631 92.3329 711.715 92.5018 711.83 92.6461C711.944 92.7904 712.085 92.907 712.245 92.9889C712.404 93.0707 712.579 93.1163 712.759 93.1226Z" fill="white"/>
1550
+ <path d="M719.378 41.6233C719.641 41.6445 719.907 41.581 720.143 41.4408C720.379 41.3006 720.574 41.09 720.704 40.8357C720.833 40.5814 720.892 40.2947 720.872 40.0121C720.851 39.7294 720.753 39.4635 720.59 39.2478C720.426 39.0321 720.205 38.8765 719.953 38.8005C719.702 38.7246 719.432 38.7319 719.177 38.8213C718.922 38.9107 718.695 39.0783 718.523 39.3029C718.351 39.5275 718.242 39.7989 718.211 40.0829C718.169 40.4633 718.268 40.8391 718.487 41.1279C718.706 41.4166 719.027 41.5949 719.378 41.6233V41.6233Z" fill="white"/>
1551
+ <path d="M725.744 4.78442C726.007 4.80808 726.274 4.7467 726.511 4.608C726.748 4.4693 726.945 4.25958 727.076 4.00549C727.208 3.7514 727.268 3.46447 727.249 3.18105C727.23 2.89762 727.132 2.63046 726.969 2.41369C726.806 2.19691 726.585 2.04028 726.333 1.96357C726.081 1.88686 725.81 1.89361 725.555 1.98295C725.3 2.07229 725.071 2.24016 724.899 2.46529C724.727 2.69041 724.618 2.96265 724.587 3.24732C724.564 3.43512 724.575 3.62427 724.621 3.80384C724.667 3.98342 724.746 4.14977 724.854 4.29297C724.961 4.43618 725.095 4.55342 725.248 4.63783C725.401 4.72223 725.57 4.77205 725.744 4.78442Z" fill="white"/>
1552
+ <path d="M682.778 25.4435C683.296 25.4844 683.821 25.3584 684.286 25.0812C684.751 24.804 685.136 24.3882 685.391 23.8864C685.647 23.3845 685.762 22.819 685.722 22.2614C685.682 21.7038 685.488 21.1791 685.166 20.7536C684.843 20.3281 684.407 20.0208 683.911 19.8707C683.415 19.7205 682.882 19.7342 682.379 19.91C681.876 20.0857 681.427 20.4157 681.087 20.8582C680.747 21.3007 680.532 21.8359 680.469 22.3962C680.388 23.1481 680.585 23.8906 681.018 24.4615C681.45 25.0324 682.083 25.3854 682.778 25.4435V25.4435Z" fill="white"/>
1553
+ <path d="M648.174 50.9296C648.515 50.9375 648.851 50.8045 649.115 50.5577C649.378 50.311 649.548 49.9694 649.59 49.6028C649.633 49.2363 649.543 48.8726 649.341 48.5865C649.139 48.3004 648.839 48.1136 648.503 48.0643C648.324 48.038 648.14 48.0516 647.963 48.1043C647.786 48.157 647.619 48.2476 647.472 48.3707C647.325 48.4937 647.202 48.6466 647.11 48.8199C647.018 48.9932 646.959 49.1833 646.937 49.3785C646.914 49.5738 646.929 49.7701 646.98 49.9555C647.031 50.1409 647.117 50.3114 647.233 50.4566C647.348 50.6018 647.492 50.7187 647.654 50.8001C647.816 50.8814 647.993 50.9254 648.174 50.9296V50.9296Z" fill="white"/>
1554
+ <path d="M690.863 67.9752C691.215 68.003 691.569 67.8787 691.847 67.6296C692.126 67.3806 692.306 67.0272 692.349 66.6469C692.371 66.4583 692.358 66.2683 692.311 66.0884C692.265 65.9084 692.185 65.7419 692.076 65.5985C691.967 65.4552 691.832 65.3379 691.679 65.2535C691.525 65.169 691.356 65.1191 691.181 65.1066C690.837 65.0944 690.496 65.2264 690.229 65.4748C689.962 65.7231 689.79 66.0686 689.749 66.4392C689.708 66.8097 689.801 67.1765 690.009 67.4628C690.216 67.7491 690.522 67.9327 690.863 67.9752V67.9752Z" fill="white"/>
1555
+ <path d="M619.834 76.5453C620.294 76.5809 620.76 76.4684 621.172 76.2219C621.585 75.9755 621.925 75.6062 622.152 75.1607C622.378 74.7151 622.479 74.2135 622.443 73.7189C622.407 73.2242 622.235 72.7589 621.949 72.3816C621.663 72.0043 621.275 71.7319 620.835 71.599C620.395 71.466 619.922 71.4784 619.476 71.6345C619.03 71.7907 618.632 72.0836 618.33 72.4763C618.029 72.8689 617.838 73.3437 617.782 73.8407C617.745 74.1717 617.769 74.5044 617.852 74.8197C617.935 75.1349 618.076 75.4266 618.267 75.6779C618.457 75.9291 618.694 76.1351 618.963 76.2839C619.232 76.4328 619.528 76.5216 619.834 76.5453Z" fill="white"/>
1556
+ <path d="M566.082 72.2639C566.345 72.2851 566.611 72.2216 566.847 72.0814C567.083 71.9412 567.278 71.7306 567.408 71.4763C567.538 71.222 567.596 70.9355 567.576 70.6528C567.555 70.3702 567.457 70.1041 567.294 69.8884C567.13 69.6727 566.909 69.5171 566.658 69.4411C566.406 69.3652 566.136 69.3725 565.881 69.4619C565.627 69.5513 565.399 69.7189 565.227 69.9435C565.055 70.1681 564.946 70.4397 564.915 70.7237C564.893 70.9123 564.905 71.1021 564.952 71.2821C564.999 71.4621 565.079 71.6286 565.188 71.7719C565.296 71.9153 565.431 72.0325 565.585 72.117C565.739 72.2015 565.908 72.2514 566.082 72.2639V72.2639Z" fill="white"/>
1557
+ <path d="M537.637 98.5834C537.898 98.6069 538.161 98.5179 538.369 98.3361C538.578 98.1542 538.715 97.8941 538.75 97.6125C538.766 97.4717 538.756 97.3303 538.721 97.1961C538.686 97.062 538.626 96.9377 538.545 96.8306C538.464 96.7234 538.364 96.6355 538.25 96.5717C538.136 96.5079 538.01 96.4696 537.88 96.4589C537.75 96.4482 537.618 96.4653 537.491 96.5092C537.365 96.5532 537.247 96.6231 537.143 96.7151C537.04 96.807 536.954 96.9192 536.889 97.0452C536.825 97.1711 536.783 97.3084 536.768 97.4492C536.739 97.7304 536.815 98.007 536.978 98.2194C537.14 98.4317 537.377 98.5625 537.637 98.5834V98.5834Z" fill="white"/>
1558
+ <path d="M672.795 124.239C673.311 124.276 673.829 124.091 674.236 123.724C674.642 123.358 674.905 122.839 674.966 122.282C675.027 121.724 674.881 121.174 674.56 120.751C674.239 120.328 673.768 120.068 673.253 120.027C672.737 119.987 672.218 120.169 671.81 120.535C671.403 120.901 671.139 121.419 671.078 121.977C671.02 122.535 671.168 123.085 671.489 123.509C671.811 123.932 672.28 124.195 672.795 124.239V124.239Z" fill="white"/>
1559
+ <path d="M596.982 93.9918C597.241 94.0103 597.504 93.9455 597.736 93.8054C597.968 93.6654 598.16 93.4564 598.287 93.2047C598.414 92.9529 598.471 92.6697 598.451 92.3906C598.43 92.1115 598.333 91.8489 598.171 91.6359C598.01 91.4229 597.791 91.2689 597.543 91.1933C597.295 91.1177 597.028 91.1239 596.776 91.2111C596.524 91.2982 596.299 91.4625 596.128 91.6832C595.956 91.9039 595.847 92.1712 595.814 92.4516C595.792 92.6402 595.805 92.8301 595.852 93.01C595.898 93.19 595.978 93.3565 596.087 93.4998C596.196 93.6432 596.331 93.7605 596.484 93.8449C596.638 93.9294 596.807 93.9793 596.982 93.9918Z" fill="white"/>
1560
+ <path d="M819.082 62.2444C819.345 62.2656 819.611 62.2021 819.847 62.0619C820.083 61.9217 820.278 61.7111 820.407 61.4568C820.537 61.2025 820.596 60.9158 820.575 60.6332C820.555 60.3505 820.457 60.0846 820.293 59.8689C820.13 59.6532 819.908 59.4976 819.657 59.4216C819.406 59.3457 819.135 59.3528 818.881 59.4422C818.626 59.5316 818.398 59.6993 818.226 59.9239C818.054 60.1485 817.946 60.42 817.915 60.704C817.873 61.0844 817.972 61.4602 818.191 61.749C818.41 62.0377 818.73 62.216 819.082 62.2444V62.2444Z" fill="white"/>
1561
+ <path d="M378.265 375.716C378.548 375.736 378.834 375.66 379.082 375.497C379.391 375.295 379.618 374.972 379.714 374.6C379.81 374.228 379.765 373.837 379.591 373.513C379.417 373.189 379.128 372.958 378.786 372.872C378.444 372.786 378.079 372.852 377.77 373.054C377.511 373.21 377.302 373.449 377.174 373.737C377.046 374.024 377.006 374.344 377.061 374.649C377.115 374.954 377.26 375.227 377.475 375.428C377.689 375.629 377.962 375.747 378.251 375.763L378.265 375.716Z" fill="white"/>
1562
+ <path d="M440.846 340.37C441.127 340.394 441.411 340.321 441.659 340.163C441.967 339.96 442.192 339.637 442.286 339.266C442.38 338.895 442.336 338.506 442.162 338.183C442.061 337.993 441.919 337.834 441.747 337.718C441.574 337.602 441.377 337.533 441.172 337.516C440.891 337.487 440.605 337.56 440.358 337.723C440.204 337.822 440.068 337.954 439.959 338.108C439.851 338.263 439.771 338.439 439.725 338.624C439.673 338.826 439.661 339.036 439.692 339.239C439.723 339.442 439.794 339.634 439.902 339.8C440.01 339.966 440.151 340.104 440.316 340.203C440.481 340.302 440.665 340.36 440.857 340.373L440.846 340.37Z" fill="white"/>
1563
+ <path d="M460.029 402.991C460.312 403.011 460.598 402.935 460.846 402.773C460.999 402.674 461.133 402.545 461.241 402.392C461.349 402.239 461.429 402.067 461.476 401.883C461.57 401.509 461.524 401.117 461.349 400.792C461.249 400.602 461.106 400.442 460.934 400.326C460.762 400.21 460.564 400.141 460.358 400.126C460.075 400.106 459.79 400.182 459.541 400.344C459.388 400.444 459.254 400.574 459.145 400.728C459.037 400.882 458.957 401.056 458.91 401.24C458.864 401.424 458.851 401.615 458.873 401.801C458.895 401.987 458.951 402.165 459.039 402.324C459.139 402.515 459.281 402.675 459.453 402.791C459.626 402.907 459.823 402.975 460.029 402.991Z" fill="white"/>
1564
+ <path d="M424.558 412.654C424.776 412.676 424.999 412.622 425.192 412.499C425.429 412.332 425.605 412.08 425.688 411.79C425.725 411.633 425.73 411.47 425.705 411.313C425.679 411.155 425.623 411.007 425.539 410.878C425.456 410.748 425.347 410.641 425.22 410.562C425.093 410.483 424.951 410.435 424.803 410.42C424.585 410.406 424.367 410.465 424.176 410.59C424.055 410.668 423.949 410.771 423.864 410.893C423.778 411.015 423.716 411.153 423.681 411.298C423.641 411.44 423.629 411.587 423.645 411.731C423.661 411.875 423.705 412.013 423.774 412.135C423.852 412.286 423.965 412.412 424.102 412.502C424.239 412.593 424.395 412.645 424.558 412.654V412.654Z" fill="white"/>
1565
+ <path d="M355.608 424.954C355.889 424.983 356.176 424.911 356.422 424.747C356.731 424.542 356.958 424.219 357.055 423.846C357.149 423.472 357.103 423.08 356.928 422.756C356.824 422.569 356.68 422.412 356.509 422.296C356.337 422.181 356.142 422.11 355.938 422.089C355.655 422.072 355.37 422.148 355.121 422.307C354.811 422.511 354.584 422.835 354.488 423.208C354.437 423.41 354.428 423.619 354.459 423.822C354.49 424.024 354.562 424.214 354.67 424.38C354.777 424.546 354.917 424.684 355.081 424.783C355.245 424.883 355.429 424.942 355.619 424.957L355.608 424.954Z" fill="white"/>
1566
+ <path d="M313.662 328.926C313.985 328.972 314.317 328.885 314.593 328.682C314.87 328.479 315.069 328.175 315.153 327.83C315.204 327.647 315.22 327.455 315.2 327.268C315.18 327.081 315.124 326.902 315.036 326.743C314.956 326.579 314.845 326.436 314.71 326.322C314.575 326.208 314.42 326.124 314.252 326.077C314.085 326.029 313.908 326.019 313.734 326.045C313.559 326.072 313.39 326.135 313.235 326.232C313.08 326.331 312.944 326.461 312.836 326.616C312.727 326.771 312.647 326.947 312.602 327.133C312.55 327.335 312.539 327.545 312.569 327.748C312.6 327.951 312.671 328.142 312.779 328.309C312.887 328.475 313.028 328.613 313.193 328.712C313.358 328.81 313.542 328.868 313.734 328.882L313.662 328.926Z" fill="white"/>
1567
+ <path d="M500.411 346.482C500.688 346.508 500.97 346.434 501.213 346.273C501.368 346.173 501.503 346.042 501.612 345.887C501.721 345.732 501.801 345.557 501.846 345.371C501.895 345.188 501.909 344.997 501.889 344.81C501.87 344.623 501.815 344.445 501.73 344.284C501.649 344.12 501.538 343.977 501.404 343.863C501.269 343.749 501.114 343.665 500.946 343.618C500.778 343.57 500.602 343.56 500.428 343.586C500.253 343.613 500.084 343.676 499.929 343.773C499.662 343.922 499.445 344.161 499.311 344.451C499.177 344.741 499.134 345.066 499.189 345.376C499.244 345.685 499.394 345.962 499.615 346.162C499.836 346.362 500.116 346.475 500.411 346.482V346.482Z" fill="white"/>
1568
+ <path d="M578.741 327.76C578.958 327.78 579.179 327.72 579.367 327.591C579.487 327.514 579.592 327.413 579.677 327.293C579.762 327.174 579.824 327.038 579.859 326.894C579.902 326.737 579.912 326.573 579.889 326.415C579.866 326.256 579.811 326.107 579.728 325.976C579.645 325.846 579.535 325.738 579.407 325.661C579.278 325.583 579.134 325.537 578.985 325.527C578.765 325.506 578.541 325.565 578.348 325.694C578.227 325.768 578.119 325.867 578.032 325.984C577.944 326.102 577.878 326.236 577.838 326.379C577.797 326.521 577.783 326.67 577.796 326.816C577.809 326.962 577.848 327.103 577.913 327.23C577.996 327.387 578.115 327.518 578.26 327.61C578.404 327.703 578.57 327.755 578.741 327.76V327.76Z" fill="white"/>
1569
+ <path d="M523.859 314.244C524.181 314.291 524.514 314.204 524.79 314.001C525.066 313.798 525.266 313.493 525.349 313.149C525.401 312.967 525.417 312.777 525.396 312.592C525.375 312.406 525.319 312.23 525.229 312.073C525.129 311.882 524.987 311.722 524.816 311.604C524.644 311.486 524.448 311.414 524.242 311.394C523.959 311.374 523.674 311.45 523.426 311.613C523.159 311.762 522.941 312.001 522.807 312.291C522.674 312.581 522.631 312.906 522.686 313.216C522.741 313.525 522.891 313.802 523.112 314.002C523.333 314.202 523.613 314.315 523.907 314.322L523.859 314.244Z" fill="white"/>
1570
+ <path d="M500.832 367.622C501.366 367.667 501.905 367.5 502.349 367.152C502.793 366.804 503.111 366.299 503.243 365.732C503.395 365.113 503.321 364.465 503.037 363.924C502.867 363.605 502.628 363.338 502.338 363.144C502.049 362.95 501.717 362.835 501.371 362.809C500.902 362.763 500.425 362.891 500.018 363.171C499.763 363.333 499.539 363.548 499.359 363.802C499.18 364.056 499.048 364.345 498.974 364.65C498.885 364.986 498.864 365.336 498.913 365.675C498.962 366.014 499.08 366.333 499.258 366.612C499.437 366.89 499.671 367.121 499.945 367.287C500.219 367.453 500.527 367.551 500.846 367.574L500.832 367.622Z" fill="white"/>
1571
+ <path d="M464.981 361.364C465.297 361.395 465.618 361.298 465.883 361.093C466.147 360.889 466.337 360.59 466.416 360.253C466.468 360.053 466.479 359.844 466.449 359.642C466.419 359.44 466.348 359.25 466.242 359.084C466.135 358.918 465.995 358.781 465.832 358.681C465.669 358.582 465.486 358.522 465.296 358.508C465.015 358.479 464.729 358.551 464.482 358.714C464.215 358.864 463.998 359.102 463.864 359.392C463.73 359.682 463.687 360.008 463.743 360.317C463.798 360.627 463.947 360.903 464.168 361.104C464.389 361.304 464.669 361.416 464.964 361.424L464.981 361.364Z" fill="white"/>
1572
+ <path d="M416.078 349.31C416.611 349.36 417.152 349.22 417.618 348.911C418.08 348.603 418.448 348.152 418.669 347.62C418.89 347.088 418.954 346.503 418.852 345.946C418.75 345.389 418.486 344.888 418.099 344.514C417.711 344.141 417.219 343.913 416.691 343.862C416.225 343.826 415.753 343.929 415.328 344.162C414.902 344.395 414.539 344.747 414.279 345.18C414.02 345.612 413.874 346.109 413.857 346.614C413.84 347.119 413.954 347.613 414.185 348.04C414.379 348.402 414.651 348.706 414.98 348.926C415.309 349.147 415.685 349.278 416.078 349.31Z" fill="white"/>
1573
+ <path d="M389.061 323.125C389.339 323.15 389.621 323.077 389.864 322.915C390.018 322.816 390.154 322.685 390.263 322.53C390.371 322.375 390.451 322.199 390.497 322.014C390.548 321.832 390.565 321.642 390.544 321.457C390.523 321.272 390.467 321.095 390.377 320.938C390.277 320.748 390.135 320.587 389.964 320.469C389.792 320.352 389.596 320.28 389.39 320.259C389.107 320.239 388.822 320.316 388.573 320.478C388.306 320.627 388.089 320.866 387.955 321.156C387.822 321.446 387.779 321.771 387.834 322.081C387.889 322.39 388.039 322.667 388.26 322.867C388.481 323.067 388.761 323.18 389.055 323.187L389.061 323.125Z" fill="white"/>
1574
+ <path d="M400.748 249.847C401.026 249.873 401.308 249.799 401.551 249.638C401.817 249.488 402.035 249.25 402.169 248.96C402.302 248.67 402.345 248.344 402.29 248.035C402.235 247.725 402.085 247.449 401.864 247.248C401.643 247.048 401.363 246.935 401.069 246.928C400.791 246.903 400.509 246.976 400.266 247.138C400.023 247.3 399.829 247.538 399.713 247.818C399.597 248.098 399.565 248.407 399.62 248.7C399.675 248.993 399.815 249.256 400.021 249.451C400.226 249.646 400.487 249.764 400.765 249.788L400.748 249.847Z" fill="white"/>
1575
+ <path d="M485.988 220.696C486.271 220.716 486.556 220.64 486.804 220.477C487.071 220.328 487.289 220.089 487.423 219.799C487.556 219.509 487.599 219.184 487.544 218.875C487.489 218.565 487.339 218.288 487.118 218.088C486.897 217.888 486.617 217.775 486.323 217.768C486.042 217.744 485.757 217.816 485.509 217.975C485.204 218.184 484.979 218.506 484.876 218.876C484.829 219.059 484.816 219.249 484.839 219.435C484.861 219.62 484.918 219.797 485.007 219.955C485.1 220.156 485.237 220.329 485.408 220.458C485.579 220.587 485.777 220.668 485.988 220.696V220.696Z" fill="white"/>
1576
+ <path d="M535.943 134.419C536.223 134.443 536.508 134.37 536.756 134.212C537.063 134.009 537.289 133.686 537.383 133.315C537.477 132.944 537.432 132.555 537.259 132.232C537.158 132.041 537.016 131.882 536.844 131.766C536.672 131.65 536.474 131.581 536.268 131.565C535.987 131.536 535.701 131.609 535.455 131.772C535.3 131.871 535.165 132.002 535.056 132.157C534.947 132.312 534.868 132.487 534.822 132.673C534.769 132.875 534.758 133.085 534.789 133.288C534.819 133.491 534.891 133.682 534.999 133.849C535.106 134.015 535.248 134.153 535.412 134.252C535.577 134.351 535.762 134.409 535.954 134.422L535.943 134.419Z" fill="white"/>
1577
+ <path d="M503.161 101.864C503.442 101.893 503.728 101.82 503.974 101.657C504.129 101.557 504.264 101.426 504.373 101.272C504.482 101.117 504.561 100.941 504.607 100.756C504.66 100.554 504.671 100.344 504.64 100.141C504.61 99.9378 504.538 99.7464 504.43 99.5799C504.323 99.4134 504.181 99.276 504.016 99.177C503.852 99.0781 503.667 99.0199 503.475 99.0068C503.198 98.9813 502.916 99.0551 502.673 99.2167C502.517 99.3114 502.379 99.4375 502.267 99.5878C502.155 99.7381 502.07 99.9095 502.018 100.092C501.966 100.275 501.948 100.465 501.965 100.652C501.982 100.839 502.033 101.019 502.116 101.181C502.219 101.383 502.369 101.551 502.551 101.67C502.734 101.789 502.943 101.856 503.161 101.864V101.864Z" fill="white"/>
1578
+ <path d="M600.428 40.9919C600.706 41.0175 600.988 40.9438 601.231 40.7822C601.544 40.5868 601.779 40.2695 601.884 39.8994C601.989 39.5294 601.956 39.1363 601.792 38.8056C601.685 38.6207 601.542 38.4652 601.37 38.3499C601.199 38.2347 601.005 38.1625 600.801 38.1387C600.521 38.1229 600.24 38.2004 599.995 38.3605C599.842 38.4579 599.707 38.5869 599.599 38.7397C599.49 38.8926 599.411 39.066 599.366 39.2497C599.317 39.4336 599.303 39.6244 599.323 39.811C599.342 39.9977 599.397 40.1765 599.482 40.3375C599.581 40.5184 599.717 40.6712 599.881 40.7845C600.045 40.8978 600.232 40.9687 600.428 40.9919V40.9919Z" fill="white"/>
1579
+ <path d="M601.958 285.614C602.236 285.64 602.518 285.566 602.761 285.404C602.915 285.305 603.051 285.174 603.16 285.019C603.269 284.864 603.348 284.689 603.394 284.503C603.487 284.132 603.445 283.743 603.278 283.416C603.172 283.231 603.028 283.075 602.857 282.96C602.686 282.845 602.491 282.773 602.287 282.749C602.005 282.735 601.721 282.811 601.471 282.967C601.201 283.117 600.982 283.356 600.847 283.648C600.713 283.94 600.67 284.267 600.727 284.578C600.783 284.89 600.936 285.167 601.16 285.366C601.384 285.566 601.666 285.676 601.963 285.68L601.958 285.614Z" fill="white"/>
1580
+ <path d="M562.496 312.014C562.897 312.053 563.304 311.947 563.655 311.712C564.009 311.485 564.292 311.145 564.463 310.742C564.633 310.34 564.683 309.895 564.605 309.472C564.527 309.049 564.324 308.67 564.027 308.389C563.73 308.109 563.353 307.941 562.952 307.911C562.546 307.884 562.136 307.992 561.778 308.222C561.338 308.511 561.015 308.972 560.88 309.503C560.745 310.034 560.809 310.592 561.058 311.053C561.204 311.329 561.41 311.56 561.66 311.727C561.911 311.894 562.197 311.993 562.496 312.014V312.014Z" fill="white"/>
1581
+ <path d="M414.018 316.977C414.226 316.991 414.436 316.933 414.619 316.813C414.733 316.744 414.834 316.652 414.917 316.541C414.999 316.431 415.061 316.305 415.099 316.171C415.137 316.037 415.151 315.898 415.138 315.761C415.126 315.623 415.088 315.492 415.027 315.373C414.957 315.228 414.854 315.106 414.726 315.018C414.599 314.93 414.451 314.879 414.297 314.87C414.089 314.854 413.878 314.911 413.696 315.034C413.583 315.105 413.483 315.199 413.402 315.311C413.322 315.423 413.263 315.551 413.228 315.686C413.192 315.823 413.181 315.965 413.196 316.104C413.212 316.243 413.253 316.376 413.317 316.496C413.39 316.63 413.491 316.742 413.612 316.826C413.734 316.909 413.872 316.961 414.018 316.977Z" fill="white"/>
1582
+ <path d="M310.927 373.974C311.107 373.992 311.291 373.944 311.449 373.839C311.647 373.707 311.795 373.5 311.86 373.261C311.918 373.022 311.887 372.773 311.774 372.567C311.724 372.461 311.653 372.367 311.567 372.292C311.481 372.217 311.38 372.163 311.272 372.132C311.164 372.101 311.05 372.095 310.937 372.113C310.824 372.132 310.715 372.175 310.617 372.239C310.416 372.363 310.265 372.566 310.198 372.802C310.131 373.039 310.153 373.291 310.259 373.501C310.319 373.639 310.412 373.755 310.529 373.838C310.647 373.921 310.784 373.968 310.927 373.974V373.974Z" fill="white"/>
1583
+ <path d="M365.937 311.795C366.404 311.836 366.877 311.713 367.287 311.445C367.793 311.11 368.164 310.578 368.32 309.967C368.476 309.356 368.403 308.714 368.118 308.181C367.951 307.863 367.713 307.596 367.425 307.402C367.138 307.209 366.808 307.095 366.463 307.069C365.998 307.042 365.53 307.169 365.121 307.434C364.718 307.698 364.396 308.089 364.202 308.551C364.009 309.013 363.953 309.522 364.044 310.006C364.134 310.49 364.366 310.924 364.706 311.245C365.046 311.567 365.477 311.759 365.937 311.795V311.795Z" fill="white"/>
1584
+ <path d="M435.288 256.734C435.569 256.76 435.855 256.688 436.102 256.527C436.41 256.322 436.636 255.998 436.731 255.625C436.826 255.252 436.782 254.86 436.608 254.535C436.505 254.348 436.361 254.191 436.188 254.077C436.016 253.964 435.819 253.896 435.614 253.881C435.333 253.851 435.047 253.924 434.801 254.087C434.493 254.29 434.268 254.613 434.174 254.984C434.08 255.355 434.124 255.745 434.298 256.067C434.398 256.258 434.54 256.418 434.713 256.534C434.885 256.65 435.082 256.718 435.288 256.734Z" fill="white"/>
1585
+ <path d="M451.679 208.585C452.148 208.616 452.62 208.489 453.032 208.222C453.437 207.953 453.758 207.557 453.951 207.091C454.144 206.625 454.199 206.111 454.108 205.624C454.017 205.136 453.784 204.699 453.444 204.373C453.103 204.047 452.671 203.85 452.208 203.808C451.739 203.777 451.267 203.904 450.855 204.17C450.599 204.335 450.375 204.551 450.195 204.808C450.014 205.064 449.883 205.354 449.807 205.661C449.718 205.997 449.697 206.347 449.746 206.686C449.796 207.025 449.913 207.344 450.092 207.623C450.27 207.901 450.504 208.132 450.778 208.298C451.053 208.464 451.36 208.562 451.679 208.585V208.585Z" fill="white"/>
1586
+ <path d="M531.173 182.978C531.653 183.014 532.137 182.865 532.54 182.558C532.942 182.25 533.237 181.804 533.371 181.298C533.513 180.733 533.444 180.14 533.179 179.649C533.013 179.327 532.772 179.061 532.477 178.875C532.182 178.69 531.844 178.592 531.496 178.591C531.148 178.59 530.802 178.686 530.491 178.869C530.179 179.053 529.914 179.318 529.72 179.638C529.525 179.959 529.409 180.324 529.382 180.699C529.355 181.074 529.418 181.446 529.566 181.778C529.713 182.11 529.939 182.392 530.222 182.596C530.506 182.8 530.837 182.919 531.183 182.942L531.173 182.978Z" fill="white"/>
1587
+ <path d="M363.703 348.622C363.986 348.641 364.271 348.565 364.52 348.403C364.832 348.21 365.065 347.894 365.17 347.526C365.274 347.158 365.241 346.767 365.077 346.439C364.996 346.275 364.885 346.132 364.75 346.018C364.616 345.904 364.46 345.82 364.292 345.773C364.125 345.725 363.949 345.715 363.774 345.741C363.6 345.768 363.43 345.831 363.275 345.928C363.121 346.024 362.986 346.153 362.877 346.306C362.769 346.459 362.69 346.633 362.646 346.817C362.552 347.191 362.598 347.583 362.773 347.908C362.862 348.099 362.993 348.263 363.154 348.387C363.316 348.511 363.504 348.592 363.703 348.622V348.622Z" fill="white"/>
1588
+ <g opacity="0.3">
1589
+ <path opacity="0.3" d="M279.892 352.976L297.626 406.439L270.205 416.75L270.456 416.821L302.286 420.702L326.669 494.228L326.572 494.573L326.739 494.273L424.283 487.201L424.285 487.485L424.38 487.151L467.314 441.438L475.074 478.294L475.104 478.187L517.987 428.162L536.695 432.901L556.611 396.316L606.854 373.952L649.963 389.638L687.757 332.934L687.55 333.042L629.452 363.766L575.053 362.271L487.124 420.246L460.849 410.081L456.061 387.33L456.084 387.247L456.03 387.231L421.391 351.036L415.641 296.444L458.552 268.862L471.035 240.152L533.798 225.043L559.169 188.899L592.862 218.238L662.586 178.835L662.61 178.752L662.697 178.777L662.632 178.758L721.253 71.3196L806.42 114.883L840.225 93.7499L894.849 120.239L894.715 120.046L890.183 79.8344L982.999 88.1453L1018.17 49.2339L1094.2 74.2442L1094.01 74.0482L1027.07 4.72769L986.273 17.8315L964.731 -3.19987L946.98 -53.9016L968.424 -107.601L968.325 -107.628L912.862 -94.5539L895.411 -109.048L895.431 -109.119L895.408 -109.036L826.722 -74.7926L826.749 -74.8879L826.726 -74.8045L783.415 -145.22L722.843 -122.119L722.952 -122.088L720.678 -87.5751L702.399 -95.8204L702.369 -95.7133L715.626 -11.8612L608.885 -15.1159L608.774 -15.4304L608.788 -15.0662L572.333 60.2073L614.081 110.639L573.867 167.93L511.621 147.191L511.47 147.058L524.842 193.739L487.635 201.661L471.105 239.695L411.274 253.821L411.198 253.8L411.174 253.883L397.825 307.485L355.318 334.808L354.979 334.712L355.254 334.906L347.39 387.593L280.011 352.804L279.842 352.653L279.892 352.976ZM524.797 193.855L533.69 224.884L487.833 201.794L524.797 193.855ZM511.633 147.439L556.888 186.836L524.888 193.701L511.633 147.439ZM573.707 168.039L561.16 185.913L557.05 186.805L511.807 147.411L573.707 168.039ZM561.044 186.073L559.216 188.693L557.175 186.905L561.044 186.073ZM970.513 51.5691L1018.06 49.2416L983.022 88.023L970.513 51.5691ZM970.478 51.4434L969.156 38.8859L1017.69 49.1244L970.478 51.4434ZM634.118 138.473L614.263 110.703L638.363 110.359L644.115 126.514L634.118 138.473ZM644.172 126.646L662.557 178.274L634.171 138.578L644.172 126.646ZM838.604 38.9903L832.919 -23.3153L881.384 5.96818L838.604 38.9903ZM832.943 -23.3986L832.909 -23.7811L894.884 -44.7991L881.492 5.96042L832.943 -23.3986ZM826.616 -74.5011L832.646 -24.1003L807.679 -39.748L826.616 -74.5011ZM807.62 -39.6232L832.657 -23.93L797.065 -20.2455L807.62 -39.6232ZM796.909 -20.2382L749.081 -15.2897L759.268 -69.9296L807.429 -39.7416L796.909 -20.2382ZM832.594 -23.7933L781.225 8.82533L797.002 -20.1477L832.594 -23.7933ZM781.032 8.92485L746.587 -2.0008L749.052 -15.1437L796.833 -20.0927L781.032 8.92485ZM746.467 -2.03487L715.954 -11.7295L748.932 -15.1389L746.467 -2.03487ZM746.433 -1.91583L738.67 39.351L715.742 -11.6481L746.433 -1.91583ZM738.589 39.4696L694.807 32.354L715.589 -11.5631L738.589 39.4696ZM715.673 -11.8607L759.102 -69.758L748.86 -15.3008L715.673 -11.8607ZM759.416 -69.952L826.447 -74.6522L807.478 -39.8306L759.416 -69.952ZM826.65 -74.6203L859.302 -60.4082L832.768 -23.9885L832.691 -24.0102L826.65 -74.6203ZM859.429 -60.3591L894.739 -44.9946L832.948 -24.0404L859.429 -60.3591ZM859.463 -60.4782L878.25 -86.2563L894.761 -45.1167L859.463 -60.4782ZM878.353 -86.3299L895.112 -90.2738L894.822 -45.3311L878.353 -86.3299ZM894.894 -44.8349L914.828 -10.649L881.529 5.82932L894.894 -44.8349ZM914.892 -10.541L921.894 1.45303L881.794 5.85299L914.892 -10.541ZM921.965 1.5761L940.018 32.5398L881.76 5.97203L921.965 1.5761ZM838.371 38.8984L781.068 8.96109L832.567 -23.7368L832.601 -23.4828L832.699 -23.4549L838.371 38.8984ZM780.798 9.00009L738.671 39.3899L746.44 -1.90082L780.798 9.00009ZM738.407 39.5722L704.195 62.2627L687.399 47.7484L694.636 32.4597L738.407 39.5722ZM687.296 47.6549L663.936 27.4589L694.512 32.4376L687.296 47.6549ZM704.08 62.2943L680.771 61.8851L687.405 47.8919L704.08 62.2943ZM680.608 61.8775L638.754 61.1488L634.471 50.2601L663.737 27.454L687.269 47.7889L680.608 61.8775ZM614.119 110.547L620.74 61.1603L638.23 110.206L614.119 110.547ZM620.92 61.2757L657.769 109.932L638.36 110.204L620.92 61.2757ZM638.646 61.1567L620.933 60.8549L634.393 50.3669L638.646 61.1567ZM680.579 62.0234L657.931 109.862L638.83 61.299L680.579 62.0234ZM657.664 109.555L620.852 60.9346L638.666 61.2525L657.664 109.555ZM657.75 110.042L644.156 126.41L638.432 110.366L657.75 110.042ZM633.938 138.525L601.795 177.007L614.105 110.723L633.938 138.525ZM614.084 109.881L608.777 -14.7349L634.372 50.2322L620.748 60.841L620.628 60.8069L620.727 60.8348L614.084 109.881ZM608.839 -14.9103L663.627 27.3453L634.42 50.1043L608.839 -14.9103ZM608.876 -15.0414L715.418 -11.7529L694.578 32.289L663.741 27.2749L608.876 -15.0414ZM715.587 -12.0138L720.564 -87.3375L759.116 -69.9729L715.587 -12.0138ZM759.309 -70.0724L769.147 -100.897L826.303 -74.7701L759.309 -70.0724ZM826.782 -74.7116L878.148 -86.2722L859.383 -60.5268L826.782 -74.7116ZM878.477 -86.4748L895.289 -108.825L895.171 -90.3987L878.477 -86.4748ZM895.393 -108.693L902.412 -92.1015L895.271 -90.4213L895.393 -108.693ZM902.447 -91.9756L916.934 -57.7137L894.965 -45.0849L895.27 -90.2932L902.447 -91.9756ZM916.984 -57.5967L933.019 -19.6026L914.962 -10.6626L894.99 -44.9234L916.984 -57.5967ZM917.095 -57.6554L940.688 -71.226L933.129 -19.8671L917.095 -57.6554ZM940.742 -71.0435L946.745 -53.9042L933.255 -20.1017L940.742 -71.0435ZM935.703 -0.0340939L922.057 1.46062L915.043 -10.5752L933.061 -19.5006L935.703 -0.0340939ZM935.723 0.100565L940.094 32.3943L922.131 1.57192L935.723 0.100565ZM969.036 38.8519L970.354 51.3824L940.614 32.8503L969.036 38.8519ZM940.506 32.6909L967.483 24.0295L969.07 38.7328L940.506 32.6909ZM970.239 51.414L900.469 56.7911L940.311 32.7517L970.239 51.414ZM900.18 56.812L887.642 57.8104L881.607 6.09587L940.108 32.7198L900.18 56.812ZM887.532 57.7795L870.048 59.1248L881.488 6.30655L887.532 57.7795ZM899.915 56.9556L888.371 63.9734L887.717 57.9604L899.915 56.9556ZM888.273 63.9455L866.096 77.429L870.069 59.2594L887.593 57.8995L888.273 63.9455ZM888.29 64.0919L890.113 79.5829L866.215 77.4242L888.29 64.0919ZM853.942 60.4363L869.894 59.2098L865.942 77.308L853.942 60.4363ZM865.86 77.3878L784.077 65.7736L853.808 60.4111L865.86 77.3878ZM853.849 60.307L838.672 38.9581L881.461 6.06754L869.954 59.1239L853.849 60.307ZM838.265 38.8555L738.857 39.4813L781.002 9.07083L838.265 38.8555ZM738.495 39.6358L721.365 70.9266L704.354 62.2433L738.495 39.6358ZM704.118 62.3693L658.161 109.632L680.716 61.9979L704.118 62.3693ZM662.659 178.161L644.226 126.455L657.896 110.11L662.659 178.161ZM662.62 178.549L601.845 177.163L634.061 138.676L662.62 178.549ZM573.827 168.073L601.438 177.266L561.322 185.881L573.827 168.073ZM573.864 167.942L613.92 110.876L601.592 177.181L573.864 167.942ZM572.314 60.1503L608.63 -14.8408L613.957 110.411L572.314 60.1503ZM720.439 -87.4373L715.493 -12.3491L702.331 -95.6212L720.439 -87.4373ZM722.848 -122.053L769.008 -100.949L759.167 -70.1127L720.572 -87.4897L722.848 -122.053ZM722.955 -122.139L783.106 -145.089L769.057 -101.077L722.955 -122.139ZM826.326 -74.8921L769.126 -101.031L783.179 -145.055L826.326 -74.8921ZM827.02 -74.9271L895.049 -108.854L878.199 -86.451L827.02 -74.9271ZM912.601 -94.5505L902.487 -92.1575L895.416 -108.815L912.601 -94.5505ZM940.544 -71.344L916.983 -57.8029L902.511 -92.0348L912.734 -94.4357L940.544 -71.344ZM912.899 -94.4788L968.058 -107.434L940.716 -71.4496L912.899 -94.4788ZM946.843 -54.0434L940.814 -71.2547L968.015 -107.073L946.843 -54.0434ZM964.566 -3.15669L935.848 -0.00561953L933.205 -19.55L946.836 -53.6852L964.566 -3.15669ZM967.465 23.8442L940.304 32.5695L935.896 0.0335472L964.624 -3.11427L967.465 23.8442ZM986.125 17.8538L967.563 23.8721L964.74 -2.93997L986.125 17.8538ZM1018.04 49.0683L969.182 38.7519L967.631 24.0071L986.255 18.0193L1018.04 49.0683ZM1018.2 49.1147L986.382 18.0297L1027.01 4.98078L1018.2 49.1147ZM1093.85 74.0526L1018.6 49.2919L1018.74 49.3322L1018.3 49.2083L1027.13 5.03867L1093.85 74.0526ZM890.22 79.7033L888.388 64.1198L900.201 56.9854L970.391 51.5858L982.915 88.0698L890.22 79.7033ZM894.784 119.719L866.123 77.6682L890.1 79.8364L894.784 119.719ZM840.576 93.5534L866.022 77.6909L894.721 119.817L840.576 93.5534ZM840.434 93.5132L783.841 66.0668L865.797 77.6528L840.434 93.5132ZM806.62 114.593L738.817 39.6242L838.502 39.1027L853.682 60.4397L783.167 65.8629L783.407 65.931L840.287 93.5743L806.62 114.593ZM721.489 71.1547L738.663 39.7092L806.304 114.503L721.489 71.1547ZM721.306 71.2185L662.764 178.5L657.987 110.122L658.041 110.138L657.987 110.122L704.271 62.4127L721.306 71.2185ZM559.311 188.772L561.264 186.045L601.683 177.4L662.484 178.781L592.936 218.105L559.311 188.772ZM559.138 188.8L533.816 224.855L524.923 193.826L557.009 186.948L559.138 188.8ZM471.193 239.759L487.654 201.885L533.602 224.988L471.193 239.759ZM340.215 425.167L364.326 428.068L326.95 493.78L340.215 425.167ZM424.501 486.684L422.061 424.372L444.72 422.912L424.501 486.684ZM422.051 424.241L420.883 394.502L450.101 405.85L444.725 422.811L422.051 424.241ZM347.406 387.996L364.24 427.748L343.294 409.15L347.406 387.996ZM420.715 394.223L403.575 375.096L421.33 351.084L420.715 394.223ZM403.494 375.009L394.121 364.555L421.185 351.055L403.494 375.009ZM403.46 375.128L364.442 427.869L347.493 387.815L394.02 364.617L403.46 375.128ZM355.37 335.08L385.901 355.483L393.97 364.461L347.525 387.618L355.37 335.08ZM355.654 335.161L388.954 343.176L385.907 355.42L355.654 335.161ZM389.074 343.21L421.092 350.926L386.049 355.461L389.074 343.21ZM421.071 350.997L394.079 364.453L386.086 355.536L421.071 350.997ZM421.507 351.044L456.001 387.081L420.923 394.321L421.507 351.044ZM456.069 387.216L450.217 405.69L421.084 394.418L456.069 387.216ZM421.979 424.246L364.562 427.904L403.519 375.209L420.733 394.408L421.979 424.246ZM340.313 425.028L343.363 409.324L364.287 427.916L340.313 425.028ZM340.193 424.994L302.484 420.462L297.856 406.504L327.629 395.304L343.259 409.191L340.193 424.994ZM327.762 395.251L347.396 387.865L343.289 409.045L327.762 395.251ZM327.642 395.217L280.459 353.304L347.334 387.834L327.642 395.217ZM397.81 307.789L388.995 343.033L355.483 334.932L397.81 307.789ZM415.66 296.128L397.955 307.445L411.197 254.301L415.66 296.128ZM458.638 268.436L411.551 253.926L471.052 239.925L458.638 268.436ZM415.791 295.998L411.375 254.005L458.528 268.534L415.791 295.998ZM421.49 350.769L389.229 342.997L398.081 307.622L415.778 296.251L421.49 350.769ZM460.959 409.778L450.416 405.695L456.238 387.329L460.959 409.778ZM463.426 421.541L445.002 422.748L450.362 405.846L460.991 409.954L463.426 421.541ZM461.122 409.991L487.058 420.022L463.557 421.539L461.122 409.991ZM486.951 420.274L487.159 420.205L467.653 440.993L463.592 421.665L487.003 420.173L486.951 420.274ZM650.266 389.235L629.912 363.6L687.73 333.029L650.266 389.235ZM607.362 373.659L629.786 363.668L649.892 389.18L607.362 373.659ZM607.187 373.61L575.81 362.139L629.529 363.62L607.187 373.61ZM557.052 395.927L575.42 362.183L606.994 373.709L557.052 395.927ZM556.862 396.014L538.744 404.088L487.887 419.884L575.25 362.327L556.862 396.014ZM556.805 396.217L537.104 432.413L538.823 404.226L556.805 396.217ZM518.492 427.92L538.677 404.365L536.956 432.603L518.492 427.92ZM518.35 427.879L487.707 420.103L538.564 404.307L518.35 427.879ZM518.259 427.995L475.378 477.802L487.314 420.197L518.259 427.995ZM467.776 441.183L487.364 420.314L475.463 477.71L467.776 441.183ZM467.645 441.145L424.811 486.798L445.063 422.907L463.553 421.718L467.645 441.145ZM424.612 486.831L364.828 428.005L422.157 424.323L424.612 486.831ZM424.578 486.95L327.154 494.056L364.729 428.105L424.578 486.95ZM302.472 420.588L340.112 425.112L326.767 493.843L302.472 420.588ZM297.672 406.529L302.281 420.43L270.767 416.639L297.672 406.529ZM280.094 353.136L327.45 395.189L297.737 406.381L280.094 353.136Z" fill="white"/>
1590
+ <path opacity="0.3" d="M1026.39 8.22368C1027.01 8.35148 1027.66 8.27459 1028.26 8.00271C1028.86 7.73082 1029.38 7.27622 1029.75 6.69713C1030.12 6.11804 1030.33 5.44066 1030.35 4.75134C1030.37 4.06202 1030.19 3.39208 1029.85 2.82698C1029.51 2.26189 1029.01 1.82727 1028.43 1.57861C1027.84 1.32995 1027.19 1.27849 1026.56 1.43084C1025.93 1.5832 1025.35 1.93245 1024.89 2.434C1024.43 2.93555 1024.11 3.56674 1023.98 4.24688C1023.79 5.14237 1023.95 6.06272 1024.4 6.80761C1024.85 7.5525 1025.56 8.0615 1026.39 8.22368V8.22368Z" fill="white"/>
1591
+ <path opacity="0.3" d="M970.113 53.0633C970.395 53.1143 970.689 53.0735 970.958 52.9458C971.226 52.8181 971.457 52.6092 971.622 52.3457C971.786 52.0821 971.876 51.7756 971.881 51.4648C971.886 51.154 971.805 50.8528 971.649 50.5991C971.493 50.3454 971.268 50.1507 971.004 50.0395C970.739 49.9282 970.446 49.9054 970.162 49.9739C969.877 50.0424 969.614 50.1992 969.406 50.4245C969.198 50.6498 969.053 50.9334 968.991 51.2398C968.909 51.6528 968.982 52.0762 969.192 52.4177C969.402 52.7592 969.733 52.9913 970.113 53.0633V53.0633Z" fill="white"/>
1592
+ <path opacity="0.3" d="M894.467 121.959C894.832 122.027 895.213 121.976 895.561 121.813C895.909 121.649 896.208 121.379 896.422 121.039C896.635 120.698 896.752 120.301 896.758 119.899C896.764 119.497 896.659 119.107 896.456 118.78C896.253 118.452 895.962 118.201 895.618 118.059C895.275 117.917 894.895 117.89 894.528 117.982C894.161 118.073 893.822 118.279 893.554 118.573C893.287 118.867 893.104 119.236 893.027 119.633C892.925 120.161 893.02 120.702 893.289 121.137C893.559 121.572 893.982 121.868 894.467 121.959V121.959Z" fill="white"/>
1593
+ <path opacity="0.3" d="M783.129 67.37C783.305 67.4039 783.488 67.3995 783.666 67.357C783.844 67.3146 784.014 67.235 784.167 67.1228C784.319 67.0105 784.451 66.8679 784.554 66.7031C784.657 66.5383 784.73 66.3548 784.768 66.1628C784.807 65.9709 784.81 65.7744 784.777 65.5848C784.745 65.3951 784.678 65.2158 784.58 65.0572C784.482 64.8986 784.355 64.7639 784.206 64.6606C784.058 64.5573 783.89 64.4873 783.714 64.4549C783.537 64.4225 783.354 64.4284 783.177 64.4719C782.999 64.5154 782.829 64.5959 782.677 64.7087C782.525 64.8215 782.394 64.9645 782.291 65.1294C782.188 65.2943 782.116 65.4779 782.078 65.6698C782.038 65.8611 782.034 66.0572 782.066 66.2467C782.097 66.4362 782.164 66.6153 782.262 66.7735C782.36 66.9318 782.487 67.066 782.636 67.1685C782.784 67.2709 782.952 67.3393 783.129 67.37Z" fill="white"/>
1594
+ <path opacity="0.3" d="M657.536 112.001C657.9 112.068 658.28 112.015 658.626 111.85C658.973 111.685 659.271 111.416 659.483 111.075C659.695 110.735 659.811 110.339 659.816 109.938C659.822 109.537 659.717 109.148 659.515 108.822C659.313 108.495 659.022 108.244 658.68 108.102C658.338 107.959 657.96 107.931 657.593 108.021C657.226 108.111 656.888 108.315 656.62 108.607C656.352 108.898 656.167 109.266 656.088 109.661C656.036 109.924 656.032 110.194 656.076 110.454C656.121 110.714 656.213 110.96 656.347 111.177C656.482 111.394 656.656 111.579 656.86 111.721C657.064 111.862 657.294 111.957 657.536 112.001V112.001Z" fill="white"/>
1595
+ <path opacity="0.3" d="M662.336 180.67C662.81 180.721 663.292 180.576 663.685 180.263C664.078 179.95 664.353 179.494 664.453 178.986C664.554 178.477 664.473 177.956 664.227 177.527C663.98 177.098 663.587 176.793 663.127 176.674C662.879 176.61 662.619 176.602 662.363 176.651C662.107 176.7 661.861 176.805 661.64 176.959C661.418 177.112 661.227 177.312 661.076 177.545C660.926 177.778 660.821 178.04 660.767 178.314C660.712 178.588 660.71 178.869 660.761 179.138C660.812 179.408 660.914 179.661 661.061 179.882C661.208 180.103 661.397 180.286 661.617 180.422C661.836 180.557 662.081 180.642 662.336 180.67V180.67Z" fill="white"/>
1596
+ <path opacity="0.3" d="M592.538 220.128C592.903 220.197 593.283 220.147 593.631 219.983C593.979 219.82 594.278 219.552 594.492 219.212C594.705 218.872 594.823 218.476 594.83 218.074C594.837 217.673 594.733 217.283 594.532 216.955C594.33 216.627 594.04 216.375 593.697 216.232C593.355 216.089 592.976 216.06 592.609 216.149C592.242 216.239 591.902 216.443 591.634 216.735C591.366 217.027 591.18 217.395 591.102 217.791C590.997 218.32 591.089 218.863 591.358 219.301C591.627 219.739 592.052 220.037 592.538 220.128V220.128Z" fill="white"/>
1597
+ <path opacity="0.3" d="M511.109 149.246C511.473 149.314 511.854 149.264 512.201 149.101C512.549 148.938 512.849 148.669 513.062 148.329C513.275 147.989 513.393 147.593 513.4 147.192C513.407 146.79 513.304 146.4 513.102 146.072C512.9 145.744 512.61 145.493 512.268 145.349C511.925 145.206 511.547 145.177 511.179 145.267C510.812 145.356 510.473 145.56 510.204 145.852C509.936 146.145 509.751 146.512 509.672 146.908C509.567 147.438 509.659 147.981 509.928 148.419C510.198 148.857 510.622 149.154 511.109 149.246V149.246Z" fill="white"/>
1598
+ <path opacity="0.3" d="M939.84 34.7026C940.205 34.7712 940.585 34.7207 940.933 34.5576C941.28 34.3944 941.58 34.126 941.793 33.7861C942.007 33.4463 942.125 33.0503 942.132 32.6486C942.139 32.2468 942.035 31.8573 941.833 31.5293C941.632 31.2013 941.341 30.9497 940.999 30.8062C940.657 30.6628 940.278 30.634 939.911 30.7235C939.543 30.8131 939.204 31.0169 938.936 31.3092C938.667 31.6015 938.482 31.9692 938.403 32.3655C938.298 32.8947 938.391 33.4376 938.66 33.8755C938.929 34.3135 939.353 34.6109 939.84 34.7026Z" fill="white"/>
1599
+ <path opacity="0.3" d="M1093.66 76.1224C1094.02 76.191 1094.4 76.1407 1094.75 75.9775C1095.1 75.8144 1095.4 75.5458 1095.61 75.2059C1095.83 74.8661 1095.94 74.4703 1095.95 74.0685C1095.96 73.6668 1095.85 73.2772 1095.65 72.9492C1095.45 72.6212 1095.16 72.3696 1094.82 72.2262C1094.48 72.0827 1094.1 72.0539 1093.73 72.1435C1093.36 72.233 1093.02 72.4368 1092.76 72.7291C1092.49 73.0214 1092.3 73.389 1092.22 73.7853C1092.17 74.0477 1092.16 74.317 1092.2 74.5773C1092.25 74.8376 1092.34 75.0839 1092.47 75.3015C1092.6 75.5191 1092.78 75.7038 1092.98 75.8448C1093.19 75.9857 1093.42 76.08 1093.66 76.1224V76.1224Z" fill="white"/>
1600
+ <path opacity="0.3" d="M982.586 90.1379C982.951 90.2091 983.332 90.1609 983.681 89.9995C984.03 89.838 984.331 89.5706 984.546 89.2312C984.761 88.8918 984.881 88.4959 984.889 88.0935C984.897 87.6912 984.795 87.3006 984.594 86.9715C984.393 86.6424 984.102 86.3896 983.76 86.2453C983.417 86.1009 983.038 86.0714 982.67 86.1606C982.302 86.2499 981.962 86.4538 981.693 86.7464C981.425 87.039 981.239 87.4071 981.161 87.804C981.056 88.3309 981.147 88.8716 981.414 89.3085C981.681 89.7455 982.102 90.0435 982.586 90.1379V90.1379Z" fill="white"/>
1601
+ <path opacity="0.3" d="M865.582 79.5745C865.944 79.6401 866.321 79.5875 866.666 79.4235C867.01 79.2595 867.306 78.9913 867.516 78.653C867.727 78.3146 867.842 77.9212 867.847 77.5225C867.853 77.1238 867.749 76.7376 867.547 76.4128C867.346 76.088 867.057 75.8393 866.717 75.6978C866.377 75.5564 866.001 75.5286 865.637 75.6181C865.272 75.7077 864.936 75.9105 864.669 76.2008C864.403 76.4911 864.22 76.856 864.142 77.2494C864.09 77.511 864.086 77.7786 864.13 78.0371C864.174 78.2956 864.266 78.5397 864.4 78.7557C864.534 78.9717 864.707 79.1552 864.91 79.2957C865.112 79.4362 865.341 79.5309 865.582 79.5745V79.5745Z" fill="white"/>
1602
+ <path opacity="0.3" d="M881.077 7.96436C881.441 8.03053 881.821 7.978 882.167 7.81317C882.514 7.64834 882.812 7.37873 883.024 7.03842C883.235 6.69812 883.352 6.30229 883.357 5.90113C883.363 5.49997 883.258 5.11148 883.056 4.78459C882.854 4.4577 882.563 4.20718 882.221 4.06466C881.879 3.92215 881.501 3.89404 881.134 3.9839C880.767 4.07377 880.429 4.27757 880.161 4.56954C879.893 4.86152 879.708 5.22847 879.629 5.62421C879.577 5.88734 879.573 6.15672 879.617 6.4168C879.662 6.67689 879.754 6.92263 879.888 7.13998C880.023 7.35734 880.197 7.54198 880.401 7.68344C880.605 7.82491 880.835 7.92037 881.077 7.96436V7.96436Z" fill="white"/>
1603
+ <path opacity="0.3" d="M780.599 10.9896C780.964 11.0583 781.344 11.008 781.692 10.8448C782.04 10.6817 782.339 10.4131 782.553 10.0732C782.766 9.73338 782.884 9.33758 782.891 8.93582C782.898 8.53405 782.794 8.14449 782.593 7.8165C782.391 7.4885 782.101 7.23686 781.758 7.09342C781.416 6.94998 781.037 6.92118 780.67 7.01073C780.303 7.10028 779.963 7.30407 779.695 7.59637C779.427 7.88867 779.241 8.25625 779.163 8.65258C779.058 9.18179 779.15 9.7248 779.419 10.1628C779.688 10.6007 780.113 10.898 780.599 10.9896V10.9896Z" fill="white"/>
1604
+ <path opacity="0.3" d="M838.118 41.0386C838.482 41.1048 838.861 41.0521 839.208 40.8873C839.554 40.7224 839.852 40.4528 840.064 40.1125C840.276 39.7722 840.392 39.3765 840.398 38.9753C840.404 38.5742 840.299 38.1855 840.097 37.8586C839.895 37.5318 839.604 37.2812 839.262 37.1387C838.92 36.9962 838.542 36.9681 838.175 37.0579C837.808 37.1478 837.469 37.3516 837.201 37.6436C836.934 37.9356 836.749 38.3027 836.67 38.6984C836.617 38.9615 836.613 39.2309 836.658 39.491C836.702 39.7511 836.794 39.9967 836.929 40.2141C837.063 40.4314 837.237 40.6162 837.441 40.7577C837.645 40.8992 837.875 40.9946 838.118 41.0386Z" fill="white"/>
1605
+ <path opacity="0.3" d="M737.949 43.057C738.587 43.1743 739.252 43.0833 739.86 42.7956C740.467 42.508 740.99 42.0365 741.362 41.4409C741.734 40.8453 741.938 40.1523 741.949 39.4495C741.96 38.7467 741.778 38.0656 741.424 37.4923C741.071 36.9191 740.562 36.4796 739.963 36.2291C739.364 35.9786 738.701 35.9286 738.059 36.0853C737.416 36.242 736.823 36.5984 736.353 37.1095C735.883 37.6205 735.559 38.2634 735.42 38.9566C735.328 39.4171 735.32 39.8884 735.398 40.3438C735.475 40.7991 735.636 41.2295 735.871 41.6102C736.106 41.991 736.41 42.3147 736.767 42.563C737.123 42.8112 737.525 42.9792 737.949 43.057V43.057Z" fill="white"/>
1606
+ <path opacity="0.3" d="M663.37 29.3705C663.735 29.4392 664.115 29.3888 664.463 29.2257C664.811 29.0625 665.11 28.7939 665.324 28.4541C665.537 28.1142 665.655 27.7184 665.662 27.3167C665.669 26.9149 665.565 26.5253 665.364 26.1974C665.162 25.8694 664.872 25.6177 664.529 25.4743C664.187 25.3308 663.808 25.302 663.441 25.3916C663.074 25.4811 662.734 25.6849 662.466 25.9772C662.198 26.2695 662.012 26.6371 661.934 27.0334C661.829 27.5626 661.921 28.1057 662.19 28.5436C662.459 28.9816 662.884 29.2788 663.37 29.3705V29.3705Z" fill="white"/>
1607
+ <path opacity="0.3" d="M620.449 62.3905C620.63 62.4255 620.816 62.4211 620.998 62.3777C621.181 62.3343 621.354 62.2527 621.51 62.1376C621.666 62.0225 621.8 61.8762 621.905 61.7073C622.01 61.5383 622.083 61.3502 622.121 61.1537C622.18 60.8586 622.158 60.5553 622.056 60.2819C621.954 60.0086 621.778 59.7776 621.55 59.6181C621.322 59.4587 621.051 59.3778 620.773 59.386C620.495 59.3942 620.222 59.491 619.988 59.6641C619.754 59.8372 619.57 60.0788 619.459 60.3584C619.348 60.6381 619.315 60.943 619.365 61.2349C619.414 61.5268 619.543 61.7923 619.736 61.998C619.93 62.2037 620.178 62.3403 620.449 62.3905Z" fill="white"/>
1608
+ <path opacity="0.3" d="M806.017 117.637C806.549 117.735 807.104 117.659 807.61 117.419C808.117 117.179 808.553 116.785 808.863 116.288C809.173 115.791 809.343 115.213 809.352 114.627C809.361 114.041 809.209 113.473 808.913 112.995C808.618 112.517 808.194 112.151 807.694 111.942C807.194 111.734 806.641 111.693 806.105 111.824C805.569 111.955 805.074 112.253 804.683 112.68C804.292 113.106 804.022 113.643 803.907 114.221C803.829 114.605 803.822 114.999 803.886 115.379C803.95 115.758 804.084 116.118 804.28 116.435C804.476 116.753 804.731 117.022 805.029 117.229C805.327 117.435 805.663 117.574 806.017 117.637V117.637Z" fill="white"/>
1609
+ <path opacity="0.3" d="M703.86 64.3567C704.223 64.4223 704.6 64.3697 704.944 64.2057C705.288 64.0417 705.584 63.7735 705.795 63.4352C706.005 63.0968 706.12 62.7034 706.126 62.3047C706.131 61.906 706.027 61.5199 705.826 61.1951C705.625 60.8703 705.336 60.6214 704.996 60.48C704.656 60.3385 704.28 60.3109 703.915 60.4004C703.551 60.4899 703.214 60.6926 702.948 60.9829C702.682 61.2733 702.498 61.6382 702.42 62.0316C702.318 62.5594 702.412 63.0997 702.682 63.5351C702.952 63.9704 703.375 64.2657 703.86 64.3567V64.3567Z" fill="white"/>
1610
+ <path opacity="0.3" d="M1017.81 51.1635C1018.17 51.2321 1018.55 51.1817 1018.9 51.0185C1019.25 50.8554 1019.55 50.5869 1019.76 50.2471C1019.97 49.9073 1020.09 49.5113 1020.1 49.1096C1020.11 48.7078 1020 48.3182 1019.8 47.9902C1019.6 47.6622 1019.31 47.4106 1018.97 47.2672C1018.62 47.1237 1018.24 47.0949 1017.88 47.1845C1017.51 47.274 1017.17 47.4779 1016.9 47.7702C1016.63 48.0625 1016.45 48.4301 1016.37 48.8264C1016.27 49.3556 1016.36 49.8985 1016.63 50.3365C1016.9 50.7744 1017.32 51.0718 1017.81 51.1635V51.1635Z" fill="white"/>
1611
+ <path opacity="0.3" d="M364.028 429.991C364.467 430.071 364.925 429.978 365.32 429.729C365.715 429.48 366.021 429.092 366.182 428.634C366.359 428.126 366.346 427.573 366.147 427.093C366.027 426.807 365.843 426.559 365.611 426.37C365.38 426.181 365.107 426.057 364.816 426.008C364.428 425.927 364.021 425.988 363.658 426.181C363.203 426.426 362.848 426.849 362.67 427.36C362.492 427.871 362.506 428.427 362.707 428.909C362.826 429.194 363.007 429.442 363.237 429.63C363.467 429.818 363.739 429.942 364.028 429.991V429.991Z" fill="white"/>
1612
+ <path opacity="0.3" d="M455.706 389.12C456.179 389.171 456.662 389.026 457.055 388.713C457.448 388.401 457.723 387.944 457.823 387.436C457.924 386.928 457.843 386.407 457.596 385.977C457.35 385.548 456.957 385.243 456.497 385.125C456.107 385.054 455.701 385.119 455.336 385.31C454.885 385.559 454.53 385.977 454.343 386.482C454.17 386.993 454.186 387.547 454.389 388.026C454.508 388.311 454.689 388.559 454.918 388.749C455.147 388.94 455.417 389.067 455.706 389.12V389.12Z" fill="white"/>
1613
+ <path opacity="0.3" d="M474.833 480.015C475.173 480.075 475.526 480.033 475.854 479.892C476.181 479.75 476.47 479.516 476.689 479.215C476.907 478.913 477.047 478.556 477.092 478.183C477.137 477.811 477.086 477.436 476.944 477.102C476.824 476.818 476.641 476.573 476.412 476.384C476.182 476.196 475.912 476.072 475.624 476.02C475.185 475.94 474.727 476.033 474.332 476.282C473.937 476.531 473.631 476.919 473.469 477.377C473.381 477.629 473.339 477.896 473.347 478.161C473.355 478.426 473.412 478.685 473.515 478.921C473.634 479.206 473.816 479.454 474.045 479.644C474.274 479.835 474.544 479.961 474.833 480.015V480.015Z" fill="white"/>
1614
+ <path opacity="0.3" d="M424.14 488.537C424.443 488.598 424.76 488.547 425.042 488.394C425.22 488.304 425.38 488.177 425.514 488.02C425.648 487.864 425.751 487.681 425.819 487.483C425.893 487.267 425.924 487.039 425.909 486.814C425.894 486.589 425.835 486.372 425.735 486.177C425.634 485.983 425.496 485.816 425.328 485.688C425.16 485.56 424.967 485.473 424.761 485.433C424.459 485.373 424.142 485.423 423.86 485.576C423.682 485.668 423.522 485.795 423.389 485.952C423.255 486.108 423.151 486.291 423.082 486.488C423.008 486.704 422.978 486.932 422.992 487.157C423.007 487.382 423.067 487.599 423.167 487.793C423.267 487.988 423.406 488.154 423.574 488.283C423.742 488.411 423.935 488.498 424.14 488.537V488.537Z" fill="white"/>
1615
+ <path opacity="0.3" d="M326.367 496.123C326.806 496.202 327.264 496.11 327.659 495.861C328.054 495.612 328.36 495.224 328.521 494.766C328.61 494.513 328.652 494.247 328.644 493.981C328.636 493.716 328.579 493.458 328.476 493.222C328.359 492.934 328.178 492.685 327.949 492.495C327.72 492.304 327.448 492.178 327.158 492.128C326.719 492.048 326.261 492.141 325.867 492.39C325.472 492.638 325.166 493.027 325.004 493.485C324.915 493.737 324.874 494.004 324.882 494.269C324.89 494.534 324.947 494.793 325.05 495.029C325.166 495.316 325.347 495.565 325.577 495.756C325.806 495.946 326.077 496.072 326.367 496.123Z" fill="white"/>
1616
+ <path opacity="0.3" d="M279.565 354.916C279.904 354.976 280.256 354.935 280.583 354.795C280.909 354.655 281.198 354.422 281.417 354.123C281.636 353.824 281.777 353.469 281.824 353.097C281.871 352.726 281.823 352.353 281.684 352.018C281.563 351.732 281.38 351.483 281.149 351.293C280.918 351.102 280.647 350.975 280.356 350.921C279.966 350.852 279.56 350.917 279.195 351.106C278.968 351.223 278.765 351.388 278.596 351.59C278.427 351.792 278.297 352.027 278.213 352.281C278.122 352.534 278.078 352.801 278.084 353.068C278.089 353.335 278.144 353.595 278.244 353.834C278.363 354.119 278.544 354.366 278.774 354.555C279.004 354.743 279.276 354.867 279.565 354.916Z" fill="white"/>
1617
+ <path opacity="0.3" d="M538.149 406.185C538.587 406.265 539.045 406.172 539.44 405.923C539.835 405.674 540.141 405.286 540.303 404.828C540.4 404.55 540.44 404.256 540.422 403.965C540.404 403.674 540.328 403.394 540.199 403.144C540.069 402.893 539.89 402.678 539.672 402.514C539.455 402.349 539.205 402.239 538.939 402.19C538.549 402.121 538.144 402.186 537.778 402.375C537.417 402.568 537.117 402.876 536.92 403.255C536.722 403.634 536.638 404.065 536.679 404.487C536.72 404.908 536.884 405.299 537.148 405.604C537.412 405.909 537.762 406.112 538.149 406.185V406.185Z" fill="white"/>
1618
+ <path opacity="0.3" d="M649.809 390.931C650.114 390.992 650.435 390.943 650.721 390.791C651.075 390.602 651.35 390.273 651.488 389.877C651.625 389.48 651.616 389.049 651.463 388.673C651.369 388.451 651.226 388.259 651.047 388.112C650.867 387.965 650.655 387.867 650.43 387.827C650.127 387.767 649.81 387.817 649.528 387.97C649.352 388.063 649.194 388.191 649.062 388.348C648.93 388.505 648.828 388.688 648.761 388.885C648.688 389.08 648.653 389.288 648.657 389.495C648.661 389.702 648.705 389.904 648.786 390.088C648.877 390.31 649.018 390.502 649.196 390.649C649.374 390.796 649.584 390.893 649.809 390.931V390.931Z" fill="white"/>
1619
+ <path opacity="0.3" d="M574.849 364.117C575.287 364.197 575.745 364.104 576.14 363.855C576.535 363.606 576.841 363.218 577.003 362.76C577.094 362.508 577.137 362.241 577.129 361.975C577.121 361.71 577.063 361.451 576.957 361.216C576.838 360.93 576.656 360.682 576.428 360.492C576.199 360.302 575.928 360.175 575.639 360.122C575.247 360.049 574.838 360.118 574.475 360.319C574.112 360.509 573.809 360.816 573.611 361.195C573.412 361.574 573.327 362.006 573.369 362.428C573.41 362.85 573.576 363.241 573.842 363.545C574.108 363.848 574.46 364.049 574.849 364.117Z" fill="white"/>
1620
+ <path opacity="0.3" d="M536.123 435.995C536.773 436.114 537.45 436.009 538.06 435.695C538.814 435.29 539.403 434.588 539.699 433.742C539.862 433.278 539.931 432.785 539.901 432.299C539.87 431.813 539.741 431.344 539.523 430.926C539.305 430.508 539.003 430.151 538.637 429.878C538.272 429.605 537.852 429.425 537.407 429.348C536.677 429.219 535.915 429.375 535.26 429.79C534.604 430.205 534.096 430.852 533.827 431.613C533.666 432.077 533.599 432.569 533.631 433.053C533.662 433.538 533.792 434.005 534.01 434.422C534.228 434.839 534.53 435.195 534.895 435.467C535.26 435.738 535.679 435.919 536.123 435.995V435.995Z" fill="white"/>
1621
+ <path opacity="0.3" d="M486.832 422.106C487.271 422.185 487.729 422.092 488.124 421.844C488.519 421.595 488.824 421.206 488.986 420.748C489.077 420.495 489.121 420.226 489.114 419.958C489.106 419.691 489.048 419.43 488.944 419.193C488.824 418.908 488.641 418.662 488.412 418.474C488.182 418.286 487.912 418.161 487.623 418.11C487.149 418.059 486.667 418.204 486.274 418.517C485.881 418.83 485.606 419.286 485.506 419.794C485.405 420.302 485.486 420.824 485.733 421.253C485.979 421.682 486.372 421.987 486.832 422.106Z" fill="white"/>
1622
+ <path opacity="0.3" d="M420.039 398.187C420.685 398.305 421.356 398.226 421.98 397.96C422.603 397.693 423.153 397.25 423.569 396.678C423.985 396.105 424.251 395.428 424.338 394.719C424.424 394.011 424.328 393.299 424.059 392.663C423.824 392.129 423.472 391.668 423.031 391.32C422.591 390.971 422.074 390.744 421.525 390.658C420.88 390.541 420.208 390.619 419.585 390.886C418.962 391.152 418.412 391.596 417.995 392.168C417.579 392.74 417.313 393.418 417.226 394.126C417.14 394.835 417.237 395.547 417.506 396.182C417.742 396.715 418.094 397.175 418.535 397.523C418.975 397.872 419.491 398.099 420.039 398.187V398.187Z" fill="white"/>
1623
+ <path opacity="0.3" d="M385.533 357.49C385.923 357.56 386.329 357.495 386.694 357.304C386.92 357.187 387.124 357.022 387.293 356.82C387.462 356.618 387.592 356.383 387.676 356.129C387.766 355.878 387.809 355.613 387.803 355.348C387.797 355.084 387.742 354.825 387.641 354.589C387.522 354.303 387.341 354.055 387.112 353.865C386.883 353.675 386.613 353.548 386.324 353.495C385.934 353.421 385.527 353.486 385.162 353.68C384.802 353.873 384.501 354.181 384.304 354.56C384.107 354.939 384.023 355.37 384.064 355.791C384.105 356.213 384.269 356.604 384.532 356.909C384.796 357.214 385.146 357.417 385.533 357.49V357.49Z" fill="white"/>
1624
+ <path opacity="0.3" d="M410.807 255.966C411.199 256.038 411.608 255.969 411.971 255.769C412.373 255.55 412.696 255.188 412.883 254.747C413.069 254.306 413.106 253.815 412.987 253.363C412.869 252.91 412.602 252.525 412.235 252.276C411.868 252.028 411.426 251.932 410.986 252.007C410.546 252.081 410.138 252.321 409.835 252.683C409.532 253.045 409.354 253.505 409.332 253.981C409.311 254.458 409.447 254.919 409.717 255.283C409.988 255.647 410.374 255.889 410.807 255.966V255.966Z" fill="white"/>
1625
+ <path opacity="0.3" d="M533.397 227C533.87 227.051 534.352 226.906 534.745 226.593C535.138 226.281 535.413 225.824 535.514 225.316C535.614 224.808 535.533 224.286 535.287 223.857C535.041 223.428 534.648 223.123 534.188 223.005C533.798 222.934 533.391 222.999 533.026 223.19C532.8 223.307 532.596 223.472 532.427 223.674C532.259 223.876 532.128 224.111 532.044 224.365C531.954 224.618 531.91 224.885 531.915 225.152C531.921 225.419 531.975 225.679 532.076 225.918C532.194 226.203 532.376 226.45 532.606 226.639C532.836 226.827 533.107 226.951 533.397 227V227Z" fill="white"/>
1626
+ <path opacity="0.3" d="M613.684 112.624C614.073 112.702 614.482 112.637 614.845 112.438C615.071 112.319 615.274 112.155 615.444 111.954C615.614 111.753 615.746 111.519 615.834 111.267C615.922 111.015 615.964 110.748 615.957 110.483C615.949 110.218 615.893 109.96 615.792 109.723C615.674 109.437 615.493 109.189 615.263 109C615.033 108.812 614.761 108.688 614.471 108.64C614.081 108.57 613.675 108.635 613.31 108.826C613.085 108.945 612.882 109.111 612.714 109.313C612.545 109.514 612.414 109.748 612.328 110.001C612.23 110.277 612.187 110.57 612.204 110.86C612.221 111.15 612.297 111.429 612.426 111.679C612.555 111.929 612.734 112.143 612.952 112.306C613.169 112.469 613.419 112.577 613.684 112.624V112.624Z" fill="white"/>
1627
+ <path opacity="0.3" d="M571.902 62.1831C572.292 62.2535 572.698 62.1887 573.063 61.9978C573.289 61.8793 573.492 61.7141 573.661 61.5122C573.829 61.3103 573.96 61.0758 574.045 60.8226C574.136 60.5697 574.18 60.3022 574.174 60.0357C574.169 59.7692 574.114 59.509 574.014 59.27C573.895 58.9846 573.714 58.7372 573.484 58.5488C573.254 58.3605 572.983 58.2366 572.693 58.1878C572.303 58.1148 571.896 58.1798 571.532 58.3731C571.171 58.5662 570.87 58.8742 570.673 59.2532C570.476 59.6323 570.392 60.0631 570.433 60.4847C570.474 60.9063 570.638 61.2974 570.901 61.6022C571.165 61.9071 571.515 62.1103 571.902 62.1831V62.1831Z" fill="white"/>
1628
+ <path opacity="0.3" d="M687.337 334.873C687.676 334.936 688.03 334.896 688.357 334.756C688.685 334.616 688.974 334.383 689.193 334.082C689.412 333.781 689.551 333.425 689.596 333.052C689.64 332.68 689.588 332.306 689.445 331.972C689.327 331.687 689.145 331.439 688.915 331.251C688.686 331.063 688.414 330.939 688.125 330.89C687.735 330.813 687.327 330.879 686.963 331.075C686.737 331.198 686.533 331.367 686.364 331.572C686.195 331.778 686.064 332.015 685.979 332.272C685.895 332.528 685.858 332.798 685.87 333.065C685.883 333.332 685.945 333.591 686.053 333.827C686.172 334.101 686.351 334.338 686.573 334.52C686.796 334.701 687.058 334.822 687.337 334.873V334.873Z" fill="white"/>
1629
+ <path opacity="0.3" d="M629.05 366.471C629.608 366.566 630.188 366.47 630.708 366.195C631.033 366.03 631.326 365.796 631.57 365.51C631.813 365.223 632.002 364.888 632.125 364.526C632.254 364.164 632.316 363.782 632.306 363.402C632.297 363.021 632.216 362.65 632.069 362.31C631.897 361.897 631.634 361.539 631.301 361.265C630.968 360.992 630.576 360.811 630.156 360.738C629.595 360.642 629.011 360.737 628.487 361.011C627.97 361.287 627.54 361.728 627.258 362.27C626.975 362.812 626.855 363.429 626.914 364.032C626.972 364.636 627.207 365.195 627.585 365.631C627.962 366.067 628.463 366.358 629.017 366.461L629.05 366.471Z" fill="white"/>
1630
+ <path opacity="0.3" d="M421.121 352.362C421.299 352.395 421.483 352.389 421.662 352.346C421.841 352.302 422.013 352.221 422.166 352.107C422.319 351.993 422.451 351.849 422.555 351.683C422.659 351.517 422.732 351.332 422.771 351.138C422.81 350.945 422.813 350.747 422.78 350.556C422.748 350.364 422.68 350.184 422.582 350.024C422.483 349.864 422.355 349.728 422.205 349.623C422.055 349.519 421.887 349.448 421.708 349.416C421.421 349.362 421.121 349.412 420.854 349.559C420.519 349.736 420.257 350.046 420.126 350.421C420.06 350.607 420.028 350.804 420.033 351C420.038 351.196 420.08 351.387 420.156 351.561C420.243 351.77 420.376 351.952 420.544 352.091C420.711 352.23 420.909 352.323 421.121 352.362V352.362Z" fill="white"/>
1631
+ <path opacity="0.3" d="M270.23 417.992C270.478 418.036 270.736 417.997 270.969 417.88C271.117 417.806 271.251 417.701 271.361 417.57C271.471 417.44 271.555 417.287 271.609 417.122C271.683 416.945 271.718 416.754 271.713 416.564C271.707 416.374 271.661 416.19 271.577 416.026C271.493 415.863 271.374 415.724 271.229 415.622C271.084 415.519 270.917 415.455 270.742 415.435C270.491 415.389 270.23 415.427 269.992 415.544C269.76 415.668 269.567 415.866 269.441 416.11C269.314 416.353 269.26 416.63 269.286 416.901C269.313 417.171 269.418 417.423 269.587 417.618C269.757 417.814 269.981 417.945 270.23 417.992V417.992Z" fill="white"/>
1632
+ <path opacity="0.3" d="M354.649 338.248C355.292 338.37 355.964 338.262 356.564 337.942C357.312 337.548 357.897 336.858 358.193 336.024C358.343 335.602 358.415 335.156 358.406 334.712C358.396 334.267 358.305 333.834 358.137 333.435C357.941 332.964 357.64 332.555 357.262 332.242C356.883 331.929 356.436 331.72 355.959 331.634C355.314 331.513 354.64 331.625 354.041 331.952C353.294 332.352 352.711 333.046 352.419 333.883C352.126 334.72 352.147 335.633 352.478 336.423C352.669 336.899 352.967 337.313 353.345 337.631C353.723 337.948 354.17 338.16 354.649 338.248V338.248Z" fill="white"/>
1633
+ <path opacity="0.3" d="M458.217 270.504C458.69 270.556 459.172 270.41 459.565 270.098C459.959 269.785 460.233 269.328 460.334 268.82C460.434 268.312 460.353 267.791 460.107 267.362C459.861 266.932 459.468 266.628 459.008 266.509C458.618 266.436 458.211 266.501 457.846 266.694C457.479 266.882 457.172 267.188 456.97 267.569C456.767 267.95 456.68 268.385 456.722 268.81C456.763 269.236 456.931 269.63 457.2 269.934C457.468 270.239 457.825 270.439 458.217 270.504V270.504Z" fill="white"/>
1634
+ <path opacity="0.3" d="M486.971 205.087C487.536 205.194 488.125 205.128 488.672 204.896C489.218 204.664 489.701 204.275 490.066 203.774C490.431 203.273 490.664 202.678 490.738 202.057C490.812 201.436 490.726 200.813 490.487 200.257C490.268 199.746 489.929 199.311 489.501 198.991C489.074 198.671 488.572 198.479 488.045 198.431C487.517 198.384 486.981 198.483 486.487 198.719C485.993 198.956 485.558 199.322 485.222 199.782C484.887 200.243 484.663 200.783 484.571 201.351C484.48 201.919 484.524 202.496 484.699 203.027C484.874 203.559 485.175 204.027 485.572 204.388C485.97 204.748 486.451 204.989 486.971 205.087V205.087Z" fill="white"/>
1635
+ <path opacity="0.3" d="M601.094 180.307C601.688 180.414 602.306 180.315 602.861 180.024C603.203 179.844 603.511 179.594 603.767 179.289C604.024 178.984 604.224 178.63 604.356 178.248C604.494 177.866 604.56 177.462 604.551 177.059C604.541 176.656 604.456 176.263 604.301 175.904C604.119 175.473 603.844 175.099 603.497 174.813C603.149 174.526 602.74 174.336 602.303 174.257C601.709 174.15 601.091 174.25 600.536 174.54C599.985 174.828 599.525 175.293 599.222 175.868C598.92 176.443 598.79 177.098 598.852 177.739C598.915 178.38 599.165 178.974 599.568 179.436C599.971 179.897 600.505 180.202 601.094 180.307V180.307Z" fill="white"/>
1636
+ <path opacity="0.3" d="M347.004 389.787C347.397 389.857 347.805 389.788 348.169 389.59C348.62 389.345 348.973 388.923 349.15 388.415C349.327 387.907 349.315 387.354 349.116 386.874C348.997 386.589 348.815 386.342 348.585 386.154C348.355 385.966 348.085 385.841 347.795 385.792C347.387 385.701 346.956 385.76 346.569 385.958C346.344 386.078 346.141 386.244 345.972 386.445C345.804 386.647 345.673 386.881 345.587 387.134C345.497 387.385 345.453 387.65 345.459 387.915C345.465 388.179 345.52 388.438 345.621 388.674C345.746 388.971 345.937 389.227 346.177 389.421C346.418 389.615 346.702 389.74 347.004 389.787V389.787Z" fill="white"/>
1637
+ </g>
1638
+ <g opacity="0.5">
1639
+ <path opacity="0.5" d="M814.78 -230.119L814.925 -229.924L847.837 -152.41L795.921 -144.44L795.741 -144.762L795.81 -144.382L768.168 -96.4026L715.246 -82.1827L715.158 -82.2074L715.135 -82.1242L700.117 -14.1504L662.441 3.99431L653.902 46.2503L608.291 30.1127L608.418 30.2901L627.613 101.688L570.564 146.474L521.82 97.9177L447.163 138.083L446.804 138.058L447.12 138.148L448.333 259.982L278.785 118.43L278.665 118.396L373.83 264.248L179.917 186.9L179.868 186.784L316.014 334.738L384.39 385.478L384.335 385.462L384.434 385.49L349.434 463.157L349.411 463.241L349.498 463.266L363.414 483.446L349.557 546.411L349.523 546.53L402.689 523.091L452.203 544.349L472.478 569.305L458.829 615.605L525.59 693.545L525.786 693.768L502.63 606.556L541.543 567.163L535.05 461.121L574.358 467.251L574.549 467.409L549.548 404.591L570.985 366.43L529.778 268.464L636.464 203.613L636.541 203.635L636.571 203.528L636.657 203.475L636.592 203.456L676.63 124.658L648.446 85.6627L684.423 57.4137L684.446 57.3304L700.173 -13.8513L728.63 -27.5608L756.519 -75.9971L810.061 -68.4036L810.138 -68.3819L845.032 -28.1785L845.012 -28.1071L845.088 -28.0854L867.339 -22.2L876.833 7.95747L818.235 107.118L818.677 169.198L787.379 234.935L787.305 235.197L843.73 193.154L829.122 143.678L852.05 86.7851L888.384 64.761L884.076 43.3938L934.232 -4.78714L934.328 -4.87569L898.254 -14.4237L944.034 -62.5594L944.346 -62.6636L944.067 -62.6786L934.573 -199.519L934.862 -199.707L934.523 -199.636L881.048 -203.223L906.881 -224.443L906.849 -224.747L867.157 -208.809L814.959 -230.043L814.78 -230.119ZM662.541 4.2669L684.332 57.0665L654.009 46.3318L662.541 4.2669ZM653.901 46.3786L646.549 82.7448L608.687 30.3795L653.901 46.3786ZM608.666 30.5791L646.506 82.9383L645.559 87.6097L627.759 101.588L608.666 30.5791ZM646.61 83.0708L648.3 85.4283L645.704 87.4708L646.61 83.0708ZM541.416 566.985L502.67 606.168L505.854 551.974L541.416 566.985ZM502.55 605.8L493.391 550.253L505.706 551.996L502.55 605.8ZM585.618 181.064L569.874 174.194L570.663 146.708L597.577 169.88L585.618 181.064ZM597.658 169.967L636.128 203.093L585.753 181.089L597.658 169.967ZM462.731 449.451L434.919 393.632L495.943 401.25L462.731 449.451ZM462.624 449.536L412.504 463.856L434.366 393.668L434.726 393.77L462.624 449.536ZM419.189 364.459L434.089 393.229L384.671 385.403L419.189 364.459ZM438.539 352.708L434.249 393.249L419.303 364.389L438.539 352.708ZM419.243 364.269L390.493 308.763L444.323 298.08L438.561 352.547L419.243 364.269ZM438.682 352.62L467.424 335.325L434.358 393.28L438.682 352.62ZM438.726 352.465L444.496 298.052L457.454 295.488L467.491 335.087L438.726 352.465ZM444.5 297.912L448.485 260.359L457.434 295.353L444.5 297.912ZM448.564 260.124L498.244 287.244L457.507 295.426L448.564 260.124ZM448.601 259.993L492.193 237.082L498.365 287.15L448.601 259.993ZM444.374 297.941L390.638 308.585L448.336 260.137L444.374 297.941ZM419.065 364.437L384.501 385.419L390.387 309.054L419.065 364.437ZM434.112 393.48L434.167 393.496L397.892 423.088L384.54 385.572L434.112 393.48ZM434.115 393.764L412.352 463.852L397.91 423.273L434.115 393.764ZM412.238 463.922L372.128 444.315L397.811 423.374L412.238 463.922ZM412.04 463.995L367.86 463.482L372.08 444.443L412.04 463.995ZM462.553 449.786L445.723 487.466L412.52 464.092L462.553 449.786ZM462.559 450.097L457.49 495.755L445.829 487.547L462.559 450.097ZM462.701 449.97L487.695 517.018L457.608 495.84L462.701 449.97ZM434.747 393.57L434.698 393.454L434.447 393.382L467.552 335.246L495.895 401.172L434.747 393.57ZM457.496 295.551L498.216 287.468L467.6 334.912L457.496 295.551ZM492.234 237.106L507.398 229.134L521.359 248.53L498.416 287.177L492.234 237.106ZM492.216 236.959L487.91 201.983L507.312 229.019L492.216 236.959ZM507.523 229.066L521.388 221.768L521.348 248.36L507.523 229.066ZM507.438 228.952L487.909 201.738L510.877 168.784L521.469 173.859L521.396 221.615L507.438 228.952ZM569.689 174.18L521.833 153.315L570.459 146.676L569.689 174.18ZM569.649 174.323L569.081 196.455L521.957 153.504L569.649 174.323ZM510.907 168.638L521.468 153.481L521.509 173.716L510.907 168.638ZM521.571 173.913L568.918 196.615L521.55 221.569L521.571 173.913ZM521.612 173.77L521.644 153.441L568.714 196.377L521.612 173.77ZM569.795 174.39L585.448 181.209L569.201 196.489L569.795 174.39ZM570.679 146.648L636.03 133.856L597.652 169.824L570.679 146.648ZM521.571 153.202L521.461 153.171L521.424 153.302L510.733 168.627L447.391 138.276L569.728 146.674L521.571 153.202ZM510.712 168.699L487.794 201.602L447.312 138.305L510.712 168.699ZM487.789 201.704L492.13 236.973L448.442 260.013L447.22 138.421L487.789 201.704ZM390.408 308.648L374.024 264.355L448.202 260.112L390.408 308.648ZM384.427 385.18L359.843 319.56L390.311 308.904L384.427 385.18ZM397.807 423.18L372.115 444.195L384.455 385.831L397.807 423.18ZM367.761 463.415L349.656 463.207L371.935 444.453L367.761 463.415ZM367.721 463.558L365.939 471.671L349.768 463.355L367.721 463.558ZM367.841 463.592L412.267 464.111L399.449 488.931L366.049 471.741L367.841 463.592ZM412.398 464.148L445.689 487.585L436.559 508.01L399.562 488.989L412.398 464.148ZM436.365 508.07L385.755 515.716L399.5 489.126L436.365 508.07ZM436.087 508.262L402.615 523.019L385.898 515.834L436.087 508.262ZM436.687 508.059L445.799 487.654L457.486 495.896L455.757 511.434L436.687 508.059ZM457.614 495.984L487.544 517.052L455.895 511.448L457.614 495.984ZM487.981 517.588L505.635 551.873L493.352 550.139L487.981 517.588ZM493.207 550.111L478.806 548.073L487.824 517.479L493.207 550.111ZM487.919 517.184L512.308 472.232L505.711 551.727L487.919 517.184ZM487.858 517.025L462.798 449.753L513.504 457.7L512.328 471.955L487.858 517.025ZM463.064 449.648L515.184 437.593L513.533 457.515L463.064 449.648ZM513.652 457.678L519.561 458.594L512.506 471.658L513.652 457.678ZM513.692 457.535L515.357 437.565L533.254 433.43L519.667 458.47L513.692 457.535ZM533.336 433.518L535.029 460.82L519.776 458.501L533.336 433.518ZM533.244 433.26L515.371 437.389L516.88 419.216L533.244 433.26ZM516.895 419.04L523.489 339.595L533.306 433.123L516.895 419.04ZM515.223 437.412L462.86 449.578L496.015 401.374L516.774 419.173L515.223 437.412ZM467.653 335.056L498.333 287.552L495.982 400.991L467.653 335.056ZM521.456 248.686L529.686 268.245L498.589 287.149L521.456 248.686ZM521.571 221.704L568.836 196.862L521.556 248.418L521.571 221.704ZM569.3 196.517L585.629 181.234L636.081 203.26L569.3 196.517ZM597.772 169.858L636.294 133.841L636.514 203.19L597.772 169.858ZM645.53 87.7945L636.314 133.396L627.794 101.714L645.53 87.7945ZM636.238 133.619L570.849 146.426L627.684 101.811L636.238 133.619ZM570.401 146.466L447.429 138.017L521.716 98.1197L570.401 146.466ZM278.828 118.609L447.842 260.048L373.964 264.273L278.828 118.609ZM373.833 264.403L390.225 308.751L359.735 319.401L179.942 187.062L373.833 264.403ZM359.602 319.453L316.096 334.658L179.811 187.192L359.602 319.453ZM316.142 334.787L359.648 319.582L384.264 385.339L316.142 334.787ZM371.925 444.283L349.596 463.088L384.208 386.121L371.925 444.283ZM349.674 463.56L365.911 471.895L363.373 483.422L349.674 463.56ZM363.474 483.566L366.021 471.965L399.377 489.142L385.61 515.688L363.474 483.566ZM385.569 515.831L349.668 546.352L363.452 483.727L385.569 515.831ZM349.959 546.281L385.694 515.931L402.52 523.146L349.959 546.281ZM402.809 523.125L436.604 508.267L455.754 511.652L452.119 544.351L402.809 523.125ZM452.231 544.332L455.869 511.62L487.754 517.266L478.659 548.134L452.231 544.332ZM452.328 544.488L478.635 548.217L472.433 569.254L452.328 544.488ZM472.53 569.371L478.758 548.239L493.229 550.284L502.446 606.208L472.53 569.371ZM458.881 615.671L472.473 569.574L502.415 606.443L458.881 615.671ZM458.913 615.809L502.561 606.549L502.648 607.075L502.699 606.897L525.629 693.157L458.913 615.809ZM541.426 566.95L505.807 551.973L512.441 472.012L519.692 458.631L534.961 461.019L541.426 566.95ZM535.075 460.948L533.409 433.551L574.18 467.046L535.075 460.948ZM574.264 466.916L533.412 433.372L549.495 404.692L574.264 466.916ZM533.372 433.181L523.537 339.467L549.472 404.441L533.372 433.181ZM549.522 404.39L523.48 338.962L523.377 338.701L516.707 419.038L496.038 401.29L498.417 287.589L570.85 366.366L549.522 404.39ZM570.784 365.974L498.529 287.402L529.755 268.419L570.784 365.974ZM521.512 248.573L569.115 196.709L569.181 196.728L569.201 196.657L636.301 203.399L529.782 268.157L521.512 248.573ZM676.504 124.519L636.526 203.103L636.316 133.718L645.611 87.7146L648.34 85.5809L676.504 124.519ZM646.614 82.9306L653.993 46.4303L684.292 57.2094L648.379 85.3992L646.614 82.9306ZM684.435 56.9541L662.574 4.10902L700.099 -13.9624L684.435 56.9541ZM934.136 -199.437L887.161 -132.318L884.771 -159.869L934.136 -199.437ZM880.597 -40.6696L882.45 -66.5029L943.636 -62.5305L880.597 -40.6696ZM880.457 -40.6322L863.732 -34.8521L853.199 -68.4173L882.409 -66.5661L880.457 -40.6322ZM869.002 -156.584L886.896 -132.342L848.168 -152.329L869.002 -156.584ZM810.465 -68.6622L834.419 -88.4981L852.881 -68.5848L810.465 -68.6622ZM810.451 -68.8206L824.219 -99.4438L834.309 -88.5679L810.451 -68.8206ZM824.295 -99.6281L847.963 -152.272L887.008 -132.195L834.433 -88.7128L824.295 -99.6281ZM847.826 -152.285L824.195 -99.7336L815.524 -109.088L796.021 -144.296L847.826 -152.285ZM815.369 -109.08L803.278 -105.833L796.008 -143.914L815.369 -109.08ZM815.39 -108.946L810.272 -69.0641L803.31 -105.695L815.39 -108.946ZM815.521 -108.908L824.139 -99.6206L810.409 -69.0896L815.521 -108.908ZM852.97 -68.4823L845.187 -28.5591L810.434 -68.5938L852.97 -68.4823ZM853.068 -68.2871L863.635 -34.8411L845.312 -28.4593L853.068 -68.2871ZM853.159 -68.6087L834.627 -88.6063L887.145 -132.053L882.439 -66.7119L853.159 -68.6087ZM887.079 -132.445L869.181 -156.675L884.677 -159.87L887.079 -132.445ZM869.12 -156.834L855.767 -174.925L867.33 -208.669L880.963 -203.131L884.699 -160.031L869.12 -156.834ZM868.968 -156.799L848.089 -152.506L855.716 -174.785L868.968 -156.799ZM847.975 -152.603L815.328 -229.514L855.62 -174.903L847.975 -152.603ZM795.893 -144.217L803.198 -105.842L768.374 -96.4215L795.893 -144.217ZM715.551 -82.1348L768.012 -96.2281L756.542 -76.3253L715.551 -82.1348ZM700.26 -14.1997L715.202 -81.822L728.584 -27.8568L700.26 -14.1997ZM728.686 -28.008L715.299 -82.0777L756.482 -76.2393L728.686 -28.008ZM756.701 -76.3446L768.206 -96.3275L803.139 -105.717L810.166 -68.7726L756.701 -76.3446ZM845.439 -28.449L863.678 -34.6616L867.488 -22.5567L845.439 -28.449ZM867.556 -22.5888L863.723 -34.7775L880.429 -40.5758L878.923 -19.584L867.556 -22.5888ZM878.908 -19.4468L876.984 7.34402L867.606 -22.4331L878.908 -19.4468ZM877.105 7.41693L879.039 -19.4097L897.954 -14.4059L877.152 7.45624L877.22 7.21802L877.105 7.41693ZM787.701 234.55L818.837 169.217L843.628 192.971L787.701 234.55ZM843.611 192.657L818.902 169.03L829.136 143.631L843.611 192.657ZM818.958 168.788L818.518 107.494L829.148 143.505L818.958 168.788ZM829.227 143.309L818.524 107.058L852.03 86.7281L829.227 143.309ZM818.628 106.856L876.883 8.28037L860.401 65.985L860.385 66.0446L852.114 86.5589L818.628 106.856ZM860.508 66.0668L888.226 64.6519L852.273 86.3724L860.508 66.0668ZM888.422 64.5017L860.643 65.9248L884.161 43.341L888.422 64.5017ZM860.6 65.7841L877.071 8.07635L884.081 43.1252L860.6 65.7841ZM877.168 7.85932L933.988 -4.67615L884.25 43.0703L877.168 7.85932ZM933.906 -4.80232L877.287 7.68735L898.16 -14.2574L933.906 -4.80232ZM879.085 -19.4481L880.604 -40.5263L943.769 -62.4159L898.054 -14.4675L879.085 -19.4481ZM882.488 -66.634L887.19 -131.963L943.847 -62.6509L882.488 -66.634ZM887.251 -132.177L934.466 -199.434L943.971 -62.7958L887.251 -132.177ZM934.296 -199.585L884.797 -160.003L881.074 -203.023L934.296 -199.585ZM906.841 -224.094L880.874 -203.233L867.296 -208.756L906.841 -224.094ZM867.174 -208.662L855.643 -174.986L815.218 -229.79L867.174 -208.662Z" fill="white"/>
1640
+ <path opacity="0.5" d="M462.181 615.013C462.287 615.729 462.191 616.472 461.905 617.149C461.62 617.825 461.158 618.404 460.579 618.812C459.999 619.22 459.328 619.44 458.649 619.442C457.971 619.444 457.317 619.23 456.769 618.825C456.222 618.421 455.805 617.844 455.573 617.17C455.341 616.495 455.304 615.752 455.466 615.035C455.628 614.318 455.981 613.66 456.483 613.143C456.984 612.626 457.61 612.274 458.281 612.131C459.176 611.941 460.09 612.137 460.821 612.677C461.552 613.217 462.041 614.057 462.181 615.013Z" fill="white"/>
1641
+ <path opacity="0.5" d="M439.84 507.461C439.936 508.138 439.841 508.84 439.569 509.478C439.296 510.116 438.857 510.661 438.308 511.044C437.759 511.428 437.124 511.632 436.483 511.632C435.842 511.632 435.225 511.428 434.708 511.044C434.191 510.661 433.799 510.116 433.58 509.478C433.362 508.84 433.326 508.138 433.479 507.461C433.632 506.783 433.967 506.161 434.44 505.672C434.913 505.183 435.504 504.849 436.137 504.713C436.99 504.533 437.858 504.722 438.552 505.237C439.246 505.752 439.709 506.552 439.84 507.461V507.461Z" fill="white"/>
1642
+ <path opacity="0.5" d="M351.009 546.194C351.055 546.514 351.011 546.846 350.883 547.147C350.755 547.449 350.548 547.706 350.289 547.888C350.03 548.07 349.73 548.167 349.428 548.167C349.125 548.168 348.833 548.071 348.589 547.89C348.345 547.71 348.159 547.452 348.056 547.151C347.953 546.85 347.936 546.518 348.008 546.199C348.081 545.879 348.239 545.585 348.462 545.354C348.686 545.123 348.965 544.966 349.264 544.902C349.665 544.816 350.075 544.904 350.402 545.147C350.729 545.389 350.947 545.766 351.009 546.194V546.194Z" fill="white"/>
1643
+ <path opacity="0.5" d="M373.997 443.92C374.055 444.335 373.997 444.764 373.829 445.155C373.662 445.545 373.393 445.879 373.057 446.113C372.72 446.348 372.331 446.473 371.939 446.473C371.546 446.473 371.168 446.347 370.852 446.112C370.535 445.877 370.295 445.543 370.161 445.153C370.027 444.762 370.006 444.332 370.099 443.917C370.193 443.502 370.398 443.121 370.687 442.822C370.977 442.522 371.339 442.317 371.727 442.234C372.249 442.128 372.779 442.245 373.204 442.561C373.628 442.876 373.913 443.364 373.997 443.92V443.92Z" fill="white"/>
1644
+ <path opacity="0.5" d="M317.997 334.36C318.056 334.775 317.998 335.206 317.831 335.597C317.664 335.988 317.395 336.323 317.058 336.558C316.721 336.793 316.332 336.918 315.939 336.918C315.546 336.918 315.167 336.792 314.85 336.556C314.534 336.32 314.293 335.985 314.16 335.594C314.027 335.202 314.006 334.771 314.101 334.356C314.196 333.941 314.403 333.559 314.694 333.26C314.985 332.961 315.348 332.758 315.737 332.677C316.258 332.568 316.788 332.684 317.212 332.999C317.635 333.314 317.918 333.804 317.997 334.36V334.36Z" fill="white"/>
1645
+ <path opacity="0.5" d="M386.412 385.125C386.471 385.541 386.414 385.971 386.247 386.363C386.08 386.754 385.811 387.088 385.474 387.324C385.137 387.559 384.747 387.684 384.354 387.684C383.961 387.683 383.582 387.557 383.266 387.322C382.949 387.086 382.709 386.751 382.576 386.359C382.442 385.968 382.422 385.537 382.517 385.121C382.612 384.706 382.818 384.325 383.109 384.026C383.401 383.727 383.764 383.524 384.153 383.443C384.674 383.333 385.204 383.449 385.627 383.765C386.051 384.08 386.333 384.569 386.412 385.125V385.125Z" fill="white"/>
1646
+ <path opacity="0.5" d="M352.59 462.677C352.684 463.339 352.591 464.024 352.325 464.646C352.059 465.268 351.631 465.8 351.095 466.174C350.558 466.548 349.939 466.747 349.313 466.746C348.688 466.746 348.085 466.546 347.582 466.171C347.078 465.796 346.695 465.263 346.483 464.64C346.27 464.018 346.237 463.333 346.388 462.672C346.538 462.011 346.865 461.404 347.328 460.928C347.79 460.451 348.368 460.127 348.986 459.996C349.816 459.823 350.661 460.009 351.336 460.511C352.011 461.013 352.462 461.792 352.59 462.677V462.677Z" fill="white"/>
1647
+ <path opacity="0.5" d="M387.609 515.418C387.668 515.834 387.61 516.264 387.443 516.656C387.276 517.047 387.007 517.381 386.67 517.617C386.333 517.852 385.943 517.977 385.55 517.977C385.157 517.976 384.779 517.85 384.462 517.614C384.145 517.379 383.905 517.044 383.772 516.652C383.639 516.261 383.618 515.83 383.713 515.414C383.808 514.999 384.014 514.618 384.306 514.319C384.597 514.02 384.96 513.817 385.349 513.735C385.607 513.68 385.871 513.679 386.124 513.734C386.378 513.788 386.616 513.897 386.826 514.053C387.036 514.21 387.214 514.411 387.348 514.645C387.482 514.879 387.571 515.142 387.609 515.418Z" fill="white"/>
1648
+ <path opacity="0.5" d="M454.134 543.986C454.191 544.401 454.131 544.831 453.962 545.222C453.794 545.612 453.523 545.945 453.186 546.179C452.848 546.412 452.458 546.535 452.066 546.533C451.673 546.531 451.295 546.404 450.979 546.167C450.664 545.93 450.425 545.594 450.293 545.202C450.161 544.81 450.142 544.379 450.238 543.964C450.334 543.55 450.542 543.169 450.833 542.871C451.125 542.574 451.489 542.372 451.878 542.291C452.136 542.236 452.4 542.236 452.654 542.292C452.908 542.347 453.146 542.457 453.356 542.615C453.566 542.772 453.743 542.975 453.876 543.21C454.01 543.445 454.097 543.709 454.134 543.986V543.986Z" fill="white"/>
1649
+ <path opacity="0.5" d="M507.294 551.676C507.339 552.001 507.293 552.338 507.162 552.643C507.03 552.949 506.819 553.209 506.555 553.392C506.291 553.575 505.986 553.672 505.679 553.67C505.372 553.669 505.076 553.569 504.829 553.383C504.582 553.198 504.395 552.935 504.292 552.629C504.189 552.322 504.175 551.985 504.25 551.661C504.326 551.336 504.488 551.039 504.717 550.806C504.945 550.574 505.23 550.416 505.534 550.354C505.941 550.274 506.353 550.368 506.682 550.615C507.011 550.862 507.231 551.243 507.294 551.676V551.676Z" fill="white"/>
1650
+ <path opacity="0.5" d="M576.43 466.681C576.488 467.096 576.43 467.526 576.263 467.917C576.095 468.307 575.826 468.64 575.49 468.875C575.153 469.11 574.764 469.235 574.372 469.235C573.98 469.234 573.601 469.109 573.285 468.874C572.969 468.639 572.728 468.305 572.594 467.915C572.46 467.524 572.439 467.094 572.533 466.679C572.626 466.264 572.831 465.883 573.12 465.583C573.41 465.284 573.772 465.079 574.16 464.995C574.419 464.94 574.683 464.939 574.937 464.994C575.192 465.049 575.431 465.157 575.642 465.314C575.853 465.471 576.031 465.672 576.167 465.907C576.302 466.141 576.391 466.404 576.43 466.681V466.681Z" fill="white"/>
1651
+ <path opacity="0.5" d="M524.879 338.641C524.937 339.048 524.842 339.471 524.613 339.816C524.385 340.161 524.042 340.401 523.661 340.482C523.28 340.564 522.891 340.48 522.58 340.249C522.27 340.019 522.063 339.661 522.004 339.254C521.976 339.052 521.984 338.844 522.03 338.643C522.076 338.441 522.157 338.249 522.27 338.078C522.383 337.907 522.526 337.76 522.689 337.646C522.852 337.532 523.034 337.452 523.222 337.412C523.411 337.372 523.604 337.372 523.789 337.412C523.975 337.452 524.149 337.531 524.303 337.645C524.457 337.759 524.587 337.906 524.686 338.077C524.785 338.248 524.85 338.439 524.879 338.641V338.641Z" fill="white"/>
1652
+ <path opacity="0.5" d="M571.097 196.207C571.155 196.622 571.097 197.051 570.93 197.442C570.762 197.832 570.493 198.166 570.157 198.401C569.82 198.635 569.431 198.76 569.039 198.76C568.647 198.76 568.268 198.634 567.952 198.399C567.636 198.164 567.395 197.83 567.261 197.44C567.127 197.049 567.106 196.619 567.2 196.204C567.293 195.79 567.498 195.408 567.787 195.109C568.077 194.809 568.439 194.604 568.827 194.521C569.086 194.465 569.35 194.465 569.604 194.519C569.859 194.574 570.098 194.683 570.309 194.839C570.52 194.996 570.698 195.197 570.834 195.432C570.969 195.667 571.058 195.93 571.097 196.207V196.207Z" fill="white"/>
1653
+ <path opacity="0.5" d="M638.485 202.976C638.543 203.391 638.485 203.821 638.317 204.211C638.15 204.602 637.881 204.935 637.545 205.17C637.208 205.405 636.819 205.53 636.427 205.529C636.034 205.529 635.656 205.404 635.34 205.169C635.023 204.934 634.783 204.6 634.649 204.209C634.515 203.819 634.494 203.389 634.587 202.974C634.681 202.559 634.885 202.178 635.175 201.878C635.465 201.578 635.826 201.374 636.215 201.29C636.737 201.181 637.269 201.297 637.694 201.613C638.119 201.929 638.404 202.419 638.485 202.976V202.976Z" fill="white"/>
1654
+ <path opacity="0.5" d="M678.565 124.113C678.624 124.529 678.566 124.959 678.399 125.351C678.232 125.742 677.963 126.077 677.626 126.312C677.289 126.547 676.9 126.672 676.507 126.672C676.113 126.672 675.735 126.546 675.418 126.31C675.101 126.074 674.861 125.739 674.728 125.347C674.595 124.956 674.574 124.525 674.669 124.11C674.764 123.694 674.971 123.313 675.262 123.014C675.553 122.715 675.916 122.512 676.305 122.431C676.563 122.375 676.827 122.374 677.08 122.429C677.334 122.484 677.572 122.592 677.783 122.749C677.993 122.905 678.17 123.106 678.304 123.341C678.438 123.575 678.527 123.837 678.565 124.113V124.113Z" fill="white"/>
1655
+ <path opacity="0.5" d="M610.453 29.8902C610.511 30.3052 610.453 30.735 610.286 31.1255C610.118 31.516 609.849 31.8496 609.513 32.0841C609.176 32.3187 608.787 32.4437 608.395 32.4435C608.003 32.4433 607.624 32.3178 607.308 32.0829C606.992 31.848 606.751 31.514 606.617 31.1234C606.483 30.7328 606.462 30.3029 606.556 29.8879C606.649 29.473 606.854 29.0917 607.143 28.7921C607.433 28.4924 607.795 28.2879 608.183 28.2044C608.442 28.1486 608.706 28.1481 608.96 28.2028C609.215 28.2574 609.454 28.3662 609.665 28.5228C609.876 28.6795 610.054 28.881 610.19 29.1156C610.325 29.3503 610.414 29.6135 610.453 29.8902V29.8902Z" fill="white"/>
1656
+ <path opacity="0.5" d="M181.853 186.601C181.912 187.016 181.853 187.446 181.686 187.836C181.519 188.227 181.25 188.56 180.913 188.795C180.577 189.03 180.188 189.155 179.795 189.154C179.403 189.154 179.025 189.029 178.708 188.794C178.392 188.559 178.152 188.225 178.018 187.834C177.884 187.444 177.862 187.014 177.956 186.599C178.05 186.184 178.254 185.803 178.544 185.503C178.833 185.203 179.195 184.999 179.583 184.915C180.106 184.806 180.638 184.922 181.063 185.238C181.488 185.554 181.772 186.044 181.853 186.601V186.601Z" fill="white"/>
1657
+ <path opacity="0.5" d="M280.176 118.221C280.219 118.519 280.178 118.829 280.058 119.11C279.938 119.391 279.745 119.631 279.503 119.8C279.262 119.969 278.982 120.059 278.7 120.06C278.417 120.06 278.145 119.969 277.918 119.801C277.69 119.632 277.517 119.392 277.421 119.111C277.325 118.83 277.31 118.521 277.377 118.222C277.445 117.924 277.592 117.65 277.801 117.435C278.009 117.22 278.27 117.073 278.549 117.014C278.734 116.974 278.924 116.974 279.106 117.013C279.288 117.053 279.46 117.131 279.611 117.243C279.762 117.355 279.889 117.499 279.987 117.667C280.084 117.835 280.148 118.023 280.176 118.221V118.221Z" fill="white"/>
1658
+ <path opacity="0.5" d="M489.825 516.786C489.885 517.2 489.828 517.631 489.663 518.022C489.497 518.414 489.229 518.749 488.894 518.985C488.558 519.221 488.169 519.348 487.776 519.35C487.384 519.351 487.005 519.227 486.687 518.994C486.37 518.76 486.128 518.427 485.993 518.037C485.857 517.646 485.835 517.216 485.927 516.801C486.02 516.385 486.223 516.003 486.512 515.703C486.801 515.402 487.163 515.196 487.551 515.112C488.072 515.001 488.604 515.115 489.029 515.429C489.455 515.742 489.741 516.23 489.825 516.786V516.786Z" fill="white"/>
1659
+ <path opacity="0.5" d="M527.576 693.028C527.632 693.443 527.572 693.873 527.403 694.262C527.234 694.651 526.964 694.984 526.627 695.216C526.29 695.449 525.9 695.572 525.508 695.57C525.116 695.568 524.739 695.441 524.423 695.205C524.108 694.969 523.869 694.635 523.737 694.244C523.604 693.853 523.584 693.423 523.679 693.008C523.773 692.594 523.979 692.213 524.269 691.915C524.559 691.616 524.921 691.413 525.309 691.33C525.569 691.275 525.833 691.275 526.088 691.331C526.343 691.387 526.582 691.497 526.793 691.654C527.004 691.812 527.181 692.015 527.316 692.251C527.45 692.486 527.539 692.751 527.576 693.028V693.028Z" fill="white"/>
1660
+ <path opacity="0.5" d="M543.492 566.611C543.55 567.026 543.492 567.456 543.325 567.846C543.157 568.237 542.888 568.57 542.552 568.805C542.215 569.039 541.826 569.164 541.434 569.164C541.042 569.164 540.663 569.039 540.347 568.804C540.031 568.569 539.79 568.235 539.656 567.844C539.522 567.453 539.501 567.024 539.595 566.609C539.688 566.194 539.893 565.813 540.182 565.513C540.472 565.213 540.834 565.009 541.222 564.925C541.744 564.816 542.276 564.932 542.702 565.248C543.127 565.564 543.411 566.054 543.492 566.611V566.611Z" fill="white"/>
1661
+ <path opacity="0.5" d="M535.285 432.925C535.363 433.483 535.23 434.061 534.916 434.533C534.602 435.005 534.133 435.332 533.61 435.441C533.088 435.551 532.556 435.434 532.132 435.117C531.708 434.8 531.425 434.309 531.347 433.751C531.309 433.475 531.321 433.191 531.385 432.915C531.448 432.639 531.561 432.377 531.716 432.143C531.872 431.909 532.067 431.709 532.291 431.553C532.515 431.397 532.764 431.289 533.022 431.235C533.281 431.181 533.544 431.181 533.798 431.237C534.052 431.293 534.29 431.402 534.5 431.559C534.711 431.716 534.888 431.917 535.023 432.152C535.157 432.386 535.246 432.649 535.285 432.925Z" fill="white"/>
1662
+ <path opacity="0.5" d="M464.665 449.281C464.724 449.696 464.665 450.126 464.498 450.516C464.331 450.907 464.062 451.24 463.725 451.475C463.389 451.709 463 451.834 462.607 451.834C462.215 451.834 461.837 451.708 461.52 451.473C461.204 451.238 460.964 450.905 460.83 450.514C460.696 450.123 460.674 449.694 460.768 449.279C460.862 448.864 461.066 448.482 461.356 448.183C461.645 447.883 462.007 447.679 462.395 447.595C462.654 447.539 462.918 447.539 463.173 447.593C463.427 447.648 463.667 447.757 463.878 447.913C464.089 448.07 464.267 448.272 464.402 448.506C464.537 448.741 464.627 449.004 464.665 449.281Z" fill="white"/>
1663
+ <path opacity="0.5" d="M414.341 463.658C414.4 464.074 414.343 464.505 414.175 464.896C414.008 465.287 413.739 465.622 413.402 465.857C413.066 466.092 412.676 466.217 412.283 466.217C411.89 466.217 411.511 466.091 411.194 465.855C410.878 465.619 410.638 465.284 410.504 464.892C410.371 464.501 410.351 464.07 410.446 463.655C410.541 463.239 410.747 462.858 411.038 462.559C411.329 462.26 411.693 462.057 412.082 461.976C412.34 461.92 412.603 461.919 412.857 461.974C413.11 462.029 413.349 462.137 413.559 462.294C413.769 462.45 413.946 462.651 414.08 462.885C414.215 463.12 414.303 463.382 414.341 463.658V463.658Z" fill="white"/>
1664
+ <path opacity="0.5" d="M438.161 392.763C438.274 393.584 438.158 394.434 437.826 395.205C437.494 395.977 436.961 396.636 436.295 397.098C435.629 397.561 434.859 397.807 434.083 397.805C433.307 397.803 432.56 397.553 431.935 397.087C431.31 396.621 430.837 395.959 430.573 395.186C430.31 394.413 430.27 393.562 430.457 392.742C430.643 391.922 431.05 391.169 431.624 390.578C432.198 389.987 432.914 389.585 433.682 389.422C434.715 389.206 435.767 389.436 436.606 390.063C437.446 390.689 438.005 391.66 438.161 392.763Z" fill="white"/>
1665
+ <path opacity="0.5" d="M392.324 308.419C392.382 308.834 392.323 309.264 392.156 309.655C391.989 310.045 391.72 310.379 391.383 310.613C391.047 310.848 390.658 310.973 390.266 310.973C389.873 310.973 389.495 310.847 389.178 310.612C388.862 310.377 388.622 310.043 388.488 309.653C388.354 309.262 388.332 308.832 388.426 308.417C388.52 308.002 388.724 307.621 389.014 307.322C389.303 307.022 389.665 306.817 390.054 306.734C390.575 306.628 391.106 306.745 391.53 307.061C391.955 307.376 392.24 307.864 392.324 308.419V308.419Z" fill="white"/>
1666
+ <path opacity="0.5" d="M469.522 334.701C469.58 335.116 469.522 335.546 469.355 335.936C469.187 336.327 468.919 336.66 468.582 336.895C468.246 337.129 467.857 337.254 467.464 337.254C467.072 337.254 466.694 337.128 466.377 336.893C466.061 336.658 465.821 336.325 465.687 335.934C465.553 335.543 465.531 335.113 465.625 334.699C465.718 334.284 465.923 333.902 466.213 333.603C466.502 333.303 466.864 333.098 467.252 333.015C467.511 332.959 467.775 332.959 468.03 333.013C468.284 333.068 468.524 333.177 468.735 333.333C468.946 333.49 469.124 333.691 469.259 333.926C469.394 334.161 469.484 334.424 469.522 334.701V334.701Z" fill="white"/>
1667
+ <path opacity="0.5" d="M497.961 400.872C498.017 401.287 497.957 401.716 497.788 402.106C497.619 402.495 497.349 402.827 497.012 403.06C496.675 403.293 496.286 403.416 495.894 403.414C495.501 403.412 495.124 403.285 494.809 403.049C494.493 402.813 494.254 402.478 494.122 402.087C493.989 401.696 493.969 401.267 494.064 400.852C494.159 400.438 494.364 400.057 494.654 399.759C494.944 399.46 495.306 399.257 495.695 399.174C495.954 399.119 496.219 399.119 496.473 399.175C496.728 399.23 496.968 399.34 497.178 399.498C497.389 399.656 497.567 399.859 497.701 400.094C497.835 400.33 497.924 400.594 497.961 400.872V400.872Z" fill="white"/>
1668
+ <path opacity="0.5" d="M501.834 286.643C501.936 287.373 501.833 288.129 501.538 288.816C501.243 289.503 500.77 290.089 500.177 290.501C499.585 290.913 498.9 291.132 498.209 291.131C497.519 291.129 496.854 290.908 496.298 290.493C495.742 290.079 495.32 289.49 495.086 288.802C494.852 288.114 494.815 287.358 494.982 286.628C495.148 285.898 495.509 285.228 496.02 284.702C496.531 284.177 497.169 283.819 497.852 283.674C498.307 283.577 498.771 283.578 499.217 283.675C499.664 283.772 500.084 283.964 500.454 284.24C500.824 284.516 501.136 284.87 501.373 285.282C501.61 285.694 501.767 286.157 501.834 286.643V286.643Z" fill="white"/>
1669
+ <path opacity="0.5" d="M489.795 201.322C489.852 201.737 489.793 202.167 489.624 202.558C489.455 202.948 489.185 203.281 488.847 203.515C488.51 203.748 488.12 203.871 487.727 203.869C487.334 203.867 486.956 203.739 486.641 203.502C486.325 203.265 486.087 202.93 485.955 202.538C485.823 202.146 485.804 201.715 485.9 201.3C485.996 200.886 486.203 200.505 486.495 200.207C486.787 199.909 487.15 199.707 487.539 199.627C487.798 199.572 488.062 199.572 488.315 199.628C488.569 199.683 488.808 199.793 489.018 199.951C489.228 200.108 489.404 200.311 489.538 200.546C489.671 200.781 489.759 201.045 489.795 201.322V201.322Z" fill="white"/>
1670
+ <path opacity="0.5" d="M523.063 152.97C523.11 153.283 523.069 153.608 522.946 153.904C522.822 154.201 522.62 154.454 522.367 154.634C522.114 154.813 521.82 154.909 521.523 154.911C521.227 154.912 520.941 154.818 520.701 154.641C520.461 154.464 520.279 154.212 520.178 153.917C520.077 153.622 520.061 153.297 520.132 152.983C520.204 152.67 520.359 152.382 520.579 152.157C520.798 151.931 521.073 151.778 521.366 151.717C521.559 151.675 521.756 151.674 521.946 151.715C522.136 151.755 522.315 151.836 522.472 151.952C522.63 152.069 522.763 152.219 522.865 152.393C522.966 152.568 523.034 152.764 523.063 152.97V152.97Z" fill="white"/>
1671
+ <path opacity="0.5" d="M573.834 365.694C573.92 366.303 573.834 366.933 573.588 367.505C573.343 368.077 572.948 368.566 572.455 368.91C571.961 369.253 571.391 369.436 570.815 369.435C570.24 369.434 569.686 369.25 569.222 368.905C568.759 368.56 568.407 368.07 568.212 367.497C568.016 366.924 567.985 366.293 568.124 365.685C568.262 365.077 568.563 364.518 568.988 364.08C569.413 363.641 569.944 363.343 570.514 363.221C571.279 363.062 572.057 363.232 572.68 363.696C573.302 364.159 573.717 364.878 573.834 365.694V365.694Z" fill="white"/>
1672
+ <path opacity="0.5" d="M523.41 248.16C523.469 248.576 523.411 249.006 523.244 249.398C523.077 249.789 522.808 250.124 522.471 250.359C522.134 250.594 521.745 250.719 521.352 250.719C520.959 250.719 520.58 250.592 520.263 250.357C519.947 250.121 519.707 249.786 519.573 249.394C519.44 249.003 519.42 248.572 519.515 248.156C519.61 247.741 519.816 247.36 520.107 247.061C520.398 246.762 520.761 246.559 521.151 246.478C521.409 246.422 521.672 246.421 521.925 246.476C522.179 246.53 522.418 246.639 522.628 246.795C522.838 246.952 523.015 247.153 523.149 247.387C523.284 247.622 523.372 247.884 523.41 248.16V248.16Z" fill="white"/>
1673
+ <path opacity="0.5" d="M504.534 606.041C504.592 606.456 504.534 606.885 504.367 607.276C504.199 607.666 503.93 608 503.594 608.235C503.257 608.469 502.868 608.594 502.476 608.594C502.084 608.594 501.705 608.468 501.389 608.233C501.073 607.998 500.832 607.664 500.698 607.274C500.564 606.883 500.543 606.453 500.637 606.038C500.73 605.624 500.935 605.242 501.224 604.943C501.514 604.643 501.876 604.438 502.264 604.355C502.786 604.249 503.316 604.366 503.741 604.682C504.165 604.997 504.45 605.485 504.534 606.041V606.041Z" fill="white"/>
1674
+ <path opacity="0.5" d="M862.389 65.5468C862.459 66.0493 862.357 66.5702 862.104 67.0151C861.85 67.4599 861.46 67.7994 861.006 67.9717C860.732 68.0784 860.443 68.1206 860.158 68.0956C859.874 68.0705 859.6 67.9788 859.357 67.8266C859.114 67.6745 858.907 67.4656 858.751 67.2145C858.594 66.9634 858.492 66.6761 858.451 66.3726C858.392 65.923 858.462 65.4583 858.652 65.0403C858.899 64.5363 859.313 64.1464 859.808 63.9531C860.303 63.7597 860.84 63.7781 861.305 64.0045C861.592 64.1421 861.841 64.3544 862.03 64.623C862.219 64.8917 862.342 65.2086 862.389 65.5468V65.5468Z" fill="white"/>
1675
+ <path opacity="0.5" d="M845.31 192.612C845.365 192.961 845.308 193.326 845.147 193.646C845.054 193.845 844.926 194.023 844.77 194.171C844.615 194.319 844.435 194.434 844.241 194.508C844.027 194.594 843.8 194.629 843.576 194.61C843.353 194.591 843.138 194.52 842.947 194.401C842.756 194.282 842.593 194.117 842.47 193.92C842.348 193.723 842.268 193.497 842.237 193.258C842.174 192.869 842.248 192.461 842.445 192.113C842.641 191.766 842.946 191.502 843.302 191.373C843.493 191.297 843.695 191.262 843.895 191.27C844.095 191.278 844.29 191.33 844.468 191.421C844.691 191.527 844.884 191.691 845.03 191.898C845.177 192.105 845.273 192.35 845.31 192.612V192.612Z" fill="white"/>
1676
+ <path opacity="0.5" d="M820.377 106.593C820.438 107.043 820.364 107.508 820.165 107.922C820.046 108.182 819.881 108.416 819.681 108.611C819.48 108.805 819.247 108.957 818.995 109.056C818.743 109.155 818.478 109.2 818.215 109.188C817.951 109.176 817.695 109.107 817.462 108.986C817.228 108.865 817.021 108.694 816.853 108.483C816.685 108.271 816.559 108.024 816.484 107.756C816.408 107.487 816.383 107.203 816.411 106.919C816.44 106.635 816.52 106.357 816.647 106.101C816.842 105.692 817.149 105.353 817.525 105.133C817.9 104.914 818.326 104.825 818.74 104.88C819.154 104.934 819.535 105.129 819.829 105.437C820.123 105.745 820.315 106.15 820.377 106.593V106.593Z" fill="white"/>
1677
+ <path opacity="0.5" d="M891.739 63.8233C891.841 64.5684 891.725 65.3397 891.408 66.0321C890.999 66.8883 890.298 67.55 889.459 67.8717C888.62 68.1935 887.712 68.149 886.935 67.748C886.518 67.5753 886.142 67.3105 885.831 66.9702C885.521 66.6298 885.281 66.2212 885.127 65.7694C884.974 65.3177 884.91 64.8324 884.939 64.3439C884.968 63.8554 885.09 63.374 885.297 62.9295C885.504 62.4849 885.791 62.0868 886.142 61.7598C886.493 61.4328 886.899 61.1838 887.335 61.0283C887.772 60.8728 888.229 60.814 888.679 60.8558C889.129 60.8975 889.562 61.0388 889.951 61.2708C890.426 61.4982 890.837 61.8493 891.149 62.2941C891.46 62.7389 891.663 63.2638 891.739 63.8233V63.8233Z" fill="white"/>
1678
+ <path opacity="0.5" d="M879.024 7.34343C879.091 7.8445 878.989 8.36271 878.738 8.80687C878.487 9.25102 878.102 9.59256 877.652 9.77137C877.145 9.96132 876.598 9.93547 876.127 9.69922C875.669 9.45661 875.324 9.02793 875.165 8.50309C875.006 7.97825 875.045 7.39808 875.274 6.88448C875.518 6.37756 875.933 5.98444 876.429 5.78875C876.925 5.59306 877.463 5.61023 877.93 5.83669C878.216 5.96884 878.464 6.17487 878.655 6.43718C878.845 6.69949 878.972 7.01039 879.024 7.34343V7.34343Z" fill="white"/>
1679
+ <path opacity="0.5" d="M686.443 56.778C686.506 57.2234 686.433 57.6852 686.235 58.0953C686.116 58.3533 685.951 58.5847 685.748 58.7752C685.546 58.9657 685.312 59.1113 685.06 59.2028C684.557 59.3958 684.013 59.371 683.546 59.1338C683.088 58.8912 682.743 58.4625 682.584 57.9377C682.425 57.4128 682.464 56.8326 682.693 56.319C682.937 55.8121 683.351 55.419 683.847 55.2233C684.344 55.0276 684.882 55.0448 685.349 55.2712C685.635 55.4034 685.883 55.6094 686.074 55.8717C686.264 56.134 686.391 56.4449 686.443 56.778V56.778Z" fill="white"/>
1680
+ <path opacity="0.5" d="M572.525 146.208C572.598 146.653 572.528 147.118 572.328 147.528C572.084 148.035 571.669 148.427 571.173 148.62C570.677 148.814 570.139 148.794 569.675 148.564C569.392 148.419 569.15 148.199 568.971 147.924C568.792 147.649 568.681 147.327 568.648 146.987C568.575 146.542 568.645 146.077 568.846 145.666C569.09 145.159 569.504 144.766 570 144.57C570.496 144.375 571.035 144.392 571.502 144.618C571.785 144.765 572.028 144.987 572.206 145.265C572.385 145.542 572.495 145.866 572.525 146.208V146.208Z" fill="white"/>
1681
+ <path opacity="0.5" d="M523.756 97.5804C523.827 98.0295 523.757 98.4982 523.555 98.9127C523.433 99.1684 523.266 99.3979 523.065 99.5879C522.863 99.778 522.63 99.9249 522.38 100.02C522.106 100.123 521.818 100.162 521.535 100.135C521.252 100.108 520.98 100.015 520.738 99.8638C520.496 99.7123 520.289 99.505 520.132 99.2562C519.974 99.0073 519.87 98.7227 519.825 98.4212C519.765 97.9758 519.834 97.5148 520.023 97.1007C520.265 96.5916 520.679 96.1963 521.176 96.0003C521.673 95.8043 522.213 95.8233 522.679 96.053C522.964 96.1895 523.21 96.3997 523.398 96.6656C523.585 96.9316 523.708 97.2454 523.756 97.5804V97.5804Z" fill="white"/>
1682
+ <path opacity="0.5" d="M449.149 137.733C449.208 138.182 449.138 138.647 448.948 139.065C448.826 139.319 448.66 139.547 448.459 139.735C448.258 139.923 448.026 140.068 447.776 140.161C447.526 140.261 447.262 140.307 447 140.295C446.737 140.282 446.483 140.212 446.251 140.089C445.971 139.94 445.731 139.719 445.552 139.444C445.373 139.17 445.261 138.849 445.224 138.511C445.161 138.066 445.234 137.603 445.433 137.193C445.627 136.784 445.934 136.445 446.31 136.225C446.686 136.006 447.111 135.917 447.525 135.971C447.939 136.026 448.321 136.221 448.615 136.529C448.909 136.837 449.1 137.242 449.162 137.685L449.149 137.733Z" fill="white"/>
1683
+ <path opacity="0.5" d="M450.357 259.668C450.417 260.113 450.349 260.574 450.159 260.988C449.917 261.497 449.503 261.892 449.006 262.088C448.509 262.284 447.969 262.265 447.503 262.036C447.202 261.881 446.946 261.644 446.76 261.348C446.574 261.051 446.464 260.704 446.44 260.341C446.417 259.977 446.481 259.609 446.626 259.271C446.771 258.934 446.992 258.638 447.268 258.412C447.545 258.186 447.867 258.037 448.205 257.98C448.543 257.924 448.885 257.961 449.198 258.087C449.511 258.214 449.785 258.427 449.993 258.705C450.202 258.983 450.339 259.318 450.39 259.677L450.357 259.668Z" fill="white"/>
1684
+ <path opacity="0.5" d="M789.532 234.414C789.598 234.915 789.496 235.433 789.245 235.877C788.994 236.321 788.61 236.663 788.159 236.842C787.652 237.031 787.106 237.006 786.634 236.769C786.175 236.529 785.829 236.101 785.672 235.575C785.514 235.049 785.557 234.469 785.792 233.958C786.034 233.449 786.448 233.055 786.945 232.861C787.442 232.667 787.981 232.689 788.445 232.922C788.729 233.051 788.977 233.254 789.166 233.514C789.355 233.774 789.481 234.083 789.532 234.414V234.414Z" fill="white"/>
1685
+ <path opacity="0.5" d="M821.662 168.527C821.75 169.164 821.649 169.824 821.374 170.414C821.022 171.151 820.419 171.721 819.696 171.998C818.974 172.276 818.192 172.239 817.522 171.894C817.126 171.69 816.784 171.386 816.525 171.006C816.266 170.626 816.097 170.182 816.031 169.709C815.943 169.068 816.044 168.404 816.321 167.81C816.495 167.444 816.732 167.115 817.02 166.843C817.307 166.57 817.64 166.359 817.998 166.221C818.356 166.083 818.732 166.022 819.106 166.041C819.479 166.06 819.842 166.158 820.173 166.33C820.573 166.532 820.918 166.837 821.177 167.219C821.436 167.602 821.602 168.051 821.662 168.527V168.527Z" fill="white"/>
1686
+ <path opacity="0.5" d="M665.778 3.41004C665.892 4.24727 665.72 5.11427 665.294 5.85298C664.868 6.59168 664.216 7.15295 663.458 7.43453C663.002 7.60891 662.521 7.67692 662.048 7.63384C661.575 7.59076 661.121 7.43758 660.716 7.1849C660.312 6.93222 659.967 6.58596 659.705 6.16974C659.444 5.75353 659.271 5.2772 659.2 4.77333C659.086 3.9361 659.258 3.0691 659.684 2.3304C660.11 1.59169 660.762 1.03043 661.52 0.74884C661.933 0.58394 662.368 0.50969 662.8 0.53049C663.232 0.551289 663.652 0.666751 664.034 0.869878C664.497 1.10556 664.896 1.45852 665.199 1.90005C665.503 2.34157 665.701 2.85907 665.778 3.41004V3.41004Z" fill="white"/>
1687
+ <path opacity="0.5" d="M639.281 133.12C639.399 133.966 639.198 134.842 638.722 135.558C638.246 136.273 637.534 136.768 636.743 136.935C635.951 137.101 635.145 136.924 634.501 136.444C633.858 135.963 633.43 135.218 633.311 134.373C633.214 133.699 633.326 132.999 633.629 132.379C633.919 131.746 634.385 131.22 634.96 130.878C635.535 130.537 636.189 130.398 636.824 130.482C637.46 130.566 638.045 130.868 638.493 131.344C638.941 131.821 639.228 132.446 639.314 133.129L639.281 133.12Z" fill="white"/>
1688
+ </g>
1689
+ <path d="M646.875 -41.6873L647.034 -41.5007L683.409 34.036L631.796 44.6778L631.602 44.3654L631.693 44.7514L606.157 93.9968L553.825 110.918L553.737 110.893L553.717 110.965L541.724 179.501L504.821 199.537L498.156 242.092L451.776 228.374L451.917 228.543L474.329 298.705L419.218 346.304L368.257 300.412L295.313 344.306L294.959 344.308L295.275 344.398L301.952 465.722L162.571 329.715L162.451 329.681L227.594 473.966L69.3996 376.645L69.3501 376.528L172.801 547.191L243.505 594.256L243.419 594.309L243.517 594.337L-67.1501 638.598L-67.1704 638.669L-67.094 638.691L226.915 693.019L215.872 756.459L215.835 756.59L268.005 730.464L318.526 749.087L339.925 772.908L328.329 819.79L398.754 893.791L398.954 894.002L371.874 808.275L409.066 767.005L397.837 661.692L437.461 665.75L437.667 665.899L409.819 604.589L429.543 565.441L383.91 469.938L487.798 399.778L487.896 399.806L487.923 399.71L488.012 399.646L487.958 399.63L524.525 319.011L494.558 281.607L529.315 251.585L541.872 179.813L569.75 164.691L595.54 114.965L649.463 119.759L649.528 119.778L686.261 158.033L686.237 158.116L686.314 158.138L708.859 162.859L719.713 192.424L665.465 294.336L668.756 355.937L640.376 423.029L640.302 423.291L694.908 378.469L678.004 329.937L698.419 272.048L733.793 248.208L728.54 227.139L776.415 176.729L776.511 176.64L739.969 168.992L783.66 118.656L783.968 118.525L783.686 118.522L787.532 7.25664L787.811 7.06547L787.469 7.14844L714.296 -18.233L709.504 -54.3252L709.469 -54.618L700.199 -23.0923L647.001 -41.5486L646.875 -41.6873ZM504.972 199.798L529.178 251.237L498.348 242.121L504.972 199.798ZM498.202 242.221L492.441 278.923L452.202 228.701L498.202 242.221ZM452.216 228.82L492.432 279.036L491.699 283.743L474.511 298.602L452.216 228.82ZM492.547 279.172L494.37 281.438L491.856 283.607L492.547 279.172ZM408.879 766.914L371.836 808.033L372.597 753.859L408.879 766.914ZM371.708 807.611L360.062 752.723L372.466 753.822L371.708 807.611ZM435.866 380.06L419.78 374.019L419.303 346.586L447.284 368.285L435.866 380.06ZM447.435 368.379L487.424 399.389L436.004 380.112L447.435 368.379ZM324.866 653.94L294.471 599.743L355.905 604.172L324.866 653.94ZM324.756 654.038L275.234 670.868L293.938 599.669L294.319 599.7L324.756 654.038ZM277.465 571.495L293.665 599.386L243.854 594.149L277.465 571.495ZM296.308 558.828L293.822 599.456L277.569 571.46L296.308 558.828ZM277.498 571.337L246.259 517.453L299.668 504.015L296.325 558.601L277.498 571.337ZM296.417 558.692L324.389 539.828L293.918 599.367L296.417 558.692ZM296.465 558.525L299.79 503.998L312.656 500.764L324.522 539.609L296.465 558.525ZM299.806 503.861L302.103 466.228L312.585 500.641L299.806 503.861ZM302.184 465.943L353.127 490.397L312.753 500.547L302.184 465.943ZM302.225 465.8L344.832 440.705L353.226 490.297L302.225 465.8ZM299.693 503.842L246.411 517.252L302.011 465.971L299.693 503.842ZM277.415 571.339L243.754 594.044L246.223 517.623L277.415 571.339ZM293.75 599.5L293.805 599.515L258.807 630.885L243.734 594.321L293.75 599.5ZM293.752 599.783L275.109 670.769L258.847 631.076L293.752 599.783ZM274.994 670.839L233.951 653.36L258.715 631.167L274.994 670.839ZM274.797 670.912L230.544 672.693L233.889 653.496L274.797 670.912ZM324.723 654.196L309.558 692.617L275.266 671.045L324.723 654.196ZM324.744 654.497L321.696 700.266L309.69 692.693L324.744 654.497ZM324.875 654.367L352.884 719.89L321.861 700.351L324.875 654.367ZM294.404 599.608L294.34 599.5L294.1 599.432L324.519 539.788L355.851 603.989L294.404 599.608ZM312.793 500.738L353.196 490.571L324.603 539.49L312.793 500.738ZM344.955 440.688L359.75 432.02L374.575 450.618L353.314 490.322L344.955 440.688ZM344.926 440.538L339.046 405.913L359.682 431.846L344.926 440.538ZM359.886 431.916L373.454 423.916L374.632 450.416L359.886 431.916ZM359.8 431.802L339.02 405.674L360.526 371.636L371.378 376.167L373.447 423.773L359.8 431.802ZM419.671 373.988L370.821 355.671L419.219 346.549L419.671 373.988ZM419.631 374.131L419.992 396.231L370.897 355.86L419.631 374.131ZM360.567 371.532L370.467 355.879L371.336 376.027L360.567 371.532ZM371.477 376.234L419.898 396.397L373.54 423.696L371.477 376.234ZM371.518 376.091L370.636 355.824L419.683 396.156L371.518 376.091ZM419.806 374.219L435.797 380.22L420.174 396.257L419.806 374.219ZM419.407 346.512L484.255 330.374L447.395 368.226L419.407 346.512ZM370.537 355.59L370.439 355.563L370.405 355.682L360.468 371.427L295.732 344.45L418.578 346.483L370.537 355.59ZM360.424 371.581L338.992 405.563L295.637 344.577L360.424 371.581ZM338.948 405.718L344.871 440.651L302.195 465.778L295.52 344.66L338.948 405.718ZM246.243 517.346L227.853 474.053L301.925 465.985L246.243 517.346ZM243.676 593.945L216.128 529.749L246.146 517.563L243.676 593.945ZM258.761 631.129L233.924 653.288L243.654 594.479L258.761 631.129ZM230.495 672.782L-66.9123 638.55L233.732 653.632L230.495 672.782ZM230.455 672.925L229.036 681.09L-66.8083 638.682L230.455 672.925ZM230.586 672.962L275.074 671.183L263.342 696.582L229.147 681.199L230.586 672.962ZM275.208 671.208L309.513 692.733L301.252 713.546L263.365 696.499L275.208 671.208ZM301.162 713.739L250.86 723.917L263.424 696.708L301.162 713.739ZM300.891 713.945L268.047 730.36L250.961 724.061L300.891 713.945ZM301.48 713.701L309.741 692.888L321.813 700.479L320.779 716.06L301.48 713.701ZM321.887 700.59L352.793 720.045L320.875 716.139L321.887 700.59ZM353.263 720.551L372.363 753.728L359.992 752.639L353.263 720.551ZM359.95 752.704L345.444 751.408L353.047 720.438L359.95 752.704ZM353.178 720.141L375.581 674.085L372.535 753.661L353.178 720.141ZM353.114 719.994L325.014 654.252L376.146 659.49L375.632 673.778L353.114 719.994ZM325.272 654.133L376.91 639.407L376.15 659.35L325.272 654.133ZM376.272 659.5L382.233 660.11L375.742 673.475L376.272 659.5ZM376.31 659.369L377.08 639.391L394.814 634.335L382.328 659.982L376.31 659.369ZM394.897 634.461L397.82 661.584L382.509 660.008L394.897 634.461ZM394.783 634.197L377.077 639.236L377.775 621.051L394.783 634.197ZM377.79 620.875L380.715 541.265L394.721 633.999L377.79 620.875ZM376.947 639.276L325.082 654.053L356.114 604.308L377.65 620.951L376.947 639.276ZM324.749 539.724L353.334 490.79L355.902 603.81L324.749 539.724ZM374.727 450.829L383.841 469.892L353.567 490.342L374.727 450.829ZM373.635 423.903L419.85 396.692L374.793 450.513L373.635 423.903ZM420.306 396.371L435.982 380.234L487.464 399.542L420.306 396.371ZM447.597 368.348L484.517 330.448L487.822 399.566L447.597 368.348ZM491.732 284.086L484.551 329.995L474.611 298.875L491.732 284.086ZM484.484 330.233L419.489 346.304L474.397 298.84L484.484 330.233ZM419.156 346.441L295.677 344.396L368.334 300.679L419.156 346.441ZM162.768 329.977L301.565 465.921L227.797 473.959L162.768 329.977ZM227.649 473.982L246.025 517.323L215.979 529.526L69.4357 376.643L227.649 473.982ZM215.868 529.585L172.993 547.014L69.3497 376.863L215.868 529.585ZM173.046 547.119L215.931 529.693L243.498 593.946L173.046 547.119ZM233.741 653.351L-66.9264 638.391L243.465 594.811L233.741 653.351ZM-66.8286 638.753L228.99 681.168L226.958 692.786L-66.8286 638.753ZM227.051 692.916L229.082 681.219L263.248 696.581L250.668 723.888L227.051 692.916ZM250.604 723.947L215.954 756.251L226.946 693.118L250.604 723.947ZM216.314 756.147L250.711 724.029L267.793 730.339L216.314 756.147ZM268.115 730.366L301.285 713.761L320.658 716.155L318.429 748.97L268.115 730.366ZM318.563 748.956L320.792 716.141L352.972 720.121L345.25 751.301L318.563 748.956ZM318.674 749.104L345.134 751.461L339.867 772.737L318.674 749.104ZM340.011 772.855L345.297 751.469L359.875 752.76L371.593 808.016L340.011 772.855ZM328.404 819.734L339.947 773.081L371.566 808.278L328.404 819.734ZM328.45 819.863L371.648 808.404L371.753 808.91L371.8 808.743L398.604 893.53L328.45 819.863ZM408.85 766.893L372.538 753.817L375.599 673.769L382.247 660.101L397.638 661.687L408.85 766.893ZM397.758 661.554L394.862 634.335L437.166 665.628L397.758 661.554ZM437.256 665.474L394.865 634.156L409.681 604.743L437.256 665.474ZM394.811 633.973L380.783 541.026L409.626 604.522L394.811 633.973ZM409.694 604.451L380.741 540.551L380.634 540.302L377.547 620.69L356.059 604.087L353.367 490.633L429.394 565.386L409.694 604.451ZM429.192 565.097L353.35 490.525L383.763 469.999L429.192 565.097ZM374.68 450.661L420.02 396.509L420.085 396.527L487.573 399.779L383.843 469.842L374.68 450.661ZM524.293 318.997L487.823 399.399L484.496 330.275L491.739 283.934L494.364 281.668L524.293 318.997ZM492.506 279.109L498.205 242.376L529.046 251.495L494.503 281.425L492.506 279.109ZM529.207 251.258L504.956 199.729L541.772 179.707L529.207 251.258ZM787.17 7.41112L723.679 52.1195L720.053 24.7709L787.17 7.41112ZM721.193 143.741L721.891 117.902L783.32 118.688L721.193 143.741ZM721.06 143.793L704.548 150.444L692.451 117.529L721.761 117.904L721.06 143.793ZM704.396 28.8215L723.381 52.0478L683.701 34.1702L704.396 28.8215ZM649.743 119.478L672.817 98.5052L692.228 117.401L649.743 119.478ZM649.718 119.317L662.11 88.0977L672.699 98.4203L649.718 119.317ZM662.154 87.9429L683.492 34.2399L723.465 52.2517L672.781 98.3406L662.154 87.9429ZM683.351 34.2384L662.143 87.7726L653.041 78.9008L631.911 44.8134L683.351 34.2384ZM652.796 78.9729L640.837 82.8371L631.868 45.2129L652.796 78.9729ZM652.828 79.1105L649.486 119.136L640.869 82.9747L652.828 79.1105ZM652.959 79.1477L661.998 87.9503L649.627 119.098L652.959 79.1477ZM692.248 117.497L686.34 157.669L649.752 119.571L692.248 117.497ZM692.36 117.683L704.389 150.464L686.46 157.703L692.36 117.683ZM692.451 117.362L672.992 98.3875L723.63 52.3758L721.845 117.734L692.451 117.362ZM723.534 51.924L704.557 28.7126L719.932 24.7369L723.534 51.924ZM704.46 28.5953L690.284 11.2478L700.346 -22.9865L714.243 -18.1707L719.912 24.6024L704.46 28.5953ZM704.309 28.6295L683.6 33.9871L690.233 11.4263L704.309 28.6295ZM683.485 33.8905L647.358 -41.0615L690.231 11.3099L683.485 33.8905ZM631.733 44.9429L640.75 82.8123L606.326 93.9417L631.733 44.9429ZM554.169 110.952L606.103 94.1872L595.508 114.621L554.169 110.952ZM541.887 179.508L553.812 111.339L569.662 164.461L541.887 179.508ZM569.723 164.246L553.945 111.119L595.421 114.802L569.723 164.246ZM595.591 114.619L606.228 94.1199L640.771 82.9468L649.456 119.41L595.591 114.619ZM686.635 157.753L704.521 150.539L708.879 162.414L686.635 157.753ZM709.036 162.446L704.65 150.499L721.115 143.848L720.539 164.846L709.036 162.446ZM720.531 164.998L719.805 191.807L709.093 162.616L720.531 164.998ZM719.991 191.86L720.717 165.051L739.88 169.057L720.035 191.911L720.099 191.685L719.991 191.86ZM640.659 422.865L668.9 356.094L694.788 378.435L640.659 422.865ZM694.69 378.24L668.887 355.974L677.997 330.128L694.69 378.24ZM668.869 355.661L665.673 294.601L677.932 329.942L668.869 355.661ZM678.014 329.734L665.693 294.157L698.323 272.176L678.014 329.734ZM665.761 293.918L719.663 192.641L705.742 251.008L698.372 271.881L665.761 293.918ZM705.859 251.093L733.559 248.245L698.579 271.772L705.859 251.093ZM733.726 248.073L706.019 250.945L728.552 227.22L733.726 248.073ZM705.929 250.804L719.85 192.437L728.483 227.046L705.929 250.804ZM719.926 192.214L776.206 176.76L728.55 226.936L719.926 192.214ZM776.161 176.708L720.035 192.078L739.984 169.022L776.161 176.708ZM720.65 164.954L721.228 143.867L783.474 118.771L739.895 168.92L720.65 164.954ZM721.942 117.723L723.728 52.3648L783.559 118.512L721.942 117.723ZM723.771 52.21L787.483 7.34565L783.712 118.388L723.771 52.21ZM787.314 7.19472L720.085 24.5742L714.425 -18.1062L787.314 7.19472ZM709.528 -54.0354L714.275 -18.3675L700.444 -23.1646L709.528 -54.0354ZM700.269 -23.0081L690.231 11.1427L647.327 -41.3663L700.269 -23.0081Z" fill="white"/>
1690
+ <path d="M331.697 818.891C331.841 819.602 331.783 820.353 331.529 821.047C331.275 821.741 330.838 822.347 330.274 822.788C329.709 823.228 329.043 823.483 328.36 823.52C327.677 823.556 327.009 823.372 326.441 822.992C325.874 822.612 325.432 822.053 325.174 821.386C324.915 820.719 324.851 819.975 324.989 819.249C325.128 818.523 325.463 817.849 325.952 817.312C326.441 816.775 327.06 816.401 327.732 816.236C328.608 816.022 329.511 816.179 330.251 816.674C330.991 817.17 331.509 817.965 331.697 818.891V818.891Z" fill="white"/>
1691
+ <path d="M304.494 712.843C304.62 713.514 304.557 714.219 304.312 714.869C304.067 715.519 303.652 716.086 303.118 716.496C302.585 716.907 301.958 717.143 301.316 717.175C300.674 717.208 300.046 717.035 299.512 716.678C298.978 716.321 298.561 715.797 298.315 715.172C298.069 714.546 298.004 713.847 298.128 713.164C298.253 712.481 298.561 711.843 299.015 711.332C299.468 710.821 300.046 710.46 300.676 710.294C301.519 710.074 302.394 710.219 303.109 710.697C303.824 711.174 304.322 711.946 304.494 712.843V712.843Z" fill="white"/>
1692
+ <path d="M217.387 756.064C217.439 756.278 217.45 756.504 217.418 756.726C217.386 756.949 217.313 757.165 217.203 757.36C217.092 757.555 216.947 757.726 216.776 757.861C216.605 757.997 216.411 758.095 216.207 758.149C216.003 758.204 215.793 758.213 215.589 758.177C215.385 758.141 215.193 758.06 215.022 757.939C214.852 757.819 214.708 757.661 214.599 757.475C214.491 757.29 214.419 757.081 214.389 756.861C214.333 756.447 214.427 756.018 214.653 755.662C214.879 755.307 215.218 755.052 215.602 754.95C215.986 754.848 216.385 754.907 216.717 755.114C217.049 755.321 217.289 755.661 217.387 756.064Z" fill="white"/>
1693
+ <path d="M235.813 652.947C235.889 653.358 235.85 653.79 235.7 654.188C235.55 654.586 235.295 654.933 234.968 655.184C234.641 655.435 234.257 655.58 233.864 655.599C233.471 655.619 233.086 655.513 232.759 655.294C232.432 655.075 232.177 654.754 232.026 654.371C231.875 653.988 231.836 653.56 231.912 653.141C231.988 652.723 232.177 652.333 232.455 652.02C232.733 651.707 233.087 651.485 233.473 651.383C233.99 651.25 234.525 651.339 234.963 651.632C235.402 651.925 235.707 652.398 235.813 652.947V652.947Z" fill="white"/>
1694
+ <path d="M174.83 546.646C174.906 547.057 174.866 547.488 174.715 547.885C174.564 548.282 174.31 548.628 173.983 548.879C173.657 549.129 173.273 549.273 172.881 549.293C172.488 549.312 172.104 549.207 171.778 548.989C171.451 548.771 171.196 548.451 171.044 548.069C170.893 547.687 170.852 547.259 170.927 546.841C171.003 546.423 171.19 546.033 171.466 545.719C171.742 545.406 172.095 545.183 172.479 545.079C172.998 544.943 173.537 545.031 173.978 545.324C174.419 545.618 174.725 546.094 174.83 546.646V546.646Z" fill="white"/>
1695
+ <path d="M245.541 593.688C245.617 594.099 245.578 594.53 245.428 594.929C245.278 595.327 245.023 595.673 244.696 595.924C244.369 596.176 243.985 596.32 243.592 596.34C243.199 596.359 242.814 596.253 242.487 596.034C242.16 595.816 241.905 595.495 241.754 595.111C241.603 594.728 241.564 594.3 241.64 593.882C241.716 593.463 241.905 593.073 242.183 592.76C242.461 592.447 242.815 592.225 243.2 592.124C243.457 592.056 243.72 592.043 243.977 592.085C244.233 592.127 244.477 592.223 244.694 592.368C244.911 592.514 245.098 592.705 245.243 592.931C245.388 593.158 245.49 593.415 245.541 593.688V593.688Z" fill="white"/>
1696
+ <path d="M252.609 723.486C252.688 723.896 252.651 724.329 252.502 724.728C252.354 725.127 252.1 725.475 251.774 725.727C251.448 725.98 251.064 726.126 250.671 726.148C250.278 726.169 249.893 726.065 249.564 725.847C249.236 725.63 248.98 725.31 248.828 724.927C248.676 724.544 248.635 724.116 248.71 723.697C248.785 723.278 248.973 722.887 249.25 722.573C249.527 722.259 249.88 722.037 250.266 721.934C250.782 721.799 251.317 721.886 251.756 722.177C252.194 722.467 252.501 722.938 252.609 723.486V723.486Z" fill="white"/>
1697
+ <path d="M320.482 748.51C320.557 748.92 320.517 749.351 320.367 749.749C320.216 750.146 319.961 750.491 319.635 750.742C319.308 750.992 318.925 751.136 318.532 751.156C318.14 751.176 317.756 751.07 317.429 750.852C317.102 750.634 316.847 750.314 316.696 749.932C316.545 749.55 316.504 749.123 316.579 748.705C316.654 748.287 316.841 747.896 317.117 747.583C317.394 747.269 317.746 747.046 318.131 746.943C318.65 746.806 319.189 746.894 319.629 747.188C320.07 747.482 320.377 747.957 320.482 748.51V748.51Z" fill="white"/>
1698
+ <path d="M374.031 753.416C374.093 753.737 374.064 754.075 373.948 754.387C373.832 754.699 373.634 754.972 373.379 755.169C373.124 755.367 372.823 755.482 372.516 755.498C372.208 755.515 371.907 755.433 371.65 755.262C371.394 755.092 371.193 754.841 371.075 754.542C370.956 754.242 370.925 753.907 370.984 753.579C371.043 753.252 371.191 752.946 371.408 752.701C371.626 752.456 371.903 752.283 372.205 752.203C372.404 752.149 372.61 752.137 372.81 752.169C373.01 752.2 373.2 752.275 373.37 752.388C373.54 752.5 373.686 752.649 373.799 752.826C373.913 753.002 373.991 753.203 374.031 753.416V753.416Z" fill="white"/>
1699
+ <path d="M439.43 665.125C439.507 665.536 439.468 665.968 439.318 666.366C439.167 666.764 438.913 667.111 438.586 667.362C438.259 667.613 437.875 667.758 437.482 667.777C437.088 667.797 436.704 667.69 436.377 667.472C436.05 667.253 435.795 666.932 435.644 666.549C435.493 666.166 435.453 665.738 435.53 665.319C435.606 664.901 435.795 664.51 436.073 664.197C436.351 663.884 436.705 663.663 437.09 663.561C437.607 663.428 438.143 663.517 438.581 663.81C439.019 664.103 439.324 664.575 439.43 665.125V665.125Z" fill="white"/>
1700
+ <path d="M382.116 540.193C382.157 540.583 382.061 540.981 381.845 541.31C381.629 541.639 381.311 541.875 380.951 541.971C380.592 542.066 380.219 542.014 379.906 541.826C379.592 541.637 379.361 541.325 379.259 540.952C379.202 540.746 379.186 540.527 379.212 540.31C379.238 540.092 379.306 539.881 379.411 539.69C379.516 539.498 379.656 539.33 379.821 539.197C379.987 539.063 380.175 538.967 380.374 538.915C380.572 538.862 380.777 538.854 380.975 538.89C381.173 538.927 381.36 539.008 381.524 539.129C381.687 539.249 381.825 539.405 381.926 539.589C382.028 539.772 382.093 539.978 382.116 540.193Z" fill="white"/>
1701
+ <path d="M422.015 395.838C422.092 396.249 422.052 396.681 421.902 397.079C421.752 397.477 421.497 397.824 421.17 398.075C420.844 398.326 420.459 398.47 420.066 398.49C419.673 398.51 419.288 398.403 418.961 398.185C418.634 397.966 418.379 397.645 418.228 397.262C418.078 396.879 418.038 396.451 418.114 396.032C418.191 395.613 418.38 395.223 418.657 394.91C418.935 394.597 419.289 394.376 419.675 394.274C419.931 394.206 420.195 394.193 420.451 394.235C420.707 394.277 420.951 394.373 421.168 394.519C421.385 394.664 421.572 394.855 421.717 395.081C421.863 395.308 421.964 395.565 422.015 395.838Z" fill="white"/>
1702
+ <path d="M489.774 399.09C489.849 399.5 489.809 399.931 489.659 400.329C489.508 400.726 489.253 401.071 488.927 401.322C488.6 401.572 488.217 401.717 487.824 401.736C487.432 401.756 487.048 401.65 486.721 401.432C486.394 401.214 486.139 400.894 485.988 400.512C485.837 400.13 485.796 399.703 485.871 399.285C485.946 398.867 486.133 398.476 486.409 398.163C486.686 397.849 487.038 397.627 487.423 397.523C487.942 397.386 488.481 397.474 488.921 397.768C489.362 398.062 489.669 398.537 489.774 399.09V399.09Z" fill="white"/>
1703
+ <path d="M526.37 318.414C526.447 318.825 526.407 319.257 526.257 319.655C526.107 320.053 525.852 320.4 525.525 320.651C525.199 320.902 524.814 321.047 524.421 321.066C524.028 321.086 523.643 320.98 523.316 320.761C522.989 320.542 522.734 320.221 522.583 319.838C522.433 319.455 522.393 319.027 522.469 318.608C522.546 318.19 522.735 317.799 523.012 317.486C523.29 317.173 523.644 316.952 524.03 316.85C524.286 316.782 524.55 316.769 524.806 316.811C525.062 316.853 525.306 316.95 525.523 317.095C525.74 317.24 525.927 317.431 526.072 317.658C526.218 317.884 526.319 318.141 526.37 318.414V318.414Z" fill="white"/>
1704
+ <path d="M453.973 228.033C454.051 228.443 454.014 228.875 453.866 229.275C453.717 229.674 453.464 230.021 453.138 230.274C452.812 230.527 452.428 230.673 452.034 230.695C451.641 230.716 451.256 230.611 450.928 230.394C450.6 230.177 450.343 229.857 450.191 229.474C450.039 229.091 449.998 228.663 450.073 228.244C450.148 227.825 450.336 227.434 450.613 227.12C450.89 226.806 451.244 226.584 451.629 226.48C452.145 226.346 452.68 226.433 453.119 226.724C453.558 227.014 453.864 227.485 453.973 228.033Z" fill="white"/>
1705
+ <path d="M71.333 376.151C71.4099 376.561 71.3707 376.993 71.2204 377.391C71.0701 377.789 70.8155 378.136 70.4887 378.387C70.1619 378.638 69.7776 378.783 69.3844 378.803C68.9912 378.822 68.6067 378.716 68.2796 378.497C67.9525 378.279 67.6975 377.957 67.5467 377.574C67.3959 377.191 67.3562 376.763 67.4326 376.345C67.5089 375.926 67.6979 375.536 67.9757 375.223C68.2534 374.91 68.6075 374.688 68.993 374.586C69.51 374.453 70.0457 374.543 70.4839 374.835C70.922 375.128 71.2271 375.601 71.333 376.151V376.151Z" fill="white"/>
1706
+ <path d="M163.966 329.453C164.022 329.748 163.995 330.059 163.888 330.346C163.78 330.633 163.598 330.883 163.363 331.064C163.128 331.245 162.852 331.35 162.569 331.364C162.286 331.379 162.01 331.303 161.774 331.146C161.539 330.989 161.355 330.758 161.247 330.482C161.138 330.206 161.11 329.898 161.165 329.597C161.22 329.296 161.357 329.015 161.557 328.791C161.757 328.566 162.012 328.407 162.29 328.335C162.66 328.238 163.044 328.301 163.358 328.511C163.672 328.72 163.89 329.059 163.966 329.453V329.453Z" fill="white"/>
1707
+ <path d="M354.983 719.559C355.087 720.111 354.982 720.695 354.69 721.182C354.398 721.67 353.943 722.022 353.425 722.16C352.908 722.298 352.369 722.211 351.929 721.919C351.489 721.626 351.183 721.152 351.078 720.6C351.026 720.327 351.025 720.043 351.076 719.764C351.126 719.486 351.226 719.218 351.371 718.977C351.515 718.735 351.701 718.525 351.918 718.357C352.135 718.189 352.379 718.068 352.635 717.999C352.892 717.931 353.156 717.917 353.413 717.958C353.669 718 353.914 718.096 354.132 718.24C354.35 718.385 354.537 718.576 354.683 718.803C354.829 719.029 354.931 719.286 354.983 719.559V719.559Z" fill="white"/>
1708
+ <path d="M400.701 893.249C400.78 893.66 400.742 894.092 400.594 894.491C400.445 894.89 400.192 895.238 399.866 895.491C399.54 895.744 399.156 895.89 398.762 895.911C398.369 895.933 397.984 895.828 397.656 895.611C397.328 895.394 397.071 895.073 396.919 894.691C396.767 894.308 396.726 893.88 396.801 893.461C396.876 893.042 397.064 892.651 397.341 892.337C397.618 892.023 397.972 891.8 398.357 891.697C398.873 891.563 399.408 891.65 399.847 891.94C400.286 892.231 400.592 892.701 400.701 893.249V893.249Z" fill="white"/>
1709
+ <path d="M410.939 766.429C411.017 766.843 410.979 767.277 410.829 767.679C410.678 768.08 410.423 768.429 410.094 768.683C409.766 768.936 409.379 769.082 408.983 769.103C408.588 769.123 408.201 769.017 407.871 768.797C407.542 768.577 407.285 768.254 407.133 767.869C406.981 767.483 406.94 767.053 407.017 766.631C407.094 766.21 407.284 765.817 407.564 765.502C407.843 765.187 408.2 764.964 408.588 764.862C409.107 764.725 409.646 764.814 410.087 765.107C410.527 765.401 410.834 765.877 410.939 766.429V766.429Z" fill="white"/>
1710
+ <path d="M396.776 633.617C396.853 634.028 396.814 634.46 396.663 634.858C396.513 635.256 396.258 635.603 395.932 635.854C395.605 636.105 395.22 636.25 394.827 636.269C394.434 636.289 394.05 636.183 393.723 635.964C393.395 635.745 393.14 635.424 392.99 635.041C392.839 634.658 392.799 634.23 392.875 633.811C392.952 633.393 393.141 633.002 393.419 632.69C393.696 632.377 394.05 632.155 394.436 632.053C394.692 631.986 394.956 631.972 395.212 632.014C395.468 632.056 395.712 632.153 395.929 632.298C396.147 632.443 396.333 632.634 396.479 632.861C396.624 633.087 396.725 633.344 396.776 633.617V633.617Z" fill="white"/>
1711
+ <path d="M326.787 653.571C326.868 653.984 326.832 654.419 326.683 654.821C326.534 655.223 326.28 655.574 325.952 655.829C325.625 656.084 325.238 656.232 324.842 656.255C324.446 656.277 324.059 656.172 323.728 655.954C323.398 655.735 323.139 655.413 322.986 655.028C322.833 654.643 322.791 654.213 322.866 653.791C322.942 653.369 323.131 652.975 323.41 652.659C323.689 652.343 324.045 652.12 324.433 652.016C324.951 651.878 325.49 651.964 325.931 652.255C326.372 652.547 326.68 653.02 326.787 653.571V653.571Z" fill="white"/>
1712
+ <path d="M277.058 670.509C277.136 670.92 277.099 671.352 276.951 671.751C276.802 672.15 276.549 672.498 276.223 672.751C275.897 673.003 275.513 673.15 275.119 673.171C274.726 673.193 274.341 673.088 274.013 672.871C273.685 672.653 273.428 672.333 273.276 671.95C273.124 671.568 273.083 671.14 273.158 670.721C273.233 670.302 273.421 669.911 273.698 669.597C273.975 669.283 274.329 669.06 274.714 668.957C275.23 668.822 275.765 668.91 276.204 669.2C276.643 669.491 276.949 669.961 277.058 670.509Z" fill="white"/>
1713
+ <path d="M297.712 598.628C297.862 599.441 297.783 600.294 297.485 601.08C297.187 601.866 296.683 602.55 296.036 603.046C295.39 603.541 294.63 603.825 293.853 603.863C293.076 603.901 292.317 603.69 291.671 603.257C291.025 602.824 290.521 602.189 290.224 601.432C289.927 600.674 289.848 599.829 290 599.002C290.151 598.175 290.524 597.403 291.073 596.785C291.622 596.167 292.321 595.729 293.083 595.528C294.107 595.26 295.17 595.436 296.037 596.018C296.905 596.599 297.507 597.538 297.712 598.628V598.628Z" fill="white"/>
1714
+ <path d="M248.072 516.924C248.148 517.334 248.108 517.765 247.957 518.163C247.807 518.56 247.552 518.905 247.226 519.156C246.899 519.406 246.516 519.551 246.123 519.57C245.73 519.59 245.347 519.484 245.02 519.266C244.693 519.048 244.438 518.728 244.287 518.346C244.135 517.964 244.095 517.537 244.17 517.119C244.245 516.701 244.432 516.31 244.708 515.997C244.984 515.683 245.337 515.46 245.721 515.357C246.241 515.22 246.78 515.308 247.22 515.602C247.661 515.896 247.967 516.371 248.072 516.924V516.924Z" fill="white"/>
1715
+ <path d="M326.521 539.133C326.598 539.544 326.559 539.976 326.408 540.374C326.258 540.772 326.003 541.119 325.677 541.37C325.35 541.621 324.966 541.765 324.572 541.785C324.179 541.805 323.795 541.698 323.468 541.48C323.141 541.261 322.885 540.94 322.735 540.557C322.584 540.174 322.544 539.746 322.621 539.327C322.697 538.909 322.886 538.518 323.164 538.205C323.441 537.892 323.795 537.671 324.181 537.569C324.437 537.501 324.701 537.488 324.957 537.53C325.213 537.572 325.457 537.668 325.674 537.814C325.892 537.959 326.078 538.15 326.224 538.377C326.369 538.603 326.47 538.86 326.521 539.133V539.133Z" fill="white"/>
1716
+ <path d="M357.966 603.559C358.066 604.11 357.958 604.692 357.666 605.177C357.374 605.663 356.92 606.013 356.405 606.152C356.019 606.254 355.619 606.231 355.256 606.088C354.893 605.944 354.582 605.685 354.363 605.344C354.145 605.004 354.028 604.596 354.028 604.173C354.027 603.75 354.144 603.331 354.362 602.969C354.58 602.606 354.89 602.317 355.253 602.137C355.617 601.957 356.016 601.894 356.402 601.958C356.788 602.021 357.142 602.207 357.42 602.492C357.699 602.777 357.888 603.148 357.966 603.559V603.559Z" fill="white"/>
1717
+ <path d="M356.726 489.563C356.86 490.285 356.79 491.044 356.526 491.743C356.261 492.443 355.814 493.052 355.24 493.493C354.665 493.934 353.99 494.188 353.299 494.223C352.608 494.257 351.933 494.071 351.358 493.687C350.783 493.304 350.334 492.74 350.068 492.067C349.802 491.395 349.731 490.643 349.864 489.907C349.997 489.171 350.328 488.485 350.815 487.934C351.301 487.383 351.923 486.992 352.6 486.811C353.511 486.57 354.457 486.725 355.231 487.241C356.005 487.757 356.542 488.592 356.726 489.563Z" fill="white"/>
1718
+ <path d="M340.858 405.14C340.937 405.551 340.9 405.983 340.751 406.382C340.603 406.781 340.349 407.129 340.023 407.382C339.697 407.634 339.313 407.781 338.92 407.802C338.527 407.823 338.142 407.719 337.813 407.502C337.485 407.284 337.229 406.964 337.077 406.581C336.925 406.198 336.884 405.771 336.959 405.352C337.034 404.933 337.222 404.542 337.499 404.228C337.776 403.914 338.129 403.691 338.515 403.588C339.031 403.453 339.566 403.541 340.005 403.831C340.443 404.122 340.75 404.592 340.858 405.14V405.14Z" fill="white"/>
1719
+ <path d="M371.992 355.243C372.05 355.55 372.02 355.872 371.908 356.169C371.796 356.466 371.606 356.725 371.363 356.912C371.119 357.1 370.832 357.208 370.539 357.224C370.246 357.239 369.959 357.16 369.714 356.998C369.47 356.835 369.279 356.596 369.165 356.311C369.052 356.025 369.021 355.706 369.077 355.394C369.133 355.081 369.273 354.789 369.479 354.555C369.685 354.32 369.948 354.154 370.236 354.076C370.428 354.024 370.625 354.013 370.818 354.044C371.01 354.074 371.193 354.146 371.357 354.254C371.52 354.363 371.66 354.506 371.769 354.676C371.878 354.845 371.954 355.038 371.992 355.243V355.243Z" fill="white"/>
1720
+ <path d="M432.337 564.612C432.457 565.216 432.405 565.853 432.189 566.441C431.973 567.03 431.602 567.544 431.124 567.919C430.645 568.293 430.081 568.511 429.501 568.545C428.922 568.58 428.354 568.428 427.87 568.11C427.386 567.792 427.007 567.322 426.781 566.76C426.555 566.197 426.492 565.567 426.601 564.95C426.71 564.333 426.986 563.756 427.392 563.293C427.799 562.83 428.319 562.5 428.887 562.347C429.644 562.143 430.432 562.267 431.079 562.691C431.726 563.116 432.178 563.806 432.337 564.612V564.612Z" fill="white"/>
1721
+ <path d="M376.601 450.086C376.706 450.638 376.6 451.222 376.308 451.71C376.016 452.197 375.561 452.549 375.044 452.687C374.526 452.825 373.988 452.738 373.547 452.446C373.107 452.153 372.801 451.679 372.696 451.127C372.644 450.854 372.644 450.57 372.694 450.292C372.744 450.013 372.844 449.746 372.989 449.504C373.133 449.263 373.32 449.052 373.537 448.884C373.754 448.717 373.997 448.595 374.254 448.527C374.51 448.458 374.774 448.444 375.031 448.486C375.288 448.527 375.532 448.623 375.75 448.768C375.968 448.913 376.155 449.104 376.301 449.33C376.447 449.556 376.549 449.813 376.601 450.086Z" fill="white"/>
1722
+ <path d="M373.697 807.75C373.774 808.161 373.735 808.593 373.585 808.991C373.434 809.389 373.18 809.736 372.853 809.987C372.526 810.238 372.142 810.383 371.749 810.402C371.355 810.422 370.971 810.315 370.644 810.097C370.317 809.878 370.062 809.557 369.911 809.174C369.76 808.791 369.72 808.363 369.797 807.944C369.873 807.526 370.062 807.135 370.34 806.822C370.618 806.509 370.972 806.288 371.357 806.186C371.613 806.118 371.877 806.105 372.133 806.147C372.39 806.189 372.633 806.286 372.851 806.431C373.068 806.576 373.255 806.767 373.4 806.994C373.545 807.22 373.646 807.477 373.697 807.75V807.75Z" fill="white"/>
1723
+ <path d="M725.627 51.654C725.713 52.0936 725.664 52.5577 725.487 52.978C725.263 53.5049 724.86 53.9261 724.364 54.1518C724.094 54.272 723.805 54.3287 723.518 54.318C723.231 54.3073 722.953 54.2294 722.702 54.0897C722.451 53.9501 722.234 53.7519 722.065 53.5091C721.896 53.2662 721.781 52.9844 721.726 52.6831C721.639 52.2436 721.688 51.7792 721.865 51.3591C722.04 50.938 722.332 50.5815 722.699 50.3411C723.067 50.1007 723.49 49.9888 723.909 50.0216C724.327 50.0544 724.719 50.2301 725.028 50.5235C725.337 50.8169 725.547 51.2129 725.627 51.654V51.654Z" fill="white"/>
1724
+ <path d="M688.337 157.284C688.425 157.727 688.371 158.196 688.183 158.616C688.073 158.882 687.916 159.124 687.72 159.328C687.524 159.531 687.293 159.691 687.042 159.799C686.791 159.907 686.525 159.96 686.26 159.955C685.994 159.95 685.734 159.888 685.497 159.771C685.257 159.661 685.043 159.5 684.866 159.297C684.688 159.094 684.551 158.854 684.463 158.59C684.375 158.326 684.336 158.043 684.35 157.758C684.365 157.473 684.431 157.191 684.545 156.929C684.656 156.664 684.815 156.423 685.011 156.221C685.207 156.018 685.437 155.859 685.688 155.751C685.938 155.644 686.204 155.59 686.469 155.594C686.734 155.598 686.994 155.659 687.232 155.774C687.52 155.905 687.771 156.11 687.964 156.373C688.156 156.636 688.284 156.949 688.337 157.284Z" fill="white"/>
1725
+ <path d="M778.442 176.068C778.528 176.512 778.477 176.98 778.299 177.404C778.188 177.669 778.029 177.909 777.833 178.112C777.637 178.314 777.407 178.473 777.156 178.581C776.906 178.689 776.64 178.742 776.375 178.738C776.11 178.734 775.85 178.673 775.612 178.559C775.327 178.431 775.077 178.231 774.883 177.975C774.689 177.719 774.557 177.413 774.497 177.085C774.408 176.645 774.457 176.18 774.637 175.76C774.748 175.5 774.905 175.263 775.099 175.064C775.293 174.865 775.52 174.708 775.767 174.602C776.012 174.487 776.273 174.428 776.536 174.427C776.798 174.426 777.055 174.484 777.29 174.596C777.583 174.717 777.841 174.914 778.041 175.171C778.242 175.427 778.379 175.735 778.442 176.068Z" fill="white"/>
1726
+ <path d="M785.241 118.151C785.305 118.495 785.268 118.858 785.136 119.189C784.998 119.514 784.77 119.789 784.484 119.975C784.199 120.16 783.87 120.246 783.545 120.221C783.221 120.196 782.916 120.061 782.675 119.835C782.435 119.609 782.27 119.303 782.204 118.962C782.138 118.618 782.179 118.254 782.321 117.927C782.406 117.724 782.526 117.538 782.676 117.382C782.825 117.226 783.001 117.102 783.192 117.017C783.578 116.85 784.001 116.846 784.375 117.005C784.597 117.104 784.791 117.26 784.941 117.459C785.092 117.658 785.195 117.895 785.241 118.151V118.151Z" fill="white"/>
1727
+ <path d="M789.513 6.67271C789.602 7.11203 789.553 7.577 789.374 7.99666C789.266 8.26009 789.111 8.49996 788.918 8.70165C788.725 8.90334 788.498 9.06274 788.251 9.17045C787.754 9.3889 787.207 9.39081 786.728 9.17586C786.442 9.04871 786.192 8.84874 785.998 8.59239C785.804 8.33604 785.672 8.03081 785.612 7.70192C785.522 7.26287 785.575 6.79673 785.763 6.38093C785.87 6.11749 786.025 5.87777 786.218 5.67608C786.411 5.47439 786.638 5.31484 786.886 5.20713C787.155 5.0868 787.443 5.02994 787.729 5.04049C788.015 5.05104 788.293 5.12873 788.543 5.2682C788.793 5.40768 789.01 5.60556 789.177 5.84809C789.345 6.09063 789.459 6.37208 789.513 6.67271V6.67271Z" fill="white"/>
1728
+ <path d="M707.769 250.513C707.856 250.953 707.807 251.417 707.629 251.838C707.518 252.1 707.36 252.339 707.166 252.54C706.971 252.741 706.743 252.9 706.495 253.008C706.252 253.117 705.992 253.174 705.733 253.176C705.473 253.177 705.218 253.123 704.983 253.017C704.699 252.888 704.449 252.687 704.256 252.431C704.062 252.175 703.929 251.871 703.868 251.543C703.781 251.103 703.83 250.639 704.007 250.219C704.182 249.798 704.474 249.441 704.841 249.201C705.209 248.96 705.632 248.848 706.051 248.881C706.469 248.914 706.861 249.09 707.17 249.383C707.479 249.677 707.689 250.072 707.769 250.513Z" fill="white"/>
1729
+ <path d="M696.35 378.041C696.407 378.341 696.385 378.657 696.286 378.953C696.187 379.248 696.014 379.512 695.788 379.715C695.562 379.918 695.29 380.051 695.004 380.1C694.718 380.15 694.429 380.113 694.168 379.995C693.95 379.892 693.759 379.736 693.611 379.538C693.462 379.339 693.36 379.105 693.313 378.852C693.242 378.464 693.303 378.057 693.484 377.7C693.665 377.344 693.954 377.063 694.301 376.906C694.509 376.819 694.731 376.779 694.951 376.79C695.171 376.8 695.384 376.861 695.576 376.968C695.769 377.075 695.936 377.225 696.068 377.41C696.199 377.594 696.291 377.808 696.339 378.038L696.35 378.041Z" fill="white"/>
1730
+ <path d="M667.533 293.611C667.628 294.106 667.554 294.629 667.322 295.085C667.091 295.542 666.719 295.901 666.274 296.097C666.029 296.211 665.768 296.27 665.506 296.271C665.244 296.272 664.987 296.215 664.751 296.103C664.466 295.978 664.215 295.78 664.021 295.526C663.826 295.271 663.693 294.968 663.632 294.64C663.544 294.197 663.598 293.728 663.786 293.308C663.896 293.042 664.054 292.8 664.25 292.596C664.446 292.393 664.676 292.233 664.927 292.125C665.178 292.017 665.444 291.964 665.71 291.969C665.975 291.974 666.235 292.036 666.473 292.153C666.745 292.287 666.982 292.489 667.166 292.742C667.35 292.995 667.475 293.292 667.533 293.611Z" fill="white"/>
1731
+ <path d="M737.075 247.285C737.208 248.02 737.121 248.792 736.826 249.492C736.532 250.188 736.046 250.775 735.436 251.172C734.827 251.568 734.125 251.752 733.431 251.698C732.738 251.644 732.088 251.355 731.574 250.871C731.061 250.387 730.71 249.734 730.572 249.004C730.438 248.27 730.524 247.498 730.82 246.798C731.001 246.365 731.258 245.972 731.576 245.64C731.895 245.309 732.269 245.046 732.677 244.867C733.126 244.667 733.605 244.573 734.082 244.59C734.559 244.607 735.023 244.735 735.44 244.966C735.858 245.197 736.22 245.525 736.501 245.927C736.783 246.33 736.977 246.797 737.071 247.297L737.075 247.285Z" fill="white"/>
1732
+ <path d="M721.809 191.642C721.898 192.086 721.844 192.555 721.656 192.975C721.547 193.236 721.392 193.473 721.2 193.673C721.008 193.872 720.782 194.03 720.536 194.137C720.04 194.355 719.492 194.357 719.013 194.142C718.729 194.018 718.48 193.821 718.287 193.567C718.094 193.313 717.963 193.01 717.905 192.683C717.832 192.299 717.859 191.896 717.986 191.518C718.112 191.14 718.332 190.802 718.621 190.543C718.91 190.283 719.256 190.112 719.621 190.048C719.987 189.984 720.357 190.03 720.691 190.18C720.976 190.305 721.227 190.502 721.421 190.757C721.616 191.011 721.749 191.315 721.809 191.642V191.642Z" fill="white"/>
1733
+ <path d="M696.119 116.406C696.262 117.138 696.209 117.907 695.968 118.627C695.728 119.348 695.308 119.991 694.756 120.484C694.205 120.977 693.543 121.301 692.846 121.419C692.149 121.537 691.444 121.445 690.81 121.152C690.27 120.913 689.797 120.535 689.429 120.05C689.062 119.566 688.812 118.989 688.699 118.367C688.601 117.847 688.601 117.308 688.697 116.779C688.793 116.25 688.985 115.742 689.261 115.284C689.536 114.825 689.891 114.426 690.303 114.108C690.716 113.791 691.18 113.561 691.667 113.432C692.154 113.303 692.656 113.278 693.143 113.358C693.631 113.438 694.094 113.621 694.508 113.897C694.921 114.173 695.276 114.537 695.553 114.967C695.829 115.398 696.022 115.887 696.119 116.406V116.406Z" fill="white"/>
1734
+ <path d="M654.939 78.449C655.026 78.8885 654.977 79.353 654.799 79.7731C654.688 80.0357 654.53 80.2743 654.336 80.4752C654.141 80.6761 653.913 80.8354 653.665 80.9438C653.421 81.0528 653.162 81.1097 652.903 81.1111C652.643 81.1126 652.388 81.0586 652.153 80.9523C651.868 80.8235 651.619 80.6229 651.426 80.3668C651.232 80.1107 651.099 79.8063 651.038 79.4782C650.951 79.0387 651 78.5742 651.177 78.1541C651.352 77.733 651.644 77.3765 652.011 77.1361C652.379 76.8957 652.802 76.7839 653.221 76.8167C653.639 76.8495 654.031 77.0252 654.34 77.3187C654.649 77.6121 654.858 78.0079 654.939 78.449V78.449Z" fill="white"/>
1735
+ <path d="M555.813 110.478C555.89 110.922 555.836 111.388 555.659 111.811C555.458 112.273 555.114 112.652 554.687 112.877C554.261 113.103 553.781 113.161 553.333 113.042C552.885 112.923 552.499 112.634 552.243 112.227C551.986 111.82 551.878 111.321 551.935 110.82C551.993 110.319 552.214 109.849 552.558 109.493C552.902 109.137 553.348 108.919 553.814 108.878C554.28 108.836 554.738 108.975 555.104 109.268C555.47 109.561 555.722 109.99 555.813 110.478V110.478Z" fill="white"/>
1736
+ <path d="M531.244 250.896C531.321 251.34 531.268 251.806 531.09 252.228C530.982 252.489 530.827 252.727 530.635 252.926C530.443 253.126 530.217 253.284 529.971 253.39C529.474 253.609 528.927 253.611 528.448 253.396C528.162 253.269 527.912 253.069 527.718 252.812C527.524 252.556 527.392 252.25 527.332 251.922C527.248 251.482 527.301 251.018 527.483 250.601C527.591 250.34 527.746 250.103 527.938 249.903C528.131 249.703 528.357 249.546 528.603 249.439C529.099 249.22 529.646 249.218 530.126 249.433C530.41 249.559 530.66 249.757 530.855 250.011C531.049 250.265 531.183 250.569 531.244 250.896Z" fill="white"/>
1737
+ <path d="M421.211 345.93C421.262 346.203 421.262 346.487 421.211 346.765C421.16 347.043 421.06 347.31 420.915 347.551C420.77 347.791 420.584 348.001 420.366 348.168C420.149 348.335 419.906 348.456 419.65 348.523C419.394 348.591 419.13 348.604 418.874 348.562C418.617 348.52 418.374 348.424 418.156 348.278C417.939 348.133 417.752 347.942 417.607 347.715C417.462 347.489 417.361 347.232 417.31 346.959C417.221 346.52 417.27 346.055 417.449 345.635C417.562 345.371 417.721 345.131 417.917 344.929C418.114 344.727 418.343 344.567 418.594 344.459C418.844 344.35 419.109 344.295 419.374 344.297C419.64 344.299 419.899 344.357 420.139 344.468C420.414 344.602 420.653 344.803 420.839 345.057C421.025 345.31 421.152 345.609 421.211 345.93V345.93Z" fill="white"/>
1738
+ <path d="M370.213 300.001C370.3 300.445 370.25 300.914 370.07 301.337C369.843 301.858 369.442 302.275 368.95 302.499C368.454 302.718 367.906 302.72 367.427 302.505C367.142 302.377 366.892 302.177 366.698 301.921C366.504 301.665 366.371 301.359 366.312 301.031C366.231 300.59 366.279 300.128 366.451 299.707C366.562 299.442 366.721 299.201 366.917 298.998C367.113 298.796 367.343 298.637 367.594 298.529C367.844 298.421 368.11 298.368 368.375 298.372C368.64 298.376 368.9 298.437 369.138 298.551C369.413 298.681 369.654 298.88 369.841 299.131C370.027 299.383 370.155 299.681 370.213 300.001V300.001Z" fill="white"/>
1739
+ <path d="M297.299 343.876C297.384 344.32 297.334 344.788 297.156 345.212C297.045 345.477 296.886 345.718 296.69 345.92C296.494 346.123 296.264 346.282 296.013 346.39C295.763 346.497 295.497 346.551 295.232 346.547C294.967 346.543 294.707 346.482 294.469 346.367C294.184 346.24 293.934 346.04 293.74 345.784C293.546 345.527 293.413 345.222 293.354 344.893C293.265 344.454 293.314 343.989 293.493 343.569C293.72 343.044 294.122 342.623 294.617 342.395C294.887 342.279 295.175 342.226 295.46 342.239C295.746 342.251 296.023 342.33 296.273 342.469C296.523 342.608 296.74 342.805 296.909 343.045C297.078 343.286 297.196 343.565 297.255 343.864L297.299 343.876Z" fill="white"/>
1740
+ <path d="M303.981 465.346C304.032 465.619 304.032 465.903 303.981 466.181C303.931 466.459 303.83 466.726 303.685 466.967C303.54 467.208 303.354 467.417 303.136 467.584C302.919 467.751 302.676 467.872 302.42 467.939C302.163 468.007 301.9 468.02 301.644 467.978C301.387 467.936 301.144 467.84 300.926 467.694C300.709 467.549 300.522 467.358 300.377 467.132C300.232 466.905 300.131 466.648 300.08 466.375C299.991 465.936 300.04 465.471 300.219 465.051C300.442 464.527 300.845 464.11 301.339 463.889C301.609 463.771 301.896 463.715 302.183 463.725C302.469 463.736 302.746 463.813 302.997 463.951C303.248 464.09 303.465 464.286 303.635 464.526C303.805 464.767 303.923 465.047 303.981 465.346V465.346Z" fill="white"/>
1741
+ <path d="M642.386 422.595C642.463 423.04 642.409 423.505 642.232 423.928C642.124 424.189 641.969 424.426 641.777 424.626C641.584 424.826 641.359 424.983 641.113 425.09C640.616 425.308 640.069 425.31 639.59 425.095C639.304 424.968 639.054 424.768 638.86 424.512C638.666 424.256 638.534 423.95 638.474 423.621C638.386 423.182 638.435 422.717 638.614 422.297C638.792 421.878 639.086 421.524 639.454 421.286C639.821 421.048 640.245 420.937 640.663 420.97C641.081 421.003 641.472 421.178 641.782 421.47C642.091 421.762 642.303 422.156 642.386 422.595V422.595Z" fill="white"/>
1742
+ <path d="M671.6 355.263C671.723 355.894 671.65 356.559 671.393 357.16C671.229 357.535 670.998 357.874 670.715 358.158C670.432 358.442 670.102 358.666 669.744 358.815C669.357 358.984 668.944 359.062 668.534 359.045C668.125 359.028 667.727 358.916 667.368 358.717C667.01 358.518 666.699 358.236 666.457 357.89C666.214 357.544 666.046 357.143 665.964 356.714C665.817 355.923 665.972 355.088 666.392 354.392C666.813 353.696 667.466 353.196 668.208 353.002C668.95 352.808 669.719 352.936 670.347 353.358C670.975 353.78 671.41 354.461 671.557 355.251L671.6 355.263Z" fill="white"/>
1743
+ <path d="M651.038 119.112C651.095 119.44 651.059 119.784 650.935 120.099C650.767 120.484 650.468 120.79 650.103 120.951C649.737 121.112 649.334 121.115 648.98 120.96C648.772 120.866 648.589 120.719 648.448 120.531C648.306 120.344 648.209 120.12 648.166 119.88C648.094 119.553 648.131 119.204 648.269 118.893C648.351 118.7 648.466 118.525 648.609 118.378C648.752 118.231 648.92 118.114 649.102 118.035C649.468 117.88 649.869 117.879 650.223 118.032C650.431 118.127 650.612 118.274 650.754 118.462C650.895 118.649 650.992 118.872 651.038 119.112V119.112Z" fill="white"/>
1744
+ <path d="M634.986 43.9081C635.129 44.6379 635.047 45.4088 634.752 46.1059C634.383 46.9707 633.719 47.659 632.902 48.0204C632.086 48.3819 631.185 48.387 630.395 48.0349C629.926 47.824 629.516 47.4944 629.197 47.0731C628.877 46.6517 628.659 46.1505 628.559 45.6103C628.424 44.8797 628.51 44.1116 628.803 43.4156C629.172 42.5515 629.836 41.8644 630.653 41.505C631.469 41.1456 632.369 41.1432 633.157 41.4985C633.625 41.7057 634.035 42.0323 634.353 42.4514C634.671 42.8705 634.888 43.3699 634.986 43.9081V43.9081Z" fill="white"/>
1745
+ <path d="M571.702 163.92C571.79 164.363 571.736 164.833 571.548 165.253C571.326 165.778 570.922 166.196 570.426 166.415C569.931 166.634 569.384 166.636 568.905 166.42C568.427 166.204 568.056 165.788 567.876 165.264C567.695 164.74 567.718 164.15 567.94 163.625C568.053 163.361 568.212 163.121 568.408 162.92C568.605 162.719 568.834 162.56 569.084 162.452C569.334 162.345 569.6 162.291 569.864 162.294C570.129 162.297 570.388 162.357 570.627 162.47C570.902 162.6 571.143 162.798 571.33 163.05C571.516 163.302 571.644 163.599 571.702 163.92V163.92Z" fill="white"/>
1746
+ <path d="M508.175 198.775C508.304 199.514 508.216 200.289 507.923 200.993C507.693 201.536 507.345 202.015 506.91 202.388C506.474 202.761 505.964 203.017 505.426 203.134C504.888 203.25 504.337 203.222 503.823 203.053C503.309 202.885 502.847 202.58 502.478 202.167C502.11 201.753 501.846 201.244 501.71 200.683C501.574 200.122 501.57 199.528 501.699 198.952C501.828 198.376 502.085 197.837 502.448 197.382C502.811 196.928 503.269 196.572 503.78 196.345C504.229 196.145 504.709 196.05 505.186 196.067C505.663 196.085 506.126 196.213 506.544 196.444C506.962 196.675 507.324 197.003 507.605 197.405C507.887 197.807 508.081 198.275 508.175 198.775V198.775Z" fill="white"/>
1747
+ <path d="M487.449 329.426C487.573 330.099 487.497 330.806 487.23 331.448C487.066 331.841 486.834 332.199 486.546 332.501C486.257 332.804 485.919 333.044 485.55 333.21C485.17 333.38 484.765 333.467 484.36 333.467C483.955 333.467 483.558 333.38 483.191 333.21C482.75 333.025 482.362 332.724 482.062 332.334C481.761 331.944 481.557 331.476 481.467 330.972C481.355 330.39 481.398 329.778 481.589 329.206C481.781 328.634 482.115 328.123 482.553 327.73C482.991 327.338 483.516 327.08 484.07 326.984C484.624 326.889 485.184 326.96 485.689 327.19C486.136 327.372 486.53 327.671 486.837 328.061C487.143 328.45 487.354 328.919 487.449 329.426V329.426Z" fill="white"/>
1748
+ <path d="M685.495 33.5832C685.583 34.0225 685.534 34.4877 685.355 34.9073C685.244 35.1723 685.086 35.413 684.89 35.6153C684.693 35.8175 684.463 35.9771 684.213 36.0848C683.962 36.1924 683.697 36.246 683.431 36.2421C683.166 36.2382 682.907 36.1771 682.669 36.0623C682.383 35.9375 682.133 35.7397 681.938 35.4853C681.744 35.231 681.611 34.9275 681.55 34.6001C681.464 34.1563 681.514 33.6879 681.693 33.264C681.804 32.9991 681.962 32.7584 682.159 32.5561C682.355 32.3539 682.585 32.1943 682.835 32.0866C683.086 31.9789 683.351 31.9253 683.617 31.9292C683.882 31.9331 684.141 31.9943 684.379 32.1091C684.667 32.2336 684.918 32.4328 685.112 32.6896C685.307 32.9464 685.438 33.2531 685.495 33.5832V33.5832Z" fill="white"/>
1749
+ </g>
1750
+ <defs>
1751
+ <clipPath id="clip0_960_56139">
1752
+ <rect width="726.971" height="649.647" fill="white" transform="translate(-334 660.297) rotate(-31.8199)"/>
1753
+ </clipPath>
1754
+ </defs>
1755
+ </svg>