@ant-design/agentic-ui 2.1.0 → 2.3.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 (46) hide show
  1. package/dist/History/components/HistoryEmpty.d.ts +17 -0
  2. package/dist/History/components/HistoryEmpty.js +50 -0
  3. package/dist/History/components/HistoryEmptyIcon.d.ts +5 -0
  4. package/dist/History/components/HistoryEmptyIcon.js +1214 -0
  5. package/dist/History/components/HistoryList.d.ts +1 -0
  6. package/dist/History/components/HistoryList.js +6 -0
  7. package/dist/History/components/SearchComponent.js +10 -4
  8. package/dist/History/components/index.d.ts +1 -0
  9. package/dist/History/components/index.js +2 -0
  10. package/dist/History/index.js +39 -27
  11. package/dist/History/style.js +12 -0
  12. package/dist/History/types/index.d.ts +2 -2
  13. package/dist/Hooks/useIntersectionOnce.d.ts +5 -0
  14. package/dist/Hooks/useIntersectionOnce.js +79 -0
  15. package/dist/Hooks/useLanguage.d.ts +2 -0
  16. package/dist/I18n/locales.d.ts +2 -0
  17. package/dist/I18n/locales.js +4 -0
  18. package/dist/MarkdownEditor/editor/parser/parserMarkdownToSlateNode.js +31 -3
  19. package/dist/MarkdownEditor/editor/parser/remarkParse.js +2 -2
  20. package/dist/MarkdownEditor/editor/utils/markdownToHtml.js +4 -4
  21. package/dist/MarkdownInputField/MarkdownInputField.js +24 -20
  22. package/dist/Plugins/chart/AreaChart/index.js +20 -9
  23. package/dist/Plugins/chart/BarChart/index.js +12 -1
  24. package/dist/Plugins/chart/ChartMark/Area.js +21 -10
  25. package/dist/Plugins/chart/ChartMark/Bar.js +19 -8
  26. package/dist/Plugins/chart/ChartMark/Column.js +19 -8
  27. package/dist/Plugins/chart/ChartMark/Line.js +20 -9
  28. package/dist/Plugins/chart/ChartMark/Pie.js +12 -1
  29. package/dist/Plugins/chart/ChartRender.js +183 -48
  30. package/dist/Plugins/chart/DonutChart/index.js +12 -1
  31. package/dist/Plugins/chart/FunnelChart/index.d.ts +2 -0
  32. package/dist/Plugins/chart/FunnelChart/index.js +69 -18
  33. package/dist/Plugins/chart/LineChart/index.js +20 -9
  34. package/dist/Plugins/chart/RadarChart/index.js +19 -8
  35. package/dist/Plugins/chart/ScatterChart/index.js +12 -1
  36. package/dist/Plugins/chart/loadChartRuntime.d.ts +18 -0
  37. package/dist/Plugins/chart/loadChartRuntime.js +91 -0
  38. package/dist/Plugins/defaultPlugins.d.ts +3 -0
  39. package/dist/Plugins/defaultPlugins.js +2 -0
  40. package/dist/Plugins/katex/InlineKatex.js +3 -2
  41. package/dist/Plugins/mermaid/Mermaid.d.ts +5 -2
  42. package/dist/Plugins/mermaid/Mermaid.js +130 -38
  43. package/dist/Plugins/mermaid/index.js +1 -1
  44. package/dist/TaskList/index.js +2 -8
  45. package/dist/TaskList/style.js +1 -7
  46. package/package.json +3 -3
