@jetbrains/kotlin-web-site-ui 0.0.0-foundation-changes.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/LICENSE.txt +202 -0
  3. package/README.md +16 -0
  4. package/out/blocks/formik-wrapper/index.css +8 -0
  5. package/out/blocks/formik-wrapper/index.js +4 -0
  6. package/out/blocks/formik-wrapper/input.js +39 -0
  7. package/out/blocks/formik-wrapper/privacy-checkbox.js +48 -0
  8. package/out/blocks/formik-wrapper/privacy-notice.js +40 -0
  9. package/out/blocks/formik-wrapper/privacy-notice.module.pcss.js +6 -0
  10. package/out/blocks/formik-wrapper/submit-button.js +21 -0
  11. package/out/components/breakpoints/constants.js +20 -0
  12. package/out/components/breakpoints/hooks.js +32 -0
  13. package/out/components/breakpoints/index.js +2 -0
  14. package/out/components/breakpoints/media.pcss +14 -0
  15. package/out/components/cta-block/index.css +254 -0
  16. package/out/components/cta-block/index.js +7 -0
  17. package/out/components/cta-block/v1/cta-block.js +29 -0
  18. package/out/components/cta-block/v1/cta-block.module.pcss.js +8 -0
  19. package/out/components/footer/footer.js +55 -0
  20. package/out/components/footer/footer.module.pcss.js +13 -0
  21. package/out/components/footer/index.css +290 -0
  22. package/out/components/footer/index.js +3 -0
  23. package/out/components/footer/logo/jetbrains-logo.svg.js +38 -0
  24. package/out/components/footer/logo/logo.js +12 -0
  25. package/out/components/footer/logo/logo.module.pcss.js +4 -0
  26. package/out/components/footer/nav/nav-data.js +30 -0
  27. package/out/components/footer/nav/nav-item.js +27 -0
  28. package/out/components/footer/nav/nav-item.module.pcss.js +5 -0
  29. package/out/components/footer/nav/nav-list.js +15 -0
  30. package/out/components/footer/nav/nav-list.module.pcss.js +4 -0
  31. package/out/components/footer/social-list/social-data.js +38 -0
  32. package/out/components/footer/social-list/social-item/social-item.js +21 -0
  33. package/out/components/footer/social-list/social-item/social-item.module.pcss.js +5 -0
  34. package/out/components/footer/social-list/social-list.js +13 -0
  35. package/out/components/footer/social-list/social-list.module.pcss.js +4 -0
  36. package/out/components/footer/social-list/svg/github-logo.svg.js +35 -0
  37. package/out/components/footer/social-list/svg/reddit-logo.svg.js +33 -0
  38. package/out/components/footer/social-list/svg/slack-logo.svg.js +33 -0
  39. package/out/components/footer/social-list/svg/stackoverflow-logo.svg.js +36 -0
  40. package/out/components/footer/social-list/svg/twitter-logo.svg.js +33 -0
  41. package/out/components/footer/social-list/svg/youtube-logo.svg.js +35 -0
  42. package/out/components/grid/index.css +1081 -0
  43. package/out/components/grid/index.js +1 -0
  44. package/out/components/header/consts.js +3 -0
  45. package/out/components/header/full-search/chapters/chapters.js +59 -0
  46. package/out/components/header/full-search/chapters/chapters.module.pcss.js +12 -0
  47. package/out/components/header/full-search/empty/empty.js +22 -0
  48. package/out/components/header/full-search/empty/empty.module.pcss.js +6 -0
  49. package/out/components/header/full-search/empty/full-search-empty.svg.js +1539 -0
  50. package/out/components/header/full-search/full-search.js +115 -0
  51. package/out/components/header/full-search/full-search.module.pcss.js +10 -0
  52. package/out/components/header/full-search/hit-list/get-extended-hits.js +55 -0
  53. package/out/components/header/full-search/hit-list/hit-list.js +49 -0
  54. package/out/components/header/full-search/hit-list/hit-list.module.pcss.js +6 -0
  55. package/out/components/header/full-search/loading/loading.js +13 -0
  56. package/out/components/header/full-search/loading/loading.module.pcss.js +4 -0
  57. package/out/components/header/full-search/results-list/results-list.js +25 -0
  58. package/out/components/header/header.js +121 -0
  59. package/out/components/header/header.module.pcss.js +5 -0
  60. package/out/components/header/horizontal-menu/horizontal-menu.js +101 -0
  61. package/out/components/header/horizontal-menu/horizontal-menu.module.pcss.js +16 -0
  62. package/out/components/header/index.css +949 -0
  63. package/out/components/header/index.js +4 -0
  64. package/out/components/header/is-macos.js +5 -0
  65. package/out/components/header/key-codes.js +3 -0
  66. package/out/components/header/logo-large/kotlin-logo-large.svg.js +55 -0
  67. package/out/components/header/logo-large/logo-large.js +34 -0
  68. package/out/components/header/logo-large/logo-large.module.pcss.js +6 -0
  69. package/out/components/header/logo-small/kotlin-logo-small.svg.js +49 -0
  70. package/out/components/header/logo-small/logo-small.js +27 -0
  71. package/out/components/header/logo-small/logo-small.module.pcss.js +7 -0
  72. package/out/components/header/menu-popup/menu-button/menu-button.js +23 -0
  73. package/out/components/header/menu-popup/menu-button/menu-button.module.pcss.js +4 -0
  74. package/out/components/header/menu-popup/menu-list/menu-list.js +33 -0
  75. package/out/components/header/menu-popup/menu-list/menu-list.module.pcss.js +4 -0
  76. package/out/components/header/menu-popup/menu-list-item/menu-list-item.js +28 -0
  77. package/out/components/header/menu-popup/menu-list-item/menu-list-item.module.pcss.js +7 -0
  78. package/out/components/header/menu-popup/menu-popup.js +55 -0
  79. package/out/components/header/menu-popup/menu-popup.module.pcss.js +5 -0
  80. package/out/components/header/nav-scheme.js +133 -0
  81. package/out/components/header/quick-search/empty/empty.js +17 -0
  82. package/out/components/header/quick-search/empty/empty.module.pcss.js +5 -0
  83. package/out/components/header/quick-search/list/list.js +37 -0
  84. package/out/components/header/quick-search/list/list.module.pcss.js +7 -0
  85. package/out/components/header/quick-search/loading/loading.js +14 -0
  86. package/out/components/header/quick-search/loading/loading.module.pcss.js +4 -0
  87. package/out/components/header/quick-search/quick-search.js +48 -0
  88. package/out/components/header/quick-search/quick-search.module.pcss.js +5 -0
  89. package/out/components/header/quick-search/result/result.js +30 -0
  90. package/out/components/header/quick-search/result/result.module.pcss.js +6 -0
  91. package/out/components/header/search-box/search-box.js +76 -0
  92. package/out/components/header/search-box/search-box.module.pcss.js +7 -0
  93. package/out/components/header/search-button/search-button.js +32 -0
  94. package/out/components/header/search-button/search-button.module.pcss.js +5 -0
  95. package/out/components/header/search-button/search.svg.js +34 -0
  96. package/out/components/header/search-wrapper/init-search.js +60 -0
  97. package/out/components/header/search-wrapper/search-const.js +13 -0
  98. package/out/components/header/search-wrapper/search-context.js +18 -0
  99. package/out/components/header/search-wrapper/search-with-algolia.js +58 -0
  100. package/out/components/header/search-wrapper/search-wrapper.js +40 -0
  101. package/out/components/header/search-wrapper/use-search.js +85 -0
  102. package/out/components/layout/index.css +52 -0
  103. package/out/components/layout/index.js +1 -0
  104. package/out/components/popup/index.css +35 -0
  105. package/out/components/popup/index.js +3 -0
  106. package/out/components/popup/popup.js +55 -0
  107. package/out/components/popup/popup.module.pcss.js +6 -0
  108. package/out/components/quotes-slider/index.css +83 -0
  109. package/out/components/quotes-slider/index.js +3 -0
  110. package/out/components/quotes-slider/quote.svg.js +33 -0
  111. package/out/components/quotes-slider/quotes-slider.js +85 -0
  112. package/out/components/quotes-slider/quotes-slider.module.pcss.js +13 -0
  113. package/out/components/top-menu/horizontal-menu/horizontal-menu.js +44 -0
  114. package/out/components/top-menu/horizontal-menu/horizontal-menu.module.pcss.js +6 -0
  115. package/out/components/top-menu/index.css +232 -0
  116. package/out/components/top-menu/index.js +3 -0
  117. package/out/components/top-menu/top-menu.js +54 -0
  118. package/out/components/top-menu/top-menu.module.pcss.js +6 -0
  119. package/out/components/top-menu/vertical-menu/arrow-dropdown-icon.svg.js +34 -0
  120. package/out/components/top-menu/vertical-menu/vertical-menu.js +129 -0
  121. package/out/components/top-menu/vertical-menu/vertical-menu.module.pcss.js +14 -0
  122. package/out/components/typography/create-text-cn.js +26 -0
  123. package/out/components/typography/hooks.js +6 -0
  124. package/out/components/typography/index.css +192 -0
  125. package/out/components/typography/index.js +3 -0
  126. package/out/components/youtube-player/index.css +135 -0
  127. package/out/components/youtube-player/index.js +3 -0
  128. package/out/components/youtube-player/loading_24.svg.js +31 -0
  129. package/out/components/youtube-player/play_24.svg.js +31 -0
  130. package/out/components/youtube-player/utils.js +28 -0
  131. package/out/components/youtube-player/youtube-player.js +145 -0
  132. package/out/components/youtube-player/youtube-player.module.pcss.js +16 -0
  133. package/out/packages/data-services/index.js +9 -0
  134. package/out/packages/data-services/marketo-submiter.js +62 -0
  135. package/out/packages/data-services/privacy-consent-ids.json.js +5 -0
  136. package/out/packages/data-services/privacy-consent-service.js +44 -0
  137. package/out/packages/data-services/urls.js +4 -0
  138. package/out/svg/kotlin_64.svg +10 -0
  139. package/package.json +141 -0
