@capillarytech/creatives-library 8.0.204 → 8.0.206-alpha.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.
- package/package.json +1 -1
- package/v2Components/FormBuilder/constants.js +4 -0
- package/v2Components/FormBuilder/index.js +308 -10
- package/v2Containers/Assets/images/facebookIllustration.svg +23 -0
- package/v2Containers/Assets/images/lineIllustration.svg +87 -0
- package/v2Containers/Assets/images/viberIllustration.svg +60 -0
- package/v2Containers/BeeEditor/index.js +1 -1
- package/v2Containers/CreativesContainer/index.js +62 -17
- package/v2Containers/Email/index.js +3 -0
- package/v2Containers/MobilePush/Create/index.js +3 -3
- package/v2Containers/Templates/ChannelTypeIllustration.js +188 -0
- package/v2Containers/Templates/index.js +9 -113
- package/v2Containers/Templates/messages.js +24 -0
- package/v2Containers/Templates/tests/ChannelTypeIllustration.test.js +323 -0
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +130 -0
- package/v2Containers/Templates/tests/index.test.js +45 -83
package/package.json
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export const OUTBOUND = 'OUTBOUND';
|
|
2
|
+
export const ADD_LANGUAGE = 'addLanguage';
|
|
3
|
+
export const UPLOAD = 'upload';
|
|
4
|
+
export const USE_EDITOR = 'useEditor';
|
|
5
|
+
export const COPY_PRIMARY_LANGUAGE = 'copyPrimaryLanguage';
|
|
2
6
|
export const GLOBAL_CONVERT_OPTIONS = {
|
|
3
7
|
selectors: [
|
|
4
8
|
...[1, 2, 3, 4, 5, 6].map(level => ({
|
|
@@ -54,7 +54,7 @@ import { containsBase64Images } from '../../utils/content';
|
|
|
54
54
|
import { SMS, MOBILE_PUSH, LINE, ENABLE_AI_SUGGESTIONS,AI_CONTENT_BOT_DISABLED, EMAIL, LIQUID_SUPPORTED_CHANNELS, INAPP } from '../../v2Containers/CreativesContainer/constants';
|
|
55
55
|
import globalMessages from '../../v2Containers/Cap/messages';
|
|
56
56
|
import { convert } from 'html-to-text';
|
|
57
|
-
import { OUTBOUND } from './constants';
|
|
57
|
+
import { OUTBOUND, ADD_LANGUAGE, UPLOAD, USE_EDITOR, COPY_PRIMARY_LANGUAGE } from './constants';
|
|
58
58
|
import { GET_TRANSLATION_MAPPED } from '../../constants/unified';
|
|
59
59
|
import moment from 'moment';
|
|
60
60
|
import { CUSTOMER_BARCODE_TAG , COPY_OF, ENTRY_TRIGGER_TAG_REGEX} from '../../constants/unified';
|
|
@@ -139,8 +139,196 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
139
139
|
// Check if the liquid flow feature is supported and the channel is in the supported list.
|
|
140
140
|
this.liquidFlow = this.isLiquidFlowSupported.bind(this);
|
|
141
141
|
this.onSubmitWrapper = this.onSubmitWrapper.bind(this);
|
|
142
|
+
|
|
143
|
+
// Performance optimization: Debounced functions for high-frequency updates
|
|
144
|
+
this.debouncedUpdateFormData = _.debounce((data, val, event, skipStateUpdate) => {
|
|
145
|
+
this.performFormDataUpdate(data, val, event, skipStateUpdate);
|
|
146
|
+
}, 300);
|
|
147
|
+
this.debouncedValidation = _.debounce(this.validateForm.bind(this), 500);
|
|
148
|
+
|
|
149
|
+
// Memoized validation cache
|
|
150
|
+
this.validationCache = new Map();
|
|
151
|
+
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// Helper function to generate unique tab ID
|
|
155
|
+
generateUniqueTabId(formData, tabIndex) {
|
|
156
|
+
let id = _.uniqueId();
|
|
157
|
+
let validId = false;
|
|
158
|
+
|
|
159
|
+
while (!validId) {
|
|
160
|
+
validId = true;
|
|
161
|
+
for (let idx = 0; idx < formData[tabIndex].selectedLanguages.length; idx += 1) {
|
|
162
|
+
if (!formData[tabIndex]) {
|
|
163
|
+
continue;
|
|
164
|
+
}
|
|
165
|
+
if (id === formData[tabIndex][formData[tabIndex].selectedLanguages[idx]].tabKey) {
|
|
166
|
+
validId = false;
|
|
167
|
+
break;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
if (!validId) {
|
|
171
|
+
id = _.uniqueId();
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
return id;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Performance optimized form data update function
|
|
179
|
+
performFormDataUpdate(data, val, event, skipStateUpdate = false) {
|
|
180
|
+
|
|
181
|
+
// Use optimized state update instead of deep cloning
|
|
182
|
+
const formData = this.optimizedFormDataUpdate(data, val, event);
|
|
183
|
+
|
|
184
|
+
const tabIndex = this.state.currentTab - 1;
|
|
185
|
+
let currentTab = this.state.currentTab;
|
|
186
|
+
|
|
187
|
+
if (this.state.usingTabContainer && !val.standalone) {
|
|
188
|
+
const data1 = data;
|
|
189
|
+
if (event === ADD_LANGUAGE) {
|
|
190
|
+
const addLanguageType = this.props.addLanguageType;
|
|
191
|
+
if (addLanguageType === '') {
|
|
192
|
+
return;
|
|
193
|
+
}
|
|
194
|
+
const currentLang = formData[tabIndex].activeTab;
|
|
195
|
+
let baseTab;
|
|
196
|
+
|
|
197
|
+
switch (addLanguageType) {
|
|
198
|
+
case UPLOAD:
|
|
199
|
+
baseTab = _.cloneDeep(formData[tabIndex][currentLang]);
|
|
200
|
+
|
|
201
|
+
baseTab.iso_code = data.iso_code;
|
|
202
|
+
baseTab.lang_id = data.lang_id;
|
|
203
|
+
baseTab.language = data.language;
|
|
204
|
+
baseTab.tabKey = this.generateUniqueTabId(formData, tabIndex);
|
|
205
|
+
|
|
206
|
+
formData[tabIndex][data.iso_code] = baseTab;
|
|
207
|
+
formData[tabIndex].activeTab = data.iso_code;
|
|
208
|
+
formData[tabIndex].tabKey = baseTab.tabKey;
|
|
209
|
+
break;
|
|
210
|
+
case COPY_PRIMARY_LANGUAGE:
|
|
211
|
+
case USE_EDITOR:
|
|
212
|
+
baseTab = _.cloneDeep(formData[tabIndex][this.props.baseLanguage]);
|
|
213
|
+
|
|
214
|
+
baseTab.iso_code = data.iso_code;
|
|
215
|
+
baseTab.lang_id = data.lang_id;
|
|
216
|
+
baseTab.language = data.language;
|
|
217
|
+
baseTab.tabKey = this.generateUniqueTabId(formData, tabIndex);
|
|
218
|
+
|
|
219
|
+
formData[tabIndex].selectedLanguages.push(data.iso_code);
|
|
220
|
+
formData[tabIndex][data.iso_code] = baseTab;
|
|
221
|
+
formData[tabIndex].activeTab = data.iso_code;
|
|
222
|
+
formData[tabIndex].tabKey = baseTab.tabKey;
|
|
223
|
+
break;
|
|
224
|
+
case '':
|
|
225
|
+
return;
|
|
226
|
+
default:
|
|
227
|
+
break;
|
|
228
|
+
}
|
|
229
|
+
const that = this;
|
|
230
|
+
setTimeout(() => {
|
|
231
|
+
that.setState({tabKey: baseTab.tabKey});
|
|
232
|
+
}, 0);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
if (!this.props.isNewVersionFlow) {
|
|
236
|
+
formData[tabIndex][val.id] = data1;
|
|
237
|
+
} else if (this.props.isNewVersionFlow && event !== ADD_LANGUAGE && event !== "onContentChange") {
|
|
238
|
+
formData[tabIndex][this.props.baseLanguage][val.id] = data1;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
if (formData[tabIndex].base) {
|
|
242
|
+
if (!this.props.isNewVersionFlow) {
|
|
243
|
+
formData.base[val.id] = data1;
|
|
244
|
+
} else {
|
|
245
|
+
formData.base[data1.iso_code] = formData[tabIndex][data1.iso_code];
|
|
246
|
+
formData.base.tabKey = formData[tabIndex].tabKey;
|
|
247
|
+
formData.base.activeTab = formData[tabIndex].activeTab;
|
|
248
|
+
formData.base.selectedLanguages = formData[tabIndex].selectedLanguages;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
} else {
|
|
252
|
+
formData[val.id] = data;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if (this.props.isNewVersionFlow) {
|
|
256
|
+
if (event === 'onSelect' && data === 'New Version') {
|
|
257
|
+
this.callChildEvent(data, val, 'addVersion', event);
|
|
258
|
+
} else if (event === 'onSelect' && data !== 'New Version') {
|
|
259
|
+
currentTab = _.findIndex(this.state.formData['template-version-options'], { key: data}) + 1;
|
|
260
|
+
this.setState({currentTab, tabKey: formData[`${currentTab - 1}`].tabKey}, () => {
|
|
261
|
+
val.injectedEvents[event].call(this, this.state.formData['template-version-options'][currentTab - 1].key, formData, val);
|
|
262
|
+
});
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
if (event === 'onContentChange') {
|
|
266
|
+
// Content change handling
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// Only update state if not already updated (for immediate UI feedback)
|
|
271
|
+
if (!skipStateUpdate) {
|
|
272
|
+
this.setState({formData}, () => {
|
|
273
|
+
if (this.props.startValidation) {
|
|
274
|
+
this.debouncedValidation();
|
|
275
|
+
}
|
|
276
|
+
});
|
|
277
|
+
} else {
|
|
278
|
+
// Just trigger validation if state was already updated
|
|
279
|
+
if (this.props.startValidation) {
|
|
280
|
+
this.debouncedValidation();
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
if (event && val.injectedEvents[event]) {
|
|
285
|
+
if (event === "onRowClick") {
|
|
286
|
+
val.injectedEvents[event].call(this, data);
|
|
287
|
+
} else if (this.props.isNewVersionFlow && event !== 'onSelect') {
|
|
288
|
+
if (event === ADD_LANGUAGE) {
|
|
289
|
+
val.injectedEvents[event].call(this, data, formData, val);
|
|
290
|
+
this.setState({currentEventVal: {}, currentEvent: {}, currentEventData: {}});
|
|
291
|
+
} else {
|
|
292
|
+
val.injectedEvents[event].call(this, true, formData, val);
|
|
293
|
+
}
|
|
294
|
+
} else if (!this.props.isNewVersionFlow) {
|
|
295
|
+
val.injectedEvents[event].call(this, true, formData, val);
|
|
296
|
+
}
|
|
297
|
+
} else if (val.injectedEvents && val.injectedEvents.onChange) {
|
|
298
|
+
val.injectedEvents.onChange.call(this, true, formData, val);
|
|
299
|
+
}
|
|
142
300
|
|
|
301
|
+
if (!((event === 'onSelect' && data === 'New Version') || event === 'onContentChange')) {
|
|
302
|
+
this.props.onChange(formData, this.state.tabCount, currentTab, val);
|
|
303
|
+
}
|
|
143
304
|
}
|
|
305
|
+
|
|
306
|
+
// Optimized form data update - only clone what's necessary
|
|
307
|
+
optimizedFormDataUpdate(data, val, event) {
|
|
308
|
+
const currentFormData = this.state.formData;
|
|
309
|
+
|
|
310
|
+
// For simple field updates, use spread operator instead of deep clone
|
|
311
|
+
if (!this.state.usingTabContainer || val.standalone) {
|
|
312
|
+
return {
|
|
313
|
+
...currentFormData,
|
|
314
|
+
[val.id]: data
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
// For tab container updates, only clone the affected tab
|
|
319
|
+
const tabIndex = this.state.currentTab - 1;
|
|
320
|
+
const updatedFormData = { ...currentFormData };
|
|
321
|
+
|
|
322
|
+
if (updatedFormData[tabIndex]) {
|
|
323
|
+
updatedFormData[tabIndex] = {
|
|
324
|
+
...updatedFormData[tabIndex],
|
|
325
|
+
[val.id]: data
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
return updatedFormData;
|
|
330
|
+
}
|
|
331
|
+
|
|
144
332
|
isLiquidFlowSupported = () => {
|
|
145
333
|
return Boolean(LIQUID_SUPPORTED_CHANNELS.includes(this.props?.schema?.channel?.toUpperCase()) && hasLiquidSupportFeature());
|
|
146
334
|
}
|
|
@@ -269,7 +457,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
269
457
|
}
|
|
270
458
|
this.setState({formData: nextProps.formData, currentLangTab}, () => {
|
|
271
459
|
if (nextProps?.isNewVersionFlow && !this.state?.formData[this.state?.currentTab - 1][this.state?.formData[this.state?.currentTab - 1]?.activeTab]?.tabKey) {
|
|
272
|
-
|
|
460
|
+
this.resetTabKeys(nextProps.formData, nextProps.tabCount, false, true);
|
|
273
461
|
}
|
|
274
462
|
if (type === 'embedded' || ( this.props.schema.channel && this.props.schema.channel.toUpperCase() === 'EMAIL')) {
|
|
275
463
|
// Don't run validation if we're in Test & Preview mode
|
|
@@ -401,7 +589,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
401
589
|
const event = this.state.currentEvent;
|
|
402
590
|
if (!_.isEmpty(this.state.currentEvent)) {
|
|
403
591
|
switch (event) {
|
|
404
|
-
case
|
|
592
|
+
case ADD_LANGUAGE:
|
|
405
593
|
this.updateFormData(this.state.currentEventData, this.state.currentEventVal, this.state.currentEvent);
|
|
406
594
|
break;
|
|
407
595
|
default:
|
|
@@ -916,7 +1104,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
916
1104
|
}
|
|
917
1105
|
}
|
|
918
1106
|
if(_.isEmpty(androidData) && this.state.currentTab == 2){
|
|
919
|
-
this.setState({androidValid, iosValid}, () => {
|
|
1107
|
+
this.setState({androidValid, iosValid, errorData}, () => {
|
|
920
1108
|
this.props.setModalContent('ios');
|
|
921
1109
|
});
|
|
922
1110
|
// modal.body = "Android template is not configured. Save without Android template";
|
|
@@ -931,7 +1119,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
931
1119
|
}
|
|
932
1120
|
}
|
|
933
1121
|
if(_.isEmpty(iosData) && this.state.currentTab == 1){
|
|
934
|
-
this.setState({androidValid, iosValid}, () => {
|
|
1122
|
+
this.setState({androidValid, iosValid, errorData}, () => {
|
|
935
1123
|
this.props.setModalContent('android');
|
|
936
1124
|
});
|
|
937
1125
|
// modal.body = "IOS template is not configured, Save without IOS template";
|
|
@@ -2027,6 +2215,62 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2027
2215
|
}
|
|
2028
2216
|
|
|
2029
2217
|
updateFormData(data, val, event) {
|
|
2218
|
+
|
|
2219
|
+
// Check if this is a high-frequency input field that should be optimized
|
|
2220
|
+
const isHighFrequencyField = val && (
|
|
2221
|
+
val.id === 'template-name' ||
|
|
2222
|
+
val.id === 'template-subject'
|
|
2223
|
+
);
|
|
2224
|
+
|
|
2225
|
+
if (isHighFrequencyField && !event) {
|
|
2226
|
+
// For high-frequency fields: immediate UI update + debounced expensive operations
|
|
2227
|
+
this.updateFormDataOptimized(data, val, event);
|
|
2228
|
+
return;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
// For non-high-frequency fields or special events, use immediate update
|
|
2232
|
+
this.performFormDataUpdate(data, val, event);
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
// Optimized update for high-frequency fields
|
|
2236
|
+
updateFormDataOptimized(data, val, event) {
|
|
2237
|
+
// 1. Immediate UI update - update the field value instantly
|
|
2238
|
+
this.updateFieldValueImmediately(data, val);
|
|
2239
|
+
|
|
2240
|
+
// 2. Debounce expensive operations (validation, parent updates) - skip state update since we already did it
|
|
2241
|
+
this.debouncedUpdateFormData(data, val, event, true);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
// Update field value immediately for UI feedback
|
|
2245
|
+
updateFieldValueImmediately(data, val) {
|
|
2246
|
+
const currentFormData = this.state.formData;
|
|
2247
|
+
let updatedFormData;
|
|
2248
|
+
|
|
2249
|
+
if (!this.state.usingTabContainer || val.standalone) {
|
|
2250
|
+
// Simple field update
|
|
2251
|
+
updatedFormData = {
|
|
2252
|
+
...currentFormData,
|
|
2253
|
+
[val.id]: data
|
|
2254
|
+
};
|
|
2255
|
+
} else {
|
|
2256
|
+
// Tab container update
|
|
2257
|
+
const tabIndex = this.state.currentTab - 1;
|
|
2258
|
+
updatedFormData = { ...currentFormData };
|
|
2259
|
+
|
|
2260
|
+
if (updatedFormData[tabIndex]) {
|
|
2261
|
+
updatedFormData[tabIndex] = {
|
|
2262
|
+
...updatedFormData[tabIndex],
|
|
2263
|
+
[val.id]: data
|
|
2264
|
+
};
|
|
2265
|
+
}
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
// Update state immediately for UI feedback
|
|
2269
|
+
this.setState({ formData: updatedFormData });
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
// Legacy updateFormData function - kept for backward compatibility
|
|
2273
|
+
updateFormDataLegacy(data, val, event) {
|
|
2030
2274
|
const formData = _.cloneDeep(this.state.formData);
|
|
2031
2275
|
|
|
2032
2276
|
const tabIndex = this.state.currentTab - 1;
|
|
@@ -2034,7 +2278,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2034
2278
|
|
|
2035
2279
|
if (this.state.usingTabContainer && !val.standalone) {
|
|
2036
2280
|
const data1 = data;
|
|
2037
|
-
if (event ===
|
|
2281
|
+
if (event === ADD_LANGUAGE) {
|
|
2038
2282
|
const addLanguageType = this.props.addLanguageType;
|
|
2039
2283
|
if (addLanguageType === '') {
|
|
2040
2284
|
return;
|
|
@@ -2117,7 +2361,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2117
2361
|
|
|
2118
2362
|
if (!this.props.isNewVersionFlow) {
|
|
2119
2363
|
formData[tabIndex][val.id] = data1;
|
|
2120
|
-
} else if (this.props.isNewVersionFlow && event !==
|
|
2364
|
+
} else if (this.props.isNewVersionFlow && event !== ADD_LANGUAGE && event !== "onContentChange") {
|
|
2121
2365
|
formData[tabIndex][this.props.baseLanguage][val.id] = data1;
|
|
2122
2366
|
}
|
|
2123
2367
|
|
|
@@ -2164,7 +2408,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2164
2408
|
if (event === "onRowClick") {
|
|
2165
2409
|
val.injectedEvents[event].call(this, data);
|
|
2166
2410
|
} else if (this.props.isNewVersionFlow && event !== 'onSelect') {
|
|
2167
|
-
if (event ===
|
|
2411
|
+
if (event === ADD_LANGUAGE) {
|
|
2168
2412
|
val.injectedEvents[event].call(this, data, formData, val);
|
|
2169
2413
|
this.setState({currentEventVal: {}, currentEvent: {}, currentEventData: {}});
|
|
2170
2414
|
} else {
|
|
@@ -2186,6 +2430,57 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2186
2430
|
hasClass(element, className) {
|
|
2187
2431
|
return (` ${element.className} `).indexOf(` ${className} `) > -1;
|
|
2188
2432
|
}
|
|
2433
|
+
|
|
2434
|
+
// Handle field blur for validation
|
|
2435
|
+
handleFieldBlur = (e, val) => {
|
|
2436
|
+
// Trigger validation on blur for high-frequency fields
|
|
2437
|
+
if (val && (val.id === 'template-name' || val.id === 'template-subject')) {
|
|
2438
|
+
this.debouncedValidation();
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
// Memoized validation for specific fields
|
|
2443
|
+
getMemoizedValidation = (fieldId, fieldValue) => {
|
|
2444
|
+
const cacheKey = `${fieldId}_${fieldValue}`;
|
|
2445
|
+
|
|
2446
|
+
if (this.validationCache.has(cacheKey)) {
|
|
2447
|
+
return this.validationCache.get(cacheKey);
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
// Perform validation logic here
|
|
2451
|
+
const isValid = this.performFieldValidation(fieldId, fieldValue);
|
|
2452
|
+
this.validationCache.set(cacheKey, isValid);
|
|
2453
|
+
|
|
2454
|
+
// Clear cache if it gets too large
|
|
2455
|
+
if (this.validationCache.size > 100) {
|
|
2456
|
+
this.validationCache.clear();
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
return isValid;
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
// Perform validation for a specific field
|
|
2463
|
+
performFieldValidation = (fieldId, fieldValue) => {
|
|
2464
|
+
// Basic validation logic for template-name and template-subject
|
|
2465
|
+
if (fieldId === 'template-name' || fieldId === 'template-subject') {
|
|
2466
|
+
return fieldValue && fieldValue.trim().length > 0;
|
|
2467
|
+
}
|
|
2468
|
+
return true;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
// Cleanup debounced functions on component unmount
|
|
2472
|
+
componentWillUnmount() {
|
|
2473
|
+
if (this.debouncedUpdateFormData) {
|
|
2474
|
+
this.debouncedUpdateFormData.cancel();
|
|
2475
|
+
}
|
|
2476
|
+
if (this.debouncedValidation) {
|
|
2477
|
+
this.debouncedValidation.cancel();
|
|
2478
|
+
}
|
|
2479
|
+
// Clear validation cache
|
|
2480
|
+
if (this.validationCache) {
|
|
2481
|
+
this.validationCache.clear();
|
|
2482
|
+
}
|
|
2483
|
+
}
|
|
2189
2484
|
allowAddSecondaryCta = (val) => {
|
|
2190
2485
|
if (val.fieldsCount > 0) {
|
|
2191
2486
|
const errorData = _.cloneDeep(this.state.errorData);
|
|
@@ -2601,6 +2896,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2601
2896
|
label={val.label}
|
|
2602
2897
|
autosize={val.autosize ? val.autosizeParams : false}
|
|
2603
2898
|
onChange={(e) => this.updateFormData(e.target.value, val)}
|
|
2899
|
+
onBlur={(e) => this.handleFieldBlur(e, val)}
|
|
2604
2900
|
style={val.style ? val.style : {}}
|
|
2605
2901
|
defaultValue={messageContent || ''}
|
|
2606
2902
|
value={messageContent || ""}
|
|
@@ -2682,6 +2978,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
2682
2978
|
style={val.style ? val.style : {}}
|
|
2683
2979
|
placeholder={val.placeholder}
|
|
2684
2980
|
onChange={(e) => this.updateFormData(e.target.value, val)}
|
|
2981
|
+
onBlur={(e) => this.handleFieldBlur(e, val)}
|
|
2685
2982
|
defaultValue={isVersionEnable ? this.state.formData[`${this.state.currentTab - 1}`][val.id] : this.state.formData[val.id]}
|
|
2686
2983
|
value={value || ""}
|
|
2687
2984
|
disabled={val.disabled}
|
|
@@ -3166,6 +3463,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
3166
3463
|
style={val.style ? val.style : {}}
|
|
3167
3464
|
placeholder={val.placeholder}
|
|
3168
3465
|
onChange={(e) => this.updateFormData(e.target.value, val)}
|
|
3466
|
+
onBlur={(e) => this.handleFieldBlur(e, val)}
|
|
3169
3467
|
value={value || ""}
|
|
3170
3468
|
defaultValue={isVersionEnable ? this.state.formData[`${this.state.currentTab - 1}`][val.id] : this.state.formData[val.id]}
|
|
3171
3469
|
disabled={val.disabled}
|
|
@@ -3295,7 +3593,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
3295
3593
|
</CapColumn>
|
|
3296
3594
|
);
|
|
3297
3595
|
break;
|
|
3298
|
-
case
|
|
3596
|
+
case UPLOAD:
|
|
3299
3597
|
const {
|
|
3300
3598
|
formData: {
|
|
3301
3599
|
[`${self.state.currentTab - 1}`]: {
|
|
@@ -3743,7 +4041,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
3743
4041
|
id={val.id}
|
|
3744
4042
|
popOverList={this.props.supportedLanguages}
|
|
3745
4043
|
excludeList={this.state.formData[`${this.state.currentTab - 1}`].selectedLanguages}
|
|
3746
|
-
handlePopOverClick={(data) => this.handleAddLanguageFlow(data, val,
|
|
4044
|
+
handlePopOverClick={(data) => this.handleAddLanguageFlow(data, val, ADD_LANGUAGE)}
|
|
3747
4045
|
visible={this.state.customPopoverVisible}
|
|
3748
4046
|
onVisibleChange={this.handleCustomPopoverVisibleChange}
|
|
3749
4047
|
/>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg width="152" height="152" viewBox="0 0 152 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="152" height="152" fill="white"/>
|
|
3
|
+
<path d="M124.09 99.0008C123.03 99.7708 121.39 102.561 125.7 103.361C125.7 103.361 129.01 104.181 128.87 100.361C128.73 96.5408 125.15 98.2408 124.09 99.0008Z" fill="#FEC52E"/>
|
|
4
|
+
<path d="M140.67 50.7102C140.67 50.6402 140.58 50.5502 140.53 50.4702C134.14 38.8202 122.23 29.3302 108 23.2302C107.89 23.1719 107.777 23.1217 107.66 23.0802C91.5798 16.2702 72.5698 13.8002 55.1698 17.4402C54.6998 17.5302 54.1698 17.6302 53.7498 17.7502C49.0118 18.8212 44.4021 20.3969 39.9998 22.4502C28.4698 27.8502 20.3498 35.4501 14.9998 44.2602C7.62981 56.3702 5.54981 70.7702 7.10981 84.9302C11.1098 83.9902 38.6298 77.2202 47.6298 69.2502C57.3298 60.6602 71.0498 60.7102 76.1598 69.8102C81.5698 79.4301 60.9298 89.4802 58.1598 93.9102C55.3898 98.3402 51.6298 122.1 25.9998 127.37C37.6298 137.67 52.5498 138.72 65.3898 131.94C76.3098 126.17 88.7998 117.57 100.59 109.38C108.6 103.956 117.057 99.2221 125.87 95.2302C129.067 93.7854 132.033 91.8746 134.67 89.5602C141.78 83.1802 151.19 70.1602 140.67 50.7102Z" fill="#FEC52E"/>
|
|
5
|
+
<path d="M118.58 106.629C114.99 103.439 103.89 109.259 103.28 114.629C102.83 118.519 108.96 125.439 116.07 118.559C116.07 118.599 123.22 110.739 118.58 106.629Z" fill="#FEC52E"/>
|
|
6
|
+
<path d="M58.1599 93.9103C60.9299 89.4803 81.5699 79.4303 76.1599 69.8103C71.0499 60.7103 57.3299 60.6603 47.6299 69.2503C38.6299 77.2503 11.0599 83.9903 7.10986 84.9303C7.89828 91.8772 9.48889 98.7094 11.8499 105.29C15.3199 115.01 20.2499 122.29 25.9599 127.37C51.6299 122.1 55.4499 98.2303 58.1599 93.9103Z" fill="white"/>
|
|
7
|
+
<path d="M55.1802 64.1509C55.1802 64.1509 51.8902 64.1509 53.1802 63.0409C54.4702 61.9309 57.8102 63.4909 57.8102 63.4909C57.8102 63.4909 53.7102 60.2709 55.3102 60.1909C56.9102 60.1109 60.0802 63.3409 60.0802 63.3409L55.1802 64.1509Z" fill="white"/>
|
|
8
|
+
<g clip-path="url(#clip0_317_247873)">
|
|
9
|
+
<path d="M74.4171 114.489C66.724 115.142 59.4624 110.296 57.4126 102.646C55.135 94.1461 60.2261 85.3279 68.7263 83.0503C77.2264 80.7727 86.0446 85.8639 88.3222 94.364C90.3721 102.014 86.5062 109.841 79.5171 113.122L78.4808 112.654L75.0807 113.565L74.4171 114.489Z" fill="url(#paint0_linear_317_247873)"/>
|
|
10
|
+
<path d="M80.0543 101.217L79.5903 96.7036L75.4947 97.801L74.6872 94.7873C74.3559 93.5509 74.5711 92.4994 76.4257 92.0025L78.4348 91.4641L77.3788 87.5231C76.2556 87.6585 74.9778 87.8352 73.896 88.1251C70.3414 89.0775 68.4483 91.9038 69.4836 95.7675L70.3947 99.1676L66.531 100.203L67.6905 104.53L71.5542 103.495L74.4736 114.391C75.3651 114.317 76.2358 114.167 77.0858 113.939C77.9358 113.711 78.7651 113.406 79.5737 113.024L76.6543 102.128L80.0543 101.217Z" fill="white"/>
|
|
11
|
+
</g>
|
|
12
|
+
<path d="M69.27 81.7706C69.27 81.7706 70.75 76.7706 76.06 76.6406C76.06 76.6406 79.49 81.7106 75.5 86.2706C71.51 90.8306 74.91 84.6906 69.27 81.7706Z" fill="#EA4CB5"/>
|
|
13
|
+
<path d="M65.7298 74.0191C66.2545 74.0191 66.6798 73.5938 66.6798 73.0691C66.6798 72.5445 66.2545 72.1191 65.7298 72.1191C65.2051 72.1191 64.7798 72.5445 64.7798 73.0691C64.7798 73.5938 65.2051 74.0191 65.7298 74.0191Z" fill="black"/>
|
|
14
|
+
<defs>
|
|
15
|
+
<linearGradient id="paint0_linear_317_247873" x1="76.7212" y1="112.885" x2="68.7255" y2="83.0444" gradientUnits="userSpaceOnUse">
|
|
16
|
+
<stop stop-color="#0062E0"/>
|
|
17
|
+
<stop offset="1" stop-color="#19AFFF"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<clipPath id="clip0_317_247873">
|
|
20
|
+
<rect width="32" height="32" fill="white" transform="translate(53.2715 87.1914) rotate(-15)"/>
|
|
21
|
+
</clipPath>
|
|
22
|
+
</defs>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="240" height="240" fill="white"/>
|
|
3
|
+
<mask id="mask0_317_246586" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="11" y="23" width="217" height="193">
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0527 23.6855H227.552V215.936H11.0527V23.6855Z" fill="white"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_317_246586)">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M227.543 148.585C227.191 135.892 219.58 125.281 204.337 111.052C198.067 105.209 194 99.35 191.137 93.4905C189.211 89.5195 187.828 85.5468 186.699 81.5568C185.433 77.06 184.498 72.5237 183.467 67.9668C180.157 53.3868 173.188 35.1642 135.419 26.8905C101.175 19.3747 66.0942 34.2105 35.1594 69.661C26.2036 79.9005 19.2152 91.7379 14.9915 104.646C11.2921 115.918 9.09101 129.506 13.4931 141.186C23.1089 166.709 56.2431 164.393 71.1563 170.019C86.0489 175.646 98.3126 196.184 108.593 203.155C118.853 210.104 148.678 224.685 183.798 208.781C218.917 192.874 227.873 161.278 227.543 148.585ZM183.661 31.9321C182.415 29.1879 179.65 26.8905 175.252 28.2137C175.252 28.2137 167.815 29.8684 170.208 34.2295C172.624 38.5716 177.432 42.5821 181.501 42.8726C185.549 43.1458 184.927 34.6779 183.661 31.9321ZM160.962 23.9126C160.962 23.9126 156.601 25.1189 157.496 27.8253C158.392 30.53 163.259 31.0179 164.758 28.7395C166.258 26.4816 164.973 22.7237 160.962 23.9126Z" fill="#103344"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M80.6007 97.4436C80.6007 98.3025 79.8713 99.0004 78.9713 99.0004C78.0713 99.0004 77.3418 98.3025 77.3418 97.4436C77.3418 96.5846 78.0713 95.8867 78.9713 95.8867C79.8713 95.8867 80.6007 96.5846 80.6007 97.4436Z" fill="#06C755"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M124.893 69.9662C124.893 71.0099 123.998 71.8562 122.891 71.8562C121.787 71.8562 120.892 71.0099 120.892 69.9662C120.892 68.9225 121.787 68.0762 122.891 68.0762C123.998 68.0762 124.893 68.9225 124.893 69.9662Z" fill="#06C755"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M117.17 85.8621C117.17 86.7937 116.361 87.5484 115.363 87.5484C114.367 87.5484 113.559 86.7937 113.559 85.8621C113.559 84.9305 114.367 84.1758 115.363 84.1758C116.361 84.1758 117.17 84.9305 117.17 85.8621Z" fill="#06C755"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.0276 53.8348C89.0276 54.7663 88.2191 55.5211 87.2212 55.5211C86.2265 55.5211 85.4165 54.7663 85.4165 53.8348C85.4165 52.9032 86.2265 52.1484 87.2212 52.1484C88.2191 52.1484 89.0276 52.9032 89.0276 53.8348Z" fill="#06C755"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g clip-path="url(#clip0_317_246586)">
|
|
14
|
+
<path d="M169.784 104.245L157.054 100.834C154.168 100.061 151.201 101.773 150.428 104.66L147.017 117.39C146.243 120.276 147.956 123.243 150.843 124.016L163.573 127.427C166.459 128.201 169.426 126.488 170.199 123.601L173.61 110.871C174.383 107.985 172.671 105.018 169.784 104.245Z" fill="#06C755"/>
|
|
15
|
+
<path d="M168.333 115.108C169.26 111.649 166.547 107.906 162.285 106.764C158.023 105.622 153.802 107.507 152.875 110.966C152.044 114.066 154.101 117.401 157.68 118.886C157.918 119.008 158.231 119.211 158.259 119.449C158.285 119.666 158.176 119.965 158.097 120.155C158.097 120.155 157.861 120.676 157.81 120.787C157.723 120.973 157.449 121.51 158.368 121.384C159.286 121.258 163.521 119.955 165.642 118.523C167.091 117.595 167.963 116.49 168.333 115.108Z" fill="white"/>
|
|
16
|
+
<path d="M165.226 116.416L163.053 115.834C163.014 115.823 162.982 115.798 162.962 115.764C162.942 115.729 162.936 115.688 162.947 115.65L163.85 112.278C163.861 112.239 163.886 112.207 163.92 112.187C163.955 112.167 163.996 112.161 164.034 112.172L166.207 112.754C166.246 112.764 166.279 112.789 166.298 112.824C166.318 112.858 166.324 112.899 166.313 112.938L166.167 113.486C166.156 113.525 166.131 113.557 166.097 113.577C166.062 113.597 166.021 113.602 165.983 113.592L164.507 113.197L164.355 113.765L165.83 114.161C165.869 114.171 165.902 114.196 165.921 114.231C165.941 114.265 165.947 114.306 165.936 114.345L165.788 114.898C165.778 114.936 165.753 114.969 165.718 114.989C165.684 115.009 165.643 115.014 165.604 115.004L164.129 114.609L163.976 115.178L165.452 115.574C165.49 115.584 165.523 115.609 165.543 115.643C165.563 115.678 165.568 115.719 165.558 115.757L165.411 116.305C165.407 116.325 165.398 116.343 165.386 116.359C165.375 116.376 165.36 116.389 165.342 116.4C165.325 116.41 165.306 116.417 165.286 116.42C165.266 116.423 165.246 116.421 165.226 116.416Z" fill="#06C755"/>
|
|
17
|
+
<path d="M157.194 114.264C157.232 114.274 157.273 114.269 157.308 114.249C157.342 114.229 157.367 114.196 157.378 114.158L157.524 113.61C157.535 113.572 157.529 113.531 157.509 113.496C157.49 113.462 157.457 113.437 157.418 113.426L155.943 113.031L156.661 110.351C156.671 110.312 156.666 110.271 156.646 110.237C156.626 110.202 156.593 110.177 156.555 110.167L156.004 110.019C155.966 110.009 155.925 110.014 155.89 110.034C155.856 110.054 155.831 110.087 155.821 110.125L154.917 113.496C154.907 113.535 154.912 113.576 154.932 113.61C154.952 113.644 154.985 113.67 155.023 113.68L157.197 114.262L157.194 114.264Z" fill="#06C755"/>
|
|
18
|
+
<path d="M159.484 110.946L158.936 110.799C158.855 110.777 158.771 110.826 158.749 110.908L157.845 114.281C157.823 114.362 157.872 114.446 157.953 114.468L158.501 114.615C158.583 114.637 158.667 114.588 158.688 114.507L159.592 111.134C159.614 111.052 159.566 110.968 159.484 110.946Z" fill="#06C755"/>
|
|
19
|
+
<path d="M163.216 111.946L162.668 111.799C162.63 111.788 162.589 111.794 162.554 111.814C162.52 111.834 162.495 111.866 162.484 111.905L161.947 113.909L160.963 111.411C160.961 111.405 160.958 111.398 160.955 111.392L160.948 111.381L160.942 111.373L160.938 111.372L160.931 111.364L160.927 111.363L160.92 111.356L160.915 111.355L160.907 111.353L160.902 111.351L160.893 111.349L160.887 111.347L160.879 111.345L160.873 111.343L160.865 111.341L160.306 111.192C160.268 111.181 160.227 111.187 160.193 111.207C160.158 111.227 160.133 111.259 160.123 111.298L159.219 114.671C159.209 114.709 159.214 114.75 159.234 114.785C159.254 114.819 159.287 114.844 159.325 114.854L159.873 115.001C159.912 115.012 159.953 115.006 159.987 114.986C160.022 114.966 160.047 114.934 160.057 114.895L160.599 112.872L161.585 115.372C161.592 115.39 161.601 115.406 161.613 115.42L161.62 115.428L161.625 115.429L161.631 115.435L161.638 115.437L161.643 115.438L161.653 115.441C161.665 115.448 161.678 115.453 161.691 115.457L162.236 115.603C162.274 115.613 162.315 115.607 162.35 115.588C162.384 115.568 162.409 115.535 162.42 115.496L163.321 112.132C163.327 112.113 163.328 112.093 163.326 112.073C163.324 112.053 163.317 112.034 163.308 112.017C163.298 111.999 163.285 111.984 163.269 111.972C163.253 111.96 163.235 111.951 163.216 111.946Z" fill="#06C755"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g clip-path="url(#clip1_317_246586)">
|
|
22
|
+
<path d="M148.569 42.4297H141.979C140.485 42.4297 139.274 43.6409 139.274 45.1349V51.7244C139.274 53.2185 140.485 54.4297 141.979 54.4297H148.569C150.063 54.4297 151.274 53.2185 151.274 51.7244V45.1349C151.274 43.6409 150.063 42.4297 148.569 42.4297Z" fill="#06C755"/>
|
|
23
|
+
<path d="M149.274 47.8639C149.274 46.0737 147.479 44.6172 145.273 44.6172C143.067 44.6172 141.272 46.0737 141.272 47.8639C141.272 49.4689 142.697 50.8133 144.618 51.0672C144.748 51.0953 144.926 51.1531 144.97 51.2644C145.011 51.3657 144.997 51.5243 144.983 51.6263C144.983 51.6263 144.936 51.9087 144.926 51.9687C144.909 52.0699 144.846 52.3643 145.273 52.1847C145.7 52.0051 147.577 50.8279 148.416 49.8616C148.996 49.2259 149.274 48.5794 149.274 47.8639Z" fill="white"/>
|
|
24
|
+
<path d="M147.942 48.8976H146.817C146.797 48.8976 146.778 48.8897 146.764 48.8756C146.75 48.8615 146.742 48.8425 146.742 48.8226V47.077C146.742 47.0571 146.75 47.038 146.764 47.0239C146.778 47.0099 146.797 47.002 146.817 47.002H147.942C147.962 47.002 147.981 47.0099 147.995 47.0239C148.009 47.038 148.017 47.0571 148.017 47.077V47.3608C148.017 47.3807 148.009 47.3998 147.995 47.4139C147.981 47.4279 147.962 47.4358 147.942 47.4358H147.178V47.7302H147.942C147.962 47.7302 147.981 47.7381 147.995 47.7522C148.009 47.7662 148.017 47.7853 148.017 47.8052V48.0917C148.017 48.1116 148.009 48.1307 147.995 48.1447C147.981 48.1588 147.962 48.1667 147.942 48.1667H147.178V48.4615H147.942C147.962 48.4615 147.981 48.4694 147.995 48.4834C148.009 48.4975 148.017 48.5166 148.017 48.5365V48.82C148.018 48.83 148.016 48.8401 148.012 48.8495C148.009 48.8589 148.003 48.8674 147.996 48.8747C147.989 48.8819 147.981 48.8877 147.972 48.8916C147.962 48.8956 147.952 48.8976 147.942 48.8976Z" fill="#06C755"/>
|
|
25
|
+
<path d="M143.785 48.898C143.805 48.898 143.824 48.8901 143.838 48.876C143.852 48.8619 143.86 48.8428 143.86 48.823V48.5395C143.86 48.5196 143.852 48.5005 143.838 48.4864C143.824 48.4724 143.805 48.4645 143.785 48.4645H143.021V47.077C143.021 47.0571 143.013 47.038 142.999 47.0239C142.985 47.0099 142.966 47.002 142.946 47.002H142.661C142.641 47.002 142.622 47.0099 142.608 47.0239C142.594 47.038 142.586 47.0571 142.586 47.077V48.8218C142.586 48.8417 142.594 48.8608 142.608 48.8749C142.622 48.8889 142.641 48.8968 142.661 48.8968H143.786L143.785 48.898Z" fill="#06C755"/>
|
|
26
|
+
<path d="M144.461 47H144.178C144.135 47 144.101 47.0343 144.101 47.0765V48.8225C144.101 48.8647 144.135 48.899 144.178 48.899H144.461C144.503 48.899 144.538 48.8647 144.538 48.8225V47.0765C144.538 47.0343 144.503 47 144.461 47Z" fill="#06C755"/>
|
|
27
|
+
<path d="M146.393 47H146.11C146.09 47 146.071 47.0079 146.057 47.022C146.042 47.036 146.035 47.0551 146.035 47.075V48.1122L145.236 47.0334C145.234 47.0305 145.232 47.0279 145.229 47.0255L145.225 47.021L145.221 47.0176H145.219L145.214 47.0146H145.212L145.208 47.0124H145.205H145.201H145.199H145.194H145.191H145.187H145.184H145.18H144.89C144.871 47.0124 144.851 47.0203 144.837 47.0343C144.823 47.0484 144.815 47.0675 144.815 47.0874V48.8334C144.815 48.8533 144.823 48.8723 144.837 48.8864C144.851 48.9005 144.871 48.9084 144.89 48.9084H145.174C145.194 48.9084 145.213 48.9005 145.227 48.8864C145.241 48.8723 145.249 48.8533 145.249 48.8334V47.786L146.049 48.866C146.054 48.8736 146.061 48.8803 146.069 48.8855L146.073 48.8885H146.075L146.079 48.8904H146.083H146.086H146.091C146.097 48.892 146.104 48.8929 146.111 48.893H146.393C146.413 48.893 146.432 48.8851 146.446 48.871C146.46 48.857 146.468 48.8379 146.468 48.818V47.0765C146.468 47.0665 146.466 47.0566 146.463 47.0473C146.459 47.0381 146.454 47.0296 146.447 47.0225C146.44 47.0154 146.431 47.0097 146.422 47.0058C146.413 47.002 146.403 47 146.393 47Z" fill="#06C755"/>
|
|
28
|
+
</g>
|
|
29
|
+
<g clip-path="url(#clip2_317_246586)">
|
|
30
|
+
<path d="M140.411 80.8895L138.289 81.458C137.808 81.5869 137.522 82.0814 137.651 82.5624L138.22 84.6841C138.349 85.1651 138.843 85.4506 139.324 85.3217L141.446 84.7532C141.927 84.6243 142.212 84.1299 142.084 83.6488L141.515 81.5272C141.386 81.0461 140.892 80.7606 140.411 80.8895Z" fill="#06C755"/>
|
|
31
|
+
<path d="M141.106 82.5777C140.952 82.0013 140.249 81.6872 139.538 81.8775C138.828 82.0678 138.376 82.6916 138.53 83.268C138.669 83.7848 139.243 84.0947 139.884 84.0107C139.928 84.0085 139.99 84.0118 140.014 84.0438C140.036 84.073 140.045 84.1252 140.05 84.1592C140.05 84.1592 140.059 84.2542 140.061 84.2744C140.064 84.3085 140.069 84.4087 140.191 84.314C140.313 84.2194 140.816 83.6784 141.003 83.2949C141.135 83.0402 141.168 82.8081 141.106 82.5777Z" fill="white"/>
|
|
32
|
+
<path d="M140.767 83.0263L140.405 83.1234C140.399 83.1251 140.392 83.1242 140.386 83.1209C140.38 83.1176 140.376 83.1121 140.374 83.1057L140.224 82.5437C140.222 82.5373 140.223 82.5305 140.226 82.5247C140.23 82.519 140.235 82.5148 140.241 82.5131L140.604 82.416C140.61 82.4143 140.617 82.4152 140.623 82.4185C140.628 82.4218 140.633 82.4273 140.634 82.4337L140.659 82.5251C140.66 82.5315 140.66 82.5383 140.656 82.5441C140.653 82.5498 140.647 82.554 140.641 82.5557L140.395 82.6216L140.421 82.7164L140.666 82.6505C140.673 82.6488 140.68 82.6497 140.685 82.653C140.691 82.6563 140.695 82.6618 140.697 82.6682L140.722 82.7604C140.724 82.7668 140.723 82.7736 140.719 82.7794C140.716 82.7851 140.711 82.7893 140.704 82.791L140.458 82.8569L140.484 82.9518L140.73 82.8859C140.736 82.8842 140.743 82.8851 140.749 82.8884C140.754 82.8917 140.758 82.8972 140.76 82.9036L140.785 82.9949C140.786 82.9981 140.786 83.0015 140.786 83.0048C140.785 83.0082 140.784 83.0114 140.783 83.0143C140.781 83.0173 140.779 83.0198 140.776 83.0219C140.773 83.024 140.77 83.0255 140.767 83.0263Z" fill="#06C755"/>
|
|
33
|
+
<path d="M139.428 83.384C139.435 83.3823 139.44 83.3781 139.444 83.3723C139.447 83.3666 139.448 83.3598 139.446 83.3534L139.422 83.2621C139.42 83.2557 139.416 83.2502 139.41 83.2469C139.404 83.2436 139.397 83.2427 139.391 83.2444L139.145 83.3103L139.025 82.8636C139.024 82.8572 139.02 82.8517 139.014 82.8484C139.008 82.8451 139.001 82.8442 138.995 82.8459L138.903 82.8705C138.897 82.8722 138.891 82.8764 138.888 82.8821C138.885 82.8879 138.884 82.8947 138.885 82.9011L139.036 83.4629C139.038 83.4693 139.042 83.4748 139.048 83.4781C139.053 83.4814 139.06 83.4823 139.067 83.4806L139.429 83.3835L139.428 83.384Z" fill="#06C755"/>
|
|
34
|
+
<path d="M139.483 82.715L139.391 82.7395C139.378 82.7431 139.37 82.7571 139.373 82.7707L139.524 83.3329C139.528 83.3465 139.542 83.3546 139.555 83.3509L139.646 83.3265C139.66 83.3228 139.668 83.3088 139.664 83.2952L139.514 82.7331C139.51 82.7195 139.496 82.7114 139.483 82.715Z" fill="#06C755"/>
|
|
35
|
+
<path d="M140.104 82.5475L140.013 82.5719C140.006 82.5737 140.001 82.5779 139.998 82.5836C139.994 82.5893 139.993 82.5962 139.995 82.6026L140.085 82.9365L139.734 82.6581C139.734 82.6573 139.733 82.6566 139.732 82.6561L139.73 82.655L139.728 82.6543L139.728 82.6545L139.726 82.6539L139.725 82.6541L139.724 82.6537L139.723 82.6539L139.722 82.6543L139.721 82.6545L139.719 82.6549L139.718 82.6552L139.717 82.6555L139.716 82.6558L139.714 82.6562L139.621 82.6811C139.615 82.6828 139.61 82.687 139.606 82.6928C139.603 82.6985 139.602 82.7053 139.604 82.7117L139.754 83.2739C139.756 83.2803 139.76 83.2858 139.766 83.2891C139.772 83.2924 139.779 83.2933 139.785 83.2916L139.876 83.2671C139.883 83.2654 139.888 83.2612 139.892 83.2554C139.895 83.2497 139.896 83.2429 139.894 83.2365L139.804 82.8992L140.154 83.178C140.157 83.18 140.159 83.1815 140.162 83.1826L140.164 83.1831L140.165 83.1829L140.166 83.1832L140.167 83.1829L140.168 83.1827L140.17 83.1822C140.172 83.1822 140.174 83.1819 140.177 83.1813L140.267 83.157C140.274 83.1553 140.279 83.1511 140.283 83.1453C140.286 83.1396 140.287 83.1328 140.285 83.1264L140.135 82.5656C140.134 82.5624 140.133 82.5594 140.131 82.5567C140.129 82.554 140.126 82.5518 140.123 82.5501C140.12 82.5484 140.117 82.5473 140.114 82.5469C140.111 82.5464 140.107 82.5466 140.104 82.5475Z" fill="#06C755"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g clip-path="url(#clip3_317_246586)">
|
|
38
|
+
<path d="M111.098 47H108.902C108.404 47 108 47.4037 108 47.9018V50.0983C108 50.5963 108.404 51 108.902 51H111.098C111.596 51 112 50.5963 112 50.0983V47.9018C112 47.4037 111.596 47 111.098 47Z" fill="#06C755"/>
|
|
39
|
+
<path d="M111.333 48.8108C111.333 48.214 110.735 47.7285 110 47.7285C109.264 47.7285 108.666 48.214 108.666 48.8108C108.666 49.3458 109.141 49.7939 109.781 49.8785C109.825 49.8879 109.884 49.9071 109.899 49.9443C109.912 49.978 109.908 50.0309 109.903 50.0649C109.903 50.0649 109.888 50.159 109.884 50.179C109.878 50.2128 109.857 50.3109 110 50.251C110.142 50.1911 110.768 49.7988 111.047 49.4766C111.241 49.2648 111.333 49.0493 111.333 48.8108Z" fill="white"/>
|
|
40
|
+
<path d="M110.889 49.1553H110.514C110.508 49.1553 110.501 49.1527 110.497 49.148C110.492 49.1433 110.489 49.1369 110.489 49.1303V48.5484C110.489 48.5418 110.492 48.5354 110.497 48.5308C110.501 48.5261 110.508 48.5234 110.514 48.5234H110.889C110.896 48.5234 110.902 48.5261 110.907 48.5308C110.912 48.5354 110.914 48.5418 110.914 48.5484V48.6431C110.914 48.6497 110.912 48.6561 110.907 48.6607C110.902 48.6654 110.896 48.6681 110.889 48.6681H110.635V48.7662H110.889C110.896 48.7662 110.902 48.7688 110.907 48.7735C110.912 48.7782 110.914 48.7846 110.914 48.7912V48.8867C110.914 48.8933 110.912 48.8997 110.907 48.9044C110.902 48.9091 110.896 48.9117 110.889 48.9117H110.635V49.0099H110.889C110.896 49.0099 110.902 49.0126 110.907 49.0173C110.912 49.0219 110.914 49.0283 110.914 49.0349V49.1294C110.914 49.1328 110.914 49.1361 110.913 49.1393C110.911 49.1424 110.91 49.1453 110.907 49.1477C110.905 49.1501 110.902 49.152 110.899 49.1533C110.896 49.1546 110.893 49.1553 110.889 49.1553Z" fill="#06C755"/>
|
|
41
|
+
<path d="M109.504 49.1554C109.51 49.1554 109.517 49.1528 109.521 49.1481C109.526 49.1434 109.529 49.1371 109.529 49.1304V49.0359C109.529 49.0293 109.526 49.0229 109.521 49.0183C109.517 49.0136 109.51 49.0109 109.504 49.0109H109.249V48.5484C109.249 48.5418 109.246 48.5354 109.242 48.5308C109.237 48.5261 109.231 48.5234 109.224 48.5234H109.129C109.122 48.5234 109.116 48.5261 109.111 48.5308C109.107 48.5354 109.104 48.5418 109.104 48.5484V49.1301C109.104 49.1367 109.107 49.1431 109.111 49.1477C109.116 49.1524 109.122 49.1551 109.129 49.1551H109.504L109.504 49.1554Z" fill="#06C755"/>
|
|
42
|
+
<path d="M109.729 48.5234H109.634C109.62 48.5234 109.609 48.5349 109.609 48.5489V49.1309C109.609 49.145 109.62 49.1564 109.634 49.1564H109.729C109.743 49.1564 109.754 49.145 109.754 49.1309V48.5489C109.754 48.5349 109.743 48.5234 109.729 48.5234Z" fill="#06C755"/>
|
|
43
|
+
<path d="M110.373 48.5234H110.279C110.272 48.5234 110.266 48.5261 110.261 48.5308C110.256 48.5354 110.254 48.5418 110.254 48.5484V48.8942L109.987 48.5346C109.987 48.5336 109.986 48.5327 109.985 48.5319L109.984 48.5304L109.982 48.5293H109.982L109.98 48.5283H109.979L109.978 48.5276H109.977H109.976H109.975H109.973H109.972H109.971H109.97H109.969H109.872C109.866 48.5276 109.859 48.5302 109.854 48.5349C109.85 48.5396 109.847 48.5459 109.847 48.5526V49.1346C109.847 49.1412 109.85 49.1476 109.854 49.1522C109.859 49.1569 109.866 49.1596 109.872 49.1596H109.967C109.973 49.1596 109.98 49.1569 109.984 49.1522C109.989 49.1476 109.992 49.1412 109.992 49.1346V48.7854L110.258 49.1454C110.26 49.148 110.262 49.1502 110.265 49.1519L110.266 49.1529H110.267L110.268 49.1536H110.27H110.271H110.272C110.275 49.1541 110.277 49.1544 110.279 49.1544H110.373C110.38 49.1544 110.386 49.1518 110.391 49.1471C110.395 49.1424 110.398 49.1361 110.398 49.1294V48.5489C110.398 48.5456 110.398 48.5423 110.396 48.5392C110.395 48.5361 110.393 48.5333 110.391 48.5309C110.389 48.5286 110.386 48.5267 110.383 48.5254C110.38 48.5241 110.376 48.5234 110.373 48.5234Z" fill="#06C755"/>
|
|
44
|
+
</g>
|
|
45
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.8893 108.936C42.8893 109.168 42.7015 109.356 42.4693 109.356C42.2388 109.356 42.0509 109.168 42.0509 108.936C42.0509 108.705 42.2388 108.516 42.4693 108.516C42.7015 108.516 42.8893 108.705 42.8893 108.936Z" fill="#06C755"/>
|
|
46
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.0896 95.1664C64.0896 95.4491 63.8591 95.678 63.578 95.678C63.2954 95.678 63.0665 95.4491 63.0665 95.1664C63.0665 94.8838 63.2954 94.6548 63.578 94.6548C63.8591 94.6548 64.0896 94.8838 64.0896 95.1664Z" fill="#06C755"/>
|
|
47
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.3569 69.0121C69.3569 69.429 69.019 69.7669 68.6022 69.7669C68.1869 69.7669 67.849 69.429 67.849 69.0121C67.849 68.5953 68.1869 68.2574 68.6022 68.2574C69.019 68.2574 69.3569 68.5953 69.3569 69.0121Z" fill="#06C755"/>
|
|
48
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M86.0501 76.1176C86.0501 76.5344 85.7122 76.8723 85.2953 76.8723C84.8785 76.8723 84.5406 76.5344 84.5406 76.1176C84.5406 75.7008 84.8785 75.3629 85.2953 75.3629C85.7122 75.3629 86.0501 75.7008 86.0501 76.1176Z" fill="#06C755"/>
|
|
49
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.3285 86.2553C53.3285 86.8031 52.8848 87.2468 52.3369 87.2468C51.7874 87.2468 51.3438 86.8031 51.3438 86.2553C51.3438 85.7074 51.7874 85.2637 52.3369 85.2637C52.8848 85.2637 53.3285 85.7074 53.3285 86.2553Z" fill="#06C755"/>
|
|
50
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.849 143.008C134.039 138.111 137.626 139.676 138.608 140.429C140.17 141.626 139.567 143.499 134.786 147.898C130.309 152.014 126.403 155.036 121.125 159.864C111.045 169.081 108.643 172.698 108.643 172.698C108.643 172.698 107.239 170.9 111.922 163.845C111.922 163.845 113.372 161.068 116.438 157.616C116.438 157.616 128.397 146.773 130.849 143.008Z" fill="white"/>
|
|
51
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M95.2304 107.1C88.9178 107.1 83.3047 110.054 79.8689 115.309C75.6262 121.794 75.6957 130.314 80.0504 137.545C87.2094 149.432 118.986 157.41 121.82 158.1L128.052 152.495C126.915 149.009 113.633 109.325 97.9352 107.277C97.0225 107.159 96.1194 107.1 95.2304 107.1ZM122.039 158.964L121.84 158.916C120.421 158.583 87.001 150.618 79.3731 137.953C74.862 130.459 74.7989 121.617 79.2073 114.878C83.2983 108.624 90.3389 105.494 98.0362 106.494C105.134 107.419 112.488 115.462 119.892 130.396C125.376 141.455 128.849 152.389 128.883 152.498L128.958 152.741L122.039 158.964Z" fill="white"/>
|
|
52
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.3698 169.885C88.103 169.885 85.1156 169.301 82.8309 167.804C76.2198 163.473 75.4051 158.866 75.5045 156.505C75.6309 153.578 77.2666 150.918 79.7756 149.568C84.9672 146.765 107.83 153.974 108.801 154.281C109.008 154.347 109.123 154.57 109.057 154.777C108.992 154.983 108.771 155.099 108.563 155.034C108.328 154.96 85.0509 147.629 80.1514 150.261C77.8856 151.483 76.4077 153.888 76.294 156.54C76.2009 158.733 76.9809 163.028 83.2635 167.144C92.7924 173.386 116.151 162.572 117.415 161.978L121.303 158.441C121.468 158.294 121.717 158.305 121.862 158.468C122.008 158.628 121.997 158.877 121.836 159.024L117.904 162.602C117.874 162.627 117.842 162.649 117.808 162.667C117.026 163.041 102.558 169.885 91.3698 169.885Z" fill="white"/>
|
|
53
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.028 152.567L90.4038 107.557L90.7133 107.312L126.337 152.324L126.028 152.567Z" fill="white"/>
|
|
54
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M123.554 156.032C102.932 135.601 77.4949 120.206 77.2407 120.053L77.4444 119.715C77.6986 119.868 103.178 135.286 123.832 155.751L123.554 156.032Z" fill="white"/>
|
|
55
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M80.5991 165.668C80.5012 165.668 80.416 165.595 80.4033 165.496C80.3891 165.387 80.4649 165.289 80.5723 165.275L118.424 160.422L77.3086 153.215C77.2012 153.197 77.1286 153.095 77.1475 152.987C77.1665 152.88 77.2628 152.812 77.3765 152.826L119.774 160.258C119.871 160.276 119.94 160.361 119.937 160.457C119.935 160.555 119.861 160.636 119.766 160.648L80.6244 165.666C80.6165 165.668 80.607 165.668 80.5991 165.668Z" fill="white"/>
|
|
56
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.984 120.836L112.719 120.542C112.953 120.331 113.207 120.122 113.472 119.922L113.709 120.236C113.453 120.429 113.21 120.631 112.984 120.836ZM111.281 122.92L110.94 122.72C111.208 122.262 111.522 121.821 111.878 121.409L112.176 121.665C111.837 122.06 111.537 122.481 111.281 122.92ZM110.307 125.425L109.921 125.341C110.037 124.809 110.198 124.291 110.401 123.801L110.766 123.953C110.573 124.42 110.417 124.915 110.307 125.425ZM109.691 128.137C109.684 127.968 109.68 127.798 109.68 127.624C109.68 127.258 109.699 126.89 109.732 126.535L110.125 126.571C110.092 126.915 110.074 127.27 110.074 127.624C110.074 127.791 110.079 127.956 110.085 128.121L109.691 128.137ZM110.1 130.907C109.97 130.382 109.868 129.853 109.797 129.334L110.188 129.282C110.258 129.787 110.357 130.303 110.482 130.812L110.1 130.907ZM111.023 133.556C111.011 133.534 110.734 132.975 110.433 132.059L110.807 131.936C111.101 132.822 111.372 133.375 111.375 133.381L111.023 133.556Z" fill="white"/>
|
|
57
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M101.047 109.756L100.693 109.581C101.13 108.709 101.503 108.21 101.519 108.191L101.833 108.428C101.83 108.433 101.465 108.921 101.047 109.756ZM100.099 112.301L99.7173 112.207C99.8452 111.695 100.009 111.18 100.205 110.678L100.572 110.824C100.382 111.308 100.224 111.807 100.099 112.301ZM99.7536 114.99L99.3589 114.987C99.362 114.461 99.4031 113.923 99.482 113.388L99.872 113.446C99.7963 113.962 99.7568 114.482 99.7536 114.99ZM99.6936 117.771C99.5626 117.251 99.4694 116.719 99.4141 116.19L99.8073 116.151C99.8594 116.661 99.951 117.174 100.076 117.676L99.6936 117.771ZM100.701 120.389C100.45 119.91 100.23 119.418 100.049 118.924L100.42 118.788C100.595 119.265 100.808 119.741 101.052 120.204L100.701 120.389Z" fill="white"/>
|
|
58
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.9652 122.41L89.9194 122.019C90.4578 121.953 90.9852 121.93 91.5268 121.96L91.5078 122.355C90.9899 122.327 90.4831 122.349 89.9652 122.41ZM94.1257 122.939C93.652 122.745 93.1562 122.595 92.6526 122.497L92.7299 122.109C93.2589 122.213 93.7783 122.371 94.2741 122.575L94.1257 122.939ZM87.3441 123.083L87.2004 122.715C87.7104 122.516 88.2252 122.354 88.732 122.234L88.8236 122.616C88.3357 122.734 87.8368 122.892 87.3441 123.083ZM84.9457 124.345L84.7104 124.026C84.7326 124.011 85.2426 123.634 86.1015 123.205L86.2783 123.557C85.4526 123.97 84.9504 124.34 84.9457 124.345ZM96.3694 124.452C95.8815 124.056 95.4726 123.745 95.122 123.5L95.3447 123.176C95.7062 123.426 96.1231 123.743 96.6189 124.147L96.3694 124.452ZM98.4504 126.271C98.0368 125.894 97.6436 125.541 97.2726 125.216L97.5315 124.921C97.9057 125.246 98.3004 125.601 98.7173 125.979L98.4504 126.271ZM100.462 128.166C100.07 127.785 99.6883 127.424 99.3189 127.075L99.5889 126.787C99.9599 127.136 100.344 127.503 100.737 127.881L100.462 128.166ZM102.439 130.105C102.057 129.726 101.683 129.353 101.313 128.993L101.589 128.712C101.959 129.074 102.335 129.445 102.717 129.824L102.439 130.105ZM104.389 132.066C103.997 131.668 103.634 131.301 103.277 130.94L103.557 130.664C103.915 131.024 104.277 131.39 104.646 131.764L104.389 132.066ZM106.318 134.047L105.218 132.912L105.5 132.639L106.603 133.773L106.318 134.047ZM108.235 136.045C107.869 135.661 107.504 135.28 107.141 134.903L107.427 134.628C107.79 135.007 108.155 135.389 108.521 135.773L108.235 136.045ZM110.139 138.055L109.051 136.905L109.339 136.634L110.427 137.783L110.139 138.055ZM112.034 140.073L110.951 138.918L111.24 138.647L112.321 139.801L112.034 140.073ZM113.918 142.098L112.841 140.938L113.13 140.669L114.208 141.83L113.918 142.098ZM115.795 144.134L114.723 142.97L115.012 142.703L116.086 143.865L115.795 144.134ZM117.668 146.172L116.597 145.007L116.889 144.738L117.958 145.907L117.668 146.172ZM119.533 148.221L118.467 147.048L118.757 146.785L119.823 147.956L119.533 148.221ZM121.391 150.276L120.328 149.101L120.622 148.836L121.685 150.01L121.391 150.276ZM123.246 152.336C122.932 151.984 122.578 151.591 122.187 151.158L122.48 150.893C122.872 151.326 123.226 151.722 123.542 152.074L123.246 152.336ZM124.871 154.157C124.852 154.133 124.558 153.803 124.042 153.225L124.337 152.963C125.256 153.993 125.256 153.993 125.203 154.109L124.844 153.948L125.023 154.029L124.871 154.157Z" fill="white"/>
|
|
59
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.8156 138.366C91.364 138.318 90.9156 138.293 90.4813 138.293L90.2634 138.295L90.2556 137.9L90.4813 137.898C90.9282 137.898 91.3908 137.924 91.8566 137.974L91.8156 138.366ZM87.5982 138.707L87.4813 138.331C87.985 138.175 88.514 138.061 89.0556 137.99L89.1061 138.382C88.5882 138.449 88.0813 138.558 87.5982 138.707ZM94.4871 138.901C93.9787 138.756 93.4687 138.634 92.9698 138.539L93.044 138.151C93.554 138.249 94.0766 138.372 94.5961 138.522L94.4871 138.901ZM97.0561 139.845C96.5445 139.618 96.0566 139.421 95.6034 139.256L95.7361 138.887C96.1971 139.053 96.6961 139.253 97.2171 139.484L97.0561 139.845ZM85.2029 139.915L84.9661 139.597C85.3971 139.278 85.8613 138.999 86.3524 138.768L86.5198 139.125C86.0556 139.345 85.6103 139.612 85.2029 139.915ZM99.5287 141.063C99.0503 140.807 98.5829 140.565 98.1266 140.343L98.2987 139.987C98.7598 140.213 99.2319 140.455 99.715 140.714L99.5287 141.063ZM83.4092 141.876L83.0571 141.696C83.0698 141.672 83.3666 141.096 84.0519 140.396L84.3345 140.671C83.6934 141.326 83.4108 141.871 83.4092 141.876ZM101.924 142.425C101.464 142.149 101.01 141.885 100.561 141.629L100.756 141.288C101.207 141.543 101.665 141.811 102.126 142.086L101.924 142.425ZM104.269 143.886C103.822 143.597 103.375 143.316 102.934 143.043L103.143 142.706C103.585 142.983 104.032 143.265 104.482 143.553L104.269 143.886ZM106.572 145.411C106.135 145.113 105.698 144.821 105.26 144.532L105.477 144.202C105.917 144.491 106.356 144.786 106.793 145.084L106.572 145.411ZM108.843 146.99C108.415 146.687 107.981 146.382 107.548 146.082L107.772 145.758C108.208 146.058 108.641 146.362 109.072 146.669L108.843 146.99ZM111.085 148.605C110.665 148.296 110.239 147.988 109.809 147.677L110.038 147.356C110.469 147.667 110.897 147.978 111.32 148.288L111.085 148.605ZM113.303 150.257C112.891 149.944 112.468 149.63 112.04 149.311L112.276 148.992C112.703 149.313 113.128 149.63 113.542 149.943L113.303 150.257ZM115.501 151.942C115.096 151.626 114.677 151.305 114.248 150.977L114.488 150.663C114.917 150.991 115.336 151.315 115.743 151.629L115.501 151.942ZM117.677 153.648C117.284 153.336 116.869 153.009 116.436 152.671L116.679 152.358C117.112 152.698 117.529 153.026 117.922 153.339L117.677 153.648ZM119.836 155.384C119.468 155.082 119.056 154.751 118.606 154.389L118.852 154.081C119.303 154.443 119.717 154.777 120.085 155.079L119.836 155.384ZM122.019 157.124C121.942 157.124 121.876 157.068 121.822 157.023C121.681 156.904 121.312 156.595 120.754 156.137L121.006 155.832C121.564 156.292 121.934 156.603 122.076 156.719L122.136 156.77L122.011 156.923L122.134 157.079C122.095 157.111 122.056 157.124 122.019 157.124Z" fill="white"/>
|
|
60
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M99.0577 159.298C98.5303 159.284 98.0029 159.274 97.4819 159.269L97.485 158.875C98.0092 158.879 98.5382 158.889 99.0687 158.903L99.0577 159.298ZM94.7266 159.301L94.714 158.906C95.2319 158.889 95.7608 158.878 96.2977 158.873L96.3008 159.268C95.7671 159.273 95.2414 159.284 94.7266 159.301ZM101.816 159.402C101.293 159.377 100.768 159.353 100.24 159.333L100.256 158.938C100.785 158.958 101.312 158.982 101.837 159.007L101.816 159.402ZM91.9824 159.47L91.9429 159.078C92.4529 159.028 92.9819 158.99 93.525 158.958L93.5487 159.353C93.0103 159.385 92.4861 159.423 91.9824 159.47ZM104.573 159.569L104.249 159.547C103.837 159.52 103.42 159.492 102.997 159.467L103.022 159.072C103.444 159.099 103.862 159.127 104.276 159.153L104.6 159.175L104.573 159.569ZM107.327 159.79C106.82 159.748 106.294 159.704 105.752 159.659L105.784 159.265C106.327 159.309 106.853 159.353 107.361 159.396L107.327 159.79ZM89.2761 159.88L89.1892 159.495C89.6724 159.388 90.1998 159.293 90.7571 159.214L90.8124 159.606C90.2645 159.683 89.7482 159.776 89.2761 159.88ZM110.077 160.057C109.588 160.005 109.062 159.953 108.505 159.899L108.544 159.508C109.101 159.561 109.627 159.614 110.118 159.666L110.077 160.057ZM112.823 160.367C112.409 160.316 111.88 160.251 111.253 160.184L111.296 159.79C111.925 159.86 112.457 159.923 112.87 159.975L112.823 160.367ZM86.7024 160.728L86.5319 160.371C86.985 160.157 87.4903 159.964 88.0319 159.798L88.1471 160.176C87.6245 160.335 87.1382 160.521 86.7024 160.728ZM84.5614 162.298L84.2582 162.045C84.5866 161.652 84.9971 161.289 85.4771 160.967L85.6982 161.294C85.2482 161.595 84.8661 161.935 84.5614 162.298ZM83.3061 164.739C83.3061 164.739 83.2935 164.652 83.2935 164.497C83.2935 164.181 83.3471 163.679 83.6045 163.092L83.9661 163.25C83.7245 163.804 83.6882 164.268 83.6882 164.497C83.6882 164.608 83.6961 164.674 83.6961 164.68L83.3061 164.739Z" fill="white"/>
|
|
61
|
+
<g clip-path="url(#clip4_317_246586)">
|
|
62
|
+
<path d="M147.713 148.687L124.375 154.941C119.083 156.358 115.943 161.797 117.361 167.089L123.614 190.427C125.032 195.719 130.471 198.859 135.763 197.441L159.101 191.188C164.393 189.77 167.533 184.331 166.115 179.039L159.861 155.701C158.444 150.409 153.005 147.269 147.713 148.687Z" fill="#06C755"/>
|
|
63
|
+
<path d="M155.367 167.265C153.668 160.924 145.929 157.469 138.116 159.563C130.302 161.656 125.328 168.518 127.027 174.858C128.55 180.543 134.873 183.952 141.917 183.028C142.405 183.004 143.089 183.04 143.352 183.392C143.592 183.713 143.693 184.288 143.742 184.662C143.742 184.662 143.844 185.706 143.865 185.928C143.899 186.304 143.955 187.406 145.297 186.365C146.64 185.323 152.17 179.373 154.225 175.154C155.675 172.352 156.046 169.799 155.367 167.265Z" fill="white"/>
|
|
64
|
+
<path d="M151.634 172.19L147.649 173.258C147.579 173.277 147.504 173.267 147.44 173.23C147.377 173.194 147.331 173.134 147.312 173.063L145.656 166.881C145.637 166.81 145.647 166.735 145.683 166.672C145.72 166.609 145.78 166.563 145.85 166.544L149.835 165.476C149.905 165.458 149.98 165.467 150.043 165.504C150.106 165.54 150.152 165.6 150.171 165.671L150.441 166.676C150.46 166.747 150.45 166.822 150.413 166.885C150.377 166.948 150.317 166.994 150.246 167.013L147.541 167.738L147.82 168.781L150.526 168.056C150.596 168.037 150.671 168.047 150.734 168.083C150.797 168.12 150.844 168.18 150.862 168.25L151.134 169.265C151.153 169.335 151.143 169.41 151.107 169.474C151.07 169.537 151.01 169.583 150.94 169.602L148.234 170.327L148.514 171.371L151.22 170.646C151.29 170.627 151.365 170.637 151.428 170.673C151.491 170.71 151.538 170.77 151.556 170.84L151.825 171.844C151.836 171.879 151.84 171.917 151.836 171.953C151.832 171.99 151.821 172.026 151.803 172.058C151.785 172.09 151.761 172.119 151.732 172.141C151.703 172.164 151.669 172.181 151.634 172.19Z" fill="#06C755"/>
|
|
65
|
+
<path d="M136.908 176.136C136.979 176.117 137.039 176.071 137.075 176.008C137.112 175.945 137.122 175.87 137.103 175.799L136.834 174.795C136.815 174.725 136.769 174.665 136.705 174.628C136.642 174.592 136.567 174.582 136.497 174.601L133.791 175.326L132.475 170.411C132.456 170.341 132.41 170.281 132.346 170.244C132.283 170.208 132.208 170.198 132.138 170.217L131.128 170.487C131.058 170.506 130.998 170.552 130.961 170.616C130.925 170.679 130.915 170.754 130.934 170.824L132.59 177.004C132.609 177.075 132.655 177.135 132.718 177.171C132.781 177.208 132.856 177.217 132.927 177.199L136.911 176.131L136.908 176.136Z" fill="#06C755"/>
|
|
66
|
+
<path d="M137.502 168.768L136.498 169.037C136.348 169.077 136.26 169.231 136.3 169.38L137.957 175.564C137.997 175.714 138.151 175.803 138.3 175.763L139.304 175.493C139.454 175.453 139.543 175.3 139.503 175.15L137.846 168.966C137.806 168.816 137.652 168.728 137.502 168.768Z" fill="#06C755"/>
|
|
67
|
+
<path d="M144.343 166.934L143.339 167.204C143.269 167.222 143.209 167.268 143.172 167.332C143.136 167.395 143.126 167.47 143.145 167.54L144.129 171.214L140.276 168.151C140.267 168.143 140.257 168.135 140.246 168.129L140.226 168.117L140.208 168.109L140.2 168.111L140.183 168.105L140.175 168.107L140.158 168.103L140.149 168.105L140.134 168.109L140.125 168.112L140.109 168.116L140.098 168.119L140.082 168.123L140.072 168.126L140.057 168.13L139.033 168.404C138.963 168.423 138.903 168.469 138.866 168.532C138.83 168.596 138.82 168.671 138.839 168.741L140.496 174.925C140.515 174.995 140.561 175.055 140.624 175.092C140.687 175.128 140.762 175.138 140.833 175.119L141.838 174.85C141.908 174.831 141.968 174.785 142.005 174.722C142.041 174.659 142.051 174.584 142.032 174.513L141.038 170.804L144.896 173.87C144.922 173.892 144.952 173.909 144.984 173.92L145.003 173.927L145.011 173.924L145.026 173.928L145.039 173.924L145.048 173.921L145.067 173.916C145.092 173.916 145.117 173.913 145.141 173.907L146.14 173.639C146.21 173.62 146.27 173.574 146.307 173.511C146.343 173.448 146.353 173.373 146.334 173.302L144.682 167.134C144.673 167.099 144.657 167.065 144.635 167.036C144.613 167.007 144.586 166.982 144.554 166.963C144.523 166.945 144.488 166.933 144.452 166.928C144.416 166.923 144.379 166.925 144.343 166.934Z" fill="#06C755"/>
|
|
68
|
+
</g>
|
|
69
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.033 107.56C111.033 107.56 134.611 98.9499 133.706 120.04C133.477 125.391 130.729 141.761 130.729 141.761C130.729 141.761 132.974 122.642 133.002 118.756C133.057 111.427 126.759 103.069 111.033 107.56Z" fill="white"/>
|
|
70
|
+
<defs>
|
|
71
|
+
<clipPath id="clip0_317_246586">
|
|
72
|
+
<rect width="24" height="24" fill="white" transform="translate(151.828 99.4336) rotate(15)"/>
|
|
73
|
+
</clipPath>
|
|
74
|
+
<clipPath id="clip1_317_246586">
|
|
75
|
+
<rect width="12" height="12" fill="white" transform="translate(139.274 42.4297)"/>
|
|
76
|
+
</clipPath>
|
|
77
|
+
<clipPath id="clip2_317_246586">
|
|
78
|
+
<rect width="4" height="4" fill="white" transform="translate(137.418 81.6914) rotate(-15)"/>
|
|
79
|
+
</clipPath>
|
|
80
|
+
<clipPath id="clip3_317_246586">
|
|
81
|
+
<rect width="4" height="4" fill="white" transform="translate(108 47)"/>
|
|
82
|
+
</clipPath>
|
|
83
|
+
<clipPath id="clip4_317_246586">
|
|
84
|
+
<rect width="44" height="44" fill="white" transform="translate(114.793 157.508) rotate(-15)"/>
|
|
85
|
+
</clipPath>
|
|
86
|
+
</defs>
|
|
87
|
+
</svg>
|