@magmamath/students-features 0.6.12 → 0.6.14-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js +17 -5
  2. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
  3. package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js +148 -41
  4. package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js.map +1 -1
  5. package/dist/commonjs/features/chatbot/components/Alternatives/InputButton.js +110 -0
  6. package/dist/commonjs/features/chatbot/components/Alternatives/InputButton.js.map +1 -0
  7. package/dist/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.js +159 -0
  8. package/dist/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.js.map +1 -0
  9. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js +7 -4
  10. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
  11. package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js +1 -1
  12. package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
  13. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js +31 -0
  14. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  15. package/dist/commonjs/features/exampleSolution/assets/grid.png +0 -0
  16. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +97 -0
  17. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  18. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js +44 -0
  19. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js.map +1 -0
  20. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js +61 -0
  21. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js.map +1 -0
  22. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +68 -0
  23. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -0
  24. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +75 -0
  25. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -0
  26. package/dist/commonjs/features/exampleSolution/constants.js +13 -0
  27. package/dist/commonjs/features/exampleSolution/constants.js.map +1 -0
  28. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js +61 -0
  29. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  30. package/dist/commonjs/features/exampleSolution/index.js +39 -0
  31. package/dist/commonjs/features/exampleSolution/index.js.map +1 -0
  32. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +22 -0
  33. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  34. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +32 -0
  35. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  36. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js +18 -0
  37. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  38. package/dist/commonjs/features/exampleSolution/types.js +6 -0
  39. package/dist/commonjs/features/exampleSolution/types.js.map +1 -0
  40. package/dist/commonjs/index.js +24 -0
  41. package/dist/commonjs/index.js.map +1 -1
  42. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js +681 -0
  43. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js.map +1 -0
  44. package/dist/commonjs/shared/icons/LavaIconInGlasses.js +616 -0
  45. package/dist/commonjs/shared/icons/LavaIconInGlasses.js.map +1 -0
  46. package/dist/commonjs/shared/icons/index.js +204 -0
  47. package/dist/commonjs/shared/icons/index.js.map +1 -0
  48. package/dist/commonjs/shared/translation/localization/ca.json +7 -1
  49. package/dist/commonjs/shared/translation/localization/en.json +8 -2
  50. package/dist/commonjs/shared/translation/localization/gb.json +7 -1
  51. package/dist/commonjs/shared/translation/localization/sct.json +7 -1
  52. package/dist/commonjs/shared/translation/localization/sw.json +7 -1
  53. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js +17 -5
  54. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
  55. package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js +147 -41
  56. package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js.map +1 -1
  57. package/dist/module/features/chatbot/components/Alternatives/InputButton.js +102 -0
  58. package/dist/module/features/chatbot/components/Alternatives/InputButton.js.map +1 -0
  59. package/dist/module/features/chatbot/components/Alternatives/InputWithHintRow.js +152 -0
  60. package/dist/module/features/chatbot/components/Alternatives/InputWithHintRow.js.map +1 -0
  61. package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js +7 -4
  62. package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
  63. package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js +1 -1
  64. package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
  65. package/dist/module/features/exampleSolution/ExampleSolutionModal.js +25 -0
  66. package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  67. package/dist/module/features/exampleSolution/assets/grid.png +0 -0
  68. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +91 -0
  69. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  70. package/dist/module/features/exampleSolution/components/LavaIcon.js +36 -0
  71. package/dist/module/features/exampleSolution/components/LavaIcon.js.map +1 -0
  72. package/dist/module/features/exampleSolution/components/MessageBlock.js +53 -0
  73. package/dist/module/features/exampleSolution/components/MessageBlock.js.map +1 -0
  74. package/dist/module/features/exampleSolution/components/QuestionSection.js +60 -0
  75. package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -0
  76. package/dist/module/features/exampleSolution/components/SolutionSection.js +67 -0
  77. package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -0
  78. package/dist/module/features/exampleSolution/constants.js +9 -0
  79. package/dist/module/features/exampleSolution/constants.js.map +1 -0
  80. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js +56 -0
  81. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  82. package/dist/module/features/exampleSolution/index.js +6 -0
  83. package/dist/module/features/exampleSolution/index.js.map +1 -0
  84. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +17 -0
  85. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  86. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +27 -0
  87. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  88. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js +13 -0
  89. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  90. package/dist/module/features/exampleSolution/types.js +4 -0
  91. package/dist/module/features/exampleSolution/types.js.map +1 -0
  92. package/dist/module/index.js +2 -0
  93. package/dist/module/index.js.map +1 -1
  94. package/dist/module/shared/icons/ExcitedLavaIcon.js +673 -0
  95. package/dist/module/shared/icons/ExcitedLavaIcon.js.map +1 -0
  96. package/dist/module/shared/icons/LavaIconInGlasses.js +608 -0
  97. package/dist/module/shared/icons/LavaIconInGlasses.js.map +1 -0
  98. package/dist/module/shared/icons/index.js +21 -0
  99. package/dist/module/shared/icons/index.js.map +1 -0
  100. package/dist/module/shared/translation/localization/ca.json +7 -1
  101. package/dist/module/shared/translation/localization/en.json +8 -2
  102. package/dist/module/shared/translation/localization/gb.json +7 -1
  103. package/dist/module/shared/translation/localization/sct.json +7 -1
  104. package/dist/module/shared/translation/localization/sw.json +7 -1
  105. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
  106. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +3 -1
  107. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +1 -1
  108. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputButton.d.ts +9 -0
  109. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputButton.d.ts.map +1 -0
  110. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.d.ts +10 -0
  111. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.d.ts.map +1 -0
  112. package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -1
  113. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  114. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  115. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  116. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  117. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  118. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  119. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  120. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  121. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  122. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  123. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  124. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  125. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts +6 -0
  126. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts.map +1 -0
  127. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  128. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  129. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts +4 -0
  130. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts.map +1 -0
  131. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  132. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  133. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  134. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  135. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  136. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  137. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +26 -0
  138. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -0
  139. package/dist/typescript/commonjs/index.d.ts +2 -0
  140. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  141. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  142. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  143. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts +4 -0
  144. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  145. package/dist/typescript/commonjs/shared/icons/index.d.ts +19 -0
  146. package/dist/typescript/commonjs/shared/icons/index.d.ts.map +1 -0
  147. package/dist/typescript/commonjs/shared/translation/constants.d.ts +30 -0
  148. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  149. package/dist/typescript/commonjs/shared/translation/model.d.ts +12 -0
  150. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  151. package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
  152. package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +3 -1
  153. package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +1 -1
  154. package/dist/typescript/module/features/chatbot/components/Alternatives/InputButton.d.ts +9 -0
  155. package/dist/typescript/module/features/chatbot/components/Alternatives/InputButton.d.ts.map +1 -0
  156. package/dist/typescript/module/features/chatbot/components/Alternatives/InputWithHintRow.d.ts +10 -0
  157. package/dist/typescript/module/features/chatbot/components/Alternatives/InputWithHintRow.d.ts.map +1 -0
  158. package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageLoader.d.ts.map +1 -1
  159. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  160. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  161. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  162. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  163. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  164. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  165. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  166. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  167. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  168. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  169. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  170. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  171. package/dist/typescript/module/features/exampleSolution/constants.d.ts +6 -0
  172. package/dist/typescript/module/features/exampleSolution/constants.d.ts.map +1 -0
  173. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  174. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  175. package/dist/typescript/module/features/exampleSolution/index.d.ts +4 -0
  176. package/dist/typescript/module/features/exampleSolution/index.d.ts.map +1 -0
  177. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  178. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  179. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  180. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  181. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  182. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  183. package/dist/typescript/module/features/exampleSolution/types.d.ts +26 -0
  184. package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -0
  185. package/dist/typescript/module/index.d.ts +2 -0
  186. package/dist/typescript/module/index.d.ts.map +1 -1
  187. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  188. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  189. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts +4 -0
  190. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  191. package/dist/typescript/module/shared/icons/index.d.ts +19 -0
  192. package/dist/typescript/module/shared/icons/index.d.ts.map +1 -0
  193. package/dist/typescript/module/shared/translation/constants.d.ts +30 -0
  194. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  195. package/dist/typescript/module/shared/translation/model.d.ts +12 -0
  196. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  197. package/package.json +6 -2
  198. package/src/features/chatbot/components/Alternatives/Alternatives.tsx +18 -8
  199. package/src/features/chatbot/components/Alternatives/HelpRequestOption.tsx +146 -35
  200. package/src/features/chatbot/components/Alternatives/InputButton.tsx +101 -0
  201. package/src/features/chatbot/components/Alternatives/InputWithHintRow.tsx +157 -0
  202. package/src/features/chatbot/components/ChatMessage/MessageLoader.tsx +6 -2
  203. package/src/features/chatbot/components/ChatMessages/ChatbotMessages.tsx +1 -1
  204. package/src/features/exampleSolution/ExampleSolutionModal.tsx +29 -0
  205. package/src/features/exampleSolution/assets/grid.png +0 -0
  206. package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +71 -0
  207. package/src/features/exampleSolution/components/LavaIcon.tsx +35 -0
  208. package/src/features/exampleSolution/components/MessageBlock.tsx +67 -0
  209. package/src/features/exampleSolution/components/QuestionSection.tsx +56 -0
  210. package/src/features/exampleSolution/components/SolutionSection.tsx +69 -0
  211. package/src/features/exampleSolution/constants.ts +5 -0
  212. package/src/features/exampleSolution/hooks/useExampleSolution.ts +66 -0
  213. package/src/features/exampleSolution/index.ts +3 -0
  214. package/src/features/exampleSolution/model/ExampleSolution.model.ts +12 -0
  215. package/src/features/exampleSolution/model/ExampleSolutionApi.ts +33 -0
  216. package/src/features/exampleSolution/model/ExampleSolutionCache.ts +20 -0
  217. package/src/features/exampleSolution/types.ts +26 -0
  218. package/src/index.ts +2 -0
  219. package/src/shared/icons/ExcitedLavaIcon.tsx +541 -0
  220. package/src/shared/icons/LavaIconInGlasses.tsx +489 -0
  221. package/src/shared/icons/index.ts +18 -0
  222. package/src/shared/translation/localization/ca.json +7 -1
  223. package/src/shared/translation/localization/en.json +8 -2
  224. package/src/shared/translation/localization/gb.json +7 -1
  225. package/src/shared/translation/localization/sct.json +7 -1
  226. package/src/shared/translation/localization/sw.json +7 -1