@@ -0,0 +1,1539 @@
1
+ import * as React from 'react';
2
+
3
+ var _ellipse, _ellipse2, _ellipse3, _ellipse4, _ellipse5, _ellipse6, _ellipse7, _ellipse8, _ellipse9, _ellipse10, _ellipse11, _ellipse12, _ellipse13, _ellipse14, _ellipse15, _ellipse16, _ellipse17, _ellipse18, _ellipse19, _ellipse20, _ellipse21, _ellipse22, _ellipse23, _ellipse24, _ellipse25, _ellipse26, _ellipse27, _ellipse28, _ellipse29, _ellipse30, _ellipse31, _ellipse32, _ellipse33, _ellipse34, _ellipse35, _ellipse36, _ellipse37, _ellipse38, _ellipse39, _ellipse40, _ellipse41, _ellipse42, _ellipse43, _ellipse44, _ellipse45, _ellipse46, _ellipse47, _ellipse48, _ellipse49, _ellipse50, _ellipse51, _ellipse52, _ellipse53, _ellipse54, _ellipse55, _ellipse56, _ellipse57, _ellipse58, _ellipse59, _ellipse60, _ellipse61, _ellipse62, _ellipse63, _ellipse64, _ellipse65, _ellipse66, _ellipse67, _ellipse68, _ellipse69, _ellipse70, _ellipse71, _ellipse72, _ellipse73, _ellipse74, _ellipse75, _ellipse76, _ellipse77, _ellipse78, _ellipse79, _ellipse80, _circle, _circle2, _circle3, _circle4, _circle5, _circle6, _circle7, _circle8, _circle9, _circle10, _circle11, _circle12, _circle13, _circle14, _circle15, _circle16, _circle17, _circle18, _circle19, _circle20, _circle21, _circle22, _circle23, _circle24, _circle25, _circle26, _circle27, _circle28, _circle29, _circle30, _circle31, _circle32, _circle33, _circle34, _circle35, _ellipse81, _ellipse82, _ellipse83, _ellipse84, _ellipse85, _ellipse86, _ellipse87, _ellipse88, _ellipse89, _ellipse90, _ellipse91, _ellipse92, _ellipse93, _ellipse94, _circle36, _circle37, _circle38, _circle39, _circle40, _circle41, _circle42, _circle43, _circle44, _circle45, _circle46, _circle47, _circle48, _circle49, _ellipse95, _ellipse96, _ellipse97, _ellipse98, _ellipse99, _ellipse100, _ellipse101, _ellipse102, _ellipse103, _ellipse104, _ellipse105, _ellipse106, _ellipse107, _ellipse108, _ellipse109, _ellipse110, _ellipse111, _ellipse112, _ellipse113, _ellipse114, _ellipse115, _ellipse116, _ellipse117, _ellipse118, _ellipse119, _ellipse120, _ellipse121, _ellipse122, _ellipse123, _ellipse124, _ellipse125, _ellipse126, _ellipse127, _ellipse128, _ellipse129, _ellipse130, _ellipse131, _ellipse132, _ellipse133, _ellipse134, _ellipse135, _ellipse136, _ellipse137, _ellipse138, _ellipse139, _ellipse140, _ellipse141, _ellipse142, _ellipse143, _ellipse144, _ellipse145, _ellipse146, _ellipse147, _ellipse148, _ellipse149, _ellipse150, _ellipse151, _ellipse152, _ellipse153, _ellipse154, _path, _path2, _ellipse155, _ellipse156, _path3, _path4, _path5, _path6, _path7, _path8, _ellipse157, _defs;
4
+
5
+ function _extends() {
6
+ _extends = Object.assign || function (target) {
7
+ for (var i = 1; i < arguments.length; i++) {
8
+ var source = arguments[i];
9
+
10
+ for (var key in source) {
11
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
12
+ target[key] = source[key];
13
+ }
14
+ }
15
+ }
16
+
17
+ return target;
18
+ };
19
+
20
+ return _extends.apply(this, arguments);
21
+ }
22
+
23
+ const SvgFullSearchEmpty = props => /*#__PURE__*/React.createElement("svg", _extends({
24
+ width: 296,
25
+ height: 273,
26
+ fill: "none",
27
+ xmlns: "http://www.w3.org/2000/svg"
28
+ }, props), _ellipse || (_ellipse = /*#__PURE__*/React.createElement("ellipse", {
29
+ opacity: 0.01,
30
+ cx: 184,
31
+ cy: 125.5,
32
+ rx: 112,
33
+ ry: 109.5,
34
+ fill: "#fff"
35
+ })), _ellipse2 || (_ellipse2 = /*#__PURE__*/React.createElement("ellipse", {
36
+ opacity: 0.01,
37
+ cx: 184,
38
+ cy: 125.5,
39
+ rx: 112,
40
+ ry: 109.5,
41
+ fill: "#fff"
42
+ })), _ellipse3 || (_ellipse3 = /*#__PURE__*/React.createElement("ellipse", {
43
+ opacity: 0.01,
44
+ cx: 180,
45
+ cy: 125.5,
46
+ rx: 110,
47
+ ry: 109.5,
48
+ fill: "#fff"
49
+ })), _ellipse4 || (_ellipse4 = /*#__PURE__*/React.createElement("ellipse", {
50
+ opacity: 0.01,
51
+ cx: 180,
52
+ cy: 125.5,
53
+ rx: 110,
54
+ ry: 109.5,
55
+ fill: "#fff"
56
+ })), _ellipse5 || (_ellipse5 = /*#__PURE__*/React.createElement("ellipse", {
57
+ opacity: 0.02,
58
+ cx: 180,
59
+ cy: 125.5,
60
+ rx: 110,
61
+ ry: 109.5,
62
+ fill: "#fff"
63
+ })), _ellipse6 || (_ellipse6 = /*#__PURE__*/React.createElement("ellipse", {
64
+ opacity: 0.02,
65
+ cx: 180,
66
+ cy: 125.5,
67
+ rx: 110,
68
+ ry: 109.5,
69
+ fill: "#FEFEFE"
70
+ })), _ellipse7 || (_ellipse7 = /*#__PURE__*/React.createElement("ellipse", {
71
+ opacity: 0.03,
72
+ cx: 180,
73
+ cy: 125.5,
74
+ rx: 110,
75
+ ry: 109.5,
76
+ fill: "#FEFEFE"
77
+ })), _ellipse8 || (_ellipse8 = /*#__PURE__*/React.createElement("ellipse", {
78
+ opacity: 0.03,
79
+ cx: 180,
80
+ cy: 125.5,
81
+ rx: 110,
82
+ ry: 109.5,
83
+ fill: "#FEFEFE"
84
+ })), _ellipse9 || (_ellipse9 = /*#__PURE__*/React.createElement("ellipse", {
85
+ opacity: 0.04,
86
+ cx: 180,
87
+ cy: 125.5,
88
+ rx: 110,
89
+ ry: 109.5,
90
+ fill: "#FEFEFE"
91
+ })), _ellipse10 || (_ellipse10 = /*#__PURE__*/React.createElement("ellipse", {
92
+ opacity: 0.04,
93
+ cx: 180,
94
+ cy: 125.5,
95
+ rx: 110,
96
+ ry: 109.5,
97
+ fill: "#FEFEFE"
98
+ })), _ellipse11 || (_ellipse11 = /*#__PURE__*/React.createElement("ellipse", {
99
+ opacity: 0.05,
100
+ cx: 180,
101
+ cy: 125.5,
102
+ rx: 110,
103
+ ry: 109.5,
104
+ fill: "#FEFEFE"
105
+ })), _ellipse12 || (_ellipse12 = /*#__PURE__*/React.createElement("ellipse", {
106
+ opacity: 0.05,
107
+ cx: 180,
108
+ cy: 125.5,
109
+ rx: 110,
110
+ ry: 109.5,
111
+ fill: "#FEFEFE"
112
+ })), _ellipse13 || (_ellipse13 = /*#__PURE__*/React.createElement("ellipse", {
113
+ opacity: 0.06,
114
+ cx: 180,
115
+ cy: 125.5,
116
+ rx: 110,
117
+ ry: 109.5,
118
+ fill: "#FEFEFE"
119
+ })), _ellipse14 || (_ellipse14 = /*#__PURE__*/React.createElement("ellipse", {
120
+ opacity: 0.06,
121
+ cx: 180,
122
+ cy: 125.5,
123
+ rx: 110,
124
+ ry: 109.5,
125
+ fill: "#FDFDFD"
126
+ })), _ellipse15 || (_ellipse15 = /*#__PURE__*/React.createElement("ellipse", {
127
+ opacity: 0.07,
128
+ cx: 180,
129
+ cy: 124.5,
130
+ rx: 110,
131
+ ry: 108.5,
132
+ fill: "#FDFDFD"
133
+ })), _ellipse16 || (_ellipse16 = /*#__PURE__*/React.createElement("ellipse", {
134
+ opacity: 0.07,
135
+ cx: 180,
136
+ cy: 124.5,
137
+ rx: 110,
138
+ ry: 108.5,
139
+ fill: "#FDFDFD"
140
+ })), _ellipse17 || (_ellipse17 = /*#__PURE__*/React.createElement("ellipse", {
141
+ opacity: 0.08,
142
+ cx: 184,
143
+ cy: 124.5,
144
+ rx: 109,
145
+ ry: 108.5,
146
+ fill: "#FDFDFD"
147
+ })), _ellipse18 || (_ellipse18 = /*#__PURE__*/React.createElement("ellipse", {
148
+ opacity: 0.08,
149
+ cx: 184,
150
+ cy: 124.5,
151
+ rx: 109,
152
+ ry: 108.5,
153
+ fill: "#FDFDFD"
154
+ })), _ellipse19 || (_ellipse19 = /*#__PURE__*/React.createElement("ellipse", {
155
+ opacity: 0.09,
156
+ cx: 184,
157
+ cy: 124.5,
158
+ rx: 109,
159
+ ry: 108.5,
160
+ fill: "#FDFDFD"
161
+ })), _ellipse20 || (_ellipse20 = /*#__PURE__*/React.createElement("ellipse", {
162
+ opacity: 0.09,
163
+ cx: 184,
164
+ cy: 124.5,
165
+ rx: 109,
166
+ ry: 108.5,
167
+ fill: "#FDFDFD"
168
+ })), _ellipse21 || (_ellipse21 = /*#__PURE__*/React.createElement("ellipse", {
169
+ opacity: 0.1,
170
+ cx: 184,
171
+ cy: 124.5,
172
+ rx: 109,
173
+ ry: 108.5,
174
+ fill: "#FDFDFD"
175
+ })), _ellipse22 || (_ellipse22 = /*#__PURE__*/React.createElement("ellipse", {
176
+ opacity: 0.1,
177
+ cx: 184,
178
+ cy: 124.5,
179
+ rx: 109,
180
+ ry: 108.5,
181
+ fill: "#FCFCFC"
182
+ })), _ellipse23 || (_ellipse23 = /*#__PURE__*/React.createElement("ellipse", {
183
+ opacity: 0.11,
184
+ cx: 184,
185
+ cy: 124.5,
186
+ rx: 109,
187
+ ry: 108.5,
188
+ fill: "#FCFCFC"
189
+ })), _ellipse24 || (_ellipse24 = /*#__PURE__*/React.createElement("ellipse", {
190
+ opacity: 0.11,
191
+ cx: 184,
192
+ cy: 124.5,
193
+ rx: 109,
194
+ ry: 108.5,
195
+ fill: "#FCFCFC"
196
+ })), _ellipse25 || (_ellipse25 = /*#__PURE__*/React.createElement("ellipse", {
197
+ opacity: 0.12,
198
+ cx: 184,
199
+ cy: 124.5,
200
+ rx: 109,
201
+ ry: 108.5,
202
+ fill: "#FCFCFC"
203
+ })), _ellipse26 || (_ellipse26 = /*#__PURE__*/React.createElement("ellipse", {
204
+ opacity: 0.12,
205
+ cx: 184,
206
+ cy: 124.5,
207
+ rx: 109,
208
+ ry: 108.5,
209
+ fill: "#FCFCFC"
210
+ })), _ellipse27 || (_ellipse27 = /*#__PURE__*/React.createElement("ellipse", {
211
+ opacity: 0.13,
212
+ cx: 184,
213
+ cy: 124.5,
214
+ rx: 109,
215
+ ry: 108.5,
216
+ fill: "#FCFCFC"
217
+ })), _ellipse28 || (_ellipse28 = /*#__PURE__*/React.createElement("ellipse", {
218
+ opacity: 0.13,
219
+ cx: 184,
220
+ cy: 124.5,
221
+ rx: 109,
222
+ ry: 108.5,
223
+ fill: "#FCFCFC"
224
+ })), _ellipse29 || (_ellipse29 = /*#__PURE__*/React.createElement("ellipse", {
225
+ opacity: 0.14,
226
+ cx: 184,
227
+ cy: 124.5,
228
+ rx: 109,
229
+ ry: 108.5,
230
+ fill: "#FCFCFC"
231
+ })), _ellipse30 || (_ellipse30 = /*#__PURE__*/React.createElement("ellipse", {
232
+ opacity: 0.14,
233
+ cx: 184,
234
+ cy: 124.5,
235
+ rx: 109,
236
+ ry: 108.5,
237
+ fill: "#FCFCFC"
238
+ })), _ellipse31 || (_ellipse31 = /*#__PURE__*/React.createElement("ellipse", {
239
+ opacity: 0.14,
240
+ cx: 184,
241
+ cy: 124.5,
242
+ rx: 109,
243
+ ry: 108.5,
244
+ fill: "#FBFBFB"
245
+ })), _ellipse32 || (_ellipse32 = /*#__PURE__*/React.createElement("ellipse", {
246
+ opacity: 0.15,
247
+ cx: 184,
248
+ cy: 124.5,
249
+ rx: 109,
250
+ ry: 108.5,
251
+ fill: "#FBFBFB"
252
+ })), _ellipse33 || (_ellipse33 = /*#__PURE__*/React.createElement("ellipse", {
253
+ opacity: 0.15,
254
+ cx: 184,
255
+ cy: 124.5,
256
+ rx: 109,
257
+ ry: 108.5,
258
+ fill: "#FBFBFB"
259
+ })), _ellipse34 || (_ellipse34 = /*#__PURE__*/React.createElement("ellipse", {
260
+ opacity: 0.16,
261
+ cx: 184,
262
+ cy: 124.5,
263
+ rx: 109,
264
+ ry: 108.5,
265
+ fill: "#FBFBFB"
266
+ })), _ellipse35 || (_ellipse35 = /*#__PURE__*/React.createElement("ellipse", {
267
+ opacity: 0.16,
268
+ cx: 184,
269
+ cy: 124.5,
270
+ rx: 109,
271
+ ry: 108.5,
272
+ fill: "#FBFBFB"
273
+ })), _ellipse36 || (_ellipse36 = /*#__PURE__*/React.createElement("ellipse", {
274
+ opacity: 0.17,
275
+ cx: 184,
276
+ cy: 124.5,
277
+ rx: 109,
278
+ ry: 108.5,
279
+ fill: "#FBFBFB"
280
+ })), _ellipse37 || (_ellipse37 = /*#__PURE__*/React.createElement("ellipse", {
281
+ opacity: 0.17,
282
+ cx: 184,
283
+ cy: 124.5,
284
+ rx: 109,
285
+ ry: 108.5,
286
+ fill: "#FBFBFB"
287
+ })), _ellipse38 || (_ellipse38 = /*#__PURE__*/React.createElement("ellipse", {
288
+ opacity: 0.18,
289
+ cx: 181.5,
290
+ cy: 124.5,
291
+ rx: 107.5,
292
+ ry: 108.5,
293
+ fill: "#FBFBFB"
294
+ })), _ellipse39 || (_ellipse39 = /*#__PURE__*/React.createElement("ellipse", {
295
+ opacity: 0.18,
296
+ cx: 181.5,
297
+ cy: 124.5,
298
+ rx: 107.5,
299
+ ry: 108.5,
300
+ fill: "#FAFAFA"
301
+ })), _ellipse40 || (_ellipse40 = /*#__PURE__*/React.createElement("ellipse", {
302
+ opacity: 0.19,
303
+ cx: 181.5,
304
+ cy: 124.5,
305
+ rx: 107.5,
306
+ ry: 108.5,
307
+ fill: "#FAFAFA"
308
+ })), _ellipse41 || (_ellipse41 = /*#__PURE__*/React.createElement("ellipse", {
309
+ opacity: 0.19,
310
+ cx: 181.5,
311
+ cy: 124.5,
312
+ rx: 107.5,
313
+ ry: 108.5,
314
+ fill: "#FAFAFA"
315
+ })), _ellipse42 || (_ellipse42 = /*#__PURE__*/React.createElement("ellipse", {
316
+ opacity: 0.2,
317
+ cx: 181.5,
318
+ cy: 124.5,
319
+ rx: 107.5,
320
+ ry: 108.5,
321
+ fill: "#FAFAFA"
322
+ })), _ellipse43 || (_ellipse43 = /*#__PURE__*/React.createElement("ellipse", {
323
+ opacity: 0.2,
324
+ cx: 181.5,
325
+ cy: 124.5,
326
+ rx: 107.5,
327
+ ry: 108.5,
328
+ fill: "#FAFAFA"
329
+ })), _ellipse44 || (_ellipse44 = /*#__PURE__*/React.createElement("ellipse", {
330
+ opacity: 0.21,
331
+ cx: 181.5,
332
+ cy: 124.5,
333
+ rx: 107.5,
334
+ ry: 108.5,
335
+ fill: "#FAFAFA"
336
+ })), _ellipse45 || (_ellipse45 = /*#__PURE__*/React.createElement("ellipse", {
337
+ opacity: 0.21,
338
+ cx: 181.5,
339
+ cy: 124.5,
340
+ rx: 107.5,
341
+ ry: 108.5,
342
+ fill: "#FAFAFA"
343
+ })), _ellipse46 || (_ellipse46 = /*#__PURE__*/React.createElement("ellipse", {
344
+ opacity: 0.22,
345
+ cx: 181.5,
346
+ cy: 124.5,
347
+ rx: 107.5,
348
+ ry: 108.5,
349
+ fill: "#FAFAFA"
350
+ })), _ellipse47 || (_ellipse47 = /*#__PURE__*/React.createElement("ellipse", {
351
+ opacity: 0.22,
352
+ cx: 181.5,
353
+ cy: 124.5,
354
+ rx: 107.5,
355
+ ry: 108.5,
356
+ fill: "#FAFAFA"
357
+ })), _ellipse48 || (_ellipse48 = /*#__PURE__*/React.createElement("ellipse", {
358
+ opacity: 0.23,
359
+ cx: 181.5,
360
+ cy: 124.5,
361
+ rx: 107.5,
362
+ ry: 108.5,
363
+ fill: "#F9F9F9"
364
+ })), _ellipse49 || (_ellipse49 = /*#__PURE__*/React.createElement("ellipse", {
365
+ opacity: 0.23,
366
+ cx: 181.5,
367
+ cy: 124.5,
368
+ rx: 107.5,
369
+ ry: 108.5,
370
+ fill: "#F9F9F9"
371
+ })), _ellipse50 || (_ellipse50 = /*#__PURE__*/React.createElement("ellipse", {
372
+ opacity: 0.24,
373
+ cx: 181.5,
374
+ cy: 124.5,
375
+ rx: 107.5,
376
+ ry: 108.5,
377
+ fill: "#F9F9F9"
378
+ })), _ellipse51 || (_ellipse51 = /*#__PURE__*/React.createElement("ellipse", {
379
+ opacity: 0.24,
380
+ cx: 181.5,
381
+ cy: 124.5,
382
+ rx: 107.5,
383
+ ry: 108.5,
384
+ fill: "#F9F9F9"
385
+ })), _ellipse52 || (_ellipse52 = /*#__PURE__*/React.createElement("ellipse", {
386
+ opacity: 0.25,
387
+ cx: 181.5,
388
+ cy: 124.5,
389
+ rx: 107.5,
390
+ ry: 108.5,
391
+ fill: "#F9F9F9"
392
+ })), _ellipse53 || (_ellipse53 = /*#__PURE__*/React.createElement("ellipse", {
393
+ opacity: 0.25,
394
+ cx: 181.5,
395
+ cy: 121.5,
396
+ rx: 107.5,
397
+ ry: 108.5,
398
+ fill: "#F9F9F9"
399
+ })), _ellipse54 || (_ellipse54 = /*#__PURE__*/React.createElement("ellipse", {
400
+ opacity: 0.26,
401
+ cx: 181.5,
402
+ cy: 121.5,
403
+ rx: 107.5,
404
+ ry: 108.5,
405
+ fill: "#F9F9F9"
406
+ })), _ellipse55 || (_ellipse55 = /*#__PURE__*/React.createElement("ellipse", {
407
+ opacity: 0.26,
408
+ cx: 181.5,
409
+ cy: 121.5,
410
+ rx: 107.5,
411
+ ry: 108.5,
412
+ fill: "#F9F9F9"
413
+ })), _ellipse56 || (_ellipse56 = /*#__PURE__*/React.createElement("ellipse", {
414
+ opacity: 0.27,
415
+ cx: 181.5,
416
+ cy: 121.5,
417
+ rx: 107.5,
418
+ ry: 108.5,
419
+ fill: "#F8F8F8"
420
+ })), _ellipse57 || (_ellipse57 = /*#__PURE__*/React.createElement("ellipse", {
421
+ opacity: 0.27,
422
+ cx: 181.5,
423
+ cy: 121.5,
424
+ rx: 107.5,
425
+ ry: 108.5,
426
+ fill: "#F8F8F8"
427
+ })), _ellipse58 || (_ellipse58 = /*#__PURE__*/React.createElement("ellipse", {
428
+ opacity: 0.28,
429
+ cx: 181.5,
430
+ cy: 124.5,
431
+ rx: 107.5,
432
+ ry: 108.5,
433
+ fill: "#F8F8F8"
434
+ })), _ellipse59 || (_ellipse59 = /*#__PURE__*/React.createElement("ellipse", {
435
+ opacity: 0.28,
436
+ cx: 178.5,
437
+ cy: 124.5,
438
+ rx: 106.5,
439
+ ry: 108.5,
440
+ fill: "#F8F8F8"
441
+ })), _ellipse60 || (_ellipse60 = /*#__PURE__*/React.createElement("ellipse", {
442
+ opacity: 0.28,
443
+ cx: 178.5,
444
+ cy: 124.5,
445
+ rx: 106.5,
446
+ ry: 108.5,
447
+ fill: "#F8F8F8"
448
+ })), _ellipse61 || (_ellipse61 = /*#__PURE__*/React.createElement("ellipse", {
449
+ opacity: 0.29,
450
+ cx: 178.5,
451
+ cy: 124.5,
452
+ rx: 106.5,
453
+ ry: 108.5,
454
+ fill: "#F8F8F8"
455
+ })), _ellipse62 || (_ellipse62 = /*#__PURE__*/React.createElement("ellipse", {
456
+ opacity: 0.29,
457
+ cx: 178.5,
458
+ cy: 124.5,
459
+ rx: 106.5,
460
+ ry: 108.5,
461
+ fill: "#F8F8F8"
462
+ })), _ellipse63 || (_ellipse63 = /*#__PURE__*/React.createElement("ellipse", {
463
+ opacity: 0.3,
464
+ cx: 178.5,
465
+ cy: 124.5,
466
+ rx: 106.5,
467
+ ry: 108.5,
468
+ fill: "#F8F8F8"
469
+ })), _ellipse64 || (_ellipse64 = /*#__PURE__*/React.createElement("ellipse", {
470
+ opacity: 0.3,
471
+ cx: 178.5,
472
+ cy: 124.5,
473
+ rx: 106.5,
474
+ ry: 108.5,
475
+ fill: "#F7F7F7"
476
+ })), _ellipse65 || (_ellipse65 = /*#__PURE__*/React.createElement("ellipse", {
477
+ opacity: 0.31,
478
+ cx: 178.5,
479
+ cy: 121.5,
480
+ rx: 106.5,
481
+ ry: 108.5,
482
+ fill: "#F7F7F7"
483
+ })), _ellipse66 || (_ellipse66 = /*#__PURE__*/React.createElement("ellipse", {
484
+ opacity: 0.31,
485
+ cx: 178.5,
486
+ cy: 121.5,
487
+ rx: 106.5,
488
+ ry: 108.5,
489
+ fill: "#F7F7F7"
490
+ })), _ellipse67 || (_ellipse67 = /*#__PURE__*/React.createElement("ellipse", {
491
+ opacity: 0.32,
492
+ cx: 178.5,
493
+ cy: 121.5,
494
+ rx: 106.5,
495
+ ry: 108.5,
496
+ fill: "#F7F7F7"
497
+ })), _ellipse68 || (_ellipse68 = /*#__PURE__*/React.createElement("ellipse", {
498
+ opacity: 0.32,
499
+ cx: 178.5,
500
+ cy: 121.5,
501
+ rx: 106.5,
502
+ ry: 108.5,
503
+ fill: "#F7F7F7"
504
+ })), _ellipse69 || (_ellipse69 = /*#__PURE__*/React.createElement("ellipse", {
505
+ opacity: 0.33,
506
+ cx: 178.5,
507
+ cy: 121.5,
508
+ rx: 106.5,
509
+ ry: 108.5,
510
+ fill: "#F7F7F7"
511
+ })), _ellipse70 || (_ellipse70 = /*#__PURE__*/React.createElement("ellipse", {
512
+ opacity: 0.33,
513
+ cx: 178.5,
514
+ cy: 121.5,
515
+ rx: 106.5,
516
+ ry: 108.5,
517
+ fill: "#F7F7F7"
518
+ })), _ellipse71 || (_ellipse71 = /*#__PURE__*/React.createElement("ellipse", {
519
+ opacity: 0.34,
520
+ cx: 178.5,
521
+ cy: 123.5,
522
+ rx: 106.5,
523
+ ry: 107.5,
524
+ fill: "#F7F7F7"
525
+ })), _ellipse72 || (_ellipse72 = /*#__PURE__*/React.createElement("ellipse", {
526
+ opacity: 0.34,
527
+ cx: 178.5,
528
+ cy: 123.5,
529
+ rx: 106.5,
530
+ ry: 107.5,
531
+ fill: "#F7F7F7"
532
+ })), _ellipse73 || (_ellipse73 = /*#__PURE__*/React.createElement("ellipse", {
533
+ opacity: 0.35,
534
+ cx: 178.5,
535
+ cy: 123.5,
536
+ rx: 106.5,
537
+ ry: 107.5,
538
+ fill: "#F6F6F6"
539
+ })), _ellipse74 || (_ellipse74 = /*#__PURE__*/React.createElement("ellipse", {
540
+ opacity: 0.35,
541
+ cx: 178.5,
542
+ cy: 123.5,
543
+ rx: 106.5,
544
+ ry: 107.5,
545
+ fill: "#F6F6F6"
546
+ })), _ellipse75 || (_ellipse75 = /*#__PURE__*/React.createElement("ellipse", {
547
+ opacity: 0.36,
548
+ cx: 178.5,
549
+ cy: 123.5,
550
+ rx: 106.5,
551
+ ry: 107.5,
552
+ fill: "#F6F6F6"
553
+ })), _ellipse76 || (_ellipse76 = /*#__PURE__*/React.createElement("ellipse", {
554
+ opacity: 0.36,
555
+ cx: 178.5,
556
+ cy: 123.5,
557
+ rx: 106.5,
558
+ ry: 107.5,
559
+ fill: "#F6F6F6"
560
+ })), _ellipse77 || (_ellipse77 = /*#__PURE__*/React.createElement("ellipse", {
561
+ opacity: 0.37,
562
+ cx: 178.5,
563
+ cy: 123.5,
564
+ rx: 106.5,
565
+ ry: 107.5,
566
+ fill: "#F6F6F6"
567
+ })), _ellipse78 || (_ellipse78 = /*#__PURE__*/React.createElement("ellipse", {
568
+ opacity: 0.37,
569
+ cx: 178.5,
570
+ cy: 123.5,
571
+ rx: 106.5,
572
+ ry: 107.5,
573
+ fill: "#F6F6F6"
574
+ })), _ellipse79 || (_ellipse79 = /*#__PURE__*/React.createElement("ellipse", {
575
+ opacity: 0.38,
576
+ cx: 178.5,
577
+ cy: 123.5,
578
+ rx: 106.5,
579
+ ry: 105.5,
580
+ fill: "#F6F6F6"
581
+ })), _ellipse80 || (_ellipse80 = /*#__PURE__*/React.createElement("ellipse", {
582
+ opacity: 0.38,
583
+ cx: 178.5,
584
+ cy: 123.5,
585
+ rx: 106.5,
586
+ ry: 105.5,
587
+ fill: "#F6F6F6"
588
+ })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
589
+ opacity: 0.39,
590
+ cx: 179.5,
591
+ cy: 123.5,
592
+ r: 105.5,
593
+ fill: "#F5F5F5"
594
+ })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
595
+ opacity: 0.39,
596
+ cx: 179.5,
597
+ cy: 123.5,
598
+ r: 105.5,
599
+ fill: "#F5F5F5"
600
+ })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
601
+ opacity: 0.4,
602
+ cx: 179.5,
603
+ cy: 123.5,
604
+ r: 105.5,
605
+ fill: "#F5F5F5"
606
+ })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
607
+ opacity: 0.4,
608
+ cx: 179.5,
609
+ cy: 123.5,
610
+ r: 105.5,
611
+ fill: "#F5F5F5"
612
+ })), _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
613
+ opacity: 0.41,
614
+ cx: 179.5,
615
+ cy: 123.5,
616
+ r: 105.5,
617
+ fill: "#F5F5F5"
618
+ })), _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
619
+ opacity: 0.41,
620
+ cx: 179.5,
621
+ cy: 123.5,
622
+ r: 105.5,
623
+ fill: "#F5F5F5"
624
+ })), _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
625
+ opacity: 0.42,
626
+ cx: 179.5,
627
+ cy: 123.5,
628
+ r: 105.5,
629
+ fill: "#F5F5F5"
630
+ })), _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
631
+ opacity: 0.42,
632
+ cx: 179.5,
633
+ cy: 123.5,
634
+ r: 105.5,
635
+ fill: "#F5F5F5"
636
+ })), _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
637
+ opacity: 0.42,
638
+ cx: 179.5,
639
+ cy: 123.5,
640
+ r: 105.5,
641
+ fill: "#F4F4F4"
642
+ })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
643
+ opacity: 0.43,
644
+ cx: 179.5,
645
+ cy: 123.5,
646
+ r: 105.5,
647
+ fill: "#F4F4F4"
648
+ })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
649
+ opacity: 0.43,
650
+ cx: 179.5,
651
+ cy: 123.5,
652
+ r: 105.5,
653
+ fill: "#F4F4F4"
654
+ })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
655
+ opacity: 0.44,
656
+ cx: 179.5,
657
+ cy: 123.5,
658
+ r: 105.5,
659
+ fill: "#F4F4F4"
660
+ })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
661
+ opacity: 0.44,
662
+ cx: 179.5,
663
+ cy: 121.5,
664
+ r: 105.5,
665
+ fill: "#F4F4F4"
666
+ })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
667
+ opacity: 0.45,
668
+ cx: 179.5,
669
+ cy: 121.5,
670
+ r: 105.5,
671
+ fill: "#F4F4F4"
672
+ })), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
673
+ opacity: 0.45,
674
+ cx: 175.5,
675
+ cy: 121.5,
676
+ r: 105.5,
677
+ fill: "#F4F4F4"
678
+ })), _circle16 || (_circle16 = /*#__PURE__*/React.createElement("circle", {
679
+ opacity: 0.46,
680
+ cx: 175.5,
681
+ cy: 121.5,
682
+ r: 105.5,
683
+ fill: "#F4F4F4"
684
+ })), _circle17 || (_circle17 = /*#__PURE__*/React.createElement("circle", {
685
+ opacity: 0.46,
686
+ cx: 175.5,
687
+ cy: 121.5,
688
+ r: 105.5,
689
+ fill: "#F4F4F4"
690
+ })), _circle18 || (_circle18 = /*#__PURE__*/React.createElement("circle", {
691
+ opacity: 0.47,
692
+ cx: 175.5,
693
+ cy: 121.5,
694
+ r: 105.5,
695
+ fill: "#F3F3F3"
696
+ })), _circle19 || (_circle19 = /*#__PURE__*/React.createElement("circle", {
697
+ opacity: 0.47,
698
+ cx: 175.5,
699
+ cy: 121.5,
700
+ r: 105.5,
701
+ fill: "#F3F3F3"
702
+ })), _circle20 || (_circle20 = /*#__PURE__*/React.createElement("circle", {
703
+ opacity: 0.48,
704
+ cx: 175.5,
705
+ cy: 121.5,
706
+ r: 105.5,
707
+ fill: "#F3F3F3"
708
+ })), _circle21 || (_circle21 = /*#__PURE__*/React.createElement("circle", {
709
+ opacity: 0.48,
710
+ cx: 175.5,
711
+ cy: 121.5,
712
+ r: 105.5,
713
+ fill: "#F3F3F3"
714
+ })), _circle22 || (_circle22 = /*#__PURE__*/React.createElement("circle", {
715
+ opacity: 0.49,
716
+ cx: 175.5,
717
+ cy: 121.5,
718
+ r: 105.5,
719
+ fill: "#F3F3F3"
720
+ })), _circle23 || (_circle23 = /*#__PURE__*/React.createElement("circle", {
721
+ opacity: 0.49,
722
+ cx: 175.5,
723
+ cy: 121.5,
724
+ r: 105.5,
725
+ fill: "#F3F3F3"
726
+ })), _circle24 || (_circle24 = /*#__PURE__*/React.createElement("circle", {
727
+ opacity: 0.5,
728
+ cx: 175.5,
729
+ cy: 121.5,
730
+ r: 105.5,
731
+ fill: "#F3F3F3"
732
+ })), _circle25 || (_circle25 = /*#__PURE__*/React.createElement("circle", {
733
+ opacity: 0.5,
734
+ cx: 175.5,
735
+ cy: 121.5,
736
+ r: 105.5,
737
+ fill: "#F3F3F3"
738
+ })), _circle26 || (_circle26 = /*#__PURE__*/React.createElement("circle", {
739
+ opacity: 0.51,
740
+ cx: 175.5,
741
+ cy: 121.5,
742
+ r: 105.5,
743
+ fill: "#F2F2F2"
744
+ })), _circle27 || (_circle27 = /*#__PURE__*/React.createElement("circle", {
745
+ opacity: 0.51,
746
+ cx: 175.5,
747
+ cy: 121.5,
748
+ r: 105.5,
749
+ fill: "#F2F2F2"
750
+ })), _circle28 || (_circle28 = /*#__PURE__*/React.createElement("circle", {
751
+ opacity: 0.52,
752
+ cx: 175.5,
753
+ cy: 121.5,
754
+ r: 105.5,
755
+ fill: "#F2F2F2"
756
+ })), _circle29 || (_circle29 = /*#__PURE__*/React.createElement("circle", {
757
+ opacity: 0.52,
758
+ cx: 175.5,
759
+ cy: 121.5,
760
+ r: 105.5,
761
+ fill: "#F2F2F2"
762
+ })), _circle30 || (_circle30 = /*#__PURE__*/React.createElement("circle", {
763
+ opacity: 0.53,
764
+ cx: 175.5,
765
+ cy: 121.5,
766
+ r: 105.5,
767
+ fill: "#F2F2F2"
768
+ })), _circle31 || (_circle31 = /*#__PURE__*/React.createElement("circle", {
769
+ opacity: 0.53,
770
+ cx: 175.5,
771
+ cy: 121.5,
772
+ r: 105.5,
773
+ fill: "#F2F2F2"
774
+ })), _circle32 || (_circle32 = /*#__PURE__*/React.createElement("circle", {
775
+ opacity: 0.54,
776
+ cx: 175.5,
777
+ cy: 121.5,
778
+ r: 105.5,
779
+ fill: "#F2F2F2"
780
+ })), _circle33 || (_circle33 = /*#__PURE__*/React.createElement("circle", {
781
+ opacity: 0.54,
782
+ cx: 175.5,
783
+ cy: 121.5,
784
+ r: 105.5,
785
+ fill: "#F2F2F2"
786
+ })), _circle34 || (_circle34 = /*#__PURE__*/React.createElement("circle", {
787
+ opacity: 0.55,
788
+ cx: 175.5,
789
+ cy: 121.5,
790
+ r: 105.5,
791
+ fill: "#F2F2F2"
792
+ })), _circle35 || (_circle35 = /*#__PURE__*/React.createElement("circle", {
793
+ opacity: 0.55,
794
+ cx: 175.5,
795
+ cy: 121.5,
796
+ r: 105.5,
797
+ fill: "#F1F1F1"
798
+ })), _ellipse81 || (_ellipse81 = /*#__PURE__*/React.createElement("ellipse", {
799
+ opacity: 0.56,
800
+ cx: 175,
801
+ cy: 121.5,
802
+ rx: 105,
803
+ ry: 105.5,
804
+ fill: "#F1F1F1"
805
+ })), _ellipse82 || (_ellipse82 = /*#__PURE__*/React.createElement("ellipse", {
806
+ opacity: 0.56,
807
+ cx: 175,
808
+ cy: 121.5,
809
+ rx: 105,
810
+ ry: 105.5,
811
+ fill: "#F1F1F1"
812
+ })), _ellipse83 || (_ellipse83 = /*#__PURE__*/React.createElement("ellipse", {
813
+ opacity: 0.56,
814
+ cx: 175,
815
+ cy: 121.5,
816
+ rx: 105,
817
+ ry: 105.5,
818
+ fill: "#F1F1F1"
819
+ })), _ellipse84 || (_ellipse84 = /*#__PURE__*/React.createElement("ellipse", {
820
+ opacity: 0.57,
821
+ cx: 175,
822
+ cy: 121.5,
823
+ rx: 105,
824
+ ry: 105.5,
825
+ fill: "#F1F1F1"
826
+ })), _ellipse85 || (_ellipse85 = /*#__PURE__*/React.createElement("ellipse", {
827
+ opacity: 0.57,
828
+ cx: 175,
829
+ cy: 121.5,
830
+ rx: 105,
831
+ ry: 105.5,
832
+ fill: "#F1F1F1"
833
+ })), _ellipse86 || (_ellipse86 = /*#__PURE__*/React.createElement("ellipse", {
834
+ opacity: 0.58,
835
+ cx: 175,
836
+ cy: 121.5,
837
+ rx: 105,
838
+ ry: 105.5,
839
+ fill: "#F1F1F1"
840
+ })), _ellipse87 || (_ellipse87 = /*#__PURE__*/React.createElement("ellipse", {
841
+ opacity: 0.58,
842
+ cx: 175,
843
+ cy: 121.5,
844
+ rx: 105,
845
+ ry: 105.5,
846
+ fill: "#F1F1F1"
847
+ })), _ellipse88 || (_ellipse88 = /*#__PURE__*/React.createElement("ellipse", {
848
+ opacity: 0.59,
849
+ cx: 175,
850
+ cy: 121.5,
851
+ rx: 105,
852
+ ry: 105.5,
853
+ fill: "#F0F0F0"
854
+ })), _ellipse89 || (_ellipse89 = /*#__PURE__*/React.createElement("ellipse", {
855
+ opacity: 0.59,
856
+ cx: 175,
857
+ cy: 121.5,
858
+ rx: 105,
859
+ ry: 105.5,
860
+ fill: "#F0F0F0"
861
+ })), _ellipse90 || (_ellipse90 = /*#__PURE__*/React.createElement("ellipse", {
862
+ opacity: 0.6,
863
+ cx: 175,
864
+ cy: 121.5,
865
+ rx: 105,
866
+ ry: 105.5,
867
+ fill: "#F0F0F0"
868
+ })), _ellipse91 || (_ellipse91 = /*#__PURE__*/React.createElement("ellipse", {
869
+ opacity: 0.6,
870
+ cx: 175,
871
+ cy: 121.5,
872
+ rx: 105,
873
+ ry: 105.5,
874
+ fill: "#F0F0F0"
875
+ })), _ellipse92 || (_ellipse92 = /*#__PURE__*/React.createElement("ellipse", {
876
+ opacity: 0.61,
877
+ cx: 175,
878
+ cy: 121.5,
879
+ rx: 105,
880
+ ry: 105.5,
881
+ fill: "#F0F0F0"
882
+ })), _ellipse93 || (_ellipse93 = /*#__PURE__*/React.createElement("ellipse", {
883
+ opacity: 0.61,
884
+ cx: 175,
885
+ cy: 121,
886
+ rx: 105,
887
+ ry: 103,
888
+ fill: "#F0F0F0"
889
+ })), _ellipse94 || (_ellipse94 = /*#__PURE__*/React.createElement("ellipse", {
890
+ opacity: 0.62,
891
+ cx: 175,
892
+ cy: 121,
893
+ rx: 105,
894
+ ry: 103,
895
+ fill: "#F0F0F0"
896
+ })), _circle36 || (_circle36 = /*#__PURE__*/React.createElement("circle", {
897
+ opacity: 0.62,
898
+ cx: 177,
899
+ cy: 121,
900
+ r: 103,
901
+ fill: "#F0F0F0"
902
+ })), _circle37 || (_circle37 = /*#__PURE__*/React.createElement("circle", {
903
+ opacity: 0.63,
904
+ cx: 177,
905
+ cy: 121,
906
+ r: 103,
907
+ fill: "#EFEFEF"
908
+ })), _circle38 || (_circle38 = /*#__PURE__*/React.createElement("circle", {
909
+ opacity: 0.63,
910
+ cx: 177,
911
+ cy: 121,
912
+ r: 103,
913
+ fill: "#EFEFEF"
914
+ })), _circle39 || (_circle39 = /*#__PURE__*/React.createElement("circle", {
915
+ opacity: 0.64,
916
+ cx: 177,
917
+ cy: 121,
918
+ r: 103,
919
+ fill: "#EFEFEF"
920
+ })), _circle40 || (_circle40 = /*#__PURE__*/React.createElement("circle", {
921
+ opacity: 0.64,
922
+ cx: 177,
923
+ cy: 121,
924
+ r: 103,
925
+ fill: "#EFEFEF"
926
+ })), _circle41 || (_circle41 = /*#__PURE__*/React.createElement("circle", {
927
+ opacity: 0.65,
928
+ cx: 177,
929
+ cy: 121,
930
+ r: 103,
931
+ fill: "#EFEFEF"
932
+ })), _circle42 || (_circle42 = /*#__PURE__*/React.createElement("circle", {
933
+ opacity: 0.65,
934
+ cx: 177,
935
+ cy: 121,
936
+ r: 103,
937
+ fill: "#EFEFEF"
938
+ })), _circle43 || (_circle43 = /*#__PURE__*/React.createElement("circle", {
939
+ opacity: 0.66,
940
+ cx: 177,
941
+ cy: 121,
942
+ r: 103,
943
+ fill: "#EFEFEF"
944
+ })), _circle44 || (_circle44 = /*#__PURE__*/React.createElement("circle", {
945
+ opacity: 0.66,
946
+ cx: 177,
947
+ cy: 121,
948
+ r: 103,
949
+ fill: "#EFEFEF"
950
+ })), _circle45 || (_circle45 = /*#__PURE__*/React.createElement("circle", {
951
+ opacity: 0.67,
952
+ cx: 177,
953
+ cy: 121,
954
+ r: 103,
955
+ fill: "#EFEFEF"
956
+ })), _circle46 || (_circle46 = /*#__PURE__*/React.createElement("circle", {
957
+ opacity: 0.67,
958
+ cx: 177,
959
+ cy: 121,
960
+ r: 103,
961
+ fill: "#EEE"
962
+ })), _circle47 || (_circle47 = /*#__PURE__*/React.createElement("circle", {
963
+ opacity: 0.68,
964
+ cx: 177,
965
+ cy: 121,
966
+ r: 103,
967
+ fill: "#EEE"
968
+ })), _circle48 || (_circle48 = /*#__PURE__*/React.createElement("circle", {
969
+ opacity: 0.68,
970
+ cx: 177,
971
+ cy: 123,
972
+ r: 103,
973
+ fill: "#EEE"
974
+ })), _circle49 || (_circle49 = /*#__PURE__*/React.createElement("circle", {
975
+ opacity: 0.69,
976
+ cx: 177,
977
+ cy: 119,
978
+ r: 103,
979
+ fill: "#EEE"
980
+ })), _ellipse95 || (_ellipse95 = /*#__PURE__*/React.createElement("ellipse", {
981
+ opacity: 0.69,
982
+ cx: 176,
983
+ cy: 119,
984
+ rx: 102,
985
+ ry: 103,
986
+ fill: "#EEE"
987
+ })), _ellipse96 || (_ellipse96 = /*#__PURE__*/React.createElement("ellipse", {
988
+ opacity: 0.7,
989
+ cx: 176,
990
+ cy: 119,
991
+ rx: 102,
992
+ ry: 103,
993
+ fill: "#EEE"
994
+ })), _ellipse97 || (_ellipse97 = /*#__PURE__*/React.createElement("ellipse", {
995
+ opacity: 0.7,
996
+ cx: 176,
997
+ cy: 119,
998
+ rx: 102,
999
+ ry: 103,
1000
+ fill: "#EEE"
1001
+ })), _ellipse98 || (_ellipse98 = /*#__PURE__*/React.createElement("ellipse", {
1002
+ opacity: 0.7,
1003
+ cx: 176,
1004
+ cy: 119,
1005
+ rx: 102,
1006
+ ry: 103,
1007
+ fill: "#EEE"
1008
+ })), _ellipse99 || (_ellipse99 = /*#__PURE__*/React.createElement("ellipse", {
1009
+ opacity: 0.71,
1010
+ cx: 176,
1011
+ cy: 119,
1012
+ rx: 102,
1013
+ ry: 103,
1014
+ fill: "#EDEDED"
1015
+ })), _ellipse100 || (_ellipse100 = /*#__PURE__*/React.createElement("ellipse", {
1016
+ opacity: 0.71,
1017
+ cx: 176,
1018
+ cy: 123,
1019
+ rx: 102,
1020
+ ry: 103,
1021
+ fill: "#EDEDED"
1022
+ })), _ellipse101 || (_ellipse101 = /*#__PURE__*/React.createElement("ellipse", {
1023
+ opacity: 0.72,
1024
+ cx: 176,
1025
+ cy: 123,
1026
+ rx: 102,
1027
+ ry: 103,
1028
+ fill: "#EDEDED"
1029
+ })), _ellipse102 || (_ellipse102 = /*#__PURE__*/React.createElement("ellipse", {
1030
+ opacity: 0.72,
1031
+ cx: 176,
1032
+ cy: 123,
1033
+ rx: 102,
1034
+ ry: 103,
1035
+ fill: "#EDEDED"
1036
+ })), _ellipse103 || (_ellipse103 = /*#__PURE__*/React.createElement("ellipse", {
1037
+ opacity: 0.73,
1038
+ cx: 176,
1039
+ cy: 123,
1040
+ rx: 102,
1041
+ ry: 103,
1042
+ fill: "#EDEDED"
1043
+ })), _ellipse104 || (_ellipse104 = /*#__PURE__*/React.createElement("ellipse", {
1044
+ opacity: 0.73,
1045
+ cx: 176,
1046
+ cy: 123,
1047
+ rx: 102,
1048
+ ry: 103,
1049
+ fill: "#EDEDED"
1050
+ })), _ellipse105 || (_ellipse105 = /*#__PURE__*/React.createElement("ellipse", {
1051
+ opacity: 0.74,
1052
+ cx: 176,
1053
+ cy: 123,
1054
+ rx: 102,
1055
+ ry: 103,
1056
+ fill: "#EDEDED"
1057
+ })), _ellipse106 || (_ellipse106 = /*#__PURE__*/React.createElement("ellipse", {
1058
+ opacity: 0.74,
1059
+ cx: 176,
1060
+ cy: 123,
1061
+ rx: 102,
1062
+ ry: 103,
1063
+ fill: "#EDEDED"
1064
+ })), _ellipse107 || (_ellipse107 = /*#__PURE__*/React.createElement("ellipse", {
1065
+ opacity: 0.75,
1066
+ cx: 176,
1067
+ cy: 123,
1068
+ rx: 102,
1069
+ ry: 103,
1070
+ fill: "#ECECEC"
1071
+ })), _ellipse108 || (_ellipse108 = /*#__PURE__*/React.createElement("ellipse", {
1072
+ opacity: 0.75,
1073
+ cx: 176,
1074
+ cy: 123,
1075
+ rx: 102,
1076
+ ry: 103,
1077
+ fill: "#ECECEC"
1078
+ })), _ellipse109 || (_ellipse109 = /*#__PURE__*/React.createElement("ellipse", {
1079
+ opacity: 0.76,
1080
+ cx: 176,
1081
+ cy: 123,
1082
+ rx: 102,
1083
+ ry: 103,
1084
+ fill: "#ECECEC"
1085
+ })), _ellipse110 || (_ellipse110 = /*#__PURE__*/React.createElement("ellipse", {
1086
+ opacity: 0.76,
1087
+ cx: 176,
1088
+ cy: 123,
1089
+ rx: 102,
1090
+ ry: 103,
1091
+ fill: "#ECECEC"
1092
+ })), _ellipse111 || (_ellipse111 = /*#__PURE__*/React.createElement("ellipse", {
1093
+ opacity: 0.77,
1094
+ cx: 176,
1095
+ cy: 123,
1096
+ rx: 102,
1097
+ ry: 103,
1098
+ fill: "#ECECEC"
1099
+ })), _ellipse112 || (_ellipse112 = /*#__PURE__*/React.createElement("ellipse", {
1100
+ opacity: 0.77,
1101
+ cx: 176,
1102
+ cy: 123,
1103
+ rx: 102,
1104
+ ry: 103,
1105
+ fill: "#ECECEC"
1106
+ })), _ellipse113 || (_ellipse113 = /*#__PURE__*/React.createElement("ellipse", {
1107
+ opacity: 0.78,
1108
+ cx: 176,
1109
+ cy: 123,
1110
+ rx: 102,
1111
+ ry: 103,
1112
+ fill: "#ECECEC"
1113
+ })), _ellipse114 || (_ellipse114 = /*#__PURE__*/React.createElement("ellipse", {
1114
+ opacity: 0.78,
1115
+ cx: 176,
1116
+ cy: 123,
1117
+ rx: 102,
1118
+ ry: 103,
1119
+ fill: "#ECECEC"
1120
+ })), _ellipse115 || (_ellipse115 = /*#__PURE__*/React.createElement("ellipse", {
1121
+ opacity: 0.79,
1122
+ cx: 176,
1123
+ cy: 123,
1124
+ rx: 102,
1125
+ ry: 103,
1126
+ fill: "#ECECEC"
1127
+ })), _ellipse116 || (_ellipse116 = /*#__PURE__*/React.createElement("ellipse", {
1128
+ opacity: 0.79,
1129
+ cx: 176,
1130
+ cy: 123,
1131
+ rx: 102,
1132
+ ry: 103,
1133
+ fill: "#EBEBEB"
1134
+ })), _ellipse117 || (_ellipse117 = /*#__PURE__*/React.createElement("ellipse", {
1135
+ opacity: 0.8,
1136
+ cx: 176,
1137
+ cy: 123,
1138
+ rx: 102,
1139
+ ry: 103,
1140
+ fill: "#EBEBEB"
1141
+ })), _ellipse118 || (_ellipse118 = /*#__PURE__*/React.createElement("ellipse", {
1142
+ opacity: 0.8,
1143
+ cx: 176,
1144
+ cy: 123,
1145
+ rx: 102,
1146
+ ry: 103,
1147
+ fill: "#EBEBEB"
1148
+ })), _ellipse119 || (_ellipse119 = /*#__PURE__*/React.createElement("ellipse", {
1149
+ opacity: 0.81,
1150
+ cx: 176,
1151
+ cy: 123,
1152
+ rx: 102,
1153
+ ry: 103,
1154
+ fill: "#EBEBEB"
1155
+ })), _ellipse120 || (_ellipse120 = /*#__PURE__*/React.createElement("ellipse", {
1156
+ opacity: 0.81,
1157
+ cx: 176,
1158
+ cy: 123,
1159
+ rx: 102,
1160
+ ry: 103,
1161
+ fill: "#EBEBEB"
1162
+ })), _ellipse121 || (_ellipse121 = /*#__PURE__*/React.createElement("ellipse", {
1163
+ opacity: 0.82,
1164
+ cx: 176,
1165
+ cy: 121.5,
1166
+ rx: 102,
1167
+ ry: 101.5,
1168
+ fill: "#EBEBEB"
1169
+ })), _ellipse122 || (_ellipse122 = /*#__PURE__*/React.createElement("ellipse", {
1170
+ opacity: 0.82,
1171
+ cx: 176,
1172
+ cy: 121.5,
1173
+ rx: 102,
1174
+ ry: 101.5,
1175
+ fill: "#EBEBEB"
1176
+ })), _ellipse123 || (_ellipse123 = /*#__PURE__*/React.createElement("ellipse", {
1177
+ opacity: 0.83,
1178
+ cx: 174,
1179
+ cy: 121.5,
1180
+ rx: 101,
1181
+ ry: 101.5,
1182
+ fill: "#EBEBEB"
1183
+ })), _ellipse124 || (_ellipse124 = /*#__PURE__*/React.createElement("ellipse", {
1184
+ opacity: 0.83,
1185
+ cx: 174,
1186
+ cy: 121.5,
1187
+ rx: 101,
1188
+ ry: 101.5,
1189
+ fill: "#EAEAEA"
1190
+ })), _ellipse125 || (_ellipse125 = /*#__PURE__*/React.createElement("ellipse", {
1191
+ opacity: 0.84,
1192
+ cx: 174,
1193
+ cy: 121.5,
1194
+ rx: 101,
1195
+ ry: 101.5,
1196
+ fill: "#EAEAEA"
1197
+ })), _ellipse126 || (_ellipse126 = /*#__PURE__*/React.createElement("ellipse", {
1198
+ opacity: 0.84,
1199
+ cx: 174,
1200
+ cy: 121.5,
1201
+ rx: 101,
1202
+ ry: 101.5,
1203
+ fill: "#EAEAEA"
1204
+ })), _ellipse127 || (_ellipse127 = /*#__PURE__*/React.createElement("ellipse", {
1205
+ opacity: 0.84,
1206
+ cx: 174,
1207
+ cy: 121.5,
1208
+ rx: 101,
1209
+ ry: 101.5,
1210
+ fill: "#EAEAEA"
1211
+ })), _ellipse128 || (_ellipse128 = /*#__PURE__*/React.createElement("ellipse", {
1212
+ opacity: 0.85,
1213
+ cx: 174,
1214
+ cy: 121.5,
1215
+ rx: 101,
1216
+ ry: 101.5,
1217
+ fill: "#EAEAEA"
1218
+ })), _ellipse129 || (_ellipse129 = /*#__PURE__*/React.createElement("ellipse", {
1219
+ opacity: 0.85,
1220
+ cx: 174,
1221
+ cy: 121.5,
1222
+ rx: 101,
1223
+ ry: 101.5,
1224
+ fill: "#EAEAEA"
1225
+ })), _ellipse130 || (_ellipse130 = /*#__PURE__*/React.createElement("ellipse", {
1226
+ opacity: 0.86,
1227
+ cx: 174,
1228
+ cy: 121.5,
1229
+ rx: 101,
1230
+ ry: 101.5,
1231
+ fill: "#EAEAEA"
1232
+ })), _ellipse131 || (_ellipse131 = /*#__PURE__*/React.createElement("ellipse", {
1233
+ opacity: 0.86,
1234
+ cx: 174,
1235
+ cy: 121.5,
1236
+ rx: 101,
1237
+ ry: 101.5,
1238
+ fill: "#EAEAEA"
1239
+ })), _ellipse132 || (_ellipse132 = /*#__PURE__*/React.createElement("ellipse", {
1240
+ opacity: 0.87,
1241
+ cx: 174,
1242
+ cy: 121.5,
1243
+ rx: 101,
1244
+ ry: 101.5,
1245
+ fill: "#EAEAEA"
1246
+ })), _ellipse133 || (_ellipse133 = /*#__PURE__*/React.createElement("ellipse", {
1247
+ opacity: 0.87,
1248
+ cx: 174,
1249
+ cy: 121.5,
1250
+ rx: 101,
1251
+ ry: 101.5,
1252
+ fill: "#E9E9E9"
1253
+ })), _ellipse134 || (_ellipse134 = /*#__PURE__*/React.createElement("ellipse", {
1254
+ opacity: 0.88,
1255
+ cx: 174,
1256
+ cy: 121.5,
1257
+ rx: 101,
1258
+ ry: 101.5,
1259
+ fill: "#E9E9E9"
1260
+ })), _ellipse135 || (_ellipse135 = /*#__PURE__*/React.createElement("ellipse", {
1261
+ opacity: 0.88,
1262
+ cx: 174,
1263
+ cy: 121.5,
1264
+ rx: 101,
1265
+ ry: 101.5,
1266
+ fill: "#E9E9E9"
1267
+ })), _ellipse136 || (_ellipse136 = /*#__PURE__*/React.createElement("ellipse", {
1268
+ opacity: 0.89,
1269
+ cx: 174,
1270
+ cy: 121.5,
1271
+ rx: 101,
1272
+ ry: 101.5,
1273
+ fill: "#E9E9E9"
1274
+ })), _ellipse137 || (_ellipse137 = /*#__PURE__*/React.createElement("ellipse", {
1275
+ opacity: 0.89,
1276
+ cx: 175,
1277
+ cy: 121.5,
1278
+ rx: 100,
1279
+ ry: 101.5,
1280
+ fill: "#E9E9E9"
1281
+ })), _ellipse138 || (_ellipse138 = /*#__PURE__*/React.createElement("ellipse", {
1282
+ opacity: 0.9,
1283
+ cx: 175,
1284
+ cy: 121.5,
1285
+ rx: 100,
1286
+ ry: 101.5,
1287
+ fill: "#E9E9E9"
1288
+ })), _ellipse139 || (_ellipse139 = /*#__PURE__*/React.createElement("ellipse", {
1289
+ opacity: 0.9,
1290
+ cx: 175,
1291
+ cy: 121.5,
1292
+ rx: 100,
1293
+ ry: 101.5,
1294
+ fill: "#E9E9E9"
1295
+ })), _ellipse140 || (_ellipse140 = /*#__PURE__*/React.createElement("ellipse", {
1296
+ opacity: 0.91,
1297
+ cx: 175,
1298
+ cy: 121.5,
1299
+ rx: 100,
1300
+ ry: 101.5,
1301
+ fill: "#E9E9E9"
1302
+ })), _ellipse141 || (_ellipse141 = /*#__PURE__*/React.createElement("ellipse", {
1303
+ opacity: 0.91,
1304
+ cx: 175,
1305
+ cy: 121.5,
1306
+ rx: 100,
1307
+ ry: 101.5,
1308
+ fill: "#E8E8E8"
1309
+ })), _ellipse142 || (_ellipse142 = /*#__PURE__*/React.createElement("ellipse", {
1310
+ opacity: 0.92,
1311
+ cx: 175,
1312
+ cy: 121.5,
1313
+ rx: 100,
1314
+ ry: 101.5,
1315
+ fill: "#E8E8E8"
1316
+ })), _ellipse143 || (_ellipse143 = /*#__PURE__*/React.createElement("ellipse", {
1317
+ opacity: 0.92,
1318
+ cx: 175,
1319
+ cy: 121.5,
1320
+ rx: 100,
1321
+ ry: 101.5,
1322
+ fill: "#E8E8E8"
1323
+ })), _ellipse144 || (_ellipse144 = /*#__PURE__*/React.createElement("ellipse", {
1324
+ opacity: 0.93,
1325
+ cx: 175,
1326
+ cy: 121.5,
1327
+ rx: 100,
1328
+ ry: 101.5,
1329
+ fill: "#E8E8E8"
1330
+ })), _ellipse145 || (_ellipse145 = /*#__PURE__*/React.createElement("ellipse", {
1331
+ opacity: 0.93,
1332
+ cx: 175,
1333
+ cy: 121.5,
1334
+ rx: 100,
1335
+ ry: 101.5,
1336
+ fill: "#E8E8E8"
1337
+ })), _ellipse146 || (_ellipse146 = /*#__PURE__*/React.createElement("ellipse", {
1338
+ opacity: 0.94,
1339
+ cx: 175,
1340
+ cy: 121.5,
1341
+ rx: 100,
1342
+ ry: 101.5,
1343
+ fill: "#E8E8E8"
1344
+ })), _ellipse147 || (_ellipse147 = /*#__PURE__*/React.createElement("ellipse", {
1345
+ opacity: 0.94,
1346
+ cx: 175,
1347
+ cy: 121.5,
1348
+ rx: 100,
1349
+ ry: 101.5,
1350
+ fill: "#E8E8E8"
1351
+ })), _ellipse148 || (_ellipse148 = /*#__PURE__*/React.createElement("ellipse", {
1352
+ opacity: 0.95,
1353
+ cx: 175,
1354
+ cy: 121.5,
1355
+ rx: 100,
1356
+ ry: 101.5,
1357
+ fill: "#E8E8E8"
1358
+ })), _ellipse149 || (_ellipse149 = /*#__PURE__*/React.createElement("ellipse", {
1359
+ opacity: 0.95,
1360
+ cx: 175,
1361
+ cy: 121.5,
1362
+ rx: 100,
1363
+ ry: 101.5,
1364
+ fill: "#E7E7E7"
1365
+ })), _ellipse150 || (_ellipse150 = /*#__PURE__*/React.createElement("ellipse", {
1366
+ opacity: 0.96,
1367
+ cx: 175,
1368
+ cy: 121.5,
1369
+ rx: 100,
1370
+ ry: 101.5,
1371
+ fill: "#E7E7E7"
1372
+ })), _ellipse151 || (_ellipse151 = /*#__PURE__*/React.createElement("ellipse", {
1373
+ opacity: 0.96,
1374
+ cx: 175,
1375
+ cy: 121.5,
1376
+ rx: 100,
1377
+ ry: 101.5,
1378
+ fill: "#E7E7E7"
1379
+ })), _ellipse152 || (_ellipse152 = /*#__PURE__*/React.createElement("ellipse", {
1380
+ opacity: 0.97,
1381
+ cx: 175,
1382
+ cy: 121.5,
1383
+ rx: 100,
1384
+ ry: 101.5,
1385
+ fill: "#E7E7E7"
1386
+ })), _ellipse153 || (_ellipse153 = /*#__PURE__*/React.createElement("ellipse", {
1387
+ opacity: 0.97,
1388
+ cx: 175,
1389
+ cy: 121.5,
1390
+ rx: 100,
1391
+ ry: 101.5,
1392
+ fill: "#E7E7E7"
1393
+ })), _ellipse154 || (_ellipse154 = /*#__PURE__*/React.createElement("ellipse", {
1394
+ cx: 175,
1395
+ cy: 133.5,
1396
+ rx: 100,
1397
+ ry: 101.5,
1398
+ fill: "url(#full-search-empty_svg__a)"
1399
+ })), _path || (_path = /*#__PURE__*/React.createElement("path", {
1400
+ d: "m190.271 252 2.568-37.467c1.267-18.496-4.99-36.703-17.274-50.267-12.285-13.564-29.492-21.267-47.509-21.266H64.944c-18.017-.001-35.225 7.702-47.509 21.266C5.151 177.83-1.105 196.037.161 214.533L2.72 252",
1401
+ fill: "url(#full-search-empty_svg__b)"
1402
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
1403
+ d: "m86.91 180.369 17.495-4.74 25.051 92.068-17.496 4.741-25.05-92.069Z",
1404
+ fill: "#000"
1405
+ })), _ellipse155 || (_ellipse155 = /*#__PURE__*/React.createElement("ellipse", {
1406
+ cx: 83.5,
1407
+ cy: 113.5,
1408
+ rx: 72.5,
1409
+ ry: 69.5,
1410
+ fill: "#fff"
1411
+ })), _ellipse156 || (_ellipse156 = /*#__PURE__*/React.createElement("ellipse", {
1412
+ cx: 83.5,
1413
+ cy: 113.5,
1414
+ rx: 72.5,
1415
+ ry: 69.5,
1416
+ fill: "#fff"
1417
+ })), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
1418
+ d: "M81.179 224.9c.883 3.46 4.576 5.6 8.265 4.79-3.683.83-5.96 4.3-5.092 7.762.869 3.472 4.568 5.626 8.266 4.813-2.39.533-4.295 2.222-4.998 4.431-.704 2.209-.099 4.603 1.587 6.28 1.685 1.677 4.195 2.382 6.584 1.849l40.114-8.94c3.592-.904 5.767-4.327 4.908-7.724-.859-3.398-4.44-5.538-8.081-4.829 3.684-.833 5.96-4.305 5.092-7.77-.884-3.459-4.577-5.599-8.265-4.79 2.449-.477 4.43-2.166 5.169-4.411.739-2.245.121-4.69-1.614-6.383-1.735-1.692-4.312-2.366-6.729-1.758l-40.106 8.933c-3.676.83-5.952 4.288-5.1 7.747Z",
1419
+ fill: "url(#full-search-empty_svg__c)"
1420
+ })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
1421
+ d: "M84.928 218.132a6.7 6.7 0 0 1-3.088-13.039l39.208-9.285a6.7 6.7 0 0 1 3.088 13.039l-39.208 9.285Z",
1422
+ fill: "url(#full-search-empty_svg__d)"
1423
+ })), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
1424
+ d: "M159.973 7c-6.892 5.477-3.258 12.481-10.973 20.789-8.822 9.443-12.724 5.925-21.547 15.368-8.822 9.443-4.888 12.953-13.734 22.388A31.433 31.433 0 0 1 104 72.741c16.148 1.457 30.378 11.013 37.611 25.259a14.201 14.201 0 0 1 9.36-.168c7.992-8.923 4.505-12.497 13.108-21.7 8.814-9.444 12.724-5.925 21.539-15.368 8.268-8.852 8.423-9.595 12.382-19.494L159.973 7Z",
1425
+ fill: "#000"
1426
+ })), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
1427
+ d: "M85 56c-14.643.007-28.655 5.758-38.83 15.938C35.998 82.118 30.534 95.854 31.032 110",
1428
+ stroke: "#B3B3B3",
1429
+ strokeWidth: 2,
1430
+ strokeLinecap: "round"
1431
+ })), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
1432
+ fillRule: "evenodd",
1433
+ clipRule: "evenodd",
1434
+ d: "M84.477 104.421c4.1-8.226 12.387-13.407 21.44-13.405V91c9.12-.004 17.457 5.255 21.52 13.576a7.044 7.044 0 0 1 2.53-.474c3.921.133 7.033 3.411 7.033 7.41s-3.112 7.277-7.033 7.41h-.241C128.048 131.012 117.894 140 105.913 140c-11.981 0-22.135-8.988-23.813-21.078-2.594-.06-4.96-1.526-6.207-3.846a7.527 7.527 0 0 1 .164-7.402c1.349-2.26 3.778-3.616 6.373-3.556a7.364 7.364 0 0 1 2.047.303Zm41.649.772c-3.804-7.854-11.65-12.816-20.23-12.793l-.008.008c-8.52-.02-16.324 4.87-20.166 12.636l-.607 1.223-1.287-.388a5.693 5.693 0 0 0-1.618-.24c-3.149-.073-5.76 2.474-5.83 5.69-.072 3.215 2.422 5.881 5.57 5.954l1.352.066.186 1.364c1.564 11.403 11.116 19.887 22.392 19.887 11.275 0 20.827-8.484 22.391-19.887l.202-1.471 1.457.049h.194c3.07-.118 5.498-2.693 5.498-5.83s-2.428-5.712-5.498-5.83a5.523 5.523 0 0 0-1.983.372l-1.359.52-.656-1.33Z",
1435
+ fill: "#000"
1436
+ })), _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
1437
+ d: "M163.687 0c-6.581 5.71-3.072 13.012-10.47 21.673-8.425 9.828-12.151 6.16-20.599 16.005-8.448 9.845-4.668 13.504-13.116 23.34-8.448 9.837-14.624 7.42-23.041 17.264-7.522 8.786-10.758 15.188-10.44 25.633.055-.067.117-.117.18-.183 5.25-9.792 15.985-14.58 26.168-11.67 3.329.9 6.42 2.612 9.032 5.001 2.437 2.2 4.428 4.913 5.849 7.969a6.508 6.508 0 0 1 2.451-.483c2.769.005 5.279 1.746 6.417 4.451 6.939-6.91 10.72-4.701 18.375-13.646 8.424-9.844 4.667-13.504 13.115-23.34 8.448-9.837 12.151-6.16 20.576-16.005 7.895-9.228 8.043-10.003 11.816-20.323L163.687 0ZM97 111.676v3.64c0 .914-.665 1.662-1.5 1.684-.835-.022-1.5-.77-1.5-1.684v-3.673c.024-.915.709-1.643 1.545-1.643.814.048 1.452.783 1.455 1.676ZM112 111.676v3.639c0 .93-.671 1.684-1.5 1.684a1.38 1.38 0 0 1-1.071-.48 1.757 1.757 0 0 1-.429-1.204v-3.672c.02-.914.686-1.643 1.5-1.643.826 0 1.496.749 1.5 1.676Z",
1438
+ fill: "#000"
1439
+ })), _ellipse157 || (_ellipse157 = /*#__PURE__*/React.createElement("ellipse", {
1440
+ cx: 83.5,
1441
+ cy: 113.5,
1442
+ rx: 72.5,
1443
+ ry: 69.5,
1444
+ stroke: "#999",
1445
+ strokeWidth: 2,
1446
+ strokeLinecap: "round"
1447
+ })), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
1448
+ id: "full-search-empty_svg__a",
1449
+ x1: 54.826,
1450
+ y1: 179.686,
1451
+ x2: 132.02,
1452
+ y2: 427.687,
1453
+ gradientUnits: "userSpaceOnUse"
1454
+ }, /*#__PURE__*/React.createElement("stop", {
1455
+ stopColor: "#E6E6E6"
1456
+ }), /*#__PURE__*/React.createElement("stop", {
1457
+ offset: 0.1,
1458
+ stopColor: "#D7D7D7"
1459
+ }), /*#__PURE__*/React.createElement("stop", {
1460
+ offset: 0.3,
1461
+ stopColor: "#B1B1B1"
1462
+ }), /*#__PURE__*/React.createElement("stop", {
1463
+ offset: 0.56,
1464
+ stopColor: "#747474"
1465
+ }), /*#__PURE__*/React.createElement("stop", {
1466
+ offset: 0.72,
1467
+ stopColor: "#4D4D4D"
1468
+ }), /*#__PURE__*/React.createElement("stop", {
1469
+ offset: 0.98,
1470
+ stopColor: "#7C7C7C"
1471
+ }), /*#__PURE__*/React.createElement("stop", {
1472
+ offset: 1,
1473
+ stopColor: "gray"
1474
+ })), /*#__PURE__*/React.createElement("linearGradient", {
1475
+ id: "full-search-empty_svg__b",
1476
+ x1: -67.882,
1477
+ y1: 143.958,
1478
+ x2: -52.883,
1479
+ y2: 302.261,
1480
+ gradientUnits: "userSpaceOnUse"
1481
+ }, /*#__PURE__*/React.createElement("stop", {
1482
+ stopColor: "#E6E6E6"
1483
+ }), /*#__PURE__*/React.createElement("stop", {
1484
+ offset: 0.23,
1485
+ stopColor: "#BCBCBC"
1486
+ }), /*#__PURE__*/React.createElement("stop", {
1487
+ offset: 0.59,
1488
+ stopColor: "#818181"
1489
+ }), /*#__PURE__*/React.createElement("stop", {
1490
+ offset: 0.86,
1491
+ stopColor: "#5B5B5B"
1492
+ }), /*#__PURE__*/React.createElement("stop", {
1493
+ offset: 1,
1494
+ stopColor: "#4D4D4D"
1495
+ })), /*#__PURE__*/React.createElement("linearGradient", {
1496
+ id: "full-search-empty_svg__c",
1497
+ x1: 134.801,
1498
+ y1: 198.72,
1499
+ x2: 66.096,
1500
+ y2: 217.14,
1501
+ gradientUnits: "userSpaceOnUse"
1502
+ }, /*#__PURE__*/React.createElement("stop", {
1503
+ stopColor: "#E6E6E6"
1504
+ }), /*#__PURE__*/React.createElement("stop", {
1505
+ offset: 0.23,
1506
+ stopColor: "#BCBCBC"
1507
+ }), /*#__PURE__*/React.createElement("stop", {
1508
+ offset: 0.59,
1509
+ stopColor: "#818181"
1510
+ }), /*#__PURE__*/React.createElement("stop", {
1511
+ offset: 0.86,
1512
+ stopColor: "#5B5B5B"
1513
+ }), /*#__PURE__*/React.createElement("stop", {
1514
+ offset: 1,
1515
+ stopColor: "#4D4D4D"
1516
+ })), /*#__PURE__*/React.createElement("linearGradient", {
1517
+ id: "full-search-empty_svg__d",
1518
+ x1: 60.588,
1519
+ y1: 223.094,
1520
+ x2: 105.422,
1521
+ y2: 246.196,
1522
+ gradientUnits: "userSpaceOnUse"
1523
+ }, /*#__PURE__*/React.createElement("stop", {
1524
+ stopColor: "#E6E6E6"
1525
+ }), /*#__PURE__*/React.createElement("stop", {
1526
+ offset: 0.23,
1527
+ stopColor: "#BCBCBC"
1528
+ }), /*#__PURE__*/React.createElement("stop", {
1529
+ offset: 0.59,
1530
+ stopColor: "#818181"
1531
+ }), /*#__PURE__*/React.createElement("stop", {
1532
+ offset: 0.86,
1533
+ stopColor: "#5B5B5B"
1534
+ }), /*#__PURE__*/React.createElement("stop", {
1535
+ offset: 1,
1536
+ stopColor: "#4D4D4D"
1537
+ })))));
1538
+
1539
+ export { SvgFullSearchEmpty as default };