@@ -0,0 +1,1214 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+
18
+ // src/History/components/HistoryEmptyIcon.tsx
19
+ import React from "react";
20
+ var HistoryEmptyIcon = (props) => {
21
+ return /* @__PURE__ */ React.createElement(
22
+ "svg",
23
+ __spreadValues({
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ fill: "none",
26
+ version: "1.1",
27
+ width: "85.22119140625",
28
+ height: "77.939208984375",
29
+ viewBox: "0 0 85.22119140625 77.939208984375"
30
+ }, props),
31
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement(
32
+ "filter",
33
+ {
34
+ id: "master_svg0_4933_027013",
35
+ filterUnits: "objectBoundingBox",
36
+ colorInterpolationFilters: "sRGB",
37
+ x: "-0.5",
38
+ y: "-0.5",
39
+ width: "2",
40
+ height: "2"
41
+ },
42
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
43
+ /* @__PURE__ */ React.createElement(
44
+ "feBlend",
45
+ {
46
+ mode: "normal",
47
+ in: "SourceGraphic",
48
+ in2: "BackgroundImageFix",
49
+ result: "shape"
50
+ }
51
+ ),
52
+ /* @__PURE__ */ React.createElement(
53
+ "feGaussianBlur",
54
+ {
55
+ stdDeviation: "4.446315765380859",
56
+ result: "effect1_foregroundBlur"
57
+ }
58
+ )
59
+ ), /* @__PURE__ */ React.createElement(
60
+ "filter",
61
+ {
62
+ id: "master_svg1_4933_027095",
63
+ filterUnits: "objectBoundingBox",
64
+ colorInterpolationFilters: "sRGB",
65
+ x: "-0.5",
66
+ y: "-0.5",
67
+ width: "2",
68
+ height: "2"
69
+ },
70
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
71
+ /* @__PURE__ */ React.createElement(
72
+ "feBlend",
73
+ {
74
+ mode: "normal",
75
+ in: "SourceGraphic",
76
+ in2: "BackgroundImageFix",
77
+ result: "shape"
78
+ }
79
+ ),
80
+ /* @__PURE__ */ React.createElement(
81
+ "feGaussianBlur",
82
+ {
83
+ stdDeviation: "4.446315765380859",
84
+ result: "effect1_foregroundBlur"
85
+ }
86
+ )
87
+ ), /* @__PURE__ */ React.createElement(
88
+ "filter",
89
+ {
90
+ id: "master_svg2_4933_027022",
91
+ filterUnits: "objectBoundingBox",
92
+ colorInterpolationFilters: "sRGB",
93
+ x: "-0.3294117397690557",
94
+ y: "-1.4",
95
+ width: "1.6588234795381114",
96
+ height: "3.8"
97
+ },
98
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
99
+ /* @__PURE__ */ React.createElement(
100
+ "feBlend",
101
+ {
102
+ mode: "normal",
103
+ in: "SourceGraphic",
104
+ in2: "BackgroundImageFix",
105
+ result: "shape"
106
+ }
107
+ ),
108
+ /* @__PURE__ */ React.createElement(
109
+ "feGaussianBlur",
110
+ {
111
+ stdDeviation: "2.0749473571777344",
112
+ result: "effect1_foregroundBlur"
113
+ }
114
+ )
115
+ ), /* @__PURE__ */ React.createElement(
116
+ "linearGradient",
117
+ {
118
+ x1: "0.5",
119
+ y1: "0",
120
+ x2: "1.1305017936543127",
121
+ y2: "0.146835974599135",
122
+ id: "master_svg3_4933_027024"
123
+ },
124
+ /* @__PURE__ */ React.createElement(
125
+ "stop",
126
+ {
127
+ offset: "0%",
128
+ stopColor: "#1C6299",
129
+ stopOpacity: "0.11999999731779099"
130
+ }
131
+ ),
132
+ /* @__PURE__ */ React.createElement(
133
+ "stop",
134
+ {
135
+ offset: "97.85714149475098%",
136
+ stopColor: "#38A5FC",
137
+ stopOpacity: "0.15000000596046448"
138
+ }
139
+ )
140
+ ), /* @__PURE__ */ React.createElement(
141
+ "linearGradient",
142
+ {
143
+ x1: "0.5",
144
+ y1: "0",
145
+ x2: "0.5",
146
+ y2: "1",
147
+ id: "master_svg4_3556_017075"
148
+ },
149
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#FFE74D", stopOpacity: "1" }),
150
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#009DFF", stopOpacity: "0" })
151
+ ), /* @__PURE__ */ React.createElement(
152
+ "linearGradient",
153
+ {
154
+ x1: "0.5",
155
+ y1: "0",
156
+ x2: "0.5",
157
+ y2: "1",
158
+ id: "master_svg5_3556_017111"
159
+ },
160
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#55F4FF", stopOpacity: "1" }),
161
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#5323FF", stopOpacity: "0" })
162
+ ), /* @__PURE__ */ React.createElement(
163
+ "filter",
164
+ {
165
+ id: "master_svg6_4933_027085",
166
+ filterUnits: "objectBoundingBox",
167
+ colorInterpolationFilters: "sRGB",
168
+ x: "-0.1236192312085882",
169
+ y: "-0.10328307546424263",
170
+ width: "1.2472384624171764",
171
+ height: "1.2582077232492344"
172
+ },
173
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
174
+ /* @__PURE__ */ React.createElement(
175
+ "feColorMatrix",
176
+ {
177
+ in: "SourceAlpha",
178
+ type: "matrix",
179
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
180
+ }
181
+ ),
182
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "1.2458744049072266", dx: "0" }),
183
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "1.5573421716690063" }),
184
+ /* @__PURE__ */ React.createElement(
185
+ "feColorMatrix",
186
+ {
187
+ type: "matrix",
188
+ values: "0 0 0 0 0.9601770043373108 0 0 0 0 0.9913716316223145 0 0 0 0 1 0 0 0 0.9215686321258545 0"
189
+ }
190
+ ),
191
+ /* @__PURE__ */ React.createElement(
192
+ "feBlend",
193
+ {
194
+ mode: "normal",
195
+ in2: "BackgroundImageFix",
196
+ result: "effect1_dropShadow"
197
+ }
198
+ ),
199
+ /* @__PURE__ */ React.createElement(
200
+ "feBlend",
201
+ {
202
+ mode: "normal",
203
+ in: "SourceGraphic",
204
+ in2: "effect1_dropShadow",
205
+ result: "shape"
206
+ }
207
+ ),
208
+ /* @__PURE__ */ React.createElement(
209
+ "feColorMatrix",
210
+ {
211
+ in: "SourceAlpha",
212
+ type: "matrix",
213
+ result: "hardAlpha",
214
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
215
+ }
216
+ ),
217
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-1.8688114881515503", dx: "-1.5573421716690063" }),
218
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "3.1146843433380127" }),
219
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
220
+ /* @__PURE__ */ React.createElement(
221
+ "feColorMatrix",
222
+ {
223
+ type: "matrix",
224
+ values: "0 0 0 0 0.10176990926265717 0 0 0 0 1 0 0 0 0 0.9101769328117371 0 0 0 0.20000000298023224 0"
225
+ }
226
+ ),
227
+ /* @__PURE__ */ React.createElement("feBlend", { mode: "normal", in2: "shape", result: "effect2_innerShadow" }),
228
+ /* @__PURE__ */ React.createElement(
229
+ "feColorMatrix",
230
+ {
231
+ in: "SourceAlpha",
232
+ type: "matrix",
233
+ result: "hardAlpha",
234
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
235
+ }
236
+ ),
237
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-0.31146860122680664", dx: "-0.31146860122680664" }),
238
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "1.2458744049072266" }),
239
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
240
+ /* @__PURE__ */ React.createElement(
241
+ "feColorMatrix",
242
+ {
243
+ type: "matrix",
244
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.30000001192092896 0"
245
+ }
246
+ ),
247
+ /* @__PURE__ */ React.createElement(
248
+ "feBlend",
249
+ {
250
+ mode: "normal",
251
+ in2: "effect2_innerShadow",
252
+ result: "effect3_innerShadow"
253
+ }
254
+ ),
255
+ /* @__PURE__ */ React.createElement(
256
+ "feColorMatrix",
257
+ {
258
+ in: "SourceAlpha",
259
+ type: "matrix",
260
+ result: "hardAlpha",
261
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
262
+ }
263
+ ),
264
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-4.049091815948486", dx: "-1.5573421716690063" }),
265
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "1.2458744049072266" }),
266
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
267
+ /* @__PURE__ */ React.createElement(
268
+ "feColorMatrix",
269
+ {
270
+ type: "matrix",
271
+ values: "0 0 0 0 0.7568627595901489 0 0 0 0 0.8352941274642944 0 0 0 0 1 0 0 0 0.20000000298023224 0"
272
+ }
273
+ ),
274
+ /* @__PURE__ */ React.createElement(
275
+ "feBlend",
276
+ {
277
+ mode: "normal",
278
+ in2: "effect3_innerShadow",
279
+ result: "effect4_innerShadow"
280
+ }
281
+ ),
282
+ /* @__PURE__ */ React.createElement(
283
+ "feColorMatrix",
284
+ {
285
+ in: "SourceAlpha",
286
+ type: "matrix",
287
+ result: "hardAlpha",
288
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
289
+ }
290
+ ),
291
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-0.8222766518592834", dx: "-0.2616334855556488" }),
292
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "2.8966569900512695" }),
293
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
294
+ /* @__PURE__ */ React.createElement(
295
+ "feColorMatrix",
296
+ {
297
+ type: "matrix",
298
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
299
+ }
300
+ ),
301
+ /* @__PURE__ */ React.createElement(
302
+ "feBlend",
303
+ {
304
+ mode: "normal",
305
+ in2: "effect4_innerShadow",
306
+ result: "effect5_innerShadow"
307
+ }
308
+ ),
309
+ /* @__PURE__ */ React.createElement(
310
+ "feColorMatrix",
311
+ {
312
+ in: "SourceAlpha",
313
+ type: "matrix",
314
+ result: "hardAlpha",
315
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
316
+ }
317
+ ),
318
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "0", dx: "0" }),
319
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "3.5769031047821045" }),
320
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
321
+ /* @__PURE__ */ React.createElement(
322
+ "feColorMatrix",
323
+ {
324
+ type: "matrix",
325
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.38999998569488525 0"
326
+ }
327
+ ),
328
+ /* @__PURE__ */ React.createElement(
329
+ "feBlend",
330
+ {
331
+ mode: "normal",
332
+ in2: "effect5_innerShadow",
333
+ result: "effect6_innerShadow"
334
+ }
335
+ ),
336
+ /* @__PURE__ */ React.createElement(
337
+ "feGaussianBlur",
338
+ {
339
+ in: "BackgroundImageFix",
340
+ stdDeviation: "1.850122094154358"
341
+ }
342
+ ),
343
+ /* @__PURE__ */ React.createElement(
344
+ "feComposite",
345
+ {
346
+ in2: "SourceAlpha",
347
+ operator: "in",
348
+ result: "effect7_foregroundBlur"
349
+ }
350
+ ),
351
+ /* @__PURE__ */ React.createElement(
352
+ "feBlend",
353
+ {
354
+ mode: "normal",
355
+ in: "SourceGraphic",
356
+ in2: "effect7_foregroundBlur",
357
+ result: "shape"
358
+ }
359
+ )
360
+ ), /* @__PURE__ */ React.createElement(
361
+ "linearGradient",
362
+ {
363
+ x1: "0.5",
364
+ y1: "0",
365
+ x2: "0.5",
366
+ y2: "1",
367
+ id: "master_svg7_3556_017084"
368
+ },
369
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#ADD7FF", stopOpacity: "0" }),
370
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#50E8FF", stopOpacity: "1" })
371
+ ), /* @__PURE__ */ React.createElement(
372
+ "linearGradient",
373
+ {
374
+ x1: "0.5",
375
+ y1: "0.17289359867572784",
376
+ x2: "0.5",
377
+ y2: "0.6634178757667542",
378
+ id: "master_svg8_3556_017107"
379
+ },
380
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#FFFFFF", stopOpacity: "1" }),
381
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#FFFFFF", stopOpacity: "0" })
382
+ ), /* @__PURE__ */ React.createElement(
383
+ "filter",
384
+ {
385
+ id: "master_svg9_4933_027080",
386
+ filterUnits: "objectBoundingBox",
387
+ colorInterpolationFilters: "sRGB",
388
+ x: "-0.09033720744170685",
389
+ y: "-0.08987619538503155",
390
+ width: "1.1806744148834136",
391
+ height: "1.179752390770063"
392
+ },
393
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
394
+ /* @__PURE__ */ React.createElement(
395
+ "feBlend",
396
+ {
397
+ mode: "normal",
398
+ in: "SourceGraphic",
399
+ in2: "BackgroundImageFix",
400
+ result: "shape"
401
+ }
402
+ ),
403
+ /* @__PURE__ */ React.createElement(
404
+ "feGaussianBlur",
405
+ {
406
+ stdDeviation: "0.6229372024536133",
407
+ result: "effect1_foregroundBlur"
408
+ }
409
+ )
410
+ ), /* @__PURE__ */ React.createElement(
411
+ "radialGradient",
412
+ {
413
+ cx: "0",
414
+ cy: "0",
415
+ r: "1",
416
+ gradientUnits: "userSpaceOnUse",
417
+ id: "master_svga_3556_017098",
418
+ gradientTransform: "translate(87.57709014156114 24.756373068153152) rotate(80.08248323726369) scale(19.209753228558622 19.11172133123838)"
419
+ },
420
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#EEFFFD", stopOpacity: "1" }),
421
+ /* @__PURE__ */ React.createElement(
422
+ "stop",
423
+ {
424
+ offset: "99.28571581840515%",
425
+ stopColor: "#A7B9FF",
426
+ stopOpacity: "0"
427
+ }
428
+ )
429
+ ), /* @__PURE__ */ React.createElement(
430
+ "filter",
431
+ {
432
+ id: "master_svgb_4933_027081",
433
+ filterUnits: "objectBoundingBox",
434
+ colorInterpolationFilters: "sRGB",
435
+ x: "-0.1909565669224344",
436
+ y: "-0.2671790638197198",
437
+ width: "1.381913133844869",
438
+ height: "1.5343581276394396"
439
+ },
440
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
441
+ /* @__PURE__ */ React.createElement(
442
+ "feBlend",
443
+ {
444
+ mode: "normal",
445
+ in: "SourceGraphic",
446
+ in2: "BackgroundImageFix",
447
+ result: "shape"
448
+ }
449
+ ),
450
+ /* @__PURE__ */ React.createElement(
451
+ "feGaussianBlur",
452
+ {
453
+ stdDeviation: "1.5573421716690063",
454
+ result: "effect1_foregroundBlur"
455
+ }
456
+ )
457
+ ), /* @__PURE__ */ React.createElement(
458
+ "radialGradient",
459
+ {
460
+ cx: "0",
461
+ cy: "0",
462
+ r: "1",
463
+ gradientUnits: "userSpaceOnUse",
464
+ id: "master_svgc_3987_69215",
465
+ gradientTransform: "translate(86.88753598548931 44.44304626137409) rotate(117.04981327795323) scale(9.457348571457965 13.232357379808148)"
466
+ },
467
+ /* @__PURE__ */ React.createElement(
468
+ "stop",
469
+ {
470
+ offset: "34.34814512729645%",
471
+ stopColor: "#EEFFFD",
472
+ stopOpacity: "0.4000000059604645"
473
+ }
474
+ ),
475
+ /* @__PURE__ */ React.createElement(
476
+ "stop",
477
+ {
478
+ offset: "99.28572177886963%",
479
+ stopColor: "#A7B9FF",
480
+ stopOpacity: "0"
481
+ }
482
+ )
483
+ ), /* @__PURE__ */ React.createElement(
484
+ "linearGradient",
485
+ {
486
+ x1: "0.5",
487
+ y1: "0",
488
+ x2: "0.5",
489
+ y2: "1",
490
+ id: "master_svgd_3556_017072"
491
+ },
492
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#FFFFFF", stopOpacity: "1" }),
493
+ /* @__PURE__ */ React.createElement(
494
+ "stop",
495
+ {
496
+ offset: "100%",
497
+ stopColor: "#FAFDFF",
498
+ stopOpacity: "0.33000001311302185"
499
+ }
500
+ )
501
+ ), /* @__PURE__ */ React.createElement(
502
+ "linearGradient",
503
+ {
504
+ x1: "0.47119140625",
505
+ y1: "-0.09187500178813934",
506
+ x2: "1.3623931703704288",
507
+ y2: "0.769594128248752",
508
+ id: "master_svge_4933_027053"
509
+ },
510
+ /* @__PURE__ */ React.createElement(
511
+ "stop",
512
+ {
513
+ offset: "0%",
514
+ stopColor: "#404FB6",
515
+ stopOpacity: "0.9399999976158142"
516
+ }
517
+ ),
518
+ /* @__PURE__ */ React.createElement(
519
+ "stop",
520
+ {
521
+ offset: "97.85714149475098%",
522
+ stopColor: "#192353",
523
+ stopOpacity: "1"
524
+ }
525
+ )
526
+ ), /* @__PURE__ */ React.createElement(
527
+ "linearGradient",
528
+ {
529
+ x1: "0.5",
530
+ y1: "0",
531
+ x2: "0.5",
532
+ y2: "1",
533
+ id: "master_svgf_3556_017072"
534
+ },
535
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#FFFFFF", stopOpacity: "1" }),
536
+ /* @__PURE__ */ React.createElement(
537
+ "stop",
538
+ {
539
+ offset: "100%",
540
+ stopColor: "#FAFDFF",
541
+ stopOpacity: "0.33000001311302185"
542
+ }
543
+ )
544
+ ), /* @__PURE__ */ React.createElement(
545
+ "linearGradient",
546
+ {
547
+ x1: "0.8096945285797119",
548
+ y1: "0.029296884313225746",
549
+ x2: "0.5638182506993665",
550
+ y2: "1.0152038230238472",
551
+ id: "master_svgg_4933_027057"
552
+ },
553
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#192353", stopOpacity: "1" }),
554
+ /* @__PURE__ */ React.createElement(
555
+ "stop",
556
+ {
557
+ offset: "97.85714149475098%",
558
+ stopColor: "#404FB6",
559
+ stopOpacity: "0.9399999976158142"
560
+ }
561
+ )
562
+ ), /* @__PURE__ */ React.createElement(
563
+ "filter",
564
+ {
565
+ id: "master_svgh_4933_027094",
566
+ filterUnits: "objectBoundingBox",
567
+ colorInterpolationFilters: "sRGB",
568
+ x: "-0.19573039755408864",
569
+ y: "-0.2309332544319119",
570
+ width: "1.3914607951081772",
571
+ height: "1.4618665088638239"
572
+ },
573
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
574
+ /* @__PURE__ */ React.createElement(
575
+ "feBlend",
576
+ {
577
+ mode: "normal",
578
+ in: "SourceGraphic",
579
+ in2: "BackgroundImageFix",
580
+ result: "shape"
581
+ }
582
+ ),
583
+ /* @__PURE__ */ React.createElement(
584
+ "feGaussianBlur",
585
+ {
586
+ stdDeviation: "0.7786710858345032",
587
+ result: "effect1_foregroundBlur"
588
+ }
589
+ )
590
+ ), /* @__PURE__ */ React.createElement(
591
+ "filter",
592
+ {
593
+ id: "master_svgi_4933_027072",
594
+ filterUnits: "objectBoundingBox",
595
+ colorInterpolationFilters: "sRGB",
596
+ x: "-0.05456345816967492",
597
+ y: "-0.05727619740421538",
598
+ width: "1.1091269163393498",
599
+ height: "1.1145523948084308"
600
+ },
601
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
602
+ /* @__PURE__ */ React.createElement(
603
+ "feBlend",
604
+ {
605
+ mode: "normal",
606
+ in: "SourceGraphic",
607
+ in2: "BackgroundImageFix",
608
+ result: "shape"
609
+ }
610
+ ),
611
+ /* @__PURE__ */ React.createElement(
612
+ "feGaussianBlur",
613
+ {
614
+ stdDeviation: "0.31146860122680664",
615
+ result: "effect1_foregroundBlur"
616
+ }
617
+ )
618
+ ), /* @__PURE__ */ React.createElement(
619
+ "filter",
620
+ {
621
+ id: "master_svgj_4933_027065",
622
+ filterUnits: "objectBoundingBox",
623
+ colorInterpolationFilters: "sRGB",
624
+ x: "-0.20965462913825278",
625
+ y: "-0.2656145303441759",
626
+ width: "1.4193092582765057",
627
+ height: "1.5312290606883519"
628
+ },
629
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
630
+ /* @__PURE__ */ React.createElement(
631
+ "feBlend",
632
+ {
633
+ mode: "normal",
634
+ in: "SourceGraphic",
635
+ in2: "BackgroundImageFix",
636
+ result: "shape"
637
+ }
638
+ ),
639
+ /* @__PURE__ */ React.createElement(
640
+ "feGaussianBlur",
641
+ {
642
+ stdDeviation: "0.7786710858345032",
643
+ result: "effect1_foregroundBlur"
644
+ }
645
+ )
646
+ ), /* @__PURE__ */ React.createElement(
647
+ "filter",
648
+ {
649
+ id: "master_svgk_4933_027068",
650
+ filterUnits: "objectBoundingBox",
651
+ colorInterpolationFilters: "sRGB",
652
+ x: "-0.5871914677056131",
653
+ y: "-0.5841950238330886",
654
+ width: "2.1743829354112263",
655
+ height: "2.1683900476661773"
656
+ },
657
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
658
+ /* @__PURE__ */ React.createElement(
659
+ "feBlend",
660
+ {
661
+ mode: "normal",
662
+ in: "SourceGraphic",
663
+ in2: "BackgroundImageFix",
664
+ result: "shape"
665
+ }
666
+ ),
667
+ /* @__PURE__ */ React.createElement(
668
+ "feGaussianBlur",
669
+ {
670
+ stdDeviation: "0.6229372024536133",
671
+ result: "effect1_foregroundBlur"
672
+ }
673
+ )
674
+ ), /* @__PURE__ */ React.createElement(
675
+ "linearGradient",
676
+ {
677
+ x1: "0.4386749267578125",
678
+ y1: "0",
679
+ x2: "0.4326778141815654",
680
+ y2: "0.7398232808351408",
681
+ id: "master_svgl_4933_027046"
682
+ },
683
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#2F3C66", stopOpacity: "1" }),
684
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#3781FF", stopOpacity: "1" })
685
+ ), /* @__PURE__ */ React.createElement(
686
+ "filter",
687
+ {
688
+ id: "master_svgm_4933_027027",
689
+ filterUnits: "objectBoundingBox",
690
+ colorInterpolationFilters: "sRGB",
691
+ x: "0",
692
+ y: "0",
693
+ width: "1",
694
+ height: "1"
695
+ },
696
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
697
+ /* @__PURE__ */ React.createElement(
698
+ "feBlend",
699
+ {
700
+ mode: "normal",
701
+ in: "SourceGraphic",
702
+ in2: "BackgroundImageFix",
703
+ result: "shape"
704
+ }
705
+ ),
706
+ /* @__PURE__ */ React.createElement(
707
+ "feGaussianBlur",
708
+ {
709
+ in: "BackgroundImageFix",
710
+ stdDeviation: "0.3705263137817383"
711
+ }
712
+ ),
713
+ /* @__PURE__ */ React.createElement(
714
+ "feComposite",
715
+ {
716
+ in2: "SourceAlpha",
717
+ operator: "in",
718
+ result: "effect1_foregroundBlur"
719
+ }
720
+ ),
721
+ /* @__PURE__ */ React.createElement(
722
+ "feBlend",
723
+ {
724
+ mode: "normal",
725
+ in: "SourceGraphic",
726
+ in2: "effect1_foregroundBlur",
727
+ result: "shape"
728
+ }
729
+ )
730
+ ), /* @__PURE__ */ React.createElement(
731
+ "linearGradient",
732
+ {
733
+ x1: "0.9591841101646423",
734
+ y1: "0.518310546875",
735
+ x2: "0.18812145292758942",
736
+ y2: "0.4999999999999991",
737
+ id: "master_svgn_4933_027029"
738
+ },
739
+ /* @__PURE__ */ React.createElement("stop", { offset: "0%", stopColor: "#FFFFFF", stopOpacity: "1" }),
740
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#CBE2FF", stopOpacity: "1" })
741
+ ), /* @__PURE__ */ React.createElement(
742
+ "filter",
743
+ {
744
+ id: "master_svgo_4933_027032",
745
+ filterUnits: "objectBoundingBox",
746
+ colorInterpolationFilters: "sRGB",
747
+ x: "-2.05399331960477",
748
+ y: "-1.9718329276215862",
749
+ width: "5.10798663920954",
750
+ height: "5.929582592524124"
751
+ },
752
+ /* @__PURE__ */ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
753
+ /* @__PURE__ */ React.createElement(
754
+ "feColorMatrix",
755
+ {
756
+ in: "SourceAlpha",
757
+ type: "matrix",
758
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
759
+ }
760
+ ),
761
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "3.653081178665161", dx: "0" }),
762
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "4.56635046005249" }),
763
+ /* @__PURE__ */ React.createElement(
764
+ "feColorMatrix",
765
+ {
766
+ type: "matrix",
767
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6100000143051147 0"
768
+ }
769
+ ),
770
+ /* @__PURE__ */ React.createElement(
771
+ "feBlend",
772
+ {
773
+ mode: "normal",
774
+ in2: "BackgroundImageFix",
775
+ result: "effect1_dropShadow"
776
+ }
777
+ ),
778
+ /* @__PURE__ */ React.createElement(
779
+ "feBlend",
780
+ {
781
+ mode: "normal",
782
+ in: "SourceGraphic",
783
+ in2: "effect1_dropShadow",
784
+ result: "shape"
785
+ }
786
+ ),
787
+ /* @__PURE__ */ React.createElement(
788
+ "feColorMatrix",
789
+ {
790
+ in: "SourceAlpha",
791
+ type: "matrix",
792
+ result: "hardAlpha",
793
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
794
+ }
795
+ ),
796
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-5.479620933532715", dx: "-4.56635046005249" }),
797
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "20.2421817779541" }),
798
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
799
+ /* @__PURE__ */ React.createElement(
800
+ "feColorMatrix",
801
+ {
802
+ type: "matrix",
803
+ values: "0 0 0 0 0.8230088353157043 0 0 0 0 0.9085546135902405 0 0 0 0 1 0 0 0 0.019999999552965164 0"
804
+ }
805
+ ),
806
+ /* @__PURE__ */ React.createElement("feBlend", { mode: "normal", in2: "shape", result: "effect2_innerShadow" }),
807
+ /* @__PURE__ */ React.createElement(
808
+ "feColorMatrix",
809
+ {
810
+ in: "SourceAlpha",
811
+ type: "matrix",
812
+ result: "hardAlpha",
813
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
814
+ }
815
+ ),
816
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-0.9132702946662903", dx: "-0.9132702946662903" }),
817
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "3.653081178665161" }),
818
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
819
+ /* @__PURE__ */ React.createElement(
820
+ "feColorMatrix",
821
+ {
822
+ type: "matrix",
823
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.30000001192092896 0"
824
+ }
825
+ ),
826
+ /* @__PURE__ */ React.createElement(
827
+ "feBlend",
828
+ {
829
+ mode: "normal",
830
+ in2: "effect2_innerShadow",
831
+ result: "effect3_innerShadow"
832
+ }
833
+ ),
834
+ /* @__PURE__ */ React.createElement(
835
+ "feColorMatrix",
836
+ {
837
+ in: "SourceAlpha",
838
+ type: "matrix",
839
+ result: "hardAlpha",
840
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
841
+ }
842
+ ),
843
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-11.872511863708496", dx: "-4.56635046005249" }),
844
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "3.653081178665161" }),
845
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
846
+ /* @__PURE__ */ React.createElement(
847
+ "feColorMatrix",
848
+ {
849
+ type: "matrix",
850
+ values: "0 0 0 0 0.7568627595901489 0 0 0 0 0.8352941274642944 0 0 0 0 1 0 0 0 0.20000000298023224 0"
851
+ }
852
+ ),
853
+ /* @__PURE__ */ React.createElement(
854
+ "feBlend",
855
+ {
856
+ mode: "normal",
857
+ in2: "effect3_innerShadow",
858
+ result: "effect4_innerShadow"
859
+ }
860
+ ),
861
+ /* @__PURE__ */ React.createElement(
862
+ "feColorMatrix",
863
+ {
864
+ in: "SourceAlpha",
865
+ type: "matrix",
866
+ result: "hardAlpha",
867
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
868
+ }
869
+ ),
870
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "-2.4110329151153564", dx: "-0.7671465873718262" }),
871
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "1.3699052333831787" }),
872
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
873
+ /* @__PURE__ */ React.createElement(
874
+ "feColorMatrix",
875
+ {
876
+ type: "matrix",
877
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"
878
+ }
879
+ ),
880
+ /* @__PURE__ */ React.createElement(
881
+ "feBlend",
882
+ {
883
+ mode: "normal",
884
+ in2: "effect4_innerShadow",
885
+ result: "effect5_innerShadow"
886
+ }
887
+ ),
888
+ /* @__PURE__ */ React.createElement(
889
+ "feColorMatrix",
890
+ {
891
+ in: "SourceAlpha",
892
+ type: "matrix",
893
+ result: "hardAlpha",
894
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
895
+ }
896
+ ),
897
+ /* @__PURE__ */ React.createElement("feOffset", { dy: "0", dx: "0" }),
898
+ /* @__PURE__ */ React.createElement("feGaussianBlur", { stdDeviation: "4.212042808532715" }),
899
+ /* @__PURE__ */ React.createElement("feComposite", { in2: "hardAlpha", operator: "arithmetic", k2: "-1", k3: "1" }),
900
+ /* @__PURE__ */ React.createElement(
901
+ "feColorMatrix",
902
+ {
903
+ type: "matrix",
904
+ values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6499999761581421 0"
905
+ }
906
+ ),
907
+ /* @__PURE__ */ React.createElement(
908
+ "feBlend",
909
+ {
910
+ mode: "normal",
911
+ in2: "effect5_innerShadow",
912
+ result: "effect6_innerShadow"
913
+ }
914
+ ),
915
+ /* @__PURE__ */ React.createElement(
916
+ "feGaussianBlur",
917
+ {
918
+ in: "BackgroundImageFix",
919
+ stdDeviation: "3.5606112480163574"
920
+ }
921
+ ),
922
+ /* @__PURE__ */ React.createElement(
923
+ "feComposite",
924
+ {
925
+ in2: "SourceAlpha",
926
+ operator: "in",
927
+ result: "effect7_foregroundBlur"
928
+ }
929
+ ),
930
+ /* @__PURE__ */ React.createElement(
931
+ "feBlend",
932
+ {
933
+ mode: "normal",
934
+ in: "SourceGraphic",
935
+ in2: "effect7_foregroundBlur",
936
+ result: "shape"
937
+ }
938
+ )
939
+ ), /* @__PURE__ */ React.createElement(
940
+ "radialGradient",
941
+ {
942
+ cx: "0",
943
+ cy: "0",
944
+ r: "1",
945
+ gradientUnits: "userSpaceOnUse",
946
+ id: "master_svgp_4933_027034",
947
+ gradientTransform: "translate(28.942195962008043 63.298078059451655) rotate(99.68511931228926) scale(4.8952983531179814 4.988116599796135)"
948
+ },
949
+ /* @__PURE__ */ React.createElement(
950
+ "stop",
951
+ {
952
+ offset: "42.85714328289032%",
953
+ stopColor: "#FFFFFF",
954
+ stopOpacity: "1"
955
+ }
956
+ ),
957
+ /* @__PURE__ */ React.createElement("stop", { offset: "100%", stopColor: "#7CBAFC", stopOpacity: "1" })
958
+ )),
959
+ /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svg0_4933_027013)" }, /* @__PURE__ */ React.createElement(
960
+ "ellipse",
961
+ {
962
+ cx: "31.124252319335938",
963
+ cy: "31.124130249023438",
964
+ rx: "17.785263061523438",
965
+ ry: "17.785263061523438",
966
+ fill: "#CDE7FF",
967
+ fillOpacity: "1"
968
+ }
969
+ )), /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svg1_4933_027095)" }, /* @__PURE__ */ React.createElement(
970
+ "ellipse",
971
+ {
972
+ cx: "54.09703063964844",
973
+ cy: "38.53453063964844",
974
+ rx: "17.785263061523438",
975
+ ry: "17.785263061523438",
976
+ fill: "#CDE7FF",
977
+ fillOpacity: "1"
978
+ }
979
+ )), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement(
980
+ "g",
981
+ {
982
+ transform: "matrix(-1,0,0,1,113.7179708480835,0)",
983
+ style: { opacity: 0.5 },
984
+ filter: "url(#master_svg2_4933_027022)"
985
+ },
986
+ /* @__PURE__ */ React.createElement(
987
+ "ellipse",
988
+ {
989
+ cx: "69.45688104629517",
990
+ cy: "68.7500991821289",
991
+ rx: "12.597895622253418",
992
+ ry: "2.9642105102539062",
993
+ fill: "url(#master_svg3_4933_027024)",
994
+ fillOpacity: "1"
995
+ }
996
+ )
997
+ ), /* @__PURE__ */ React.createElement("g", { transform: "matrix(-1,0,0,1,140.3961935043335,0)" }, /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement(
998
+ "path",
999
+ {
1000
+ d: "M120.58969675216674,37.13776484375C120.58969675216674,51.19276484375,109.30909675216674,59.93976484375,95.39389675216674,59.93976484375C81.47859675216675,59.93976484375,70.19809675216675,51.19276484375,70.19809675216675,37.13776484375C70.19809675216675,23.08276484375,81.47859675216675,11.68896484375,95.39389675216674,11.68896484375C109.30919675216674,11.68896484375,120.58969675216674,23.08276484375,120.58969675216674,37.13776484375Z",
1001
+ fill: "#FFFFFF",
1002
+ fillOpacity: "1"
1003
+ }
1004
+ )), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement(
1005
+ "ellipse",
1006
+ {
1007
+ cx: "88.50021123886108",
1008
+ cy: "37.81526470184326",
1009
+ rx: "9.813100814819336",
1010
+ ry: "10.663165092468262",
1011
+ fill: "url(#master_svg4_3556_017075)",
1012
+ fillOpacity: "1"
1013
+ }
1014
+ )), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement(
1015
+ "ellipse",
1016
+ {
1017
+ cx: "95.13067770004272",
1018
+ cy: "41.014217376708984",
1019
+ rx: "16.443567276000977",
1020
+ ry: "13.862117767333984",
1021
+ fill: "url(#master_svg5_3556_017111)",
1022
+ fillOpacity: "1"
1023
+ }
1024
+ )), /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svg6_4933_027085)" }, /* @__PURE__ */ React.createElement(
1025
+ "path",
1026
+ {
1027
+ d: "M120.58969675216674,37.13776484375C120.58969675216674,51.19276484375,109.30909675216674,59.93976484375,95.39389675216674,59.93976484375C81.47859675216675,59.93976484375,70.19809675216675,51.19276484375,70.19809675216675,37.13776484375C70.19809675216675,23.08276484375,81.47859675216675,11.68896484375,95.39389675216674,11.68896484375C109.30919675216674,11.68896484375,120.58969675216674,23.08276484375,120.58969675216674,37.13776484375Z",
1028
+ fill: "url(#master_svg7_3556_017084)",
1029
+ fillOpacity: "0.30000001192092896"
1030
+ }
1031
+ )), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement(
1032
+ "path",
1033
+ {
1034
+ d: "M109.98144968185424,21.7729690625C109.98144968185424,26.4579390625,103.45054968185426,27.6853390625,95.39434968185425,27.6853390625C87.33818968185425,27.6853390625,80.80734968185425,26.4579390625,80.80734968185425,21.7729690625C80.80734968185425,17.0879790625,87.33818968185425,13.2900390625,95.39434968185425,13.2900390625C103.45054968185426,13.2900390625,109.98144968185424,17.0879790625,109.98144968185424,21.7729690625Z",
1035
+ fill: "url(#master_svg8_3556_017107)",
1036
+ fillOpacity: "0.800000011920929"
1037
+ }
1038
+ )), /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svg9_4933_027080)" }, /* @__PURE__ */ React.createElement(
1039
+ "ellipse",
1040
+ {
1041
+ cx: "90.88559103012085",
1042
+ cy: "29.816951751708984",
1043
+ rx: "13.791376113891602",
1044
+ ry: "13.862117767333984",
1045
+ fill: "url(#master_svga_3556_017098)",
1046
+ fillOpacity: "1"
1047
+ }
1048
+ )), /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svgb_4933_027081)" }, /* @__PURE__ */ React.createElement(
1049
+ "path",
1050
+ {
1051
+ d: "M104.94389811935424,48.744337109374996C104.94389811935424,53.455637109375004,91.68299811935425,53.809337109375,83.46119811935425,51.410137109375C74.44374811935425,47.678037109375,72.32199811935425,41.459437109375,72.32199811935425,36.748147109375C72.32199811935425,32.036867109375,79.82270811935425,29.550537109375,87.43949811935425,29.550537109375C95.05619811935425,29.550537109375,104.94389811935424,44.033037109375,104.94389811935424,48.744337109374996Z",
1052
+ fill: "url(#master_svgc_3987_69215)",
1053
+ fillOpacity: "1"
1054
+ }
1055
+ )), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9923956990242004,0.12308907508850098,-0.12183567136526108,0.9925503134727478,3.2709196132248906,-10.806950145250426)" }, /* @__PURE__ */ React.createElement(
1056
+ "path",
1057
+ {
1058
+ d: "M89.08613157272339 27.65196990966797C89.08613157272339 24.13653960806023 91.93595090490471 21.286720275878906 95.45138120651245 21.286720275878906L95.45138120651245 21.286720275878906C98.96681150812019 21.286720275878906 101.81663084030151 24.13653960806023 101.81663084030151 27.65196990966797L101.81663084030151 31.556053161621094C101.81663084030151 35.07148346322884 98.96681150812019 37.921302795410156 95.45138120651245 37.921302795410156L95.45138120651245 37.921302795410156C91.93595090490471 37.921302795410156 89.08613157272339 35.07148346322884 89.08613157272339 31.556053161621094Z",
1059
+ fill: "url(#master_svgd_3556_017072)",
1060
+ fillOpacity: "1"
1061
+ }
1062
+ )), /* @__PURE__ */ React.createElement("g", { transform: "matrix(-1,0,0,1,195.23451900482178,0)" }, /* @__PURE__ */ React.createElement(
1063
+ "path",
1064
+ {
1065
+ d: "M105.25759950241088,30.961387463378905Q105.3774895024109,30.857197463378906,105.4725295024109,30.729934463378907Q105.56756950241089,30.602672463378905,105.63344950241088,30.458141463378908Q105.69931950241089,30.313609463378906,105.73302950241089,30.158391463378905Q105.7667295024109,30.003173463378907,105.7667295024109,29.844337463378906Q105.7667295024109,29.771629763378908,105.75960950241088,29.699272463378907Q105.75247950241089,29.626914463378906,105.7382895024109,29.555603463378905Q105.72410950241088,29.484293463378908,105.70299950241089,29.414716463378905Q105.68189950241089,29.345139463378906,105.65406950241089,29.277966463378906Q105.62624950241089,29.210792463378905,105.5919795024109,29.146670463378907Q105.55769950241088,29.082547463378905,105.51730950241088,29.022093463378905Q105.47690950241089,28.961639463378905,105.43078950241089,28.905435463378907Q105.38465950241088,28.849231463378906,105.3332495024109,28.797817463378905Q105.28183950241089,28.746407463378905,105.22563950241089,28.700277463378907Q105.16942950241089,28.654157463378905,105.10897950241089,28.613767463378906Q105.04851950241088,28.573367463378908,104.9843995024109,28.539097463378905Q104.92027950241089,28.504817463378906,104.85309950241088,28.476997463378908Q104.7859295024109,28.449167463378906,104.71634950241089,28.428067463378905Q104.6467795024109,28.406957463378905,104.57546950241088,28.392777463378906Q104.50415950241089,28.378587463378906,104.43179950241088,28.371467463378906Q104.3594395024109,28.364337463378906,104.28672950241089,28.364337463378906Q104.0191395024109,28.364337463378906,103.76848950241089,28.458037463378908Q103.51782950241089,28.551747463378906,103.31585950241089,28.727287463378907L103.31447950241089,28.725697463378907Q102.28056950241088,29.624301463378906,101.04646950241089,29.799818863378906Q99.7441995024109,29.985029463378908,98.12054250241088,29.398847463378907L98.11982750241089,29.400827463378906Q97.87623850241089,29.312884463378907,97.61725950241089,29.312884463378907Q97.5445518024109,29.312884463378907,97.47219450241089,29.320011463378908Q97.39983650241089,29.327137463378907,97.32852550241088,29.341322463378905Q97.25721550241089,29.355507463378906,97.18763850241089,29.376613463378906Q97.11806150241088,29.397719463378905,97.05088850241088,29.425543463378908Q96.98371450241089,29.453367463378907,96.9195925024109,29.487641463378907Q96.85546950241088,29.521915463378907,96.79501550241089,29.562309463378906Q96.73456150241088,29.602704463378906,96.67835750241089,29.648829463378906Q96.62215350241088,29.694954463378906,96.57073950241089,29.746366763378905Q96.51932950241088,29.797778863378905,96.47319950241089,29.853982733378906Q96.42707950241089,29.910186563378907,96.38668950241089,29.970640463378906Q96.34628950241088,30.031095463378907,96.31201950241089,30.095217463378905Q96.2777395024109,30.159340463378907,96.24991950241089,30.226513463378907Q96.2220895024109,30.293686463378908,96.20098950241089,30.363263463378907Q96.17987950241088,30.432840463378906,96.16569950241089,30.504151463378907Q96.15150950241089,30.575461463378907,96.14438950241089,30.647819463378905Q96.13725950241088,30.720177463378906,96.13725950241088,30.792884463378908Q96.13725950241088,30.906357463378907,96.15455950241089,31.018507463378906Q96.17185950241088,31.130647463378907,96.20604950241089,31.238847463378907Q96.24023950241089,31.347047463378907,96.29052950241089,31.448767463378907Q96.34080950241089,31.550487463378907,96.40601950241089,31.643357463378905Q96.47122950241089,31.736217463378907,96.54982950241089,31.818057463378906Q96.62842850241088,31.899907463378906,96.71858650241089,31.968807463378905Q96.80874450241089,32.03770746337891,96.90835350241089,32.09205746337891Q97.0079615024109,32.14640746337891,97.11469150241089,32.184947463378904L97.11397650241089,32.18692746337891Q99.43136950241089,33.02355746337891,101.46383950241089,32.73449746337891Q103.56446950241089,32.435737463378906,105.25898950241088,30.962977463378905L105.25759950241088,30.961387463378905Z",
1066
+ fillRule: "evenodd",
1067
+ fill: "#000000",
1068
+ fillOpacity: "1"
1069
+ }
1070
+ ), /* @__PURE__ */ React.createElement(
1071
+ "path",
1072
+ {
1073
+ d: "M105.25759950241088,30.961387463378905Q105.3774895024109,30.857197463378906,105.4725295024109,30.729934463378907Q105.56756950241089,30.602672463378905,105.63344950241088,30.458141463378908Q105.69931950241089,30.313609463378906,105.73302950241089,30.158391463378905Q105.7667295024109,30.003173463378907,105.7667295024109,29.844337463378906Q105.7667295024109,29.771629763378908,105.75960950241088,29.699272463378907Q105.75247950241089,29.626914463378906,105.7382895024109,29.555603463378905Q105.72410950241088,29.484293463378908,105.70299950241089,29.414716463378905Q105.68189950241089,29.345139463378906,105.65406950241089,29.277966463378906Q105.62624950241089,29.210792463378905,105.5919795024109,29.146670463378907Q105.55769950241088,29.082547463378905,105.51730950241088,29.022093463378905Q105.47690950241089,28.961639463378905,105.43078950241089,28.905435463378907Q105.38465950241088,28.849231463378906,105.3332495024109,28.797817463378905Q105.28183950241089,28.746407463378905,105.22563950241089,28.700277463378907Q105.16942950241089,28.654157463378905,105.10897950241089,28.613767463378906Q105.04851950241088,28.573367463378908,104.9843995024109,28.539097463378905Q104.92027950241089,28.504817463378906,104.85309950241088,28.476997463378908Q104.7859295024109,28.449167463378906,104.71634950241089,28.428067463378905Q104.6467795024109,28.406957463378905,104.57546950241088,28.392777463378906Q104.50415950241089,28.378587463378906,104.43179950241088,28.371467463378906Q104.3594395024109,28.364337463378906,104.28672950241089,28.364337463378906Q104.0191395024109,28.364337463378906,103.76848950241089,28.458037463378908Q103.51782950241089,28.551747463378906,103.31585950241089,28.727287463378907L103.31447950241089,28.725697463378907Q102.28056950241088,29.624301463378906,101.04646950241089,29.799818863378906Q99.7441995024109,29.985029463378908,98.12054250241088,29.398847463378907L98.11982750241089,29.400827463378906Q97.87623850241089,29.312884463378907,97.61725950241089,29.312884463378907Q97.5445518024109,29.312884463378907,97.47219450241089,29.320011463378908Q97.39983650241089,29.327137463378907,97.32852550241088,29.341322463378905Q97.25721550241089,29.355507463378906,97.18763850241089,29.376613463378906Q97.11806150241088,29.397719463378905,97.05088850241088,29.425543463378908Q96.98371450241089,29.453367463378907,96.9195925024109,29.487641463378907Q96.85546950241088,29.521915463378907,96.79501550241089,29.562309463378906Q96.73456150241088,29.602704463378906,96.67835750241089,29.648829463378906Q96.62215350241088,29.694954463378906,96.57073950241089,29.746366763378905Q96.51932950241088,29.797778863378905,96.47319950241089,29.853982733378906Q96.42707950241089,29.910186563378907,96.38668950241089,29.970640463378906Q96.34628950241088,30.031095463378907,96.31201950241089,30.095217463378905Q96.2777395024109,30.159340463378907,96.24991950241089,30.226513463378907Q96.2220895024109,30.293686463378908,96.20098950241089,30.363263463378907Q96.17987950241088,30.432840463378906,96.16569950241089,30.504151463378907Q96.15150950241089,30.575461463378907,96.14438950241089,30.647819463378905Q96.13725950241088,30.720177463378906,96.13725950241088,30.792884463378908Q96.13725950241088,30.906357463378907,96.15455950241089,31.018507463378906Q96.17185950241088,31.130647463378907,96.20604950241089,31.238847463378907Q96.24023950241089,31.347047463378907,96.29052950241089,31.448767463378907Q96.34080950241089,31.550487463378907,96.40601950241089,31.643357463378905Q96.47122950241089,31.736217463378907,96.54982950241089,31.818057463378906Q96.62842850241088,31.899907463378906,96.71858650241089,31.968807463378905Q96.80874450241089,32.03770746337891,96.90835350241089,32.09205746337891Q97.0079615024109,32.14640746337891,97.11469150241089,32.184947463378904L97.11397650241089,32.18692746337891Q99.43136950241089,33.02355746337891,101.46383950241089,32.73449746337891Q103.56446950241089,32.435737463378906,105.25898950241088,30.962977463378905L105.25759950241088,30.961387463378905Z",
1074
+ fillRule: "evenodd",
1075
+ fill: "url(#master_svge_4933_027053)",
1076
+ fillOpacity: "1"
1077
+ }
1078
+ ))), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9923956394195557,0.12308909744024277,-0.12183564901351929,0.9925503134727478,3.624364632361221,-12.735608575647397)" }, /* @__PURE__ */ React.createElement(
1079
+ "path",
1080
+ {
1081
+ d: "M104.87086200714111 29.249460697174072C104.87086200714111 25.90980354341604 107.57818904909232 23.202476501464844 110.91784620285034 23.202476501464844L110.91784620285034 23.202476501464844C114.25750335660837 23.202476501464844 116.96483039855957 25.90980354341604 116.96483039855957 29.249460697174072L116.96483039855957 33.790074825286865C116.96483039855957 37.1297319790449 114.25750335660837 39.837059020996094 110.91784620285034 39.837059020996094L110.91784620285034 39.837059020996094C107.57818904909232 39.837059020996094 104.87086200714111 37.1297319790449 104.87086200714111 33.790074825286865Z",
1082
+ fill: "url(#master_svgf_3556_017072)",
1083
+ fillOpacity: "1"
1084
+ }
1085
+ )), /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9923955798149109,0.12308908253908157,-0.12183566391468048,0.992550253868103,3.8978485331749084,-12.92430431851458)" }, /* @__PURE__ */ React.createElement(
1086
+ "rect",
1087
+ {
1088
+ x: "106.53345966339111",
1089
+ y: "25.343345642089844",
1090
+ width: "8.274821281433105",
1091
+ height: "12.156034469604492",
1092
+ rx: "4.137410640716553",
1093
+ fill: "url(#master_svgg_4933_027057)",
1094
+ fillOpacity: "1"
1095
+ }
1096
+ ))), /* @__PURE__ */ React.createElement(
1097
+ "g",
1098
+ {
1099
+ style: { opacity: 0.30000001192092896 },
1100
+ filter: "url(#master_svgh_4933_027094)"
1101
+ },
1102
+ /* @__PURE__ */ React.createElement(
1103
+ "path",
1104
+ {
1105
+ d: "M98.90207624435425,57.853415625C103.67601624435424,59.986015625,111.10217624435425,53.854705625,114.81517624435425,44.791015625Q104.47167624435424,57.853415625,98.90207624435425,57.853415625Z",
1106
+ fill: "#EBFFA5",
1107
+ fillOpacity: "1"
1108
+ }
1109
+ )
1110
+ ), /* @__PURE__ */ React.createElement(
1111
+ "g",
1112
+ {
1113
+ transform: "matrix(0.7366471886634827,0.676277220249176,-0.6725150942802429,0.7400833964347839,51.473056634434016,-53.8310499068634)",
1114
+ filter: "url(#master_svgi_4933_027072)"
1115
+ },
1116
+ /* @__PURE__ */ React.createElement(
1117
+ "path",
1118
+ {
1119
+ d: "M94.75449323654175,61.184961328125C106.45239323654175,56.812961328125,110.96699323654175,52.687461328124996,117.58799323654175,39.432861328125Q108.59439323654175,55.215661328125,94.75449323654175,61.184961328125Z",
1120
+ fill: "#FFFFFF",
1121
+ fillOpacity: "1"
1122
+ }
1123
+ )
1124
+ ), /* @__PURE__ */ React.createElement(
1125
+ "g",
1126
+ {
1127
+ transform: "matrix(0.973081648349762,0.23046064376831055,-0.2282373011112213,0.9736055135726929,13.186657781160221,-22.077307457060897)",
1128
+ filter: "url(#master_svgj_4933_027065)"
1129
+ },
1130
+ /* @__PURE__ */ React.createElement(
1131
+ "path",
1132
+ {
1133
+ d: "M101.04856061935425,57.5846984375C103.17088061935425,57.5846984375,114.04776061935425,55.7191784375,115.90486061935425,45.8583984375Q108.47669061935424,56.2521984375,101.04856061935425,57.5846984375Z",
1134
+ fill: "#A0FFF9",
1135
+ fillOpacity: "1"
1136
+ }
1137
+ )
1138
+ ), /* @__PURE__ */ React.createElement("g", { filter: "url(#master_svgk_4933_027068)" }, /* @__PURE__ */ React.createElement(
1139
+ "path",
1140
+ {
1141
+ d: "M103.61672175216675,15.954833984375L103.71831175216674,17.279223984375L104.14438175216675,16.021834584375L103.91509175216675,17.330013984375L104.63888175216675,16.218626984375L104.09313175216676,17.428393984375L105.06916175216675,16.532844984375L104.24123175216675,17.568183984375L105.40818175216675,16.944745984375L104.35009175216675,17.740603984375L105.63463175216675,17.428443984375L104.41287175216675,17.934813984375L105.73429175216675,17.953563984375L104.42563175216675,18.138623984375002L105.70089175216675,18.487083984375L104.38756175216675,18.339213984375L105.53654175216676,18.995503984375L104.30106175216675,18.523983984375L105.25156175216675,19.446863984375L104.17155175216675,18.681333984375L104.86386175216674,19.812803984375L104.00719175216675,18.801363984375L104.39779175216675,20.070343984375L103.81829175216674,18.876543984375L103.88265175216675,20.203283984375L103.61672175216675,18.902133984375L103.35080175216675,20.203283984375L103.41516175216675,18.876543984375L102.83565175216675,20.070343984375L103.22626175216675,18.801363984375L102.36958875216675,19.812803984375L103.06189175216674,18.681333984375L101.98188575216675,19.446863984375L102.93239175216675,18.523983984375L101.69690575216674,18.995503984375L102.84588175216675,18.339213984375L101.53255395216675,18.487083984375L102.80781175216674,18.138623984375002L101.49915855216675,17.953563984375L102.82057175216674,17.934813984375L101.59881775216675,17.428443984375L102.88335175216675,17.740603984375L101.82526875216675,16.944745984375L102.99221175216675,17.568183984375L102.16428375216675,16.532844984375L103.14032175216674,17.428393984375L102.59456175216675,16.218626984375L103.31835175216675,17.330013984375L103.08906175216674,16.021834884375L103.51514175216674,17.279223984375L103.61672175216675,15.954833984375Z",
1142
+ fill: "#FFFFFF",
1143
+ fillOpacity: "1",
1144
+ style: { mixBlendMode: "color-dodge" }
1145
+ }
1146
+ ))), /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9926819205284119,0.12075819075107574,-0.12075819075107574,0.9926819205284119,1.80846250397164,-7.205941303673676)" }, /* @__PURE__ */ React.createElement(
1147
+ "path",
1148
+ {
1149
+ d: "M63.34631507247925,20.739125234375003Q63.36227507247925,20.671095234375002,63.381135072479246,20.605045234374998Q63.56967507247925,19.944135234375,63.94067507247925,19.422045234375Q64.31201507247926,18.899615234375,64.75363507247926,18.471305234375002Q65.19559507247925,18.042665234375,65.60376507247925,17.636025234375Q66.01227507247924,17.229055234375,66.27380507247925,16.806845234375Q66.53566507247925,16.384635234375,66.53566507247925,15.864575234375Q66.53566507247925,15.308965234375,66.31469507247925,14.931445234375Q66.09404507247925,14.553595234374999,65.70513507247925,14.362635234375Q65.31622507247924,14.171675234375,64.75972507247924,14.171675234375Q64.02246507247925,14.171675234375,63.36238507247925,14.538275234375C62.70609507247925,14.902765234375,61.84966507247925,14.998705234375,61.29759707247925,14.489995234375C60.77197807247925,14.005645234375,60.712896072479246,13.178145234375,61.26586507247925,12.725275234375Q61.47536507247925,12.553695234375,61.69776507247925,12.400215234375Q62.43909507247925,11.888624234375,63.31119507247925,11.603539234375Q64.18362507247924,11.318115234375,65.16856507247925,11.318115234375Q66.52857507247924,11.318115234375,67.59326507247926,11.779261234375Q68.65795507247925,12.240070234375,69.27797507247925,13.181665234375Q69.89800507247925,14.123255234375,69.89800507247925,15.551385234375001Q69.89800507247925,16.357885234375,69.62668507247925,16.962255234375Q69.35535507247926,17.566285234375002,68.92657507247925,18.034535234375Q68.49779507247925,18.502795234375,68.03657507247925,18.928725234375Q67.57569507247925,19.354665234375,67.17428507247925,19.804975234375Q66.77320507247924,20.254945234375,66.54479507247925,20.813265234375002Q66.54251507247925,20.818855234375,66.54025507247925,20.824455234375C66.27484507247925,21.484715234375003,65.76776507247925,22.122915234375,65.05612507247925,22.122915234375L64.68376507247925,22.122915234375C63.890895072479246,22.122915234375,63.16518507247925,21.511015234375,63.34631507247925,20.739125234375003M64.84216507247925,28.023015234375Q63.940345072479246,28.023015234375,63.36187507247925,27.438615234375Q62.78374507247925,26.854215234374998,62.78374507247925,25.955615234375Q62.78374507247925,25.057015234375,63.37167507247925,24.487215234375Q63.95960507247925,23.917415234375,64.84216507247925,23.917415234375Q65.72473507247925,23.917415234375,66.31232507247925,24.487215234375Q66.90025507247925,25.057015234375,66.90025507247925,25.955615234375Q66.90025507247925,26.854215234374998,66.31232507247925,27.438615234375Q65.72473507247925,28.023015234375,64.84216507247925,28.023015234375Z",
1150
+ fill: "#35ABFF",
1151
+ fillOpacity: "1"
1152
+ }
1153
+ ), /* @__PURE__ */ React.createElement(
1154
+ "path",
1155
+ {
1156
+ d: "M63.34631507247925,20.739125234375003Q63.36227507247925,20.671095234375002,63.381135072479246,20.605045234374998Q63.56967507247925,19.944135234375,63.94067507247925,19.422045234375Q64.31201507247926,18.899615234375,64.75363507247926,18.471305234375002Q65.19559507247925,18.042665234375,65.60376507247925,17.636025234375Q66.01227507247924,17.229055234375,66.27380507247925,16.806845234375Q66.53566507247925,16.384635234375,66.53566507247925,15.864575234375Q66.53566507247925,15.308965234375,66.31469507247925,14.931445234375Q66.09404507247925,14.553595234374999,65.70513507247925,14.362635234375Q65.31622507247924,14.171675234375,64.75972507247924,14.171675234375Q64.02246507247925,14.171675234375,63.36238507247925,14.538275234375C62.70609507247925,14.902765234375,61.84966507247925,14.998705234375,61.29759707247925,14.489995234375C60.77197807247925,14.005645234375,60.712896072479246,13.178145234375,61.26586507247925,12.725275234375Q61.47536507247925,12.553695234375,61.69776507247925,12.400215234375Q62.43909507247925,11.888624234375,63.31119507247925,11.603539234375Q64.18362507247924,11.318115234375,65.16856507247925,11.318115234375Q66.52857507247924,11.318115234375,67.59326507247926,11.779261234375Q68.65795507247925,12.240070234375,69.27797507247925,13.181665234375Q69.89800507247925,14.123255234375,69.89800507247925,15.551385234375001Q69.89800507247925,16.357885234375,69.62668507247925,16.962255234375Q69.35535507247926,17.566285234375002,68.92657507247925,18.034535234375Q68.49779507247925,18.502795234375,68.03657507247925,18.928725234375Q67.57569507247925,19.354665234375,67.17428507247925,19.804975234375Q66.77320507247924,20.254945234375,66.54479507247925,20.813265234375002Q66.54251507247925,20.818855234375,66.54025507247925,20.824455234375C66.27484507247925,21.484715234375003,65.76776507247925,22.122915234375,65.05612507247925,22.122915234375L64.68376507247925,22.122915234375C63.890895072479246,22.122915234375,63.16518507247925,21.511015234375,63.34631507247925,20.739125234375003M64.84216507247925,28.023015234375Q63.940345072479246,28.023015234375,63.36187507247925,27.438615234375Q62.78374507247925,26.854215234374998,62.78374507247925,25.955615234375Q62.78374507247925,25.057015234375,63.37167507247925,24.487215234375Q63.95960507247925,23.917415234375,64.84216507247925,23.917415234375Q65.72473507247925,23.917415234375,66.31232507247925,24.487215234375Q66.90025507247925,25.057015234375,66.90025507247925,25.955615234375Q66.90025507247925,26.854215234374998,66.31232507247925,27.438615234375Q65.72473507247925,28.023015234375,64.84216507247925,28.023015234375Z",
1157
+ fill: "url(#master_svgl_4933_027046)",
1158
+ fillOpacity: "1"
1159
+ }
1160
+ )), /* @__PURE__ */ React.createElement(
1161
+ "g",
1162
+ {
1163
+ transform: "matrix(0.9996027946472168,0.02818187326192856,-0.02818187326192856,0.9996027946472168,0.8270519259141338,-0.39364411450421954)",
1164
+ filter: "url(#master_svgm_4933_027027)"
1165
+ },
1166
+ /* @__PURE__ */ React.createElement(
1167
+ "ellipse",
1168
+ {
1169
+ cx: "22.53033757209778",
1170
+ cy: "37.295865058898926",
1171
+ rx: "8.151577949523926",
1172
+ ry: "8.151577949523926",
1173
+ fill: "url(#master_svgn_4933_027029)",
1174
+ fillOpacity: "0.30000001192092896"
1175
+ }
1176
+ )
1177
+ ), /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9996027946472168,0.02818187326192856,-0.02818187326192856,0.9996027946472168,1.310783137257431,-0.7097090491485574)" }, /* @__PURE__ */ React.createElement(
1178
+ "path",
1179
+ {
1180
+ d: "M24.840779845367432,46.6438679375Q24.723593845367432,46.4094959375,24.723593845367432,46.1474609375Q24.723593845367432,46.0929301375,24.728943845367432,46.0386619375Q24.734283845367433,45.9843939375,24.74492384536743,45.9309109375Q24.755563845367433,45.8774279375,24.77139384536743,45.8252449375Q24.787223845367432,45.7730619375,24.80808384536743,45.7226819375Q24.828953845367433,45.6723019375,24.85466084536743,45.6242109375Q24.880366845367433,45.5761189375,24.910662845367433,45.5307779375Q24.940957845367432,45.4854369375,24.97555184536743,45.4432839375Q25.010145845367433,45.4011319375,25.048704845367432,45.3625719375Q25.087264845367432,45.3240129375,25.12941784536743,45.2894189375Q25.171569845367433,45.2548249375,25.216910845367433,45.2245299375Q25.26225184536743,45.1942339375,25.31034384536743,45.1685289375Q25.35843484536743,45.1428209375,25.40881484536743,45.1219509375Q25.45919484536743,45.1010909375,25.51137784536743,45.0852609375Q25.56356084536743,45.0694309375,25.61704384536743,45.0587909375Q25.67052684536743,45.0481509375,25.72479484536743,45.0428009375Q25.779063045367433,45.0374609375,25.83359384536743,45.0374609375Q25.98819884536743,45.0374609375,26.13691984536743,45.0797109375Q26.285640845367432,45.1219609375,26.417155845367432,45.2032389375Q26.548670845367432,45.2845189375,26.652968845367432,45.3986449375Q26.757266845367432,45.5127709375,26.82640784536743,45.6510539375L26.827819845367433,45.6503479375L31.644663845367432,55.2840309375L31.643253845367433,55.284740937500004Q31.76043384536743,55.5191109375,31.76043384536743,55.7811409375Q31.76043384536743,55.8356709375,31.755093845367433,55.8899409375Q31.749743845367433,55.9442109375,31.73910384536743,55.997690937499996Q31.728473845367432,56.0511809375,31.71264384536743,56.1033609375Q31.69681384536743,56.1555609375,31.67594384536743,56.2059609375Q31.655073845367433,56.2562609375,31.629363845367433,56.3043609375Q31.603663845367432,56.3524609375,31.57336384536743,56.3978609375Q31.54307384536743,56.4431609375,31.508473845367433,56.4853609375Q31.473883845367432,56.5274609375,31.43532384536743,56.5660609375Q31.39676384536743,56.6045609375,31.35461384536743,56.6391609375Q31.312463845367432,56.6737609375,31.267113845367433,56.7040609375Q31.22177384536743,56.7343609375,31.17368384536743,56.7600609375Q31.125593845367433,56.7857609375,31.075213845367433,56.8066609375Q31.024833845367432,56.827560937499996,30.972653845367432,56.8433609375Q30.920473845367432,56.8591609375,30.866983845367432,56.8698609375Q30.813503845367432,56.880460937500004,30.759233845367433,56.8857609375Q30.70496384536743,56.891160937500004,30.65043384536743,56.891160937500004Q30.495833845367432,56.891160937500004,30.34711384536743,56.8488609375Q30.19839384536743,56.8066609375,30.066873845367432,56.7253609375Q29.935363845367434,56.6440609375,29.83106384536743,56.5299609375Q29.726763845367433,56.4158609375,29.657623845367432,56.2775609375L29.656213845367432,56.2782609375L24.83936784536743,46.6445739375L24.840779845367432,46.6438679375Z",
1181
+ fillRule: "evenodd",
1182
+ fill: "#041C55",
1183
+ fillOpacity: "1"
1184
+ }
1185
+ )), /* @__PURE__ */ React.createElement("g", { transform: "matrix(0.9996027946472168,0.02818187326192856,-0.02818187326192856,0.9996027946472168,0.7835535797832165,-0.3536723306941916)" }, /* @__PURE__ */ React.createElement(
1186
+ "path",
1187
+ {
1188
+ d: "M32.20634034624099,37.25477375Q32.20634034624099,37.49127375,32.194740346241,37.72749375Q32.183140346241,37.96369375,32.159940346241,38.19909375Q32.136740346241,38.43439375,32.102040346241,38.668293750000004Q32.067340346241,38.90229375,32.021240346241,39.13419375Q31.975040346241,39.36619375,31.917640346240997,39.59559375Q31.860140346240996,39.824993750000004,31.791440346240996,40.05129375Q31.722840346240996,40.27759375,31.643140346240997,40.50029375Q31.563440346241,40.72289375,31.472940346240996,40.94139375Q31.382440346240998,41.15989375,31.281340346241,41.37369375Q31.180240346240996,41.58749375,31.068740346240997,41.79609375Q30.957340346240997,42.00459375,30.835740346240996,42.20749375Q30.714140346241,42.41029375,30.582740346240996,42.60699375Q30.451340346240997,42.80359375,30.310440346241,42.99359375Q30.169540346240996,43.18349375,30.019540346240998,43.36629375Q29.869540346240996,43.54909375,29.710740346240996,43.724393750000004Q29.551940346240997,43.89959375,29.384640346240996,44.06679375Q29.217440346241,44.23409375,29.042240346240998,44.39289375Q28.866940346240998,44.55169375,28.684140346240998,44.701693750000004Q28.501340346240998,44.851693749999995,28.311440346241,44.99259375Q28.121440346240995,45.13349375,27.924840346240998,45.26489375Q27.728140346241,45.39629375,27.525340346240995,45.51789375Q27.322440346240995,45.63949375,27.113940346240998,45.75089375Q26.905340346240997,45.862393749999995,26.691540346241,45.96349375Q26.477740346241,46.06459375,26.259240346240997,46.15509375Q26.040740346240998,46.24559375,25.818140346240998,46.32529375Q25.595440346241,46.40499375,25.369140346240997,46.47359375Q25.142840346240998,46.54229375,24.913440346240996,46.59979375Q24.684040346240998,46.657193750000005,24.452040346241,46.703393750000004Q24.220140346240996,46.74949375,23.986140346240997,46.78419375Q23.752240346240995,46.81889375,23.516940346240997,46.842093750000004Q23.281540346240995,46.86529375,23.045340346240998,46.87689375Q22.809120346240995,46.888493749999995,22.572620346240996,46.888493749999995Q22.336130346241,46.888493749999995,22.099920346241,46.87689375Q21.863710346241,46.86529375,21.628360346240996,46.842093750000004Q21.393000346240996,46.81889375,21.159070346240995,46.78419375Q20.925130346240998,46.74949375,20.693190346240996,46.703393750000004Q20.461240346241,46.657193750000005,20.231830346240997,46.59979375Q20.002420346240996,46.54229375,19.776110346240998,46.47359375Q19.549800346240996,46.40499375,19.327130346241,46.32529375Q19.104460346240998,46.24559375,18.885970346240995,46.15509375Q18.667480346240996,46.06459375,18.453690346240997,45.96349375Q18.239910346240997,45.862393749999995,18.031340346240995,45.75089375Q17.822770346240997,45.63949375,17.619920346240995,45.51789375Q17.417070346240997,45.39629375,17.220440346241,45.26489375Q17.023800346240996,45.13349375,16.833840346240997,44.99259375Q16.643890346240998,44.851693749999995,16.461080346240998,44.701693750000004Q16.278270346240998,44.55169375,16.103040346241,44.39289375Q15.927810346240998,44.23409375,15.760580346240998,44.06679375Q15.593350346240998,43.89959375,15.434530346240997,43.724393750000004Q15.275720346240998,43.54909375,15.125690346240997,43.36629375Q14.975660346240996,43.18349375,14.834780346240997,42.99359375Q14.693900346240998,42.80359375,14.562510346240998,42.60699375Q14.431120346240997,42.41029375,14.309540346240997,42.20749375Q14.187960346240997,42.00459375,14.076470346240997,41.79609375Q13.964990346240997,41.58749375,13.863877346240997,41.37369375Q13.762763346240998,41.15989375,13.672260346240996,40.94139375Q13.581758346240997,40.72289375,13.502086346240997,40.50029375Q13.422414346240997,40.27759375,13.353763346240997,40.05129375Q13.285113346240998,39.824993750000004,13.227649346240998,39.59559375Q13.170186346240998,39.36619375,13.124048346240997,39.13419375Q13.077911346240997,38.90229375,13.043210346240997,38.668293750000004Q13.008509546240997,38.43439375,12.985329146240998,38.19909375Q12.962148746240997,37.96369375,12.950544546240998,37.72749375Q12.938940346240997,37.49127375,12.938940346240997,37.25477375Q12.938940346240997,37.01828375,12.950544546240998,36.78207375Q12.962148746240997,36.54586375,12.985329146240998,36.31051375Q13.008509546240997,36.07515375,13.043210346240997,35.84122375Q13.077911346240997,35.60728375,13.124048346240997,35.37534375Q13.170186346240998,35.14339375,13.227649346240998,34.91398375Q13.285113346240998,34.68457375,13.353763346240997,34.45826375Q13.422414346240997,34.23195375,13.502086346240997,34.00928375Q13.581758346240997,33.78661375,13.672260346240996,33.56812375Q13.762763346240998,33.34963375,13.863877346240997,33.13584375Q13.964990346240997,32.92206375,14.076470346240997,32.71349375Q14.187960346240997,32.50492375,14.309540346240997,32.30207375Q14.431120346240997,32.09922375,14.562510346240998,31.90259375Q14.693900346240998,31.70595375,14.834780346240997,31.51599375Q14.975660346240996,31.32604375,15.125690346240997,31.14323375Q15.275720346240998,30.96042375,15.434530346240997,30.78519375Q15.593350346240998,30.60996375,15.760580346240998,30.44273375Q15.927810346240998,30.27550375,16.103040346241,30.11668375Q16.278270346240998,29.95787375,16.461080346240998,29.80784375Q16.643890346240998,29.65781375,16.833850346240997,29.51693375Q17.023800346240996,29.37605375,17.220440346241,29.24466375Q17.417070346240997,29.11327375,17.619920346240995,28.99169375Q17.822770346240997,28.87011375,18.031340346240995,28.758623749999998Q18.239900346240997,28.64714375,18.453690346240997,28.54603075Q18.667480346240996,28.44491675,18.885970346240995,28.35441375Q19.104460346240998,28.26391175,19.327130346241,28.18423975Q19.549800346240996,28.10456775,19.776110346240998,28.03591675Q20.002420346240996,27.96726675,20.231830346240997,27.90980275Q20.461240346241,27.85233975,20.693180346240997,27.80620175Q20.925130346240998,27.76006475,21.159070346240995,27.72536375Q21.393000346240996,27.69066295,21.628360346240996,27.66748255Q21.863710346241,27.64430215,22.099920346241,27.63269795Q22.336130346241,27.62109375,22.572620346240996,27.62109375Q22.809120346240995,27.62109375,23.045340346240998,27.63269795Q23.281540346240995,27.64430215,23.516940346240997,27.66748255Q23.752240346240995,27.69066295,23.986140346240997,27.72536375Q24.220140346240996,27.76006475,24.452040346241,27.80620175Q24.684040346240998,27.85233975,24.913440346240996,27.90980275Q25.142840346240998,27.96726675,25.369140346240997,28.03591675Q25.595440346241,28.10456775,25.818140346240998,28.18423975Q26.040740346240998,28.26391175,26.259240346240997,28.35441375Q26.477740346241,28.44491675,26.691540346241,28.54603075Q26.905340346240997,28.64714375,27.113940346240998,28.758623749999998Q27.322440346240995,28.87011375,27.525340346240995,28.99169375Q27.728140346241,29.11327375,27.924840346240998,29.24466375Q28.121440346240995,29.37605375,28.311440346241,29.51693375Q28.501340346240998,29.65781375,28.684140346240998,29.80784375Q28.866940346240998,29.95787375,29.042240346240998,30.11668375Q29.217440346241,30.27550375,29.384640346240996,30.44273375Q29.551940346240997,30.60996375,29.710740346240996,30.78519375Q29.869540346240996,30.96042375,30.019540346240998,31.14323375Q30.169540346240996,31.32604375,30.310440346241,31.51600375Q30.451340346240997,31.70595375,30.582740346240996,31.90259375Q30.714140346241,32.09922375,30.835740346240996,32.30207375Q30.957340346240997,32.50492375,31.068740346240997,32.71349375Q31.180240346240996,32.92205375,31.281340346241,33.13584375Q31.382440346240998,33.34963375,31.472940346240996,33.56812375Q31.563440346241,33.78661375,31.643140346240997,34.00928375Q31.722840346240996,34.23195375,31.791440346240996,34.45826375Q31.860140346240996,34.68457375,31.917640346240997,34.91398375Q31.975040346241,35.14339375,32.021240346241,35.37533375Q32.067340346241,35.60728375,32.102040346241,35.84122375Q32.136740346241,36.07515375,32.159940346241,36.31051375Q32.183140346241,36.54586375,32.194740346241,36.78207375Q32.20634034624099,37.01828375,32.20634034624099,37.25477375ZM29.983140346240997,37.25477375Q29.983140346240997,37.072863749999996,29.974240346240997,36.891163750000004Q29.965340346240996,36.70946375,29.947440346241,36.52842375Q29.929640346240998,36.34737375,29.902940346240996,36.16742375Q29.876240346240998,35.98747375,29.840740346241,35.809053750000004Q29.805240346240996,35.63063375,29.761040346240996,35.45416375Q29.716840346240996,35.27770375,29.664040346241,35.10361375Q29.611240346240997,34.92953375,29.549940346240998,34.75824375Q29.488640346241,34.58696375,29.419040346240998,34.41889375Q29.349440346240996,34.25082375,29.271640346240996,34.08637375Q29.193840346240997,33.92191375,29.108140346240997,33.76148375Q29.022340346241,33.60104375,28.928840346240996,33.44500375Q28.835340346240997,33.28896375,28.734240346240995,33.13771375Q28.633140346241,32.98645375,28.524840346241,32.84033375Q28.416440346240996,32.69421375,28.301040346240995,32.55359375Q28.185640346240998,32.41296375,28.063440346240995,32.27817375Q27.941340346241,32.14338375,27.812640346240997,32.01474375Q27.684040346240998,31.88611375,27.549240346241,31.76394375Q27.414440346240998,31.64177375,27.273840346240995,31.52636375Q27.133140346241,31.41095375,26.987040346240995,31.30258375Q26.840940346241,31.19421375,26.689640346241,31.09315375Q26.538440346240996,30.99208375,26.382440346240998,30.89855375Q26.226340346240995,30.80503375,26.065940346241,30.71927375Q25.905440346240997,30.633523750000002,25.741040346240997,30.55574375Q25.576540346240996,30.47796375,25.408540346240997,30.40834375Q25.240440346240998,30.33872375,25.069140346241,30.27744375Q24.897840346240997,30.21615375,24.723740346240998,30.16334375Q24.549740346240995,30.110533750000002,24.373240346240998,30.06633375Q24.196740346240997,30.022133750000002,24.018340346240997,29.98664375Q23.839940346240997,29.95115375,23.659940346240997,29.92446375Q23.480040346240997,29.89776375,23.298940346240997,29.87993375Q23.117940346241,29.86210375,22.936240346240997,29.85317375Q22.754540346240997,29.84425375,22.572620346240996,29.84425375Q22.390710346240997,29.84425375,22.209010346240998,29.85317375Q22.027310346240995,29.86210375,21.846270346241,29.87993375Q21.665220346240996,29.89776375,21.485270346240995,29.92446375Q21.305320346240997,29.95115375,21.126900346240998,29.98664375Q20.948480346241,30.022133750000002,20.772010346240997,30.06633375Q20.595550346240998,30.110533750000002,20.421460346241,30.16334375Q20.247380346241,30.21615375,20.076090346240996,30.27744375Q19.904810346240996,30.33872375,19.736740346240996,30.40834375Q19.568670346241,30.47796375,19.404220346240997,30.55574375Q19.239760346241,30.633523750000002,19.079330346240997,30.71927375Q18.918890346240996,30.80503375,18.762850346240995,30.89855375Q18.606810346240998,30.99208375,18.455560346240997,31.09315375Q18.304300346240996,31.19421375,18.158180346240997,31.30258375Q18.012060346240997,31.41095375,17.871440346241,31.52636375Q17.730810346240997,31.64177375,17.596020346240998,31.76394375Q17.461230346240995,31.88611375,17.332590346241,32.01474375Q17.203960346240997,32.14338375,17.081790346240997,32.27817375Q16.959620346240996,32.41296375,16.844210346241,32.55359375Q16.728800346240998,32.69421375,16.620430346240997,32.84033375Q16.512060346240997,32.98645375,16.411000346240996,33.13771375Q16.309930346240996,33.28897375,16.216400346241,33.44500375Q16.122880346240997,33.60104375,16.037120346240997,33.76148375Q15.951370346240997,33.92191375,15.873590346240997,34.08637375Q15.795810346240998,34.25082375,15.726190346240998,34.41889375Q15.656570346240997,34.58696375,15.595290346240997,34.75824375Q15.534000346240997,34.92953375,15.481190346240997,35.10361375Q15.428380346240997,35.27770375,15.384180346240997,35.45416375Q15.339980346240997,35.63063375,15.304490346240996,35.809053750000004Q15.269000346240997,35.98747375,15.242310346240998,36.16742375Q15.215610346240997,36.34737375,15.197780346240997,36.52842375Q15.179950346240997,36.70946375,15.171020346240997,36.891163750000004Q15.162100346240997,37.072863749999996,15.162100346240997,37.25477375Q15.162100346240997,37.43669375,15.171020346240997,37.618393749999996Q15.179950346240997,37.80009375,15.197780346240997,37.98109375Q15.215610346240997,38.16219375,15.242310346240998,38.342093750000004Q15.269000346240997,38.522093749999996,15.304490346240996,38.70049375Q15.339980346240997,38.87889375,15.384180346240997,39.05539375Q15.428380346240997,39.23189375,15.481190346240997,39.405893750000004Q15.534000346240997,39.57999375,15.595290346240997,39.75129375Q15.656570346240997,39.922593750000004,15.726190346240998,40.09069375Q15.795810346240998,40.25869375,15.873590346240997,40.423193749999996Q15.951370346240997,40.587593749999996,16.037120346240997,40.74809375Q16.122880346240997,40.90849375,16.216400346241,41.06459375Q16.309930346240996,41.22059375,16.411000346240996,41.37189375Q16.512060346240997,41.52309375,16.620430346240997,41.66919375Q16.728800346240998,41.81529375,16.844210346241,41.95599375Q16.959620346240996,42.09659375,17.081790346240997,42.23139375Q17.203960346240997,42.36619375,17.332590346241,42.49479375Q17.461230346240995,42.62349375,17.596020346240998,42.74559375Q17.730810346240997,42.867793750000004,17.871440346241,42.98319375Q18.012060346240997,43.09859375,18.158180346240997,43.20699375Q18.304300346240996,43.31529375,18.455560346240997,43.41639375Q18.606820346240998,43.51749375,18.762850346240995,43.61099375Q18.918890346240996,43.70449375,19.079330346240997,43.790293750000004Q19.239760346241,43.87599375,19.404220346240997,43.95379375Q19.568670346241,44.03159375,19.736740346240996,44.10119375Q19.904810346240996,44.17079375,20.076090346240996,44.232093750000004Q20.247380346241,44.29339375,20.421460346241,44.34619375Q20.595550346240998,44.39899375,20.772010346240997,44.44319375Q20.948480346241,44.487393749999995,21.126900346240998,44.52289375Q21.305320346240997,44.55839375,21.485270346240995,44.58509375Q21.665220346240996,44.611793750000004,21.846270346241,44.62959375Q22.027310346240995,44.647493749999995,22.209010346240998,44.65639375Q22.390710346240997,44.665293750000004,22.572620346240996,44.665293750000004Q22.754540346240997,44.665293750000004,22.936240346240997,44.65639375Q23.117940346241,44.647493749999995,23.298940346240997,44.62959375Q23.480040346240997,44.611793750000004,23.659940346240997,44.58509375Q23.839940346240997,44.55839375,24.018340346240997,44.52289375Q24.196740346240997,44.487393749999995,24.373240346240998,44.44319375Q24.549740346240995,44.39899375,24.723740346240998,44.34619375Q24.897840346240997,44.29339375,25.069140346241,44.232093750000004Q25.240440346240998,44.17079375,25.408540346240997,44.10119375Q25.576540346240996,44.03159375,25.741040346240997,43.95379375Q25.905440346240997,43.87599375,26.065940346241,43.790293750000004Q26.226340346240995,43.70449375,26.382440346240998,43.61099375Q26.538440346240996,43.51749375,26.689740346240995,43.41639375Q26.840940346241,43.31529375,26.987040346240995,43.20699375Q27.133140346241,43.09859375,27.273840346240995,42.98319375Q27.414440346240998,42.867793750000004,27.549240346241,42.74559375Q27.684040346240998,42.62349375,27.812640346240997,42.49479375Q27.941340346241,42.36619375,28.063440346240995,42.23139375Q28.185640346240998,42.09659375,28.301040346240995,41.95599375Q28.416440346240996,41.81529375,28.524840346241,41.66919375Q28.633140346241,41.52309375,28.734240346240995,41.37179375Q28.835340346240997,41.22059375,28.928840346240996,41.06459375Q29.022340346241,40.90849375,29.108140346240997,40.74809375Q29.193840346240997,40.587593749999996,29.271640346240996,40.423193749999996Q29.349440346240996,40.25869375,29.419040346240998,40.09069375Q29.488640346241,39.922593750000004,29.549940346240998,39.75129375Q29.611240346240997,39.57999375,29.664040346241,39.405893750000004Q29.716840346240996,39.23189375,29.761040346240996,39.05539375Q29.805240346240996,38.87889375,29.840740346241,38.70049375Q29.876240346240998,38.522093749999996,29.902940346240996,38.342093750000004Q29.929640346240998,38.16219375,29.947440346241,37.98109375Q29.965340346240996,37.80009375,29.974240346240997,37.618393749999996Q29.983140346240997,37.43669375,29.983140346240997,37.25477375Z",
1189
+ fill: "#041C55",
1190
+ fillOpacity: "1"
1191
+ }
1192
+ )), /* @__PURE__ */ React.createElement(
1193
+ "g",
1194
+ {
1195
+ transform: "matrix(-0.4532756209373474,-0.8913703560829163,0.8913703560829163,-0.4532756209373474,-14.397616716861563,106.03441502850742)",
1196
+ filter: "url(#master_svgo_4933_027032)"
1197
+ },
1198
+ /* @__PURE__ */ React.createElement(
1199
+ "ellipse",
1200
+ {
1201
+ cx: "29.765748500823975",
1202
+ cy: "61.13788056373596",
1203
+ rx: "4.446314811706543",
1204
+ ry: "3.705263376235962",
1205
+ fill: "url(#master_svgp_4933_027034)",
1206
+ fillOpacity: "0.6000000238418579"
1207
+ }
1208
+ )
1209
+ )))
1210
+ );
1211
+ };
1212
+ export {
1213
+ HistoryEmptyIcon
1214
+ };