@@ -0,0 +1,673 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Defs, LinearGradient, Path, Stop, G, RadialGradient } from 'react-native-svg';
5
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
+ export const ExcitedLavaIcon = ({
7
+ width = 80,
8
+ height = 100
9
+ }) => {
10
+ return /*#__PURE__*/_jsxs(Svg, {
11
+ width: width,
12
+ height: height,
13
+ viewBox: "0 0 388 557",
14
+ fill: "none",
15
+ children: [/*#__PURE__*/_jsx(Path, {
16
+ d: "M379.929 297.928c-2.36 5.62-5.13 11.11-8.12 16.56-13.34 24.33-26.89 44.61-19.11 83.72 7.77 39.11 3.77 107.34-57.34 137.78-11.64 5.8-24.81 10.21-38.81 13.43-4.12.95-8.32 1.8-12.57 2.55-4.9.86-9.87 1.6-14.88 2.2-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-26.57-.49-51.87-3.72-71.8-8.52-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14-43.44-17.2-88.3-56.56-86.97-146.53 1.33-90.22 51.11-122.22 87.78-134 36.66-11.78 77.11-36.67 78.44-85.11.87-31.56-8.73-49.63-10.25-71.96-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55 1.92-3.42 3.88-6.62 5.87-9.59 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.17-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86.68 6.13 2.67 11.88 5.6 17.29 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33.46 1.15.9 2.29 1.31 3.42 2.48 6.77 4.08 13.16 4.76 19.57 1.39 12.98-1.01 26-7.57 42.18-10.33 25.5 9 42 26.34 18.33 2.76-3.77 5.4-7.98 7.76-12.52 1.78-3.42 3.4-7.02 4.78-10.74 3.11-8.42 4.98-17.48 4.75-26.5-.01-.36-.02-.72-.04-1.08-.01-.35-.03-.71-.06-1.07-.02-.36-.05-.72-.08-1.08-.06-.79-.15-1.58-.25-2.36-.06-.47-.12-.94-.2-1.4-.05-.34-.1-.68-.17-1.02-.08-.49-.18-.98-.28-1.48-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76-.06-.26-.13-.53-.21-.8-.21-.8-.45-1.59-.71-2.39-.08-.26-.17-.51-.26-.77l-.33-.93c-.17-.45-.34-.9-.52-1.35-.15-.38-.31-.75-.47-1.12-.1-.24-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.34-.25-.51-.08-.17-.17-.34-.26-.51-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.75-.68-1.13-.17-.28-.35-.56-.53-.83-.36-.57-.74-1.12-1.13-1.67-.19-.28-.38-.55-.58-.82-.02-.02-.03-.04-.04-.05-.27-.36-.54-.72-.81-1.07-.77-.99-1.58-1.96-2.44-2.92-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.68 4.41 2.68.46.31.92.62 1.38.94.3.2.6.42.89.63 1.04.75 2.1 1.55 3.15 2.4.35.28.71.57 1.06.87.19.15.37.31.55.47 2.18 1.86 4.35 3.96 6.46 6.32.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93.16.24.31.47.46.71.32.5.63 1.02.94 1.54.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.61.38.92a82.877 82.877 0 011.08 2.82c9.57 26.77 6.29 47.82-1.88 67.27z",
17
+ fill: "url(#paint0_linear_653_516)"
18
+ }), /*#__PURE__*/_jsxs(G, {
19
+ opacity: 0.37,
20
+ children: [/*#__PURE__*/_jsx(Path, {
21
+ d: "M270.92 250.768c-.22 1.11-.44 2.19-.66 3.25-1.44-1.87-4.19-7.5-4.68-23.59-.66-21.98-5.76-32.2-10.43-40.86.18.55 3.47 10.42 2.66 21.92 0 0-4-10.5-10.17-7.33-6.17 3.16-3.5 13.5-3.5 13.5s10.5 34.16 2.83 62.33c-7.66 28.15-18.99 25-21.65 14.52.27.44 4.01 6.29 9.15-3.35 5.34-10 14.17-54-5.33-96.34-19.5-42.33-30.33-40.83-37.33-67.66-6.54-25.09-3.62-39.53-3.22-41.31-.42 1.42-3.23 10.42-8.45 11.64-5.67 1.33-9.17-2.33-9.17-2.33s-6.44 13.62-14.97 8.65c-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55-4.52 12.69-11.41 37.19-.54 44.66 14.89 10.22 26-42.23 26-42.23s4 4.89-1.11 24.67-6.22 44.67 11.34 69.11c17.55 24.45 28 38.89 32.66 54.22 0 0 2-10.44-2-22 0 0 10.22 6 13.34 12.89 0 0 1.55-7.55-5.77-21.76.41.26 12.92 8.35 22.23 35.92.57 2.68 1.31 5.3 1.98 7.4 0 0 6.22 19.22 1.78 41.89z",
22
+ fill: "url(#paint1_radial_653_516)"
23
+ }), /*#__PURE__*/_jsx(Path, {
24
+ d: "M206.14 247.818c-1.48 17.07-14.37 31.92-14.77 32.38 7.33-10.67 13.1-39.54 7.77-41.54-1.18-.44-2.55.3-4.13 1.99l-.01.01c-3.42 2.83-8.95 9.58-16.53 25.66-4.26 9.04-9.82 17.66-16.06 25.2-14.19 15.07-29.49 14.25-29.49 14.25 27.55-12 42.22-41.56 42.66-49.78.45-8.22-9.11-8-9.11-8-6.66 6.22-17.33 8.89-17.33 8.89s11.78-6.45 23.11-37.11c11.33-30.67.89-69.78.89-69.78 14.5 10.83 17.17 43.5 9 68.83-8.17 25.34-1 24.17-1 24.17 14-18.83 26.5-12.5 25 4.83z",
25
+ fill: "url(#paint2_radial_653_516)"
26
+ }), /*#__PURE__*/_jsx(Path, {
27
+ d: "M332.709 288.958c-.22.13-.44.24-.66.35.22-.12.44-.23.66-.35z",
28
+ fill: "url(#paint3_radial_653_516)"
29
+ }), /*#__PURE__*/_jsx(Path, {
30
+ d: "M334.509 287.858c-.54.37-1.09.71-1.63 1.01.54-.31 1.08-.64 1.63-1.01z",
31
+ fill: "url(#paint4_radial_653_516)"
32
+ }), /*#__PURE__*/_jsx(Path, {
33
+ d: "M369.139 250.878s3.11 44.89-4 52.44c-6.34 6.74-9.5-26.94-9.79-47.09-1.38 3.72-3 7.32-4.78 10.74.91 19.91-4.49 52-29.76 59.02-30 8.33-34.67-33.67-14.34-61.67 14.54-20.02 17.12-38.91 17.57-45.34 0 0-8.01 33.68-24.68 40.34 0 0 6-61.55-24.66-89.77 0 0 20.66 29.11 14.44 69.77-6.08 39.73-9.61 49.13-9.77 49.55.23-.35 4.98-7.23 8.88-3.55 4 3.78-2 17.78 1.33 30.45 3.24 12.26 10.42 17.87 10.87 18.21-.38-.16-6.73-2.69-9.75 3.34-3.12 6.23 12.66 18.67 26.22 15.11 13.55-3.55 1.33-12.88 1.33-12.88s16.45.88 25.11-16.23c8.67-17.11 9.11-26.22 9.11-26.22s1.34 18.67 7.56 20c6.22 1.33 20.89-13.33 9.11-66.22zm-51.58 85.19c-12.5.25-18.67-7.83-18.67-7.83s7.17 5.25 18.25 4.75 19.42-6.92 19.42-6.92c-.84 1.84-6.5 9.75-19 10z",
34
+ fill: "url(#paint5_radial_653_516)"
35
+ }), /*#__PURE__*/_jsx(Path, {
36
+ d: "M167.14 329.318s-.01.02-.04.05l.06.12s-.01-.11-.02-.17zm27.78 19.34c11.55-.67 22.89-12 23.55-31.67 0 0 0 .01-.01.03 0 .02-.01.05-.02.08-.41 1.77-6.01 24.17-23.3 22.89-16.83-1.24-16.76-17.06-2.51-37.91-2.49 2.59-19.54 20.97-20.16 37.24 0 0-1.27-.7-2.58-2.5-.89 2.59-2.35 8.17-.97 14.17 1.89 8.22 14.55 15.34 29.55 3.67 0 0-18 2.89-18.89-16.23 0 0 3.78 10.89 15.34 10.23zm-9.45 8.31s-4.65 1.92-9.93-.68c-5.27-2.61-5.07-10.27-5.07-10.27s2.54 4.93 6.65 7.6 8.35 3.35 8.35 3.35z",
37
+ fill: "url(#paint6_radial_653_516)"
38
+ }), /*#__PURE__*/_jsx(Path, {
39
+ d: "M113.579 271.358c-16.4.84-40.17 14.62-61.45 38.61a94.666 94.666 0 00-17.18 27.87c1.79-8.62 7.33-26.62 23.49-39.5-.69.31-11.85 5.47-18.63 15.48 0 0-6-7.5-4.34-13.5 1.67-6 8.34-9.16 12.17-9.66s5.5.33 5.5.33 9.67-8.83 32.67-15.67c14.32-4.25 23.15-4.43 27.77-3.96z",
40
+ fill: "url(#paint7_radial_653_516)"
41
+ })]
42
+ }), /*#__PURE__*/_jsxs(G, {
43
+ opacity: 0.4,
44
+ children: [/*#__PURE__*/_jsx(Path, {
45
+ d: "M17.81 409.548l-4-23.56s-5.11 12.22-1.11 36.89 15.78 37.33 26 42.22c10.22 4.89 18.67-.89 18.67-.89s-2.89 14.67-20.89 7.56c0 0 6.22 16 23.11 9.56 16.89-6.44 19.11-31.33-4.89-49.56 0 0 6.89 16.67-7.11 18.22-14 1.55-25.56-17.56-29.78-40.44z",
46
+ fill: "url(#paint8_radial_653_516)"
47
+ }), /*#__PURE__*/_jsx(Path, {
48
+ d: "M108.539 548.018c-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14 8.21-8.41-2.03-24-13.42-23.64-14.22.44-25.77-6.22-25.77-6.22s11.77 2.22 26-2.67c13.92-4.79 10.8-17.46 10.67-17.98 9.99 11.34 9.77 36.87 9.77 36.87 8.77-30.27-12.54-58.59-13.1-59.33.53.38 17.43 12.83 24.43 37.11 5.22 18.09 4.22 34.14 2.96 42.47z",
49
+ fill: "url(#paint9_radial_653_516)"
50
+ }), /*#__PURE__*/_jsx(Path, {
51
+ d: "M354.239 449.788c-2.21 2.89-6.109 6.16-12.599 6.7-12 1-10.33-12 1.33-23.33 6.38-6.2 9.72-16.34 11.44-24.25 1.53 12.27 1.809 26.4-.171 40.88z",
52
+ fill: "url(#paint10_radial_653_516)"
53
+ }), /*#__PURE__*/_jsx(Path, {
54
+ d: "M351.989 462.218c-1.79 7.84-4.32 15.66-7.74 23.23-5.92.16-16.86 1.23-26.78 6.37-14.5 7.5-23.5 8-28-1s1.17-20.5 13.67-31.5 17.17-22.16 19.17-32.5c0 0 1.33 7.84-1 17.34-1.43 5.8 1.62 7.06 4.93 5.53-.36 2.86.04 5.47 1.23 7.8 3.45 6.74 12.15 12.67 24.52 4.73z",
55
+ fill: "url(#paint11_radial_653_516)"
56
+ }), /*#__PURE__*/_jsx(Path, {
57
+ d: "M317.129 507.998c-.19.42-6.51 13.83-23.32 14.24-16.78.41-29.04-9.38-29.49-9.73.14.24 1.74 3.19-.01 4.06-1.76.88-9.01-7.86-9.64-8.61.34.67 3.63 7.25 1.97 8.2-1.75 1-6.67-5.09-7.25-5.67-.58-.58-1.58 4.92-.33 8.92 0 0-1.5-1.09-2.67-4 0 0-4.33 9.66.42 20.83 2.42 5.68 6.41 10.16 9.74 13.18-4.12.95-8.32 1.8-12.57 2.55-2.68-3.1-7.7-9.94-10.59-20.31-4.08-14.67-.08-26-.08-26s2.33 14.08 6.83 21.66c0 0-.33-10.66 1.83-14 2.17-3.33 3.42-1.66 3.42-1.66s-.17-5.17 2.58-4.92c0 0-.33-3.17.25-5.25.59-2.08 1.67-1.33 1.67-1.33s-3.17-13.67 5-24.75c8.17-11.09 17.33-13.34 28.08-19.25 10.29-5.66 15.69-9.65 16.14-9.97-.62.61-10.75 10.56-24.8 18.47-14.5 8.16-20.34 23.5-14.5 36.33 5.83 12.83 31.32 21.5 57.32 7.01z",
58
+ fill: "url(#paint12_radial_653_516)"
59
+ }), /*#__PURE__*/_jsx(Path, {
60
+ opacity: 0.6,
61
+ d: "M242.47 470.988c-9.16 15.83-29.33 33.83-24.5 57 2.97 14.24 7.83 22.18 11.13 26.18-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 2.89-3.66 6.4-6.86 9.84-9.51 12.34-9.5 15.5-9.83 24-24.33 8.5-14.5.67-32.17 8-45.5 7.34-13.33 23.67.17 14.5 16z",
62
+ fill: "url(#paint13_radial_653_516)"
63
+ }), /*#__PURE__*/_jsx(Path, {
64
+ opacity: 0.5,
65
+ d: "M170.229 399.798s17.17 9.31 25.94 29.22c8.77 19.91 8.77 22.1 8.77 22.1s-5.3-5.3-10.96-2.19c-5.66 3.1-7.85 4.2-7.49 9.31.36 5.11-.73 15.16-.73 15.16s-2.07-27.82-12.3-42.8c-10.23-14.98-14.61-13.52-13.15-24.11 1.46-10.59 9.92-6.7 9.92-6.7v.01z",
66
+ fill: "url(#paint14_radial_653_516)"
67
+ })]
68
+ }), /*#__PURE__*/_jsxs(G, {
69
+ opacity: 0.6,
70
+ children: [/*#__PURE__*/_jsx(Path, {
71
+ d: "M350.569 266.969c-2.36 4.54-5 8.75-7.76 12.52-17.34 23.67-36.67 7.17-26.34-18.33 6.56-16.18 8.96-29.2 7.57-42.18-.45 6.43-3.03 25.32-17.57 45.34-20.33 28-15.66 70 14.34 61.67 25.27-7.02 30.67-39.11 29.76-59.02zm-39.21 33.24c-8.89-3.55-5.55-22-2.22-28.89 0 0-1.56 15.34 4.67 21.11 6.07 5.64 13.2 3.66 13.54 3.57-.35.38-7.33 7.68-15.99 4.21z",
72
+ fill: "url(#paint15_linear_653_516)"
73
+ }), /*#__PURE__*/_jsx(Path, {
74
+ d: "M209.579 183.548s28.89 65.78 9.33 101.33c-19.56 35.55-21.11 41.11-16.11 42.78 5 1.67 12.67-3.33 15.67-10.67 0 0-5.33 24.33-23.33 23-18-1.33-16.67-19.33.67-42.33 17.34-23 28.56-58.22 13.78-114.11h-.01z",
75
+ fill: "url(#paint16_radial_653_516)"
76
+ }), /*#__PURE__*/_jsx(Path, {
77
+ d: "M199.139 238.659s-2 14-17 42.33-40.83 44.67-60.17 44c-19.33-.67-25.5-13.001-17.5-25.171 8-12.16 19.17-15.659 20.17-19.829s-7-4-7-4 1 2.83-.33 6.17c-1.34 3.33-11.84 4.5-30.84 18-8.8 6.26-19.97 18.699-29.05 33.439 7.41-30.83 36.05-49.78 36.05-49.78s-21.16 9.34-34 31.34c-9.67 16.59-11.1 30.24-11.22 35.95-5.37 12.41-8.44 25.321-7.11 36.881 3.67 32 20.67 48.33 15.67 57-5 8.67-22 9.669-33-11.331s-10-47.669-10-47.669 3.33 20 12.66 38.33c9.34 18.34 17.67 11.67 14.67 1.67-1.57-5.23-8.21-20.24-11.43-38.94-4.78-27.73 3.75-56.031 22.42-77.081 21.97-24.76 46.59-38.65 63.01-38.65 20.67 0 16.78 10.111 4.67 18.891-11.79 8.55-22.67 26.45-2.34 28.11 20.34 1.67 47.34-23.001 61-52.001 13.67-29 20.67-27.659 20.67-27.659z",
78
+ fill: "url(#paint17_radial_653_516)"
79
+ }), /*#__PURE__*/_jsx(Path, {
80
+ d: "M269.138 208.878s6.22 19.22 1.78 41.89c-4.44 22.67-9.44 34.89-11.11 42.56-1.67 7.67.56 17.22.56 17.22s1.89-8.33 11.11-25.67c9.22-17.34 13-46.11 11.56-63.44-1.44-17.33-4.67-32.78-12.22-33.78-7.55-1-4.11 13.56-1.67 21.22h-.01z",
81
+ fill: "url(#paint18_radial_653_516)"
82
+ })]
83
+ }), /*#__PURE__*/_jsx(Path, {
84
+ d: "M258.009 22.488c-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.18-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86-5.77-31.19 13.88-50.3 1.86-56.86-10.32-5.63-24.39 6.79-31.82 14.64 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85z",
85
+ fill: "url(#paint19_radial_653_516)"
86
+ }), /*#__PURE__*/_jsx(Path, {
87
+ d: "M317.969 195.988c.46 1.15.9 2.29 1.31 3.42-.29-.54-.55-1.08-.81-1.64-11.11-24-32.44-34.67-50.66-37.34-18.23-2.66-28.89-15.11-52.89-59.55-.91-1.68-1.73-3.33-2.48-4.96 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33z",
88
+ fill: "url(#paint20_radial_653_516)"
89
+ }), /*#__PURE__*/_jsx(Path, {
90
+ d: "M382.028 291.098c13.78-34.67-5.78-70.22-13.78-69.78-8 .45-8 8.45-8 8.45s-.05-.01-.15-.04c-.01-.36-.02-.72-.04-1.08-.02-.36-.03-.71-.06-1.07-.02-.36-.05-.719-.08-1.079-.06-.79-.15-1.581-.25-2.361-.06-.47-.12-.93-.2-1.4-.05-.34-.1-.679-.17-1.019-.08-.49-.17-.991-.28-1.481-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76l-.21-.8a43.24 43.24 0 00-.97-3.16l-.33-.93a42.229 42.229 0 00-.99-2.47c-.09-.23-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.339-.25-.509-.08-.17-.17-.341-.26-.511-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.759-.68-1.129-.17-.28-.34-.561-.53-.831-.36-.57-.74-1.119-1.13-1.669-.19-.28-.38-.55-.58-.82-.02-.02-.03-.041-.04-.051a54.695 54.695 0 00-3.25-3.99c-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.681 4.41 2.681.46.31.92.62 1.38.94.3.2.6.419.89.629 1.04.75 2.1 1.551 3.15 2.401.35.28.71.57 1.06.87.19.15.37.31.55.47a67.017 67.017 0 016.46 6.319c.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93a57.18 57.18 0 011.4 2.25c.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.611.38.921a82.968 82.968 0 011.08 2.82c9.57 26.77 6.29 47.819-1.88 67.269.47-2.2 1.16-4.48 2.1-6.83z",
91
+ fill: "url(#paint21_radial_653_516)"
92
+ }), /*#__PURE__*/_jsx(Path, {
93
+ opacity: 0.4,
94
+ d: "M204.14 543.429c-5.89.33-1.93-10.59-1.79-10.99-.3.19-6.31 4.08-5.99 11.66.2 4.58 2.21 9.23 3.82 12.29-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 5.25-4.98 13.91-11.61 18.9-8.34 7.44 4.89 5.11 17.11-.89 17.44z",
95
+ fill: "url(#paint22_radial_653_516)"
96
+ }), /*#__PURE__*/_jsx(Path, {
97
+ d: "M219.141 434.259c-.16 0-.31-.03-.46-.09-3.57-1.48-15.19-8.17-15.1-32.29.12-28.82 14.51-46.41 14.66-46.58 20.66-24.79 48.57-28.49 63.37-28.49 4.52 0 8.09.33 10.29.61 9.22 1.17 10.47 5.05 11.07 9.62.43 3.25-.59 5.5-1.23 6.56-.41.65-.56 1.46-.41 2.28 3.47 18.55 2.33 44.04-2.71 60.6-3.82 12.55-8.21 17.73-9.93 19.37-.22.21-.51.32-.82.32-.12 0-.24-.02-.36-.05-2.9-.84-11.16-2.8-25.26-2.8-2.78 0-5.68.08-8.61.23-20.07 1.03-30.93 8.26-33.78 10.46-.21.17-.47.26-.73.26l.01-.01zM134.009 434.259c-.26 0-.51-.09-.72-.25-2.86-2.2-13.72-9.43-33.79-10.46-2.94-.15-5.83-.23-8.61-.23-14.1 0-22.36 1.96-25.26 2.8-.12.03-.24.05-.36.05-.31 0-.6-.11-.81-.32-1.71-1.64-6.11-6.82-9.93-19.37-5.04-16.56-6.19-42.04-2.71-60.6.15-.82 0-1.64-.42-2.3-.64-1.04-1.65-3.29-1.22-6.54.6-4.57 1.85-8.45 11.07-9.62 2.2-.28 5.77-.61 10.29-.61 14.8 0 42.72 3.7 63.37 28.49.15.17 14.54 17.76 14.66 46.58.09 24.11-11.53 30.81-15.09 32.28-.16.07-.31.1-.47.1z",
98
+ fill: "#fff"
99
+ }), /*#__PURE__*/_jsx(Path, {
100
+ d: "M302.58 362.428c-.11-3.33-1.11-10.22-2.33-12.78-1.22-2.56-7.33-10.56-7.33-10.56s-14.89-1.78-17.22-1.78c-2.33 0-4-.22-16.22 0-9.35.17-12.52 1.77-15.49 3.26 6.76 14.2 14.02 28.49 19 43.34 21.84-4.35 37.15.73 37.15.73s1.44-5.33 1.89-8.11c.44-2.78.67-10.78.56-14.11l-.01.01z",
101
+ fill: "url(#paint23_linear_653_516)"
102
+ }), /*#__PURE__*/_jsx(Path, {
103
+ d: "M231.7 347.519c-4.96 4.06-11.32 10.889-18.78 22.689-13.78 21.78-6.67 45.891-6.67 45.891 14.83-14.94 29.7-23.56 43.09-28.37-4.68-13.77-11.36-27.02-17.64-40.2v-.01z",
104
+ fill: "url(#paint24_linear_653_516)"
105
+ }), /*#__PURE__*/_jsx(Path, {
106
+ d: "M302.321 345.698c-.1-.54-.02-1.11.28-1.58.68-1.11 1.85-3.6 1.37-7.21-.66-5-2.27-9.25-11.94-10.48-9.67-1.22-47.89-3.77-74.56 28.23 0 0-14.77 17.66-14.89 47.22-.09 24.58 11.73 31.56 15.71 33.21.73.31 1.57.2 2.19-.29 2.99-2.3 13.53-9.24 33.22-10.25 19.32-1 30.2 1.56 33.54 2.53.76.22 1.58.04 2.15-.51 1.96-1.88 6.36-7.21 10.19-19.8 5.03-16.51 6.3-42.05 2.74-61.07zm-4.07 38.85c-1.81 17.02-9.02 31.39-12.06 35.51-.23.3-.6.43-.96.35-4.96-1.12-40.99-8.4-66.18 10.89-.29.22-.69.26-1.01.08-2.62-1.47-13.72-9.08-9.79-31.28 4.45-25.11 16.78-41.55 37.22-51.89 20.45-10.33 43-9 47.56-2.55 4.55 6.44 7.11 21.11 5.22 38.89z",
107
+ fill: "#4C2549"
108
+ }), /*#__PURE__*/_jsx(Path, {
109
+ d: "M235.341 424.678c5.19-2.62 10.72-3.27 16.47-3.51 4.71-.2 9.34-.24 13.95.21 7.17-7.95 11.83-20.81 11.83-35.33 0-24.15-12.88-43.72-28.78-43.72s-28.78 19.58-28.78 43.72c0 16.75 6.2 31.3 15.31 38.64v-.01z",
110
+ fill: "#4C2549"
111
+ }), /*#__PURE__*/_jsx(Path, {
112
+ d: "M235.641 422.318c-8.42-7.46-13.61-21.21-13.61-36.28 0-23.01 12.01-41.72 26.78-41.72 14.77 0 26.78 18.72 26.78 41.72 0 13.01-3.97 25.34-10.67 33.25-2.19-.18-4.5-.27-7.03-.27-1.85 0-3.86.05-6.16.15-5.22.22-10.75.77-16.08 3.15h-.01z",
113
+ fill: "url(#paint25_linear_653_516)"
114
+ }), /*#__PURE__*/_jsx(Path, {
115
+ d: "M250.7 389.318c8.345 0 15.11-6.765 15.11-15.11 0-8.345-6.765-15.11-15.11-15.11-8.345 0-15.11 6.765-15.11 15.11 0 8.345 6.765 15.11 15.11 15.11zM225.92 409.768c6.445 0 11.67-5.225 11.67-11.67s-5.225-11.67-11.67-11.67-11.67 5.225-11.67 11.67 5.225 11.67 11.67 11.67zM235.81 364.428l-1.97.69c-.82.29-1.44.98-1.64 1.83l-.84 3.59-.84-3.59c-.2-.85-.82-1.54-1.64-1.83l-1.98-.69 1.98-.69c.82-.29 1.44-.98 1.64-1.83l.84-3.59.84 3.59c.2.85.82 1.54 1.64 1.83l1.97.69zM264.721 403.098l-2.62.92c-1.09.38-1.91 1.3-2.18 2.43l-1.12 4.76-1.11-4.76a3.383 3.383 0 00-2.18-2.43l-2.63-.92 2.63-.92c1.09-.38 1.91-1.3 2.18-2.43l1.11-4.76 1.12 4.76a3.383 3.383 0 002.18 2.43l2.62.92zM273.201 392.658l-2.05.72a2.67 2.67 0 00-1.7 1.9l-.87 3.72-.87-3.72a2.67 2.67 0 00-1.7-1.9l-2.05-.72 2.05-.72a2.67 2.67 0 001.7-1.9l.87-3.72.87 3.72c.21.88.85 1.6 1.7 1.9l2.05.72z",
116
+ fill: "#fff"
117
+ }), /*#__PURE__*/_jsx(Path, {
118
+ d: "M50.56 362.428c.11-3.33 1.11-10.22 2.33-12.78 1.22-2.56 7.33-10.56 7.33-10.56s14.89-1.78 17.22-1.78c2.33 0 4-.22 16.22 0 9.351.17 12.521 1.77 15.491 3.26-6.76 14.2-14.02 28.49-19 43.34-21.84-4.35-37.15.73-37.15.73s-1.44-5.33-1.89-8.11c-.44-2.78-.67-10.78-.56-14.11l.01.01z",
119
+ fill: "url(#paint26_linear_653_516)"
120
+ }), /*#__PURE__*/_jsx(Path, {
121
+ d: "M121.451 347.519c4.96 4.06 11.32 10.889 18.78 22.689 13.78 21.78 6.67 45.891 6.67 45.891-14.83-14.94-29.7-23.56-43.09-28.37 4.68-13.77 11.36-27.02 17.64-40.2v-.01z",
122
+ fill: "url(#paint27_linear_653_516)"
123
+ }), /*#__PURE__*/_jsx(Path, {
124
+ d: "M53.57 406.768c3.83 12.59 8.23 17.92 10.19 19.8.57.55 1.39.73 2.15.51 3.34-.97 14.22-3.53 33.54-2.53 19.69 1.01 30.23 7.95 33.22 10.25.62.49 1.46.6 2.19.29 3.98-1.65 15.8-8.63 15.71-33.21-.12-29.56-14.89-47.22-14.89-47.22-26.67-32-64.89-29.45-74.56-28.23-9.67 1.23-11.28 5.48-11.94 10.48-.48 3.61.69 6.1 1.37 7.21.3.47.38 1.04.28 1.58-3.56 19.02-2.29 44.56 2.74 61.07zm6.55-61.11c4.56-6.45 27.11-7.78 47.56 2.55 20.44 10.34 32.77 26.78 37.22 51.89 3.93 22.2-7.17 29.81-9.79 31.28-.32.18-.72.14-1.01-.08-25.19-19.29-61.22-12.01-66.18-10.89a.942.942 0 01-.96-.35c-3.04-4.12-10.25-18.49-12.06-35.51-1.89-17.78.67-32.45 5.22-38.89z",
125
+ fill: "#4C2549"
126
+ }), /*#__PURE__*/_jsx(Path, {
127
+ d: "M117.811 424.678c-5.19-2.62-10.72-3.27-16.47-3.51-4.71-.2-9.34-.24-13.95.21-7.17-7.95-11.83-20.81-11.83-35.33 0-24.15 12.88-43.72 28.78-43.72s28.78 19.58 28.78 43.72c0 16.75-6.2 31.3-15.31 38.64v-.01z",
128
+ fill: "#4C2549"
129
+ }), /*#__PURE__*/_jsx(Path, {
130
+ d: "M117.499 422.318c8.42-7.46 13.61-21.21 13.61-36.28 0-23.01-12.01-41.72-26.78-41.72-14.77 0-26.78 18.72-26.78 41.72 0 13.01 3.97 25.34 10.67 33.25 2.19-.18 4.5-.27 7.03-.27 1.85 0 3.86.05 6.16.15 5.22.22 10.75.77 16.08 3.15h.01z",
131
+ fill: "url(#paint28_linear_653_516)"
132
+ }), /*#__PURE__*/_jsx(Path, {
133
+ d: "M108.059 389.318c8.345 0 15.11-6.765 15.11-15.11 0-8.345-6.765-15.11-15.11-15.11-8.345 0-15.11 6.765-15.11 15.11 0 8.345 6.765 15.11 15.11 15.11zM83.28 409.768c6.445 0 11.67-5.225 11.67-11.67s-5.225-11.67-11.67-11.67c-6.446 0-11.67 5.225-11.67 11.67s5.224 11.67 11.67 11.67zM93.18 364.428l-1.97.69c-.82.29-1.44.98-1.64 1.83l-.84 3.59-.84-3.59c-.2-.85-.82-1.54-1.64-1.83l-1.98-.69 1.98-.69c.82-.29 1.44-.98 1.64-1.83l.84-3.59.84 3.59c.2.85.82 1.54 1.64 1.83l1.97.69zM122.08 403.098l-2.62.92c-1.09.38-1.91 1.3-2.18 2.43l-1.12 4.76-1.11-4.76a3.383 3.383 0 00-2.18-2.43l-2.63-.92 2.63-.92c1.09-.38 1.91-1.3 2.18-2.43l1.11-4.76 1.12 4.76a3.383 3.383 0 002.18 2.43l2.62.92zM130.56 392.658l-2.05.72a2.67 2.67 0 00-1.7 1.9l-.87 3.72-.87-3.72a2.67 2.67 0 00-1.7-1.9l-2.05-.72 2.05-.72a2.67 2.67 0 001.7-1.9l.87-3.72.87 3.72c.21.88.85 1.6 1.7 1.9l2.05.72z",
134
+ fill: "#fff"
135
+ }), /*#__PURE__*/_jsx(Path, {
136
+ d: "M172.7 465.989c17.11 0 18.22-17.78 35.56-19.33 17.34-1.55 31.33 26.67 18.44 51.11-12.89 24.44-49.11 42.22-79.11 24s-28.89-52.22-22-63.33c6.89-11.11 19.39-10.94 26.22-3.94 6.83 7 13.78 11.5 20.89 11.5v-.01z",
137
+ fill: "#37072E"
138
+ }), /*#__PURE__*/_jsx(Path, {
139
+ d: "M148.619 520.059c4 2.43 8.19 4.24 12.54 5.44C167.106 519.666 177.4 503 171 483c-6.4-20-32.027-23.634-44.041-22.951-3.01 5.36-4.85 16.2-1.98 28.15 2.23 9.34 8.15 22.45 23.64 31.86z",
140
+ fill: "url(#paint29_linear_653_516)"
141
+ }), /*#__PURE__*/_jsx(Path, {
142
+ d: "M223.561 494.198c-.24.51-.49 1.01-.76 1.52-8.63 16.38-27.25 28.04-45.95 29.05a27.798 27.798 0 01-3.04-12.7c0-15.51 12.57-28.08 28.08-28.08 8.72 0 16.52 3.98 21.67 10.21z",
143
+ fill: "url(#paint30_radial_653_516)"
144
+ }), /*#__PURE__*/_jsxs(Defs, {
145
+ children: [/*#__PURE__*/_jsxs(LinearGradient, {
146
+ id: "paint0_linear_653_516",
147
+ x1: 193.829,
148
+ y1: 297.318,
149
+ x2: 193.829,
150
+ y2: 469.328,
151
+ gradientUnits: "userSpaceOnUse",
152
+ children: [/*#__PURE__*/_jsx(Stop, {
153
+ stopColor: "#FD7518"
154
+ }), /*#__PURE__*/_jsx(Stop, {
155
+ offset: 1,
156
+ stopColor: "#F6255C"
157
+ })]
158
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
159
+ id: "paint1_radial_653_516",
160
+ cx: 0,
161
+ cy: 0,
162
+ r: 1,
163
+ gradientUnits: "userSpaceOnUse",
164
+ gradientTransform: "translate(195.9 165.768) scale(177.16)",
165
+ children: [/*#__PURE__*/_jsx(Stop, {
166
+ stopColor: "#F7FF9B"
167
+ }), /*#__PURE__*/_jsx(Stop, {
168
+ offset: 1,
169
+ stopColor: "#F7FF9B",
170
+ stopOpacity: 0
171
+ })]
172
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
173
+ id: "paint2_radial_653_516",
174
+ cx: 0,
175
+ cy: 0,
176
+ r: 1,
177
+ gradientUnits: "userSpaceOnUse",
178
+ gradientTransform: "matrix(-37.33102 143.11116 -83.00448 -21.65199 206.327 255.304)",
179
+ children: [/*#__PURE__*/_jsx(Stop, {
180
+ stopColor: "#F7FF9B"
181
+ }), /*#__PURE__*/_jsx(Stop, {
182
+ offset: 1,
183
+ stopColor: "#F7FF9B",
184
+ stopOpacity: 0
185
+ })]
186
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
187
+ id: "paint3_radial_653_516",
188
+ cx: 0,
189
+ cy: 0,
190
+ r: 1,
191
+ gradientUnits: "userSpaceOnUse",
192
+ gradientTransform: "matrix(.68003 0 0 .68001 332.339 289.188)",
193
+ children: [/*#__PURE__*/_jsx(Stop, {
194
+ stopColor: "#F7FF9B"
195
+ }), /*#__PURE__*/_jsx(Stop, {
196
+ offset: 1,
197
+ stopColor: "#F7FF9B",
198
+ stopOpacity: 0
199
+ })]
200
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
201
+ id: "paint4_radial_653_516",
202
+ cx: 0,
203
+ cy: 0,
204
+ r: 1,
205
+ gradientUnits: "userSpaceOnUse",
206
+ gradientTransform: "matrix(1.72001 0 0 1.72002 333.599 288.528)",
207
+ children: [/*#__PURE__*/_jsx(Stop, {
208
+ stopColor: "#F7FF9B"
209
+ }), /*#__PURE__*/_jsx(Stop, {
210
+ offset: 1,
211
+ stopColor: "#F7FF9B",
212
+ stopOpacity: 0
213
+ })]
214
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
215
+ id: "paint5_radial_653_516",
216
+ cx: 0,
217
+ cy: 0,
218
+ r: 1,
219
+ gradientUnits: "userSpaceOnUse",
220
+ gradientTransform: "translate(318.469 291.988) scale(145.72)",
221
+ children: [/*#__PURE__*/_jsx(Stop, {
222
+ stopColor: "#F7FF9B"
223
+ }), /*#__PURE__*/_jsx(Stop, {
224
+ offset: 1,
225
+ stopColor: "#F7FF9B",
226
+ stopOpacity: 0
227
+ })]
228
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
229
+ id: "paint6_radial_653_516",
230
+ cx: 0,
231
+ cy: 0,
232
+ r: 1,
233
+ gradientUnits: "userSpaceOnUse",
234
+ gradientTransform: "translate(204.89 321.318) scale(76.29)",
235
+ children: [/*#__PURE__*/_jsx(Stop, {
236
+ stopColor: "#F7FF9B"
237
+ }), /*#__PURE__*/_jsx(Stop, {
238
+ offset: 1,
239
+ stopColor: "#F7FF9B",
240
+ stopOpacity: 0
241
+ })]
242
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
243
+ id: "paint7_radial_653_516",
244
+ cx: 0,
245
+ cy: 0,
246
+ r: 1,
247
+ gradientUnits: "userSpaceOnUse",
248
+ gradientTransform: "translate(51.59 292.198) scale(68.15)",
249
+ children: [/*#__PURE__*/_jsx(Stop, {
250
+ stopColor: "#F7FF9B"
251
+ }), /*#__PURE__*/_jsx(Stop, {
252
+ offset: 1,
253
+ stopColor: "#F7FF9B",
254
+ stopOpacity: 0
255
+ })]
256
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
257
+ id: "paint8_radial_653_516",
258
+ cx: 0,
259
+ cy: 0,
260
+ r: 1,
261
+ gradientUnits: "userSpaceOnUse",
262
+ gradientTransform: "translate(56.25 414.658) scale(80.62)",
263
+ children: [/*#__PURE__*/_jsx(Stop, {
264
+ stopColor: "#FFDBB2"
265
+ }), /*#__PURE__*/_jsx(Stop, {
266
+ offset: 1,
267
+ stopColor: "#FFDBB2",
268
+ stopOpacity: 0
269
+ })]
270
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
271
+ id: "paint9_radial_653_516",
272
+ cx: 0,
273
+ cy: 0,
274
+ r: 1,
275
+ gradientUnits: "userSpaceOnUse",
276
+ gradientTransform: "translate(130.469 508.878) scale(102.88)",
277
+ children: [/*#__PURE__*/_jsx(Stop, {
278
+ stopColor: "#FFDBB2"
279
+ }), /*#__PURE__*/_jsx(Stop, {
280
+ offset: 1,
281
+ stopColor: "#FFDBB2",
282
+ stopOpacity: 0
283
+ })]
284
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
285
+ id: "paint10_radial_653_516",
286
+ cx: 0,
287
+ cy: 0,
288
+ r: 1,
289
+ gradientUnits: "userSpaceOnUse",
290
+ gradientTransform: "translate(369.14 504.878) scale(100.32)",
291
+ children: [/*#__PURE__*/_jsx(Stop, {
292
+ stopColor: "#FFDBB2"
293
+ }), /*#__PURE__*/_jsx(Stop, {
294
+ offset: 1,
295
+ stopColor: "#FFDBB2",
296
+ stopOpacity: 0
297
+ })]
298
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
299
+ id: "paint11_radial_653_516",
300
+ cx: 0,
301
+ cy: 0,
302
+ r: 1,
303
+ gradientUnits: "userSpaceOnUse",
304
+ gradientTransform: "translate(369.139 504.878) scale(100.32)",
305
+ children: [/*#__PURE__*/_jsx(Stop, {
306
+ stopColor: "#FFDBB2"
307
+ }), /*#__PURE__*/_jsx(Stop, {
308
+ offset: 1,
309
+ stopColor: "#FFDBB2",
310
+ stopOpacity: 0
311
+ })]
312
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
313
+ id: "paint12_radial_653_516",
314
+ cx: 0,
315
+ cy: 0,
316
+ r: 1,
317
+ gradientUnits: "userSpaceOnUse",
318
+ gradientTransform: "translate(277.139 570.658) scale(116.82)",
319
+ children: [/*#__PURE__*/_jsx(Stop, {
320
+ stopColor: "#FFDBB2"
321
+ }), /*#__PURE__*/_jsx(Stop, {
322
+ offset: 1,
323
+ stopColor: "#FFDBB2",
324
+ stopOpacity: 0
325
+ })]
326
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
327
+ id: "paint13_radial_653_516",
328
+ cx: 0,
329
+ cy: 0,
330
+ r: 1,
331
+ gradientUnits: "userSpaceOnUse",
332
+ gradientTransform: "translate(187.97 552.808) scale(105.33)",
333
+ children: [/*#__PURE__*/_jsx(Stop, {
334
+ stopColor: "#FFDBB2"
335
+ }), /*#__PURE__*/_jsx(Stop, {
336
+ offset: 1,
337
+ stopColor: "#FFDBB2",
338
+ stopOpacity: 0
339
+ })]
340
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
341
+ id: "paint14_radial_653_516",
342
+ cx: 0,
343
+ cy: 0,
344
+ r: 1,
345
+ gradientUnits: "userSpaceOnUse",
346
+ gradientTransform: "matrix(49.8 0 0 49.8 199.579 416.428)",
347
+ children: [/*#__PURE__*/_jsx(Stop, {
348
+ stopColor: "#FFDBB2"
349
+ }), /*#__PURE__*/_jsx(Stop, {
350
+ offset: 1,
351
+ stopColor: "#FFDBB2",
352
+ stopOpacity: 0
353
+ })]
354
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
355
+ id: "paint15_linear_653_516",
356
+ x1: 319.759,
357
+ y1: 282.229,
358
+ x2: 346.419,
359
+ y2: 245.789,
360
+ gradientUnits: "userSpaceOnUse",
361
+ children: [/*#__PURE__*/_jsx(Stop, {
362
+ stopColor: "#DA5B50"
363
+ }), /*#__PURE__*/_jsx(Stop, {
364
+ offset: 1,
365
+ stopColor: "#DA5B50",
366
+ stopOpacity: 0
367
+ })]
368
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
369
+ id: "paint16_radial_653_516",
370
+ cx: 0,
371
+ cy: 0,
372
+ r: 1,
373
+ gradientUnits: "userSpaceOnUse",
374
+ gradientTransform: "translate(186.469 331.098) scale(133.38)",
375
+ children: [/*#__PURE__*/_jsx(Stop, {
376
+ stopColor: "#DA5B50"
377
+ }), /*#__PURE__*/_jsx(Stop, {
378
+ offset: 0.16,
379
+ stopColor: "#DA5B50",
380
+ stopOpacity: 0.98
381
+ }), /*#__PURE__*/_jsx(Stop, {
382
+ offset: 0.3,
383
+ stopColor: "#DA5B50",
384
+ stopOpacity: 0.94
385
+ }), /*#__PURE__*/_jsx(Stop, {
386
+ offset: 0.43,
387
+ stopColor: "#DA5B50",
388
+ stopOpacity: 0.85
389
+ }), /*#__PURE__*/_jsx(Stop, {
390
+ offset: 0.55,
391
+ stopColor: "#DA5B50",
392
+ stopOpacity: 0.74
393
+ }), /*#__PURE__*/_jsx(Stop, {
394
+ offset: 0.67,
395
+ stopColor: "#DA5B50",
396
+ stopOpacity: 0.59
397
+ }), /*#__PURE__*/_jsx(Stop, {
398
+ offset: 0.79,
399
+ stopColor: "#DA5B50",
400
+ stopOpacity: 0.41
401
+ }), /*#__PURE__*/_jsx(Stop, {
402
+ offset: 0.91,
403
+ stopColor: "#DA5B50",
404
+ stopOpacity: 0.2
405
+ }), /*#__PURE__*/_jsx(Stop, {
406
+ offset: 1,
407
+ stopColor: "#DA5B50",
408
+ stopOpacity: 0
409
+ })]
410
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
411
+ id: "paint17_radial_653_516",
412
+ cx: 0,
413
+ cy: 0,
414
+ r: 1,
415
+ gradientUnits: "userSpaceOnUse",
416
+ gradientTransform: "translate(76.139 317.989) scale(151.46)",
417
+ children: [/*#__PURE__*/_jsx(Stop, {
418
+ stopColor: "#DA5B50"
419
+ }), /*#__PURE__*/_jsx(Stop, {
420
+ offset: 0.2,
421
+ stopColor: "#DA5B50",
422
+ stopOpacity: 0.99
423
+ }), /*#__PURE__*/_jsx(Stop, {
424
+ offset: 0.34,
425
+ stopColor: "#DA5B50",
426
+ stopOpacity: 0.94
427
+ }), /*#__PURE__*/_jsx(Stop, {
428
+ offset: 0.46,
429
+ stopColor: "#DA5B50",
430
+ stopOpacity: 0.87
431
+ }), /*#__PURE__*/_jsx(Stop, {
432
+ offset: 0.58,
433
+ stopColor: "#DA5B50",
434
+ stopOpacity: 0.77
435
+ }), /*#__PURE__*/_jsx(Stop, {
436
+ offset: 0.68,
437
+ stopColor: "#DA5B50",
438
+ stopOpacity: 0.64
439
+ }), /*#__PURE__*/_jsx(Stop, {
440
+ offset: 0.78,
441
+ stopColor: "#DA5B50",
442
+ stopOpacity: 0.48
443
+ }), /*#__PURE__*/_jsx(Stop, {
444
+ offset: 0.88,
445
+ stopColor: "#DA5B50",
446
+ stopOpacity: 0.29
447
+ }), /*#__PURE__*/_jsx(Stop, {
448
+ offset: 0.97,
449
+ stopColor: "#DA5B50",
450
+ stopOpacity: 0.07
451
+ }), /*#__PURE__*/_jsx(Stop, {
452
+ offset: 1,
453
+ stopColor: "#DA5B50",
454
+ stopOpacity: 0
455
+ })]
456
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
457
+ id: "paint18_radial_653_516",
458
+ cx: 0,
459
+ cy: 0,
460
+ r: 1,
461
+ gradientUnits: "userSpaceOnUse",
462
+ gradientTransform: "translate(267.808 301.768) scale(103.98)",
463
+ children: [/*#__PURE__*/_jsx(Stop, {
464
+ stopColor: "#DA5B50"
465
+ }), /*#__PURE__*/_jsx(Stop, {
466
+ offset: 0.25,
467
+ stopColor: "#DA5B50",
468
+ stopOpacity: 0.99
469
+ }), /*#__PURE__*/_jsx(Stop, {
470
+ offset: 0.4,
471
+ stopColor: "#DA5B50",
472
+ stopOpacity: 0.95
473
+ }), /*#__PURE__*/_jsx(Stop, {
474
+ offset: 0.51,
475
+ stopColor: "#DA5B50",
476
+ stopOpacity: 0.89
477
+ }), /*#__PURE__*/_jsx(Stop, {
478
+ offset: 0.61,
479
+ stopColor: "#DA5B50",
480
+ stopOpacity: 0.8
481
+ }), /*#__PURE__*/_jsx(Stop, {
482
+ offset: 0.71,
483
+ stopColor: "#DA5B50",
484
+ stopOpacity: 0.68
485
+ }), /*#__PURE__*/_jsx(Stop, {
486
+ offset: 0.79,
487
+ stopColor: "#DA5B50",
488
+ stopOpacity: 0.53
489
+ }), /*#__PURE__*/_jsx(Stop, {
490
+ offset: 0.87,
491
+ stopColor: "#DA5B50",
492
+ stopOpacity: 0.36
493
+ }), /*#__PURE__*/_jsx(Stop, {
494
+ offset: 0.95,
495
+ stopColor: "#DA5B50",
496
+ stopOpacity: 0.17
497
+ }), /*#__PURE__*/_jsx(Stop, {
498
+ offset: 1,
499
+ stopColor: "#DA5B50",
500
+ stopOpacity: 0
501
+ })]
502
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
503
+ id: "paint19_radial_653_516",
504
+ cx: 0,
505
+ cy: 0,
506
+ r: 1,
507
+ gradientUnits: "userSpaceOnUse",
508
+ gradientTransform: "translate(243.799 -51.342) scale(97.51)",
509
+ children: [/*#__PURE__*/_jsx(Stop, {
510
+ stopColor: "#F7CE28"
511
+ }), /*#__PURE__*/_jsx(Stop, {
512
+ offset: 1,
513
+ stopColor: "#F7FF9B",
514
+ stopOpacity: 0
515
+ })]
516
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
517
+ id: "paint20_radial_653_516",
518
+ cx: 0,
519
+ cy: 0,
520
+ r: 1,
521
+ gradientUnits: "userSpaceOnUse",
522
+ gradientTransform: "translate(269.579 50.658) scale(129.97)",
523
+ children: [/*#__PURE__*/_jsx(Stop, {
524
+ stopColor: "#F7CE28"
525
+ }), /*#__PURE__*/_jsx(Stop, {
526
+ offset: 1,
527
+ stopColor: "#F7FF9B",
528
+ stopOpacity: 0
529
+ })]
530
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
531
+ id: "paint21_radial_653_516",
532
+ cx: 0,
533
+ cy: 0,
534
+ r: 1,
535
+ gradientUnits: "userSpaceOnUse",
536
+ gradientTransform: "translate(313.398 146.378) scale(121.22)",
537
+ children: [/*#__PURE__*/_jsx(Stop, {
538
+ stopColor: "#F7CE28"
539
+ }), /*#__PURE__*/_jsx(Stop, {
540
+ offset: 1,
541
+ stopColor: "#F7FF9B",
542
+ stopOpacity: 0
543
+ })]
544
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
545
+ id: "paint22_radial_653_516",
546
+ cx: 0,
547
+ cy: 0,
548
+ r: 1,
549
+ gradientUnits: "userSpaceOnUse",
550
+ gradientTransform: "translate(165.64 565.819) scale(62.67)",
551
+ children: [/*#__PURE__*/_jsx(Stop, {
552
+ stopColor: "#FFDBB2"
553
+ }), /*#__PURE__*/_jsx(Stop, {
554
+ offset: 1,
555
+ stopColor: "#FFDBB2",
556
+ stopOpacity: 0
557
+ })]
558
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
559
+ id: "paint23_linear_653_516",
560
+ x1: 273.3,
561
+ y1: 357.158,
562
+ x2: 273.3,
563
+ y2: 381.818,
564
+ gradientUnits: "userSpaceOnUse",
565
+ children: [/*#__PURE__*/_jsx(Stop, {
566
+ stopColor: "#F4D7F0"
567
+ }), /*#__PURE__*/_jsx(Stop, {
568
+ offset: 1,
569
+ stopColor: "#F5D9F1",
570
+ stopOpacity: 0
571
+ })]
572
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
573
+ id: "paint24_linear_653_516",
574
+ x1: 218.64,
575
+ y1: 380.089,
576
+ x2: 226.97,
577
+ y2: 399.249,
578
+ gradientUnits: "userSpaceOnUse",
579
+ children: [/*#__PURE__*/_jsx(Stop, {
580
+ stopColor: "#F4D7F0"
581
+ }), /*#__PURE__*/_jsx(Stop, {
582
+ offset: 1,
583
+ stopColor: "#F5D9F1",
584
+ stopOpacity: 0
585
+ })]
586
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
587
+ id: "paint25_linear_653_516",
588
+ x1: 248.811,
589
+ y1: 390.318,
590
+ x2: 248.811,
591
+ y2: 443.448,
592
+ gradientUnits: "userSpaceOnUse",
593
+ children: [/*#__PURE__*/_jsx(Stop, {
594
+ stopColor: "#621357",
595
+ stopOpacity: 0
596
+ }), /*#__PURE__*/_jsx(Stop, {
597
+ offset: 1,
598
+ stopColor: "#621357"
599
+ })]
600
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
601
+ id: "paint26_linear_653_516",
602
+ x1: 79.8407,
603
+ y1: 357.158,
604
+ x2: 79.8407,
605
+ y2: 381.818,
606
+ gradientUnits: "userSpaceOnUse",
607
+ children: [/*#__PURE__*/_jsx(Stop, {
608
+ stopColor: "#F4D7F0"
609
+ }), /*#__PURE__*/_jsx(Stop, {
610
+ offset: 1,
611
+ stopColor: "#F5D9F1",
612
+ stopOpacity: 0
613
+ })]
614
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
615
+ id: "paint27_linear_653_516",
616
+ x1: 134.511,
617
+ y1: 380.089,
618
+ x2: 126.171,
619
+ y2: 399.249,
620
+ gradientUnits: "userSpaceOnUse",
621
+ children: [/*#__PURE__*/_jsx(Stop, {
622
+ stopColor: "#F4D7F0"
623
+ }), /*#__PURE__*/_jsx(Stop, {
624
+ offset: 1,
625
+ stopColor: "#F5D9F1",
626
+ stopOpacity: 0
627
+ })]
628
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
629
+ id: "paint28_linear_653_516",
630
+ x1: 104.339,
631
+ y1: 390.318,
632
+ x2: 104.339,
633
+ y2: 443.448,
634
+ gradientUnits: "userSpaceOnUse",
635
+ children: [/*#__PURE__*/_jsx(Stop, {
636
+ stopColor: "#621357",
637
+ stopOpacity: 0
638
+ }), /*#__PURE__*/_jsx(Stop, {
639
+ offset: 1,
640
+ stopColor: "#621357"
641
+ })]
642
+ }), /*#__PURE__*/_jsxs(LinearGradient, {
643
+ id: "paint29_linear_653_516",
644
+ x1: 150,
645
+ y1: 488.5,
646
+ x2: 125,
647
+ y2: 502.5,
648
+ gradientUnits: "userSpaceOnUse",
649
+ children: [/*#__PURE__*/_jsx(Stop, {
650
+ stopColor: "#621357",
651
+ stopOpacity: 0
652
+ }), /*#__PURE__*/_jsx(Stop, {
653
+ offset: 1,
654
+ stopColor: "#541049"
655
+ })]
656
+ }), /*#__PURE__*/_jsxs(RadialGradient, {
657
+ id: "paint30_radial_653_516",
658
+ cx: 0,
659
+ cy: 0,
660
+ r: 1,
661
+ gradientUnits: "userSpaceOnUse",
662
+ gradientTransform: "rotate(-39.718 795.883 -14.024) scale(26.5023 15.7704)",
663
+ children: [/*#__PURE__*/_jsx(Stop, {
664
+ stopColor: "#FC438C"
665
+ }), /*#__PURE__*/_jsx(Stop, {
666
+ offset: 1,
667
+ stopColor: "#D3154F"
668
+ })]
669
+ })]
670
+ })]
671
+ });
672
+ };
673
+ //# sourceMappingURL=ExcitedLavaIcon.js.map