-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cmg Soon _ FudBeens.html
1238 lines (977 loc) · 641 KB
/
Cmg Soon _ FudBeens.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1" id="wixDesktopViewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<base href="https://www.fudbeens.com/">
<meta name="generator" content="Wix.com Website Builder"/>
<link rel="icon" sizes="192x192" href="https://static.wixstatic.com/media/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg">
<link rel="shortcut icon" href="https://static.wixstatic.com/media/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg" type="image/jpeg"/>
<link rel="apple-touch-icon" href="https://static.wixstatic.com/media/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg" type="image/jpeg"/>
<!-- Safari Pinned Tab Icon -->
<!-- <link rel="mask-icon" href="https://static.wixstatic.com/media/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/a6a666_ac39f7c9839c47d1994e52b6b97a71b8%7Emv2.jpg"> -->
<!-- Legacy Polyfills -->
<script src="https://static.parastorage.com/unpkg/[email protected]/minified.js" nomodule=""></script>
<script src="https://static.parastorage.com/unpkg/[email protected]/dist/focus-within-polyfill.js" nomodule=""></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=fetch" nomodule=""></script>
<!-- Performance API Polyfills -->
<script>
(function () {
var noop = function noop() {};
if ("performance" in window === false) {
window.performance = {};
}
window.performance.mark = performance.mark || noop;
window.performance.measure = performance.measure || noop;
if ("now" in window.performance === false) {
var nowOffset = Date.now();
if (performance.timing && performance.timing.navigationStart) {
nowOffset = performance.timing.navigationStart;
}
window.performance.now = function now() {
return Date.now() - nowOffset;
};
}
})();
</script>
<!-- Globals Definitions -->
<script>
(function () {
var now = Date.now()
window.initialTimestamps = {
initialTimestamp: now,
initialRequestTimestamp: Math.round(performance.timeOrigin ? performance.timeOrigin : now - performance.now())
}
window.thunderboltTag = "libs-releases-GA-local"
window.thunderboltVersion = "1.6639.0"
})();
</script>
<script>window.wixShouldDeprecateOldBrowser = true;</script>
<!-- IE Deprecation -->
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.b4c39b07.bundle.min.js">!function(e){function a(a){for(var d,r,t=a[0],c=a[1],i=a[2],f=0,p=[];f<t.length;f++)r=t[f],Object.prototype.hasOwnProperty.call(s,r)&&s[r]&&p.push(s[r][0]),s[r]=0;for(d in c)Object.prototype.hasOwnProperty.call(c,d)&&(e[d]=c[d]);for(l&&l(a);p.length;)p.shift()();return o.push.apply(o,i||[]),n()}function n(){for(var e,a=0;a<o.length;a++){for(var n=o[a],d=!0,r=1;r<n.length;r++){var c=n[r];0!==s[c]&&(d=!1)}d&&(o.splice(a--,1),e=t(t.s=n[0]))}return e}var d={},r={2:0},s={2:0},o=[];function t(a){if(d[a])return d[a].exports;var n=d[a]={i:a,l:!1,exports:{}};return e[a].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.e=function(e){var a=[];r[e]?a.push(r[e]):0!==r[e]&&{4:1,8:1,11:1,12:1,13:1,14:1,15:1,17:1,18:1,114:1}[e]&&a.push(r[e]=new Promise((function(a,n){for(var d=({0:"bootstrap-features",1:"page-features",3:"wix-code-sdk-providers",4:"tpa-components",7:"SEO_DEFAULT",8:"render-indicator.inline",9:"vendors~customUrlMapper~url-mapper-utils",10:"vendors~debug~seo-api",11:"AppPart",12:"AppPart2",13:"FontRulersContainer",14:"Repeater_FixedColumns",15:"Repeater_FluidColumns",16:"SiteStyles",17:"TPAModal",18:"TPAPopup",19:"activePopup",20:"addressInput",21:"animations-vendors",22:"autoDisplayLightbox",23:"backgroundScrub",25:"blog-archive-index",26:"blog-category-index",27:"blog-hashtags-index",28:"blog-post-index",29:"blog-tags-index",30:"bookings-calendar-index",31:"bookings-service-index",32:"breadcrumbs",33:"breadcrumbs-component-index",35:"challenges-page-index",36:"chat",37:"coBranding",38:"codeEmbed",39:"comboboxinputNavigation",40:"componentsRegistry",41:"componentsqaapi",42:"containerSlider",43:"cookiesManager",45:"currentUrl",46:"custom-elements-polyfill",47:"customUrlMapper",48:"datePicker",49:"debug",50:"dynamicPages",51:"events-page-calculated-index",52:"events-page-index",53:"events-page-structured-data-index",55:"fileUploader",56:"forum-category-index",57:"forum-post-index",58:"ghostRefComp",59:"groups-page-index",60:"groups-post-index",61:"headerContainer",62:"headerPlaceholderHeight",63:"hoverBox",64:"imageZoom",66:"intersection-observer-polyfill",67:"languageSelector",68:"loginButton",69:"loginSocialBar",71:"menuContainer",72:"mobileActionsMenu",73:"multilingual",74:"onloadCompsBehaviors",75:"ooi",76:"ooiTpaSharedConfig",77:"pageAnchors",78:"pageTransitions",79:"passwordProtectedPage",80:"paypalButton",81:"platform",82:"platformPubsub",83:"popups",84:"pro-gallery-item-index",85:"protectedPages",86:"qaApi",87:"quickActionBar",88:"reducedMotion",89:"renderIndicator",91:"reporter-api",92:"richTextBox",93:"screenIn",94:"scrollVar",95:"search-page-index",97:"seo-api",98:"seo-api-converters",99:"seoTpa",100:"siteMembers",101:"sliderGallery",102:"socialUrl",103:"sosp",104:"static-page-index",105:"static-page-v2-index",106:"stores-product-index",107:"stores-product-schema-presets-index",109:"testApi",110:"thunderbolt-components-registry",111:"tinyMenu",112:"tpa",113:"tpaCommons",114:"tpaWidgetNativeDeadComp",115:"tpaWorkerFeature",116:"vendors~addressInput",117:"vendors~debug",118:"vendors~module-executor",119:"vendors~quickActionBar",120:"vendors~santa-langs-ar",121:"vendors~santa-langs-bg",122:"vendors~santa-langs-cs",123:"vendors~santa-langs-da",124:"vendors~santa-langs-de",125:"vendors~santa-langs-el",126:"vendors~santa-langs-en",127:"vendors~santa-langs-es",128:"vendors~santa-langs-fi",129:"vendors~santa-langs-fr",130:"vendors~santa-langs-he",131:"vendors~santa-langs-hi",132:"vendors~santa-langs-hu",133:"vendors~santa-langs-id",134:"vendors~santa-langs-it",135:"vendors~santa-langs-ja",136:"vendors~santa-langs-ko",137:"vendors~santa-langs-lt",138:"vendors~santa-langs-ms",139:"vendors~santa-langs-nl",140:"vendors~santa-langs-no",141:"vendors~santa-langs-pl",142:"vendors~santa-langs-pt",143:"vendors~santa-langs-ro",144:"vendors~santa-langs-ru",145:"vendors~santa-langs-sv",146:"vendors~santa-langs-th",147:"vendors~santa-langs-tl",148:"vendors~santa-langs-tr",149:"vendors~santa-langs-uk",150:"vendors~santa-langs-zh",151:"vendors~santa-platform-utils",152:"vendors~seo-api",153:"vendors~thunderbolt-components-registry",154:"vendors~wix-resize-observer-polyfill",155:"welcomeScreen",157:"windowMessageRegistrar",158:"wixCustomElementComponent",159:"wixapps"}[e]||e)+"."+{0:"31d6cfe0",1:"31d6cfe0",3:"31d6cfe0",4:"1d1120b8",7:"31d6cfe0",8:"6041aca2",9:"31d6cfe0",10:"31d6cfe0",11:"d2a8d0e0",12:"37561ce9",13:"34728b4b",14:"a2383f23",15:"3eab22e5",16:"31d6cfe0",17:"94de076d",18:"384a9c22",19:"31d6cfe0",20:"31d6cfe0",21:"31d6cfe0",22:"31d6cfe0",23:"31d6cfe0",25:"31d6cfe0",26:"31d6cfe0",27:"31d6cfe0",28:"31d6cfe0",29:"31d6cfe0",30:"31d6cfe0",31:"31d6cfe0",32:"31d6cfe0",33:"31d6cfe0",35:"31d6cfe0",36:"31d6cfe0",37:"31d6cfe0",38:"31d6cfe0",39:"31d6cfe0",40:"31d6cfe0",41:"31d6cfe0",42:"31d6cfe0",43:"31d6cfe0",45:"31d6cfe0",46:"31d6cfe0",47:"31d6cfe0",48:"31d6cfe0",49:"31d6cfe0",50:"31d6cfe0",51:"31d6cfe0",52:"31d6cfe0",53:"31d6cfe0",55:"31d6cfe0",56:"31d6cfe0",57:"31d6cfe0",58:"31d6cfe0",59:"31d6cfe0",60:"31d6cfe0",61:"31d6cfe0",62:"31d6cfe0",63:"31d6cfe0",64:"31d6cfe0",66:"31d6cfe0",67:"31d6cfe0",68:"31d6cfe0",69:"31d6cfe0",71:"31d6cfe0",72:"31d6cfe0",73:"31d6cfe0",74:"31d6cfe0",75:"31d6cfe0",76:"31d6cfe0",77:"31d6cfe0",78:"31d6cfe0",79:"31d6cfe0",80:"31d6cfe0",81:"31d6cfe0",82:"31d6cfe0",83:"31d6cfe0",84:"31d6cfe0",85:"31d6cfe0",86:"31d6cfe0",87:"31d6cfe0",88:"31d6cfe0",89:"31d6cfe0",91:"31d6cfe0",92:"31d6cfe0",93:"31d6cfe0",94:"31d6cfe0",95:"31d6cfe0",97:"31d6cfe0",98:"31d6cfe0",99:"31d6cfe0",100:"31d6cfe0",101:"31d6cfe0",102:"31d6cfe0",103:"31d6cfe0",104:"31d6cfe0",105:"31d6cfe0",106:"31d6cfe0",107:"31d6cfe0",109:"31d6cfe0",110:"31d6cfe0",111:"31d6cfe0",112:"31d6cfe0",113:"31d6cfe0",114:"cd2c8226",115:"31d6cfe0",116:"31d6cfe0",117:"31d6cfe0",118:"31d6cfe0",119:"31d6cfe0",120:"31d6cfe0",121:"31d6cfe0",122:"31d6cfe0",123:"31d6cfe0",124:"31d6cfe0",125:"31d6cfe0",126:"31d6cfe0",127:"31d6cfe0",128:"31d6cfe0",129:"31d6cfe0",130:"31d6cfe0",131:"31d6cfe0",132:"31d6cfe0",133:"31d6cfe0",134:"31d6cfe0",135:"31d6cfe0",136:"31d6cfe0",137:"31d6cfe0",138:"31d6cfe0",139:"31d6cfe0",140:"31d6cfe0",141:"31d6cfe0",142:"31d6cfe0",143:"31d6cfe0",144:"31d6cfe0",145:"31d6cfe0",146:"31d6cfe0",147:"31d6cfe0",148:"31d6cfe0",149:"31d6cfe0",150:"31d6cfe0",151:"31d6cfe0",152:"31d6cfe0",153:"31d6cfe0",154:"31d6cfe0",155:"31d6cfe0",157:"31d6cfe0",158:"31d6cfe0",159:"31d6cfe0",160:"31d6cfe0",161:"31d6cfe0",162:"31d6cfe0"}[e]+".chunk.min.css",s=t.p+d,o=document.getElementsByTagName("link"),c=0;c<o.length;c++){var i=(l=o[c]).getAttribute("data-href")||l.getAttribute("href");if("stylesheet"===l.rel&&(i===d||i===s))return a()}var f=document.getElementsByTagName("style");for(c=0;c<f.length;c++){var l;if((i=(l=f[c]).getAttribute("data-href"))===d||i===s)return a()}var p=document.createElement("link");p.rel="stylesheet",p.type="text/css",p.onload=a,p.onerror=function(a){var d=a&&a.target&&a.target.src||s,o=new Error("Loading CSS chunk "+e+" failed.\n("+d+")");o.code="CSS_CHUNK_LOAD_FAILED",o.request=d,delete r[e],p.parentNode.removeChild(p),n(o)},p.href=s,document.getElementsByTagName("head")[0].appendChild(p)})).then((function(){r[e]=0})));var n=s[e];if(0!==n)if(n)a.push(n[2]);else{var d=new Promise((function(a,d){n=s[e]=[a,d]}));a.push(n[2]=d);var o,c=document.createElement("script");c.charset="utf-8",c.timeout=120,t.nc&&c.setAttribute("nonce",t.nc),c.src=function(e){return t.p+""+({0:"bootstrap-features",1:"page-features",3:"wix-code-sdk-providers",4:"tpa-components",7:"SEO_DEFAULT",8:"render-indicator.inline",9:"vendors~customUrlMapper~url-mapper-utils",10:"vendors~debug~seo-api",11:"AppPart",12:"AppPart2",13:"FontRulersContainer",14:"Repeater_FixedColumns",15:"Repeater_FluidColumns",16:"SiteStyles",17:"TPAModal",18:"TPAPopup",19:"activePopup",20:"addressInput",21:"animations-vendors",22:"autoDisplayLightbox",23:"backgroundScrub",25:"blog-archive-index",26:"blog-category-index",27:"blog-hashtags-index",28:"blog-post-index",29:"blog-tags-index",30:"bookings-calendar-index",31:"bookings-service-index",32:"breadcrumbs",33:"breadcrumbs-component-index",35:"challenges-page-index",36:"chat",37:"coBranding",38:"codeEmbed",39:"comboboxinputNavigation",40:"componentsRegistry",41:"componentsqaapi",42:"containerSlider",43:"cookiesManager",45:"currentUrl",46:"custom-elements-polyfill",47:"customUrlMapper",48:"datePicker",49:"debug",50:"dynamicPages",51:"events-page-calculated-index",52:"events-page-index",53:"events-page-structured-data-index",55:"fileUploader",56:"forum-category-index",57:"forum-post-index",58:"ghostRefComp",59:"groups-page-index",60:"groups-post-index",61:"headerContainer",62:"headerPlaceholderHeight",63:"hoverBox",64:"imageZoom",66:"intersection-observer-polyfill",67:"languageSelector",68:"loginButton",69:"loginSocialBar",71:"menuContainer",72:"mobileActionsMenu",73:"multilingual",74:"onloadCompsBehaviors",75:"ooi",76:"ooiTpaSharedConfig",77:"pageAnchors",78:"pageTransitions",79:"passwordProtectedPage",80:"paypalButton",81:"platform",82:"platformPubsub",83:"popups",84:"pro-gallery-item-index",85:"protectedPages",86:"qaApi",87:"quickActionBar",88:"reducedMotion",89:"renderIndicator",91:"reporter-api",92:"richTextBox",93:"screenIn",94:"scrollVar",95:"search-page-index",97:"seo-api",98:"seo-api-converters",99:"seoTpa",100:"siteMembers",101:"sliderGallery",102:"socialUrl",103:"sosp",104:"static-page-index",105:"static-page-v2-index",106:"stores-product-index",107:"stores-product-schema-presets-index",109:"testApi",110:"thunderbolt-components-registry",111:"tinyMenu",112:"tpa",113:"tpaCommons",114:"tpaWidgetNativeDeadComp",115:"tpaWorkerFeature",116:"vendors~addressInput",117:"vendors~debug",118:"vendors~module-executor",119:"vendors~quickActionBar",120:"vendors~santa-langs-ar",121:"vendors~santa-langs-bg",122:"vendors~santa-langs-cs",123:"vendors~santa-langs-da",124:"vendors~santa-langs-de",125:"vendors~santa-langs-el",126:"vendors~santa-langs-en",127:"vendors~santa-langs-es",128:"vendors~santa-langs-fi",129:"vendors~santa-langs-fr",130:"vendors~santa-langs-he",131:"vendors~santa-langs-hi",132:"vendors~santa-langs-hu",133:"vendors~santa-langs-id",134:"vendors~santa-langs-it",135:"vendors~santa-langs-ja",136:"vendors~santa-langs-ko",137:"vendors~santa-langs-lt",138:"vendors~santa-langs-ms",139:"vendors~santa-langs-nl",140:"vendors~santa-langs-no",141:"vendors~santa-langs-pl",142:"vendors~santa-langs-pt",143:"vendors~santa-langs-ro",144:"vendors~santa-langs-ru",145:"vendors~santa-langs-sv",146:"vendors~santa-langs-th",147:"vendors~santa-langs-tl",148:"vendors~santa-langs-tr",149:"vendors~santa-langs-uk",150:"vendors~santa-langs-zh",151:"vendors~santa-platform-utils",152:"vendors~seo-api",153:"vendors~thunderbolt-components-registry",154:"vendors~wix-resize-observer-polyfill",155:"welcomeScreen",157:"windowMessageRegistrar",158:"wixCustomElementComponent",159:"wixapps"}[e]||e)+"."+{0:"3fc05d6d",1:"4bf20dc4",3:"31bdeb35",4:"ff72613a",7:"ad3912c5",8:"93ff8f15",9:"0d0802fe",10:"4432a399",11:"f4b8615a",12:"90bb0b21",13:"f6be988f",14:"4a3cf1b5",15:"cf94fe7a",16:"68c437bb",17:"0fd6bd8a",18:"dd1828ce",19:"c4f95473",20:"6dad56be",21:"3747b952",22:"a11fb90a",23:"cb79ae52",25:"fd2acb63",26:"b230a382",27:"327b34e2",28:"c565da06",29:"b8055cba",30:"be61cb14",31:"589e50fe",32:"210938a1",33:"ee99cb3e",35:"2f8cf3b0",36:"42c9205c",37:"e3c6e289",38:"8eccf30e",39:"3107d859",40:"22c32478",41:"b0631478",42:"11f9bb06",43:"d9d538b4",45:"109bcc7b",46:"87760837",47:"9e0286bc",48:"958ca5e7",49:"32652d60",50:"9b452069",51:"89a8104b",52:"7ad66bf7",53:"b8d85d4b",55:"2e36bf29",56:"115a9217",57:"fe4e73d0",58:"0f386d64",59:"04185ce2",60:"a69fe3e9",61:"a762d61b",62:"81175f1a",63:"ed192633",64:"e5520e0b",66:"8c84b88b",67:"b2a76fbb",68:"a79b8172",69:"ae595ce9",71:"179ba684",72:"c58d10f9",73:"e7382f35",74:"3fcd6437",75:"b29aa2e0",76:"c0f65fc9",77:"05e86b30",78:"19a2e879",79:"ae09a6a0",80:"53a5186e",81:"87784f29",82:"53f75229",83:"137437b2",84:"b8f4d78e",85:"74a7e435",86:"59bbc77b",87:"80fcd661",88:"e7add40d",89:"19b207fc",91:"f692efed",92:"8f28da9b",93:"fe0fbf3c",94:"f64014e7",95:"bbf9ebc6",97:"7f0f298d",98:"53f83428",99:"0dc3a749",100:"02ecf8c9",101:"f04ca824",102:"3c6ed98d",103:"0e2cb91f",104:"3ee8adb3",105:"95ee9465",106:"93e79db9",107:"815d6b0d",109:"3a73a1e4",110:"a4a16f4f",111:"7d41989a",112:"5b946007",113:"635c4163",114:"e99462db",115:"c4ed5957",116:"9bfd2a0a",117:"41e6d394",118:"e2fe50e7",119:"6fdd88c9",120:"be427a62",121:"61c97bd3",122:"0fd84822",123:"84158c19",124:"e80c891c",125:"678702a6",126:"c24c56a1",127:"d5f0b798",128:"5ccc60af",129:"0b893e8d",130:"39b57d73",131:"04feaa59",132:"a472d846",133:"e4bf54a3",134:"295f4e22",135:"6b9a9914",136:"19eb2b9c",137:"4b8d73a2",138:"092930e9",139:"31b55225",140:"7d4274be",141:"71cdaa6c",142:"fb2f69c3",143:"2c052583",144:"78804a89",145:"23352c49",146:"5da15ae7",147:"903167a3",148:"c8db5e22",149:"64516cdf",150:"805566c7",151:"562e2bc4",152:"9df82651",153:"b916ed7e",154:"0bb7731e",155:"03a86c4d",157:"b866bae7",158:"0109fd0a",159:"1713feac",160:"06fb7267",161:"6845b638",162:"5493028c"}[e]+".chunk.min.js"}(e);var i=new Error;o=function(a){c.onerror=c.onload=null,clearTimeout(f);var n=s[e];if(0!==n){if(n){var d=a&&("load"===a.type?"missing":a.type),r=a&&a.target&&a.target.src;i.message="Loading chunk "+e+" failed.\n("+d+": "+r+")",i.name="ChunkLoadError",i.type=d,i.request=r,n[1](i)}s[e]=void 0}};var f=setTimeout((function(){o({type:"timeout",target:c})}),12e4);c.onerror=c.onload=o,document.head.appendChild(c)}return Promise.all(a)},t.m=e,t.c=d,t.d=function(e,a,n){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(1&a&&(e=t(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var d in e)t.d(n,d,function(a){return e[a]}.bind(null,d));return n},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="https://static.parastorage.com/services/wix-thunderbolt/dist/",t.oe=function(e){throw console.error(e),e};var c=window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[],i=c.push.bind(c);c.push=a,c=c.slice();for(var f=0;f<c.length;f++)a(c[f]);var l=i;n()}([]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.b4c39b07.bundle.min.js.map</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.inline.f3eec758.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[34],{129:function(e,t,o){"use strict";var d,n,i,r,a,l,s=(null===(i=null===(n=null===(d=window.navigator)||void 0===d?void 0:d.userAgent)||void 0===n?void 0:n.toLowerCase)||void 0===i?void 0:i.call(n))||"",u=!!(null===(r=window.document)||void 0===r?void 0:r.documentMode),c=!(!s.match(/msie\s([\d.]+)/)&&!s.match(/trident\/[\d](?=[^\?]+).*rv:([0-9.].)/)),p=u||c,w=!(function(){var e,t,o=document.createElement("style");o.innerHTML=":root { --tmp-var: bold; }",document.head.appendChild(o);var d=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)"));return null===(t=null===(e=o.parentNode)||void 0===e?void 0:e.removeChild)||void 0===t||t.call(e,o),d}()&&"string"==typeof document.createElement("div").style.grid),v=!!window.wixShouldDeprecateOldBrowser&&w;function m(){var e,t,o;(e=document.getElementById("SITE_CONTAINER"))&&(e.innerHTML=""),t=document.createElement("iframe"),o=p?function(){var e,t=(null===(e=window.viewerModel)||void 0===e?void 0:e.language.userLanguage)||"en";return"https://"+({pt:1,fr:1,es:1,de:1,ja:1,ru:1,ko:1}[t]?t:"en")+".wix.com/outdated-browser/internet-explorer?forceBolt&ssrIndicator=false&suppressbi=true"}():function(){var e,t,o=(null===(e=window.viewerModel)||void 0===e?void 0:e.language.userLanguage)||"en",d={pt:1,fr:1,es:1,de:1,ja:1}[o]?o:"en",n=!!s.match(/(android);?[\s\/]+([\d.]+)?/),i=!!s.match(/ipad|iphone|ipod/),r="desktop"===(null===(t=window.viewerModel)||void 0===t?void 0:t.viewMode);return"https://"+d+".wix.com/outdated-browser/"+((r?"desktop":"")||(i?"ios":"")||(n?"android":"")||"desktop")+"?forceBolt&ssrIndicator=false&suppressbi=true"}(),t.setAttribute("src",o),t.setAttribute("style","position: fixed; top: 0; left: 0; width: 100%; height: 100%"),t.onload=function(){document.body.style.visibility="visible"},document.body.appendChild(t)}(p||v)&&(window.__browser_deprecation__=!0,a=document.head||document.getElementsByTagName("head")[0],(l=document.createElement("style")).setAttribute("type","text/css"),l.appendChild(document.createTextNode("body { visibility: hidden; }")),a.appendChild(l),"complete"===document.readyState?m():document.addEventListener("readystatechange",(function(){"complete"===document.readyState&&m()})))}},[[129,2]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.inline.f3eec758.chunk.min.js.map</script>
<!-- sendFedopsLoadStarted.inline -->
<script type="application/json" id="wix-fedops">{"data":{"site":{"metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","userId":"a6a6662e-c5bf-48b1-85fa-1aee79b7c5f1","siteId":"fee38282-cbcd-4505-9ab7-32ee40870284","externalBaseUrl":"https:\/\/www.fudbeens.com","siteRevision":320,"siteType":"UGC","dc":"ae1","isResponsive":false,"sessionId":"dfa3d784-3944-4a65-96fd-0afae1b9731c"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"fleetConfig":{"fleetName":"thunderbolt-renderer-light","type":"GA","code":0},"requestUrl":"https:\/\/www.fudbeens.com\/"}}</script>
<script>window.fedops = JSON.parse(document.getElementById('wix-fedops').textContent)</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.fb301f91.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[6],{12:function(e,i,n){"use strict";n.r(i),n.d(i,"instance",(function(){return f}));var t=n(74),r=n(0);function o(e){var i=Object(r.e)(e,2),n=i[0],t=i[1];return null!==t&&n+"="+t}function s(e){if(!e)return null;var i=new URL(decodeURIComponent(e));return i.search="?",encodeURIComponent(i.href)}var a=function(e,i,n,t){var a,d,c=i.eventType,u=i.ts,l=i.tts,w=i.extra,p=function(e){var i=e.split("&").reduce((function(e,i){var n,t=Object(r.e)(i.split("="),2),o=t[0],s=t[1];return Object(r.a)(Object(r.a)({},e),((n={})[o]=s,n))}),{});return function(e,n){return void 0!==i[e]?i[e]:n}}(void 0===w?"":w),v=(d=n,function(e){return void 0===d[e]?null:d[e]}),f=!0,m=null===window||void 0===window?void 0:window.consentPolicyManager;if(m){var h=m.getCurrentConsentPolicy();if(h){var g=h.policy;f=!(g.functional&&g.analytics)}}var x,b=v("requestUrl"),_={src:"29",evid:"3",viewer_name:"thunderbolt",caching:v("caching"),client_id:f?null:(x=document.cookie.match(/_wixCIDX=([^;]*)/),x&&x[1]),dc:v("dc"),et:c,event_name:e?encodeURIComponent(e):null,is_cached:v("isCached"),is_platform_loaded:v("is_platform_loaded"),is_rollout:v("is_rollout"),ism:v("isMesh"),isp:0,isjp:v("isjp"),iss:v("isServerSide"),ita:p("ita",n.checkVisibility()?"1":"0"),mid:f?null:(null==t?void 0:t.siteMemberId)||null,msid:v("msId"),pid:p("pid",null),pn:p("pn","1"),ref:document.referrer&&!f?encodeURIComponent(document.referrer):null,rid:f?null:v("requestId"),sar:f?null:p("sar",screen.availWidth?screen.availWidth+"x"+screen.availHeight:null),sessionId:f&&m?null:v("sessionId"),siterev:n.siteRevision||n.siteCacheRevision?n.siteRevision+"-"+n.siteCacheRevision:null,sr:f?null:p("sr",screen.width?screen.width+"x"+screen.height:null),st:v("st"),ts:u,tts:l,url:f?s(b):b,v:(null===window||void 0===window?void 0:window.thunderboltVersion)||"0.0.0",vid:f?null:(null==t?void 0:t.visitorId)||null,bsi:f?null:(null==t?void 0:t.bsi)||null,vsi:v("viewerSessionId"),wor:f||!window.outerWidth?null:window.outerWidth+"x"+window.outerHeight,wr:f?null:p("wr",window.innerWidth?window.innerWidth+"x"+window.innerHeight:null),_brandId:(null===(a=n.commonConfig)||void 0===a?void 0:a.brand)||null,nt:p("nt",null)};return"https://frog.wix.com/bt?"+Object.entries(_).map(o).filter(Boolean).join("&")},d=n(49),c=n(50),u=n(51),l={WixSite:1,UGC:2,Template:3},w=function(){var e,i="none",n=document.cookie.match(/ssr-caching="?cache[,#]\s*desc=(\w+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=(\w+))?(?:"|;|$)/);if(!n&&window.PerformanceServerTiming){var t=function(){var e,i;try{e=performance.getEntriesByType("navigation")[0].serverTiming||[]}catch(i){e=[]}var n=[];return e.forEach((function(e){switch(e.name){case"cache":n[1]=e.description;break;case"varnish":n[2]=e.description;break;case"dc":i=e.description}})),{microPop:i,matches:n}}();e=t.microPop,n=t.matches}if(n&&n.length&&(i=n[1]+","+(n[2]||"none"),e||(e=n[3])),"none"===i){var o=performance.timing;o&&o.responseStart-o.requestStart==0&&(i="browser")}return Object(r.a)({caching:i,isCached:0===i.indexOf("hit")},e?{microPop:e}:{})},p=Object(d.a)(window)||Object(u.a)()||Object(c.a)(),v=function(){return Object(r.a)(Object(r.a)({suppressbi:window.viewerModel.requestUrl.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:window.fedops?window.fedops.vsi:"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var i=16*Math.random()|0;return("x"===e?i:3&i|8).toString(16)})),siteRevision:String(window.viewerModel.site.siteRevision),msId:window.viewerModel.site.metaSiteId,is_rollout:0===window.viewerModel.fleetConfig.code||1===window.viewerModel.fleetConfig.code?window.viewerModel.fleetConfig.code:null,is_platform_loaded:0,requestId:window.viewerModel.requestId,requestUrl:encodeURIComponent(window.viewerModel.requestUrl),sessionId:String(window.viewerModel.site.sessionId),btype:p,isjp:!!p,dc:window.viewerModel.site.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:function(){var e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),function(){return i(),e}}()},w()),{isMesh:1,isServerSide:0,st:l[window.viewerModel.site.siteType]||0,commonConfig:window.viewerModel.commonConfig})};var f=function(){var e=v(),i={},n=1;function r(e){var i=!1,n=window.viewerModel;if(!(null==n?void 0:n.experiments["specs.thunderbolt.useImgNotBeacon"]))try{i=navigator.sendBeacon(e)}catch(e){}i||((new Image).src=e)}var o=function(t,o,s){void 0===s&&(s={});var d=Date.now(),c=d-e.initialRequestTimestamp,u=d-e.initialTimestamp;if(function(e,i){if(i&&performance.mark){var n=i+" (beat "+e+")";performance.mark(n)}}(t,o),!e.suppressbi){var l=s.pageId,w=s.pageNumber,p=void 0===w?n:w,v=s.navigationType,f="&pn="+p;l&&(f+="&pid="+l),v&&(f+="&nt="+v),r(a(o,{eventType:t,ts:u,tts:c,extra:f},e,i))}};return{sendBeat:o,reportBI:function(e,i){!function(e,i){var n=i?e+" - "+i:e,t="end"===i?e+" - start":null;performance.mark(n),performance.measure&&t&&performance.measure("\u2b50"+e,t,n)}(e,i)},wixBiSession:e,sendBeacon:r,setDynamicSessionData:function(e){var n=e.visitorId,t=e.siteMemberId,r=e.bsi;i.visitorId=n||i.visitorId,i.siteMemberId=t||i.siteMemberId,i.bsi=r||i.bsi},reportPageNavigation:function(e){n+=1,o(t.a.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:n})},reportPageNavigationDone:function(e,i){o(t.a.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:n,navigationType:i}),i!==t.b.DYNAMIC_REDIRECT&&i!==t.b.NAVIGATION_ERROR&&i!==t.b.CANCELED||(n-=1)}}}();window.bi=f},366:function(e,i,n){"use strict";n.r(i);var t=n(49),r=n(50),o=n(51);!function(){if(!window.__browser_deprecation__){var e=window.fedops.data,i=e.site,n=e.rollout,s=e.fleetConfig,a=e.requestUrl,d=Object(t.a)(window)||Object(o.a)()||Object(r.a)()?1:0,c=!1,u=document.cookie.match(/ssr-caching="?cache[,#]\s*desc=(\w+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=(\w+))?(?:"|;|$)/),l="none";if(u&&u.length&&(l=u[1]+","+(u[2]||"none"),c=O(l)),!u&&window.PerformanceServerTiming){var w=performance.getEntriesByType("navigation")[0].serverTiming;if(w&&w.length){var p=["cache","constnish","dc"],v=[];w.forEach((function(e){var i=e.name,n=e.description,t=p.indexOf(i);t>0&&(v[t]=n)})),c=O(v[1])||O(v[2])}}var f={WixSite:1,UGC:2,Template:3}[i.siteType]||0,m=i.isResponsive?"thunderbolt-responsive":"thunderbolt",h=n.isDACRollout,g=n.siteAssetsVersionsRollout,x=h?1:0,b=g?1:0,_=0===s.code||1===s.code?s.code:null,I=Date.now()-window.initialTimestamps.initialTimestamp,y=Date.now()-window.initialTimestamps.initialRequestTimestamp,T="visible",S=window.fedops;S.apps=S.apps||{},S.apps[m]={startLoadTime:y},S.sessionId=i.sessionId,S.vsi="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var i=16*Math.random()|0;return("x"===e?i:3&i|8).toString(16)})),S.is_cached=c,S.phaseStarted=function(e){R(28,"&name="+e+"&duration="+(Date.now()-I))},S.phaseEnded=function(e){R(22,"&name="+e+"&duration="+(Date.now()-I))},addEventListener("offline",(function(){S.phaseStarted("offline")}),!0),addEventListener("online",(function(){S.phaseStarted("online")}),!0),S.pagehide=function(){var e=document.visibilityState;e!==T&&(T=e,S.phaseStarted(e))},addEventListener("pagehide",S.pagehide,!0),addEventListener("visibilitychange",S.pagehide,!0),S.pagehide();var C=!1;addEventListener("pageshow",(function(e){e.persisted&&(C||(C=!0,l+=",browser_cache",S.is_cached=!0),S.phaseStarted("bfcache"))}),!0),1!==performance.navigation.type&&2!==performance.navigation.type||S.phaseStarted("page_reload"),R(21,"&ts="+I+"&tsn="+y)}function R(e,n){void 0===n&&(n=""),function(e){if(a.includes("suppressbi=true"))return;var i=!1;try{i=navigator.sendBeacon(e)}catch(e){}i||((new Image).src=e)}("//frog.wix.com/bolt-performance?src=72&evid="+e+"&appName="+m+"&is_rollout="+_+"&is_sav_rollout="+b+"&is_dac_rollout="+x+"&dc="+i.dc+"&is_cached="+c+"&msid="+i.metaSiteId+"&session_id="+window.fedops.sessionId+"&ish="+d+"&vsi="+window.fedops.vsi+"&caching="+l+"&pv="+T+"&v="+window.thunderboltVersion+"&url="+a+"&st="+f+n)}function O(e){return!!e&&0===e.indexOf("hit")}}()},49:function(e,i,n){"use strict";i.a=function(e){var i=e.navigator.userAgent;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""}},50:function(e,i,n){"use strict";i.a=function(){if(!Function.prototype.bind)return"bind";var e=window.document,i=window.navigator;if(!e||!i)return"document";var n=i.webdriver,t=i.userAgent,r=i.plugins,o=i.languages;if(n)return"webdriver";if(!r||Array.isArray(r))return"plugins";if(!t)return"userAgent";if(t.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!o||0===o.length||!Object.isFrozen(o))return"languages";try{throw Error()}catch(e){var s=(e||{}).stack;if(/ph\x61n\x74om|n\x6fde[^_]/i.test(s))return"stack"}return""}},51:function(e,i,n){"use strict";i.a=function(){try{if(window.self===window.top)return""}catch(e){}return"iframe"}}}]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.fb301f91.chunk.min.js.map</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.1ebd13d5.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[96],[],[[366,2,6]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.1ebd13d5.chunk.min.js.map</script>
<!-- Polyfills check -->
<script>
if (
typeof Promise === 'undefined' ||
typeof Set === 'undefined' ||
typeof Object.assign === 'undefined' ||
typeof Array.from === 'undefined' ||
typeof Symbol === 'undefined'
) {
// send bi in order to detect the browsers in which polyfills are not working
window.Sentry = {}
window.fedops.phaseStarted('missing_polyfills')
}
</script>
<!-- ES6 check -->
<script>
function isES6() {
try {
new Function('let x = 1');
new Function('const x = `1`');
new Function('class X {}');
new Function('const x = (a = 0, ...b) => a');
new Function('const x = {...Object}');
new Function('const y = 1; const x = {y}');
} catch (e) { return false; }
return true;
}
if (!window.__browser_deprecation__ && !isES6()) {
window.fedops.phaseStarted('es6_not_supported')
}
</script>
<!-- Sentry -->
<script id="sentry">(function(c,t,u,n,p,l,y,z,v){function e(b){if(!w){w=!0;var d=t.getElementsByTagName(u)[0],a=t.createElement(u);a.src=z;a.crossorigin="anonymous";a.addEventListener("load",function(){try{c[n]=q;c[p]=r;var a=c[l],d=a.init;a.init=function(a){for(var b in a)Object.prototype.hasOwnProperty.call(a,b)&&(v[b]=a[b]);d(v)};B(b,a)}catch(A){console.error(A)}});d.parentNode.insertBefore(a,d)}}function B(b,d){try{for(var a=0;a<b.length;a++)if("function"===typeof b[a])b[a]();var f=m.data,g=!1,h=!1;for(a=0;a<f.length;a++)if(f[a].f){h=
!0;var e=f[a];!1===g&&"init"!==e.f&&d.init();g=!0;d[e.f].apply(d,e.a)}!1===h&&d.init();var k=c[n],l=c[p];for(a=0;a<f.length;a++)f[a].e&&k?k.apply(c,f[a].e):f[a].p&&l&&l.apply(c,[f[a].p])}catch(C){console.error(C)}}for(var g=!0,x=!1,k=0;k<document.scripts.length;k++)if(-1<document.scripts[k].src.indexOf(y)){g="no"!==document.scripts[k].getAttribute("data-lazy");break}var w=!1,h=[],m=function(b){(b.e||b.p||b.f&&-1<b.f.indexOf("capture")||b.f&&-1<b.f.indexOf("showReportDialog"))&&g&&e(h);m.data.push(b)};
m.data=[];c[l]={onLoad:function(b){h.push(b);g&&!x||e(h)},forceLoad:function(){x=!0;g&&setTimeout(function(){e(h)})}};"init addBreadcrumb captureMessage captureException captureEvent configureScope withScope showReportDialog".split(" ").forEach(function(b){c[l][b]=function(){m({f:b,a:arguments})}});var q=c[n];c[n]=function(b,d,a,f,e){m({e:[].slice.call(arguments)});q&&q.apply(c,arguments)};var r=c[p];c[p]=function(b){m({p:b.reason});r&&r.apply(c,arguments)};g||setTimeout(function(){e(h)})})(window,document,
"script","onerror","onunhandledrejection","Sentry","14370afcdc17429f9e418d5ffbd0334a","https://browser.sentry-cdn.com/5.21.4/bundle.min.js",{"dsn":"https://[email protected]/277"});</script>
<!-- Viewer Model -->
<script type="application/json" id="wix-viewer-model">{"requestUrl":"https:\/\/www.fudbeens.com\/","siteFeatures":["bootstrap","assetsLoader","businessLogger","commonConfig","componentsLoader","consentPolicy","dashboardWixCodeSdk","dynamicPages","locationWixCodeSdk","navigationManager","ooi","pages","protectedPages","renderer","reporter","router","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","stores","structureApi","tpaCommons","translations","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixEmbedsApi","componentsReact","platform"],"site":{"metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","userId":"a6a6662e-c5bf-48b1-85fa-1aee79b7c5f1","siteId":"fee38282-cbcd-4505-9ab7-32ee40870284","externalBaseUrl":"https:\/\/www.fudbeens.com","siteRevision":320,"siteType":"UGC","dc":"ae1","isResponsive":false,"sessionId":"dfa3d784-3944-4a65-96fd-0afae1b9731c"},"isMobileDevice":false,"viewMode":"desktop","formFactor":"desktop","deviceInfo":{"deviceClass":"Desktop"},"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/"},"language":{"userLanguage":"en","userLanguageResolutionMethod":"QueryParam","siteLanguage":"en","isMultilingualEnabled":false,"directionByLanguage":"ltr"},"mode":{"qa":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"editorElementsVersion":"1.5780.0"},"requestId":"1621764104.48433629781112773","siteFeaturesConfigs":{"assetsLoader":{},"consentPolicy":{"isWixSite":false},"dashboardWixCodeSdk":{},"dynamicPages":{"prefixToRouterFetchData":{"account":{"urlData":{"basePath":"https:\/\/www.fudbeens.com\/_api\/santa-members-server","queryParams":"viewMode=site","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9"},"optionsData":{"bodyData":{"pageRoles":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":{"id":"d6cby","title":"Settings"},"6c2afba6-8182-4f78-bb2b-7ea3bf62f023":{"id":"ax19b","title":"My Wallet"},"725da943-e4ee-4233-a9ac-80f265a23e09":{"id":"qucgd","title":"My Addresses"},"be6858a9-bcab-4021-9c8f-8e41682f9f46":{"id":"a8o2z","title":"My Orders"},"e998991b-f707-4797-83ad-2a51fadfb1eb":{"id":"vbkg7","title":"My Account"},"2f94325b-803e-40b0-9e33-8bfa6b294ee4":{"id":"ydt6e","title":"Notifications"}},"routerPrefix":"\/account","config":{"type":"private","patterns":{"\/my-account":{"socialHome":false,"appData":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appPageId":"member_info","menuOrder":3,"visibleForRoles":[]},"page":"e998991b-f707-4797-83ad-2a51fadfb1eb","seoData":{"title":"My Account","description":"","keywords":"","noIndex":"true"},"title":"My Account"},"\/my-orders":{"socialHome":false,"appData":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","appPageId":"order_history","menuOrder":2,"visibleForRoles":[]},"page":"be6858a9-bcab-4021-9c8f-8e41682f9f46","seoData":{"title":"My Orders","description":"","keywords":"","noIndex":"true"},"title":"My Orders"},"\/my-addresses":{"socialHome":false,"appData":{"appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","appPageId":"my_addresses","menuOrder":2,"visibleForRoles":[]},"page":"725da943-e4ee-4233-a9ac-80f265a23e09","seoData":{"title":"My Addresses","description":"","keywords":"","noIndex":"true"},"title":"My Addresses"},"\/my-wallet":{"socialHome":false,"appData":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appPageId":"my_wallet","menuOrder":2,"visibleForRoles":[]},"page":"6c2afba6-8182-4f78-bb2b-7ea3bf62f023","seoData":{"title":"My Wallet","description":"","keywords":"","noIndex":"true"},"title":"My Wallet"},"\/notifications":{"socialHome":false,"appData":{"numbers":{"key":"notificationsCount","default":0},"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appPageId":"notifications_app","menuOrder":4,"visibleForRoles":[]},"page":"2f94325b-803e-40b0-9e33-8bfa6b294ee4","seoData":{"title":"Notifications","description":"","keywords":"","noIndex":"true"},"title":"Notifications"},"\/settings":{"socialHome":false,"appData":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appPageId":"settings","menuOrder":4,"visibleForRoles":[]},"page":"ff3de31e-1c35-47d6-bbd9-e92df2236882","seoData":{"title":"Settings","description":"","keywords":"","noIndex":"true"},"title":"Settings"}}}},"headers":{"Content-Type":"application\/json"}}},"profile":{"urlData":{"basePath":"https:\/\/www.fudbeens.com\/_api\/santa-members-server","queryParams":"viewMode=site","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9"},"optionsData":{"bodyData":{"pageRoles":{"b3ad4b94-041b-4ddc-afab-af1f826d16b4":{"id":"m2jw3","title":"Profile"}},"routerPrefix":"\/profile","config":{"type":"public","patterns":{"\/{userName}\/profile":{"socialHome":true,"appData":{"numbers":{},"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","appPageId":"about","menuOrder":1,"visibleForRoles":[]},"page":"b3ad4b94-041b-4ddc-afab-af1f826d16b4","seoData":{"title":"{userName} | Profile","description":"","keywords":"","noIndex":"false"},"title":"Profile"}}}},"headers":{"Content-Type":"application\/json"}}}},"routerPagesSeoToIdMap":{"settings":"d6cby","my-wallet":"ax19b","my-addresses":"qucgd","my-orders":"a8o2z","my-account":"vbkg7","notifications":"ydt6e","profile-1":"m2jw3"},"externalBaseUrl":"https:\/\/www.fudbeens.com","viewMode":"desktop"},"fedopsWixCodeSdk":{"isWixSite":false},"locationWixCodeSdk":{"routersConfigMap":{"routers-kbqk1dsl":{"prefix":"account","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"private\",\"patterns\":{\"\/my-account\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14cffd81-5215-0a7f-22f8-074b0e2401fb\",\"appPageId\":\"member_info\",\"menuOrder\":3,\"visibleForRoles\":[]},\"page\":\"e998991b-f707-4797-83ad-2a51fadfb1eb\",\"seoData\":{\"title\":\"My Account\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Account\"},\"\/my-orders\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1380b703-ce81-ff05-f115-39571d94dfcd\",\"appPageId\":\"order_history\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"be6858a9-bcab-4021-9c8f-8e41682f9f46\",\"seoData\":{\"title\":\"My Orders\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Orders\"},\"\/my-addresses\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1505b775-e885-eb1b-b665-1e485d9bf90e\",\"appPageId\":\"my_addresses\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"725da943-e4ee-4233-a9ac-80f265a23e09\",\"seoData\":{\"title\":\"My Addresses\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Addresses\"},\"\/my-wallet\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"4aebd0cb-fbdb-4da7-b5d1-d05660a30172\",\"appPageId\":\"my_wallet\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"6c2afba6-8182-4f78-bb2b-7ea3bf62f023\",\"seoData\":{\"title\":\"My Wallet\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Wallet\"},\"\/notifications\":{\"socialHome\":false,\"appData\":{\"numbers\":{\"key\":\"notificationsCount\",\"default\":0},\"appDefinitionId\":\"14f25924-5664-31b2-9568-f9c5ed98c9b1\",\"appPageId\":\"notifications_app\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"2f94325b-803e-40b0-9e33-8bfa6b294ee4\",\"seoData\":{\"title\":\"Notifications\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Notifications\"},\"\/settings\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14f25dc5-6af3-5420-9568-f9c5ed98c9b1\",\"appPageId\":\"settings\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"ff3de31e-1c35-47d6-bbd9-e92df2236882\",\"seoData\":{\"title\":\"Settings\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Settings\"}}}","group":"members","pages":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":"d6cby","6c2afba6-8182-4f78-bb2b-7ea3bf62f023":"ax19b","725da943-e4ee-4233-a9ac-80f265a23e09":"qucgd","be6858a9-bcab-4021-9c8f-8e41682f9f46":"a8o2z","e998991b-f707-4797-83ad-2a51fadfb1eb":"vbkg7","2f94325b-803e-40b0-9e33-8bfa6b294ee4":"ydt6e"}},"routers-kbqk1dsq":{"prefix":"profile","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"public\",\"patterns\":{\"\/{userName}\/profile\":{\"socialHome\":true,\"appData\":{\"numbers\":{},\"appDefinitionId\":\"14dbef06-cc42-5583-32a7-3abd44da4908\",\"appPageId\":\"about\",\"menuOrder\":1,\"visibleForRoles\":[]},\"page\":\"b3ad4b94-041b-4ddc-afab-af1f826d16b4\",\"seoData\":{\"title\":\"{userName} | Profile\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"false\"},\"title\":\"Profile\"}}}","group":"members","pages":{"b3ad4b94-041b-4ddc-afab-af1f826d16b4":"m2jw3"}}},"baseUrl":"https:\/\/www.fudbeens.com","urlMappings":null},"onloadCompsBehaviors":{},"ooiTpaSharedConfig":{"imageSpriteUrl":"https:\/\/static.parastorage.com\/\/services\/santa-resources\/resources\/viewer\/editorUI\/fonts.v14.png","wixStaticFontsLinks":["https:\/\/static.parastorage.com\/\/services\/santa-resources\/resources\/viewer\/user-site-fonts\/v12\/languages.css"]},"ooi":{"ooiComponentsData":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardViewerWidget.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/","isLoadable":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidget.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"14666402-0bc7-b763-e875-e99840d131bd":{"sentryDsn":"https:\/\/[email protected]\/1865790","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCart.bundle.min.js","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlist.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartViewerWidget.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"13afb094-84f9-739f-44fd-78d036adb028":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGallery.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","isLoadable":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerWidget.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/","isLoadable":false},"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":{"componentUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListViewerWidget.bundle.min.js","widgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","noCssComponentUrl":"","staticBaseUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.275.0","isLoadable":false},"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/viewerApp.bundle.min.js","widgetId":"a7dcdfcb-8abd-4008-af19-fed5fcd12b40","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","isLoadable":false},"83b2af08-c021-40c8-a3a5-b329a959ec2b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","widgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","isLoadable":false},"0a9f687f-7e00-4576-a8e1-9415844b8f44":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","widgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","isLoadable":false},"513a5d84-3ebb-4ca6-a5aa-83effd2123b9":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidgetNoCss.bundle.min.js","widgetId":"513a5d84-3ebb-4ca6-a5aa-83effd2123b9","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","isLoadable":false}},"viewMode":"Site","formFactor":"Desktop","blogMobileComponentUrl":"undefinedfeed-page-mobile-viewer.bundle.min.js"},"protectedPages":{"passwordProtected":{}},"reporter":{"userId":"a6a6662e-c5bf-48b1-85fa-1aee79b7c5f1","metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","isPremium":true,"isViewerMode":true,"isFBServerEventsAppProvisioned":false,"dynamicPagesIds":["d6cby","ax19b","qucgd","a8o2z","vbkg7","ydt6e","m2jw3"]},"router":{"baseUrl":"https:\/\/www.fudbeens.com","mainPageId":"c1dmp","pages":{"cz8ti":"a6a666_41304500e4ba53fec74fe30854bc24da_305","dv4ba":"a6a666_e4dbe16d62102150081c84c21f619db6_282","decvk":"a6a666_798c782e2bb7e04c61dbca5c7cb264e8_143","wzqyl":"a6a666_d2c7f286d3b8b1e0bc1cbf41699ab66f_305","j9q9x":"a6a666_d07fc48b26fed61e8b5528af1573278e_305","pck01":"a6a666_8e20a5bb37c8b7260e8d8cfe27114f8b_298","i78pz":"a6a666_e6de884c6f44889566db09a5f6c1156b_305","c1dmp":"a6a666_8b6aaec21701e671ee9da87ef020dff4_320","o6udd":"a6a666_9bf51ce1076011aece6ab7a867777350_305","pre5g":"a6a666_f9206b81e6401e277edefb6b6fe7ea1f_305","ixe0t":"a6a666_948f55041fa7d5e8e387ae842417df94_305","m2izr":"a6a666_39617b29857e99f34537289f78bf11dc_314","bx5r8":"a6a666_99c18b9c06eeea6cfa9e13ba6bca6345_298","yv9or":"a6a666_731938cfca7c7005a6db20c013e5bf04_306","hb5a1":"a6a666_9c0063d0e6dfa0e88e6f85a81d4e4080_232","rjg0h":"a6a666_665496852365066477ebe8648bf993c9_306","ufl1b":"a6a666_ed85c1a8f30d13320220385dc2d7278f_232","af6sn":"a6a666_afa3a113ddc1e80fcff0701fc5777a54_306","m2jw3":"a6a666_0eaccdf81d249b97efdc972c1eea1aaa_232","xauo4":"a6a666_06e8af075d4f982d12b5e95d41389b25_306","w0k4o":"a6a666_b439f9285a0c8997e9b140f0a5559c3b_232","n9s0s":"a6a666_5eda1784c4ade2e6f4902bee2df2b73a_150","ztci0":"a6a666_3155d67d73db581a88b612e71f845542_200","q2wpc":"a6a666_0df2b214c02b6d3665ea7b1c19f80f46_320","veoqu":"a6a666_5570fc2c38d8e875cb1c03fff250ba87_282","eah3p":"a6a666_89245c034b380aa33deec0700bf322a5_181","dznvc":"a6a666_ad2be09c713f7c274d0aa88bdc92aba1_306","us69l":"a6a666_9fa34a810461c493cddf8550b5055e6f_221","q1n6e":"a6a666_2467a33fe758ba76c79b319394845c6a_305","agdqi":"a6a666_370929b2ed610c181ad4ae9063a66a5d_305"},"routes":{".\/cart-page":{"type":"Static","pageId":"cz8ti"},".\/ccs":{"type":"Static","pageId":"dv4ba"},".\/call-back":{"type":"Static","pageId":"decvk"},".\/checkout":{"type":"Static","pageId":"wzqyl"},".\/fbfactsapp":{"type":"Static","pageId":"j9q9x"},".\/our-story":{"type":"Static","pageId":"pck01"},".\/callbackapp":{"type":"Static","pageId":"i78pz"},".\/home":{"type":"Static","pageId":"c1dmp"},".\/todaydealsapp":{"type":"Static","pageId":"o6udd"},".\/thank-you-page":{"type":"Static","pageId":"pre5g"},".\/shop":{"type":"Static","pageId":"ixe0t"},".\/home-1":{"type":"Static","pageId":"m2izr"},".\/today-deals":{"type":"Static","pageId":"bx5r8"},".\/ourstoryapp":{"type":"Static","pageId":"yv9or"},".\/group":{"type":"Static","pageId":"hb5a1"},".\/offersapp":{"type":"Static","pageId":"rjg0h"},".\/members":{"type":"Static","pageId":"ufl1b"},".\/contactusapp":{"type":"Static","pageId":"af6sn"},".\/cmgsoonapp":{"type":"Static","pageId":"xauo4"},".\/groups":{"type":"Static","pageId":"w0k4o"},".\/plans-pricing":{"type":"Static","pageId":"n9s0s"},".\/error404":{"type":"Static","pageId":"ztci0"},".\/fbfacts":{"type":"Static","pageId":"q2wpc"},".\/my-account-1":{"type":"Static","pageId":"veoqu"},".\/contact-us":{"type":"Static","pageId":"eah3p"},".\/ccsapp":{"type":"Static","pageId":"dznvc"},".\/offers":{"type":"Static","pageId":"us69l"},".\/search-results":{"type":"Static","pageId":"q1n6e"},".\/product-page":{"type":"Static","pageId":"agdqi"},".\/account":{"type":"Dynamic"},".\/profile":{"type":"Dynamic"},".\/":{"type":"Static","pageId":"c1dmp"}},"isWixSite":false,"customNotFoundPage":{"pageId":"ztci0","pageRoute":".\/error404"}},"searchWixCodeSdk":{"language":"en"},"seo":{"context":{"siteName":"FudBeens","siteUrl":"https:\/\/www.fudbeens.com","indexSite":true,"defaultUrl":"https:\/\/www.fudbeens.com\/","currLangIsOriginal":true,"homePageTitle":"Cmg Soon","ogType":"website","ogDescription":"FudBeens, food store where all the ingredients to prepare food can be purchased from here with rich in quality and makes the consumer health and we runs with the concept of health is wealth ORGANIC HEALTH DELIVERS","businessName":"FudBeens","businesDescription":"FudBeens, A startup to serve people with good food materials and ingrediants and make secure their lives with good health","businesLocale":"en-in","businesLogo":"https:\/\/static.wixstatic.com\/media\/a6a666_c29cc7efe61c42f680c4e7196b4bc3ad~mv2.png"},"metaTags":[{"name":"fb_admins_meta_tag","value":"","property":false},{"name":"description","value":"FudBeens, food store where all the ingredients to prepare food can be purchased from here with rich in quality and makes the consumer health and we runs with the concept of health is wealth ORGANIC HEALTH DELIVERS","property":false}],"customHeadTags":"","isInSEO":false,"hasBlogAmp":false,"mainPageId":"c1dmp"},"sessionManager":{"appsInstances":{"undefined":{},"14bca956-e09f-f4d6-14d7-466cb3f09103":{"instance":"gqOaH2Rlskt5F3R56SwzfON0jVGmjUubRpFJcIubpEw.eyJpbnN0YW5jZUlkIjoiYjNmYjhmMjktNzY0Mi00ZWEzLWIyM2EtMTE1ZDYwYmZlNTkwIiwiYXBwRGVmSWQiOiIxNGJjYTk1Ni1lMDlmLWY0ZDYtMTRkNy00NjZjYjNmMDkxMDMiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0M1oiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIyNGYyMWU5Yy0zMWFlLTRjODAtYjE1OS03MzA2ZDQwZTRmNmYiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiZjVmNTliYzUtZGU0NC0wNWU0LTAyYjUtYTJlYzM4MDU2MmJkIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"141fbfae-511e-6817-c9f0-48993a7547d1":{"instance":"4PAfwejMFNs6MX0FWQBOerztF_i2RR4UXYxnjLmNlM4.eyJpbnN0YW5jZUlkIjoiNzlkNWI4YTctZmNmMi00YTMxLWFmZGItMzZjNWQwZjJkYzVkIiwiYXBwRGVmSWQiOiIxNDFmYmZhZS01MTFlLTY4MTctYzlmMC00ODk5M2E3NTQ3ZDEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIxZDFlZGRmYy1lMDUzLTRiZmUtYWRiOC03NDk4NDdlMzZiODUiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiM2ZkYmFjNGItNTRmNC0wMTc2LTFmNTQtODU3NDg4NDg1YjcwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"13ee94c1-b635-8505-3391-97919052c16f":{"instance":"Ihk1M99NViB2-RbPhpOCnuoA9wtDelP3O0mD00ze4Ko.eyJpbnN0YW5jZUlkIjoiZDFhNjNkOTktNGE3Mi00ZGNlLWJmOGQtMmU2NGM4YTRkMzRlIiwiYXBwRGVmSWQiOiIxM2VlOTRjMS1iNjM1LTg1MDUtMzM5MS05NzkxOTA1MmMxNmYiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiI1MTQwYTc1OC03Yjc1LTQ5ZjEtOTQ1ZC0wZDk2OTYxMGQ0YzYiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiOTdhODI5NzUtZTI3NC0wNjg5LTBmMDItOWRkNTkwMWU1NDYzIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"150ae7ee-c74a-eecd-d3d7-2112895b988a":{"instance":"hr9csM5AKUmIEoF2jXF6_dZkHb9hNSMSMbaWZS2Q1ow.eyJpbnN0YW5jZUlkIjoiMjFhZmNmMDUtNGQ0Ni00NzcwLTliZjktNzVhMWM1MGE3OGZkIiwiYXBwRGVmSWQiOiIxNTBhZTdlZS1jNzRhLWVlY2QtZDNkNy0yMTEyODk1Yjk4OGEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJiMTBjNDk2Yi0xN2M1LTRmNGYtOWJjNS0wZjdjZjI4NDA4NTYiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiNjdhMWRiZTktZTU0MC0wYzM3LTJiNzYtYzYxMDlkYjBmZmQwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"a322993b-2c74-426f-bbb8-444db73d0d1b":{"instance":"rhabTzTbrWrCUQYvDDzrnuOf7tJCh7yafOk1XY9ToMc.eyJpbnN0YW5jZUlkIjoiMjRlZmM1NDMtMzVkZC00Yzk0LThlMjUtNTVlZmVmMDVhYzdjIiwiYXBwRGVmSWQiOiJhMzIyOTkzYi0yYzc0LTQyNmYtYmJiOC00NDRkYjczZDBkMWIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIwYzM4MTE0ZC00YzE3LTQyZjUtODc5MS0wNTNjMmIxZmFlZTgiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiNjJlMWQxYWYtOWRkYi0wN2QzLTNlYWEtZTY1ZWI3YmYyYjUxIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"55cd9036-36bb-480b-8ddc-afda3cb2eb8d":{"instance":"C_DrQWct3VeMksIqpeOuPHtlhYukuuULNRtLFOqeVcY.eyJpbnN0YW5jZUlkIjoiM2QzNmNkYjQtYzMzOS00MWY4LTlkNjItOTQ4MWI2ZjZlYWIyIiwiYXBwRGVmSWQiOiI1NWNkOTAzNi0zNmJiLTQ4MGItOGRkYy1hZmRhM2NiMmViOGQiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiI1ZjA2N2NkNC01MjY5LTQ5ZjYtYWE0Ni1mNGUxMzdjN2ViNTEiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiN2IzOGQ5NTgtNmIzZi0wYWJmLTJkZWQtMjczMGVlNGM2ZDlmIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"f123e8f1-4350-4c9b-b269-04adfadda977":{"instance":"52YRJrayqtaYtzlYcv17Gtm5WurCtUrSK5x0jlBLH1E.eyJpbnN0YW5jZUlkIjoiM2U0YzI3MTItYmIyMC00YTBjLWExMjUtMzNjYzY0ODgwZTA0IiwiYXBwRGVmSWQiOiJmMTIzZThmMS00MzUwLTRjOWItYjI2OS0wNGFkZmFkZGE5NzciLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJhM2ViMmE2Ny03MDgwLTQ0NTAtYjk1NS1jYWExZmZkMjA4MjMiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiNzg0MjMzZmUtMTMyNi0wMTRiLTExYWEtODA3ZDNjMzI4OTI5Iiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"9bead16f-1c73-4cda-b6c4-28cff46988db":{"instance":"ynzxKINo9hGBvirhAg07KXO0TLVr_r16MED58aDRnig.eyJpbnN0YW5jZUlkIjoiZmM2NDRkNjgtM2Q0NC00MmQ5LTg4NTYtZTllMDZjYWQ5MzE2IiwiYXBwRGVmSWQiOiI5YmVhZDE2Zi0xYzczLTRjZGEtYjZjNC0yOGNmZjQ2OTg4ZGIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIxNDc3NmJlOC1lYWNiLTRlMWMtYTM2Mi0yNDRmOTI2MTMwNGEiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiYmE2YTU5ODQtOTU0Mi0wOTllLTM4ZDktNWE1MTM0MTcxNDNiIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"1480c568-5cbd-9392-5604-1148f5faffa0":{"instance":"PxaP15cdDei3RumIxjSRYSZXzPcbeHf-K3sKtkPZ0NE.eyJpbnN0YW5jZUlkIjoiNDY0MzM3ZGEtNzljZC00NDlmLTkyNGQtNzJiNjMxZjNmZjMzIiwiYXBwRGVmSWQiOiIxNDgwYzU2OC01Y2JkLTkzOTItNTYwNC0xMTQ4ZjVmYWZmYTAiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIwYjViM2YzYy1iZDA1LTRkZWUtYmVjZi0wNGNmNTExM2JlNzAiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiMDA0ZDIzMzYtZDFjYi0wZmQ4LTIyYzItYzEwNzY5NDk3ODFlIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"13aa9735-aa50-4bdb-877c-0bb46804bd71":{"instance":"3Quuda1R0BTapuUNw8LcKwAs0dTJIyN_hedqqtu6X0w.eyJpbnN0YW5jZUlkIjoiZWI4Mzg5NzQtODg4YS00OGU5LWJiNWQtM2FiOGEyYTlkZmEzIiwiYXBwRGVmSWQiOiIxM2FhOTczNS1hYTUwLTRiZGItODc3Yy0wYmI0NjgwNGJkNzEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIzMTExMWJiOS1iNGZhLTRmZjUtYTMwOC00NjgxMGYwNjMwNWIiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiYWQ4ZDlkOTgtMjA4Yy0wM2FlLTBiZDItODkwOWZhMTM1ODhlIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"d70b68e2-8d77-4e0c-9c00-c292d6e0025e":{"instance":"CTtRemxPaRMixKZoyUUQVdJlXSQAuBupr6rDgFSfsuk.eyJpbnN0YW5jZUlkIjoiZWU4MjRmNDEtMjkxYy00MGNiLWJjYzYtZWU0ZGY0MTA2MzNiIiwiYXBwRGVmSWQiOiJkNzBiNjhlMi04ZDc3LTRlMGMtOWMwMC1jMjkyZDZlMDAyNWUiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJjNDdiNTYyZi0zZjhjLTRlMjItOTA1NS1hM2ZkMDFhN2MzYTQiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiYTg4YzViYWQtODExYS0wYjhjLTBjNDktNWRmY2FjYWFlNDE2Iiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"14b89688-9b25-5214-d1cb-a3fb9683618b":{"instance":"rqOddPghtrvJt6uSROZ4v_X_cmxwV15RvBxRWCeIbT4.eyJpbnN0YW5jZUlkIjoiYTU3MTExOWQtZTQ1Mi00NDg4LTlmYzMtMjJhOGE5ZDI5YmNlIiwiYXBwRGVmSWQiOiIxNGI4OTY4OC05YjI1LTUyMTQtZDFjYi1hM2ZiOTY4MzYxOGIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJkNjgyMTY2MS0wNjkxLTQ2NmYtYjU2Mi0zODgwYmViMzhiOGIiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiZTM3ZjA1NzEtNGM1NC0wZmNmLTJmNGMtOTExOWYxNjgxY2UzIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"instance":"aeunwAdjWWJ7rGBeyiAxbnFra5QrSwhopfuUFri9DjE.eyJpbnN0YW5jZUlkIjoiMzg1NTQ3MjctNTNjMC00OWUwLTg3MTUtYWEzNzhmYTJmYTI4IiwiYXBwRGVmSWQiOiIxMzVjM2Q5Mi0wZmVhLTFmOWQtMmJhNS0yYTFkZmIwNDI5N2UiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJjNGVlMGVhOC00YThhLTQ3MDAtOTU1OS1iNzFkNzg1Y2VhMjUiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiN2U1YjUzY2ItZmJjNi0wMmE3LTM3OWEtMTk4NmQ3MTg3ZDA1Iiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"146c0d71-352e-4464-9a03-2e868aabe7b9":{"instance":"eW7f2tYepdS3tF3qq72fHIY4pBOV7FToiN489fEeytY.eyJpbnN0YW5jZUlkIjoiNzE3MWMzYTItMDAwMS00ODEwLTk0ZDMtNWUxNGM3MWE1MzM2IiwiYXBwRGVmSWQiOiIxNDZjMGQ3MS0zNTJlLTQ0NjQtOWEwMy0yZTg2OGFhYmU3YjkiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiI3N2MyOGVjMS0xMjMwLTQ2NDgtYjg4Ni05MmJkYjhkMDg2MTciLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiMzc3ZmQ3NGUtYTgwNy0wMzU3LTI0NWMtZWRhNTlmYTBkNDFiIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"139ef4fa-c108-8f9a-c7be-d5f492a2c939":{"instance":"92FvsmBBV_HEsWd97viYZNRCurzs0O_0Zdy_d4exfPM.eyJpbnN0YW5jZUlkIjoiNzRmMmE3ODgtMDFlNC00NWI3LWE0ZTAtMjc1OGEyODZmODZlIiwiYXBwRGVmSWQiOiIxMzllZjRmYS1jMTA4LThmOWEtYzdiZS1kNWY0OTJhMmM5MzkiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiJkMDI5YTBlYS1mMTM4LTQyZTQtODZkMS04OGFlZDNhMTBmMDEiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiMzJmY2IzNjQtYTllMi0wZWYwLTE0NmYtOTRlOWZhM2M3ZjQzIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"307ba931-689c-4b55-bb1d-6a382bad9222":{"instance":"p9r2X4xrGca3T2QfuqsKRljCCIu8Ne_IDpFT300J-v8.eyJpbnN0YW5jZUlkIjoiODE3NmEwMmEtYzUzOC00OTcyLWFmYzAtNDk5OGUxOGI5ZWZmIiwiYXBwRGVmSWQiOiIzMDdiYTkzMS02ODljLTRiNTUtYmIxZC02YTM4MmJhZDkyMjIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiI2NWM3MTM2Yi0xNjU4LTQ3YjEtYTFkZC1kYzY1N2UzZGY4MzgiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiYzc3OGI0YzYtNmQzZS0wMjM1LTFmNGYtZmEyOWI5MzExOWQyIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"ea2821fc-7d97-40a9-9f75-772f29178430":{"instance":"ODaQxXWv1Wlfzn_1_5qtqDeYk3lyPUDMJJfyqtz0opg.eyJpbnN0YW5jZUlkIjoiNDA4OTAzMzEtY2RmYi00MzdkLThkNGEtMDdhYTQzMzlkYWFjIiwiYXBwRGVmSWQiOiJlYTI4MjFmYy03ZDk3LTQwYTktOWY3NS03NzJmMjkxNzg0MzAiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsIm9yaWdpbkluc3RhbmNlSWQiOiIwZTc0ZGMzNi1iNTA4LTQ4NTAtOTU2Ny00YzdkNWYzOWVhOWMiLCJhaWQiOiI2YWNmMTFmNC04M2UzLTRmNDEtODcxNC1lNDAzNzhmYzQzNTAiLCJiaVRva2VuIjoiMDY4NzE3ZGQtNjVmZC0wODNhLTNkYzUtYjQxYjFiODM1ZDgxIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"14d7032a-0a65-5270-cca7-30f599708fed":{"instance":"Y22k--C13TsA8naWagv_qh7IoT6YoA_pA3Jv2hTXfnI.eyJpbnN0YW5jZUlkIjoiMmZiYjUwZDMtNmI5Ny00YjlhLWE1OTQtYTc1Yjk0YjY4NzQzIiwiYXBwRGVmSWQiOiIxNGQ3MDMyYS0wYTY1LTUyNzAtY2NhNy0zMGY1OTk3MDhmZWQiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI2OWI1NDQzZi1jMzkxLTAwZGQtMTUxYi0xNGVhY2MwYzAwNmUiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"1328daed-5aba-1c57-e6d2-44c93b6e2bde":{"instance":"tjEB4s8VETmojN5X0s6UsZ2ulspOkaWgTx6ZJdl7xAM.eyJpbnN0YW5jZUlkIjoiMDBiMDE0ZjQtZGVlYS00YzdhLThiZWQtNmNjZWQ5Y2E2MDI5IiwiYXBwRGVmSWQiOiIxMzI4ZGFlZC01YWJhLTFjNTctZTZkMi00NGM5M2I2ZTJiZGUiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ0WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"13ee53b4-2343-b641-c84d-056d2e6ed2e6":{"instance":"9XroE6VWJAbck9lq8fgmN9OSd2IOB4Czz018fmx_h9k.eyJpbnN0YW5jZUlkIjoiYTdjNDhiYjAtZWI0NC00OGVhLTgzOWMtZjFjYjBkODgwMWQ1IiwiYXBwRGVmSWQiOiIxM2VlNTNiNC0yMzQzLWI2NDEtYzg0ZC0wNTZkMmU2ZWQyZTYiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ0WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"13322a7c-6039-ac58-86e8-48b76f901d91":{"instance":"XWg0O3a4Xl1NiUXxsy3SIEIRIIrRtsBHu_suRa0g66k.eyJpbnN0YW5jZUlkIjoiYTRkODlmNjEtM2ZlNC00MzQxLWE5NzAtZGQxOWNhNmQyNjllIiwiYXBwRGVmSWQiOiIxMzMyMmE3Yy02MDM5LWFjNTgtODZlOC00OGI3NmY5MDFkOTEiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ0WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"2b1943e2-3fc2-47bc-be56-3d402e5966d7":{"instance":"3_AAN4BFLUNIu1UoYnqKrb0sWmWq3uEBwMuRgT65aSw.eyJpbnN0YW5jZUlkIjoiODQ4MDFlMGQtOTEyZS00ZWI2LThmNjQtYWZjYzRmMDI3ODNjIiwiYXBwRGVmSWQiOiIyYjE5NDNlMi0zZmMyLTQ3YmMtYmU1Ni0zZDQwMmU1OTY2ZDciLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ0WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"4b10fcce-732d-4be3-9d46-801d271acda9":{"instance":"Y70-m0erCIqLf5-_T-iR8Ykr_vMxw34XcFcRZeARscM.eyJpbnN0YW5jZUlkIjoiM2ZjODRhMjUtNjcwYi00ZjExLWE5YjYtMTQwOTU5NzgzNGY0IiwiYXBwRGVmSWQiOiI0YjEwZmNjZS03MzJkLTRiZTMtOWQ0Ni04MDFkMjcxYWNkYTkiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI3OWM2NWVjOS1jZjBkLTA0NTYtMTkzOS1hN2I4MDFjMmIzZDkiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"8725b255-2aa2-4a53-b76d-7d3c363aaeea":{"instance":"Wpk-Q1YzK2uZ5q4usx13kuSsEgGChiMLWi9nz-0zmvc.eyJpbnN0YW5jZUlkIjoiNTg5M2U3MTktYzI2Zi00NzgyLWI3ZDEtMGJmNjdhYzBiYmU2IiwiYXBwRGVmSWQiOiI4NzI1YjI1NS0yYWEyLTRhNTMtYjc2ZC03ZDNjMzYzYWFlZWEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIxZTlkZjNmNS02YTY5LTBjYzUtMDc1ZS1iODQ3MjI3YTNjY2IiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"35aec784-bbec-4e6e-abcb-d3d724af52cf":{"instance":"oU8GSuszruNCFipVAiJ1z_YPutbEXkjXrW0kuVYaVvU.eyJpbnN0YW5jZUlkIjoiYTZhODllYjQtOWYyYi00MDFjLWJlNWMtMTU1NmY0NDk3NWIwIiwiYXBwRGVmSWQiOiIzNWFlYzc4NC1iYmVjLTRlNmUtYWJjYi1kM2Q3MjRhZjUyY2YiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiJlMGE2OGE1OC0zNzJkLTBiNWItMGVkMy1hNmU3YWNmM2YyOWQiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"12f1fbab-8b9d-3002-87b5-2972897e8314":{"instance":"33jXhLT3stG5CLhwpuqXng5_57nIWOeQwKXoKgJCvtk.eyJpbnN0YW5jZUlkIjoiOTBhZjQyODctNjk3ZS00NjQ2LWFiN2QtNjgxODQyM2I2OGJhIiwiYXBwRGVmSWQiOiIxMmYxZmJhYi04YjlkLTMwMDItODdiNS0yOTcyODk3ZTgzMTQiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ1WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa":{"instance":"joyI9JjMQ_OLrF4q8XErfw95zrB8NvMy4PxmTlmCWgU.eyJpbnN0YW5jZUlkIjoiZTdhZDkyZWYtMDYyYy00YzQ5LWE1MjQtYmU2OGRlZjEwMTI4IiwiYXBwRGVmSWQiOiIxNGNjMDIwNS0zMjZiLWVhMmQtMWNmMS01Zjk4OTNjMWQyZmEiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ1WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"622e5f4f-d996-451b-b2fa-150ff44af8da":{"instance":"0JtvjQpPKwUpP_PNNCbEQiiS7nJMlYb4TRNr_b6qrmU.eyJpbnN0YW5jZUlkIjoiYjgyM2Y4YjQtMTczYS00NjE3LTgxNGMtYmZmMjQyMzFkMjcxIiwiYXBwRGVmSWQiOiI2MjJlNWY0Zi1kOTk2LTQ1MWItYjJmYS0xNTBmZjQ0YWY4ZGEiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ1WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"instance":"C0wRMhqcdYpNdo-rCuskCymnEdffe99ffSrKJ0XjsgE.eyJpbnN0YW5jZUlkIjoiNzQwOTNlM2YtZDg2OC00MmU1LWE1ODYtMjlmNzg4NzY3MGZhIiwiYXBwRGVmSWQiOiIxNGNjNTliYy1mMGI3LTE1YjgtZTFjNy04OWNlNDFkMGUwYzkiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIzMjA3MmFkMy03MDZlLTA5YTItMTUwOS05YTQ2ZDBjY2Y3ZDciLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"instance":"kZD6bU-6gZht39Dm65cL17ErdEbE934qt8X9YFY4kK8.eyJpbnN0YW5jZUlkIjoiMzExYjE3OWItZjdiMC00MjU1LTgzM2QtN2NkZWZiNzM3OTQ4IiwiYXBwRGVmSWQiOiIxNGNmZmQ4MS01MjE1LTBhN2YtMjJmOC0wNzRiMGUyNDAxZmIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI3NzE1MDM3Ny01ZmI2LTA5MTItMzNiMi1jZjZmYTNjOWZlNjUiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"instance":"wPLyq4pQ0rNe2tn82ux3zmYCs_S5ryu0TpadAGsk1vw.eyJpbnN0YW5jZUlkIjoiZDMxY2Y1YzYtMDMyMy00ZTBiLTliNWMtZWMwOTI1ZGU5Y2NkIiwiYXBwRGVmSWQiOiIxNGNlMjhmNy03ZWIwLTM3NDUtMjJmOC0wNzRiMGUyNDAxZmIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI5NTEyZTEyYS1hYjI1LTA1NGMtMmJkMy01ZmI4N2Q2NDFiZTAiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"instance":"w8u6L0zfn-hvlGmNZCfjmmsCc8JX009MVHlocjdfhb4.eyJpbnN0YW5jZUlkIjoiNDIwZGZhNjgtZWZkZC00YWI5LWE1MjktMGIwMTA1YTFiMmU4IiwiYXBwRGVmSWQiOiIxMzgwYjcwMy1jZTgxLWZmMDUtZjExNS0zOTU3MWQ5NGRmY2QiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJ2ZW5kb3JQcm9kdWN0SWQiOiJzdG9yZXNfYmFzaWMiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIwNDAzZWU4NC00N2RiLTAxZmUtMTVhNi1iOGIwNWQxYjM1YzUiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"instance":"n-KTzZSAqTjEfIZ7wQCWnWS7zq2Al98ViWmvxgjBDuo.eyJpbnN0YW5jZUlkIjoiMzcwNjk4MGUtYTg4Ni00ZjcyLTljNmUtZTliNDRjZGEzMmEyIiwiYXBwRGVmSWQiOiIxNTA1Yjc3NS1lODg1LWViMWItYjY2NS0xZTQ4NWQ5YmY5MGUiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI3MTA4OGNlMi0wMDgwLTA0MzUtMmNlMS01YTA1MTQ2MGI1OGYiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"instance":"SQ1zOuIejTXtcTaBlJ6emaGFZs4SsOil8aby8gpXYBA.eyJpbnN0YW5jZUlkIjoiMTQ5ZTAzYmQtOThlMy00ZDhjLTk4ZWYtZjI1Y2U3NGYyYzFlIiwiYXBwRGVmSWQiOiI0YWViZDBjYi1mYmRiLTRkYTctYjVkMS1kMDU2NjBhMzAxNzIiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI1MjkwMTc1MS0zMGU1LTA2Y2ItMjg2MC00MWVkYmZmNWFiMzMiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"1484cb44-49cd-5b39-9681-75188ab429de":{"instance":"Eps1OgHIeE4RFAoOA95VUoPPuPWpAn9-clBne_2T2rQ.eyJpbnN0YW5jZUlkIjoiOGVkZGUwZDAtODAzMi00Y2RkLTk3ZDktODYxNzg0YmFjYjQ5IiwiYXBwRGVmSWQiOiIxNDg0Y2I0NC00OWNkLTViMzktOTY4MS03NTE4OGFiNDI5ZGUiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiJjOGQzZjQzYy0yODM0LTA3OWEtMjc1Ni0zNWE2ZGMwMDRjNjQiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"cdd4b6d5-6fb4-4bd1-9189-791244b5361e":{"instance":"ecimdwqEi7P3FKE6TCLoYuUGgcquMkmChtVQH3ejSDw.eyJpbnN0YW5jZUlkIjoiMmI0Y2E1OTctZGJlNy00OGQzLWFjZTItMWZlYTJlZmExZDA1IiwiYXBwRGVmSWQiOiJjZGQ0YjZkNS02ZmI0LTRiZDEtOTE4OS03OTEyNDRiNTM2MWUiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI2ZDQyYjE3Yi03M2UxLTAzOTQtMWM2ZC1hYzViNzY0MDlhMjgiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"instance":"Px-tg6THI3X3U_KU-ZXUNnQKW99m8IBNFZtwX1eUTVs.eyJpbnN0YW5jZUlkIjoiNTUwZGM3YmEtNmVkNC00MWVmLWE2YzYtMGFkZDg4NjhmYTU1IiwiYXBwRGVmSWQiOiIxNGNlMTIxNC1iMjc4LWE3ZTQtMTM3My0wMGNlYmQxYmVmN2MiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIxMzAzZDM1Ni1jNmQyLTBhYTgtMTY0OS1iOTZjZDBkMjdkNzgiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"instance":"wixcode-pub.f7b14fb634215e3a568e89d7257f506aff33d83b.eyJpbnN0YW5jZUlkIjoiNTc4NzUyYzItOTgzZi00OWFjLWFhNjItM2M5MjViMWRhODU1IiwiaHRtbFNpdGVJZCI6ImZlZTM4MjgyLWNiY2QtNDUwNS05YWI3LTMyZWU0MDg3MDI4NCIsInVpZCI6bnVsbCwicGVybWlzc2lvbnMiOm51bGwsImlzVGVtcGxhdGUiOmZhbHNlLCJzaWduRGF0ZSI6MTYyMTc2NDEwNDc0NCwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwiYXBwRGVmSWQiOiJDbG91ZFNpdGVFeHRlbnNpb24iLCJpc0FkbWluIjpmYWxzZSwibWV0YVNpdGVJZCI6IjQ2MGUxNGVjLWE4MDYtNGI0Ny1iMDhmLWIzYjE1OGJhODcyZCIsImNhY2hlIjpudWxsLCJleHBpcmF0aW9uRGF0ZSI6bnVsbCwicHJlbWl1bUFzc2V0cyI6Ikhhc0RvbWFpbixIYXNFQ29tbWVyY2UsU2hvd1dpeFdoaWxlTG9hZGluZyxBZHNGcmVlIiwidGVuYW50IjpudWxsLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSIsImluc3RhbmNlVHlwZSI6InB1YiIsInNpdGVNZW1iZXJJZCI6bnVsbH0="},"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3":{"instance":"_m-1cY5lMzHwD2kpnfxrS5O66NdOlpORROHlUYK-JSw.eyJpbnN0YW5jZUlkIjoiNmUyYWY3NzQtMWVjMC00ZDU0LTg1NGItMjkyMzg4MThhZTI4IiwiYXBwRGVmSWQiOiIxNTIyODI3Zi1jNTZjLWE1YzktMmFjOS0wMGY5ZTZhZTEyZDMiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NFoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIyODI0ZTM5OC1iNmM2LTA2MTMtMzVjNC05YTkyZDBhMjI5MDUiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14c92d28-031e-7910-c9a8-a670011e062d":{"instance":"iCzKLRdgG5-FeKLRgFvH19za2HvEXJY8ltlCgs3dSPQ.eyJpbnN0YW5jZUlkIjoiOTk2NDM4OGYtYWRlMC00ZTNhLWE1ZjgtNmQ3ZThiMTUzOWEwIiwiYXBwRGVmSWQiOiIxNGM5MmQyOC0wMzFlLTc5MTAtYzlhOC1hNjcwMDExZTA2MmQiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiJkZjZhMmM2My0wNWU2LTA1N2QtMTU3Ny1kZWNmZDNhZmJlOGQiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"13707244-ccaa-a180-9ae4-664d3a833580":{"instance":"dSVmiQCMZSvrRekxLYN2jsuKgLdEBnSQzgxzmUlwieM.eyJpbnN0YW5jZUlkIjoiMjk3NWU4NjMtYzMzNC00ZGZlLWExMDMtZTk4NmE4YmVmMDliIiwiYXBwRGVmSWQiOiIxMzcwNzI0NC1jY2FhLWExODAtOWFlNC02NjRkM2E4MzM1ODAiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI2ZjdiZmM4Zi02YjMyLTA2YjktMTE4Yy01YTM3ZjAwNDc3YjYiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"136e8e3c-0f84-1750-d45a-da6f5d7229f8":{"instance":"Ag_ec4bDTVA5-AhXDXWpTQQAc2w6UGrvKHV5Aj8aO44.eyJpbnN0YW5jZUlkIjoiMzg0ZWQxZjItMGE3Yi00NDhhLWE1ZmMtOTA0OWJmMjdhZmM5IiwiYXBwRGVmSWQiOiIxMzZlOGUzYy0wZjg0LTE3NTAtZDQ1YS1kYTZmNWQ3MjI5ZjgiLCJzaWduRGF0ZSI6IjIwMjEtMDUtMjNUMTA6MDE6NDQuNzQ1WiIsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNmFjZjExZjQtODNlMy00ZjQxLTg3MTQtZTQwMzc4ZmM0MzUwIiwic2l0ZU93bmVySWQiOiJhNmE2NjYyZS1jNWJmLTQ4YjEtODVmYS0xYWVlNzliN2M1ZjEifQ"},"14635256-b183-1c71-a4d2-f55179b80e8a":{"instance":"pLZMNLMhq1rvFaK10KKLQusgqFq5q7WN8JGOMueD6Wc.eyJpbnN0YW5jZUlkIjoiMjJjMWVkZGEtYzYzMi00NGJmLThlYzEtZGY4NjAyMDk2Y2IxIiwiYXBwRGVmSWQiOiIxNDYzNTI1Ni1iMTgzLTFjNzEtYTRkMi1mNTUxNzliODBlOGEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI2NGNmZjkzNi02ZTM0LTBmZjgtM2U0ZS02YzM3NWFiM2ViOWMiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"148c2287-c669-d849-d153-463c7486a694":{"instance":"kNqzRvzTPmp2iaepX3biJhhZrGZnx75KmIz04MRTUlM.eyJpbnN0YW5jZUlkIjoiMjMzZTIxNjMtZjE2Zi00M2Y0LTliZGMtZDI3YzhlZTkzNmFlIiwiYXBwRGVmSWQiOiIxNDhjMjI4Ny1jNjY5LWQ4NDktZDE1My00NjNjNzQ4NmE2OTQiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI2NTMwMzU4Zi01OTY5LTA4YjMtMmI1My02MWNkZDY1M2IxODMiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14dbefd2-01b4-fb61-32a7-3abd44da4908":{"instance":"JEEgE1061dthLXDhygUmapCbQ9a1i_oHnag6pHUL9DI.eyJpbnN0YW5jZUlkIjoiMDQ4MDA2MTQtODc0MC00MGIxLThmODAtZDFkYzAwYTdjMGE5IiwiYXBwRGVmSWQiOiIxNGRiZWZkMi0wMWI0LWZiNjEtMzJhNy0zYWJkNDRkYTQ5MDgiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI0MjhlMTJmOC0yZjQ2LTBiZjYtM2YwZi02MjZkNTgxZDQ3ODQiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"instance":"NXn7OnsyTNbeChUeWFCILMsW1LwplmFgmywr3o6SAwg.eyJpbnN0YW5jZUlkIjoiMTViYTllMmUtYjViNy00MDQ4LTgwODUtZDMwNThmZDAwMjU4IiwiYXBwRGVmSWQiOiIxNGRiZWYwNi1jYzQyLTU1ODMtMzJhNy0zYWJkNDRkYTQ5MDgiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiI1M2I0OGFjMi0xZGIxLTBiMGYtMzAwYS02MGI0ZDc2YTg1NzUiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"instance":"zADUi773c7z-P3BkAT4_n04c3ICTN4LD5feqZa0Kzos.eyJpbnN0YW5jZUlkIjoiZjE2OWYxNDItNmFiMS00ZDRiLWI5YjItNGJmODQ0YjhiNTE1IiwiYXBwRGVmSWQiOiIxNGYyNTkyNC01NjY0LTMxYjItOTU2OC1mOWM1ZWQ5OGM5YjEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiJiNzY3ZTVhZS1jMmI3LTA2MGMtMDkzZC1mODQ5MWMwMjMyMzgiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"instance":"NaN0Yj_Y95uwp5E5btdJsHY0qoLRV5oB9s5Brkwn1-8.eyJpbnN0YW5jZUlkIjoiNDZiYTZlOWMtZDI4Yi00MzhiLTk2MTAtMWFjNzE1ZWVlNDBiIiwiYXBwRGVmSWQiOiIxNGYyNWRjNS02YWYzLTU0MjAtOTU2OC1mOWM1ZWQ5OGM5YjEiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsImJpVG9rZW4iOiIwMGI0N2E3MC03YThkLTA4Y2MtMjY5Zi1hOTc2NGQ1NDYzMjYiLCJzaXRlT3duZXJJZCI6ImE2YTY2NjJlLWM1YmYtNDhiMS04NWZhLTFhZWU3OWI3YzVmMSJ9"},"22bef345-3c5b-4c18-b782-74d4085112ff":{"instance":"H5IUlUsEATUyLBSXpLYE2VhYYV-rLxOSs8Nc9jYqjGM.eyJpbnN0YW5jZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwiYXBwRGVmSWQiOiIyMmJlZjM0NS0zYzViLTRjMTgtYjc4Mi03NGQ0MDg1MTEyZmYiLCJtZXRhU2l0ZUlkIjoiNDYwZTE0ZWMtYTgwNi00YjQ3LWIwOGYtYjNiMTU4YmE4NzJkIiwic2lnbkRhdGUiOiIyMDIxLTA1LTIzVDEwOjAxOjQ0Ljc0NVoiLCJkZW1vTW9kZSI6ZmFsc2UsImFpZCI6IjZhY2YxMWY0LTgzZTMtNGY0MS04NzE0LWU0MDM3OGZjNDM1MCIsInNpdGVPd25lcklkIjoiYTZhNjY2MmUtYzViZi00OGIxLTg1ZmEtMWFlZTc5YjdjNWYxIn0"}},"dynamicModelApiUrl":"https:\/\/www.fudbeens.com\/_api\/v2\/dynamicmodel","expiryTimeoutOverride":0},"siteMembersWixCodeSdk":{"isPreviewMode":false,"smToken":"","smcollectionId":"fed0222d-878d-406a-b50e-2fcd3ea312eb"},"siteMembers":{"collectionExposure":"Public","smcollectionId":"fed0222d-878d-406a-b50e-2fcd3ea312eb","smToken":"","svSession":"c510a03286db55076cbf16602325330145dd976485a7add270893f5952d8f274d426b86db0d1f30bbe9b72ba4f1d3c091e60994d53964e647acf431e4f798bcd1ca9be68356e8385d53246bd16c778a5d3fdaa8c9d9c10c5490ce9e289fc709b4d7f5bb8b5cb44570baef6c0d95b2b1131feccd7b7b6db3ef76f6c636623f10850508a13032995e458e711bfc685de70","protectedHomepage":false,"memberInfoAppId":2902,"isCommunityInstalled":true},"siteWixCodeSdk":{"siteRevision":320,"regionalSettings":"en-in","language":"en","currency":"INR","mainPageId":"c1dmp","appsData":{"13":{},"14":{"appDefinitionId":"14bca956-e09f-f4d6-14d7-466cb3f09103"},"15":{"appDefinitionId":"141fbfae-511e-6817-c9f0-48993a7547d1"},"16":{"appDefinitionId":"13ee94c1-b635-8505-3391-97919052c16f"},"19":{"appDefinitionId":"150ae7ee-c74a-eecd-d3d7-2112895b988a"},"20":{"appDefinitionId":"a322993b-2c74-426f-bbb8-444db73d0d1b"},"21":{"appDefinitionId":"55cd9036-36bb-480b-8ddc-afda3cb2eb8d"},"22":{"appDefinitionId":"f123e8f1-4350-4c9b-b269-04adfadda977"},"23":{"appDefinitionId":"9bead16f-1c73-4cda-b6c4-28cff46988db"},"24":{"appDefinitionId":"1480c568-5cbd-9392-5604-1148f5faffa0"},"25":{"appDefinitionId":"13aa9735-aa50-4bdb-877c-0bb46804bd71"},"26":{"appDefinitionId":"d70b68e2-8d77-4e0c-9c00-c292d6e0025e"},"27":{"appDefinitionId":"14b89688-9b25-5214-d1cb-a3fb9683618b"},"28":{"appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e"},"29":{"appDefinitionId":"146c0d71-352e-4464-9a03-2e868aabe7b9"},"30":{"appDefinitionId":"139ef4fa-c108-8f9a-c7be-d5f492a2c939"},"31":{"appDefinitionId":"307ba931-689c-4b55-bb1d-6a382bad9222"},"32":{"appDefinitionId":"ea2821fc-7d97-40a9-9f75-772f29178430"},"33":{"appDefinitionId":"14d7032a-0a65-5270-cca7-30f599708fed"},"34":{"appDefinitionId":"1328daed-5aba-1c57-e6d2-44c93b6e2bde"},"35":{"appDefinitionId":"13ee53b4-2343-b641-c84d-056d2e6ed2e6"},"36":{"appDefinitionId":"13322a7c-6039-ac58-86e8-48b76f901d91"},"37":{"appDefinitionId":"2b1943e2-3fc2-47bc-be56-3d402e5966d7"},"38":{"appDefinitionId":"4b10fcce-732d-4be3-9d46-801d271acda9"},"48":{"appDefinitionId":"8725b255-2aa2-4a53-b76d-7d3c363aaeea"},"49":{"appDefinitionId":"35aec784-bbec-4e6e-abcb-d3d724af52cf"},"50":{"appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314"},"51":{"appDefinitionId":"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa"},"52":{"appDefinitionId":"622e5f4f-d996-451b-b2fa-150ff44af8da"},"1979":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9"},"2902":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb"},"3388":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb"},"3940":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd"},"4368":{"appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e"},"4584":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172"},"5588":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de"},"6108":{"appDefinitionId":"cdd4b6d5-6fb4-4bd1-9189-791244b5361e"},"7048":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c"},"7996":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"9444":{"appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3"},"10805":{"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d"},"11062":{"appDefinitionId":"13707244-ccaa-a180-9ae4-664d3a833580"},"13534":{"appDefinitionId":"136e8e3c-0f84-1750-d45a-da6f5d7229f8"},"15556":{"appDefinitionId":"14635256-b183-1c71-a4d2-f55179b80e8a"},"17266":{"appDefinitionId":"148c2287-c669-d849-d153-463c7486a694"},"18059":{"appDefinitionId":"14dbefd2-01b4-fb61-32a7-3abd44da4908"},"18654":{"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908"},"19189":{"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1"},"19932":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1"},"-666":{"appDefinitionId":"22bef345-3c5b-4c18-b782-74d4085112ff"}},"pageIdToPrefix":{"d6cby":"account","ax19b":"account","qucgd":"account","a8o2z":"account","vbkg7":"account","ydt6e":"account","m2jw3":"profile"},"routerPrefixes":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":{"name":"account","prefix":"\/account","type":"dynamicPages"},"6c2afba6-8182-4f78-bb2b-7ea3bf62f023":{"name":"account","prefix":"\/account","type":"dynamicPages"},"725da943-e4ee-4233-a9ac-80f265a23e09":{"name":"account","prefix":"\/account","type":"dynamicPages"},"be6858a9-bcab-4021-9c8f-8e41682f9f46":{"name":"account","prefix":"\/account","type":"dynamicPages"},"e998991b-f707-4797-83ad-2a51fadfb1eb":{"name":"account","prefix":"\/account","type":"dynamicPages"},"2f94325b-803e-40b0-9e33-8bfa6b294ee4":{"name":"account","prefix":"\/account","type":"dynamicPages"},"b3ad4b94-041b-4ddc-afab-af1f826d16b4":{"name":"profile","prefix":"\/profile","type":"dynamicPages"}},"baseUrl":"https:\/\/www.fudbeens.com","timezone":"Asia\/Calcutta","pageIdToTitle":{"cz8ti":"Cart Page","qucgd":"My Addresses","dv4ba":"CCS","decvk":"Call Back","wzqyl":"Checkout","j9q9x":"FBfacts App","pck01":"Our Story","ydt6e":"Notifications","i78pz":"Call Back App","c1dmp":"Cmg Soon","o6udd":"Today Deals App","pre5g":"Thank You Page","vbkg7":"My Account","ixe0t":"Shop","d6cby":"Settings","ax19b":"My Wallet","a8o2z":"My Orders","m2izr":"Home","bx5r8":"Today Deals","yv9or":"Our Story App","hb5a1":"Group Page","rjg0h":"Offers App","ufl1b":"Members","af6sn":"Contact Us App","m2jw3":"Profile","xauo4":"Cmg Soon App","w0k4o":"Groups","n9s0s":"Plans & Pricing","ztci0":"404 Error Page","q2wpc":"FBfacts","veoqu":"My Account","eah3p":"Contact Us","dznvc":"CCS App","us69l":"offers","q1n6e":"Search Results","agdqi":"Product Page"},"urlMappings":null},"tpaCommons":{"widgetsClientSpecMapData":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","tpaWidgetId":"shoutout_feed","appPage":{},"applicationId":28,"appDefinitionName":"Email Marketing","appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","allowScrolling":false},"1329084e-aa10-48b1-3a48-3404d63de029":{"widgetUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","mobileUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","tpaWidgetId":"write_a_customer_review","appPage":{},"applicationId":34,"appDefinitionName":"Customer Reviews","appDefinitionId":"1328daed-5aba-1c57-e6d2-44c93b6e2bde","allowScrolling":false},"14b2d589-33e5-af98-ec53-a386bbb29a4f":{"widgetUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","mobileUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","tpaWidgetId":"visitor_analytics_stat_counter","appPage":{},"applicationId":35,"appDefinitionName":"Visitor Analytics","appDefinitionId":"13ee53b4-2343-b641-c84d-056d2e6ed2e6","allowScrolling":false},"147ce056-e1f1-42ae-8e33-95f9865d63c8":{"widgetUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","mobileUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","tpaWidgetId":"147ce056-e1f1-42ae-8e33-95f9865d63c8","appPage":{},"applicationId":35,"appDefinitionName":"Visitor Analytics","appDefinitionId":"13ee53b4-2343-b641-c84d-056d2e6ed2e6","allowScrolling":false},"147f339b-3fcf-2fc5-c69b-207cd644130e":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","appPage":{"id":"search_results_page","name":"Search Results Page","defaultPage":"serp","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":36,"appDefinitionName":"Site Search","appDefinitionId":"13322a7c-6039-ac58-86e8-48b76f901d91","allowScrolling":false},"13322a9f-8ffc-59f0-c8fc-ca95943cb55c":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?v=2020.06.13","mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?mobile=1&v=2020.06.13","tpaWidgetId":"instantsearch+_basics","appPage":{},"applicationId":36,"appDefinitionName":"Site Search","appDefinitionId":"13322a7c-6039-ac58-86e8-48b76f901d91","allowScrolling":false},"1396de3a-4236-9601-c4a1-ef4361bba0e9":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","tpaWidgetId":"search","appPage":{},"applicationId":50,"appDefinitionName":"Online Store","appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314","allowScrolling":false},"1396de24-8028-c0e8-06fc-324d1267889f":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","tpaWidgetId":"minicart","appPage":{},"applicationId":50,"appDefinitionName":"Online Store","appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314","allowScrolling":false},"6b6ace36-3b27-463d-9a8b-29e72c7ab67e":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart_v2","tpaWidgetId":"floating_shopping_bag_icon","appPage":{},"applicationId":50,"appDefinitionName":"Online Store","appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314","allowScrolling":false},"13a386d3-301e-bb86-22d1-56fc41b524e2":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/store","mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/mobile","appPage":{"id":"online_store","name":"Online Store","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":50,"appDefinitionName":"Online Store","appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314","allowScrolling":false},"151d4c25-cbae-f866-9fbd-56a59370dcfc":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","mobileUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","tpaWidgetId":"mobile_widget","appPage":{},"applicationId":51,"appDefinitionName":"EasyChat","appDefinitionId":"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa","allowScrolling":false},"14cc02e4-3017-04af-0069-41765b4adc1b":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php","mobileUrl":"https:\/\/nser.io\/wix\/widget.php","tpaWidgetId":"nser.io","appPage":{},"applicationId":51,"appDefinitionName":"EasyChat","appDefinitionId":"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa","allowScrolling":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/members.wixapps.net\/member-info\/view","mobileUrl":"https:\/\/members.wixapps.net\/member-info\/view","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":2902,"appDefinitionName":"Member Account Info","appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","allowScrolling":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","tpaWidgetId":"profile","appPage":{},"applicationId":3388,"appDefinitionName":"Profile Card","appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","allowScrolling":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","tpaWidgetId":"shopping_cart_icon","appPage":{},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product","appPage":{"id":"product_page","name":"Product Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":true},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","tpaWidgetId":"product_widget","appPage":{},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","tpaWidgetId":"add_to_cart_button","appPage":{},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","tpaWidgetId":"grid_gallery","appPage":{},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","tpaWidgetId":"slider_gallery","appPage":{},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/success","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/success","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":3940,"appDefinitionName":"Wix Stores","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","allowScrolling":false},"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4368,"appDefinitionName":"My Addresses","appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","allowScrolling":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/cashier.wixapps.net\/wallet","mobileUrl":"https:\/\/cashier.wixapps.net\/wallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4584,"appDefinitionName":"My Wallet","appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","allowScrolling":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","mobileUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":5588,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","allowScrolling":false},"15293875-09d7-6913-a093-084a9b6ae7f4":{"widgetUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","mobileUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","appPage":{"id":"membership_plan_picker_tpa","name":"Plans & Pricing","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":9444,"appDefinitionName":"Pricing Plans","appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","allowScrolling":false},"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","tpaWidgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","appPage":{},"applicationId":9444,"appDefinitionName":"Pricing Plans","appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","allowScrolling":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/index","mobileUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/mobile","tpaWidgetId":"faq_widget","appPage":{},"applicationId":10805,"appDefinitionName":"Wix FAQ","appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","allowScrolling":false},"13707259-eaf0-b80f-57bc-3423f704a304":{"widgetUrl":"https:\/\/wixlabs-hcounter.appspot.com\/index","mobileUrl":"https:\/\/wixlabs-hcounter.appspot.com\/mobile","tpaWidgetId":"hitcounter-dev","appPage":{},"applicationId":11062,"appDefinitionName":"Wix Hit Counter","appDefinitionId":"13707244-ccaa-a180-9ae4-664d3a833580","allowScrolling":false},"136e8e54-a599-3a61-e4cd-14548c1da9d2":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","mobileUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","tpaWidgetId":"powr_banner_slider","appPage":{},"applicationId":13534,"appDefinitionName":"Social Stream","appDefinitionId":"136e8e3c-0f84-1750-d45a-da6f5d7229f8","allowScrolling":false},"14635280-8c8d-5346-b643-691f84f48973":{"widgetUrl":"https:\/\/instafeed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/instafeed.codev.wixapps.net\/mobile","tpaWidgetId":"instagram_feed","appPage":{},"applicationId":15556,"appDefinitionName":"Instagram Feed","appDefinitionId":"14635256-b183-1c71-a4d2-f55179b80e8a","allowScrolling":false},"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","appPage":{"id":"groups","name":"Groups","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17266,"appDefinitionName":"Wix Groups","appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","allowScrolling":false},"83b2af08-c021-40c8-a3a5-b329a959ec2b":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","tpaWidgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","appPage":{},"applicationId":17266,"appDefinitionName":"Wix Groups","appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","allowScrolling":false},"0a9f687f-7e00-4576-a8e1-9415844b8f44":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp?widget=discovery","mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","tpaWidgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","appPage":{},"applicationId":17266,"appDefinitionName":"Wix Groups","appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","allowScrolling":false},"513a5d84-3ebb-4ca6-a5aa-83effd2123b9":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","appPage":{"id":"group","name":"Group","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17266,"appDefinitionName":"Wix Groups","appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","allowScrolling":false},"c1d78264-dd73-4564-969f-d47d619f7051":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/editorApp.html","appPage":{"id":"groups_area","name":"Groups area","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17266,"appDefinitionName":"Wix Groups","appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","allowScrolling":false},"14dbefdd-0f55-0dfe-70a2-79a8fe7ee7b9":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","appPage":{"id":"all_members","name":"Members","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18059,"appDefinitionName":"Members","appDefinitionId":"14dbefd2-01b4-fb61-32a7-3abd44da4908","allowScrolling":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18654,"appDefinitionName":"Members About","appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","allowScrolling":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","mobileUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19189,"appDefinitionName":"communities-notifications-app","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","allowScrolling":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","mobileUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19932,"appDefinitionName":"Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","allowScrolling":false}},"appsClientSpecMapByApplicationId":{"28":{"widgets":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","widgetId":"141995eb-c700-8487-6366-a482f7432e2b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"shoutout_feed","default":true}},"applicationId":28,"appDefinitionName":"Email Marketing"},"34":{"widgets":{"1329084e-aa10-48b1-3a48-3404d63de029":{"widgetUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","widgetId":"1329084e-aa10-48b1-3a48-3404d63de029","refreshOnWidthChange":true,"mobileUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","published":false,"mobilePublished":true,"seoEnabled":true,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"write_a_customer_review","default":false}},"applicationId":34,"appDefinitionName":"Customer Reviews"},"35":{"widgets":{"14b2d589-33e5-af98-ec53-a386bbb29a4f":{"widgetUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","widgetId":"14b2d589-33e5-af98-ec53-a386bbb29a4f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"visitor_analytics_stat_counter","default":false},"147ce056-e1f1-42ae-8e33-95f9865d63c8":{"widgetUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","widgetId":"147ce056-e1f1-42ae-8e33-95f9865d63c8","refreshOnWidthChange":true,"gluedOptions":{"placement":"TOP_RIGHT","verticalMargin":0,"horizontalMargin":0},"mobileUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"147ce056-e1f1-42ae-8e33-95f9865d63c8","default":true}},"applicationId":35,"appDefinitionName":"Visitor Analytics"},"36":{"widgets":{"147f339b-3fcf-2fc5-c69b-207cd644130e":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","widgetId":"147f339b-3fcf-2fc5-c69b-207cd644130e","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","appPage":{"id":"search_results_page","name":"Search Results Page","defaultPage":"serp","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"published":false,"mobilePublished":true,"seoEnabled":true,"preFetch":true,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":false},"13322a9f-8ffc-59f0-c8fc-ca95943cb55c":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?v=2020.06.13","widgetId":"13322a9f-8ffc-59f0-c8fc-ca95943cb55c","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?mobile=1&v=2020.06.13","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"tpaWidgetId":"instantsearch+_basics","default":true}},"applicationId":36,"appDefinitionName":"Site Search"},"50":{"widgets":{"1396de3a-4236-9601-c4a1-ef4361bba0e9":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","widgetId":"1396de3a-4236-9601-c4a1-ef4361bba0e9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"search","default":false},"1396de24-8028-c0e8-06fc-324d1267889f":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","widgetId":"1396de24-8028-c0e8-06fc-324d1267889f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"minicart","default":false},"6b6ace36-3b27-463d-9a8b-29e72c7ab67e":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart_v2","widgetId":"6b6ace36-3b27-463d-9a8b-29e72c7ab67e","refreshOnWidthChange":true,"gluedOptions":{"placement":"BOTTOM_RIGHT","verticalMargin":0,"horizontalMargin":0},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"floating_shopping_bag_icon","default":false},"13a386d3-301e-bb86-22d1-56fc41b524e2":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/store","widgetId":"13a386d3-301e-bb86-22d1-56fc41b524e2","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/mobile","appPage":{"id":"online_store","name":"Online Store","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"allowPaymentRequest":true},"default":true}},"applicationId":50,"appDefinitionName":"Online Store"},"51":{"widgets":{"151d4c25-cbae-f866-9fbd-56a59370dcfc":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","widgetId":"151d4c25-cbae-f866-9fbd-56a59370dcfc","refreshOnWidthChange":true,"mobileUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"mobile_widget","default":false},"14cc02e4-3017-04af-0069-41765b4adc1b":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php","widgetId":"14cc02e4-3017-04af-0069-41765b4adc1b","refreshOnWidthChange":true,"gluedOptions":{"placement":"BOTTOM_RIGHT","verticalMargin":0,"horizontalMargin":0},"mobileUrl":"https:\/\/nser.io\/wix\/widget.php","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"nser.io","default":true}},"applicationId":51,"appDefinitionName":"EasyChat"},"2902":{"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/members.wixapps.net\/member-info\/view","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/member-info\/view","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":2902,"appDefinitionName":"Member Account Info"},"3388":{"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"mobileSettingsEnabled":true,"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardController.bundle.min.js","componentUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'ProfileCardViewerWidget.bundle.min.js') %>","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardViewerWidget.bundle.min.js","controllerUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'ProfileCardController.bundle.min.js') %>"},"tpaWidgetId":"profile","default":true}},"applicationId":3388,"appDefinitionName":"Profile Card"},"3940":{"widgets":{"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","minHeightInMobile":340,"mobileSettingsEnabled":true,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/galleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/gallery.bundle.min.js"},"default":true},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIcon.bundle.min.js","componentName":"cartWidget","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIconController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIcon.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIconNoCss.bundle.min.js"},"tpaWidgetId":"shopping_cart_icon","default":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product","appPage":{"id":"product_page","name":"Product Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPage.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPageController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPage.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPageNoCss.bundle.min.js"},"default":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":480,"fullPageDesktopOnly":true},"default":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidget.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidgetController.bundle.min.js","minHeightInMobile":354,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidgetController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidget.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidgetNoCss.bundle.min.js"},"tpaWidgetId":"product_widget","default":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCartController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCart.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCart.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCartController.bundle.min.js","viewer":{"errorReporting":{"url":"https:\/\/[email protected]\/1865790"}},"noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCartNoCss.bundle.min.js"},"tpaWidgetId":"add_to_cart_button","default":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlist.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlistController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/wishlistController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/wishlist.bundle.min.js"},"default":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartViewerWidget.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartController.bundle.min.js","controllerUrlTemplate":"<%= serviceUrl('wixstores-client-cart-ooi', 'cartController.bundle.min.js') %>","componentUrlTemplate":"<%= serviceUrl('wixstores-client-cart-ooi', 'cartViewerWidget.bundle.min.js') %>"},"default":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","mobileSettingsEnabled":true,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/galleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/gallery.bundle.min.js"},"tpaWidgetId":"grid_gallery","default":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGalleryController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/sliderGalleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/sliderGallery.bundle.min.js"},"tpaWidgetId":"slider_gallery","default":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/success","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/success","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1257.0\/thankYouPageController.bundle.min.js","iframeWithPlatform":true},"default":false}},"applicationId":3940,"appDefinitionName":"Wix Stores"},"4368":{"widgets":{"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","widgetId":"151290e1-62a2-0775-6fbc-02182fad5dec","refreshOnWidthChange":true,"mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":4368,"appDefinitionName":"My Addresses"},"4584":{"widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/cashier.wixapps.net\/wallet","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/cashier.wixapps.net\/wallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":4584,"appDefinitionName":"My Wallet"},"5588":{"widgets":{"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","refreshOnWidthChange":true,"mobileUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerWidget.bundle.min.js","controllerUrlTemplate":"","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/viewerWidget.bundle.min.js"},"default":true}},"applicationId":5588,"appDefinitionName":"Wix Site Search"},"9444":{"widgets":{"15293875-09d7-6913-a093-084a9b6ae7f4":{"widgetUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","widgetId":"15293875-09d7-6913-a093-084a9b6ae7f4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","appPage":{"id":"membership_plan_picker_tpa","name":"Plans & Pricing","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":0},"default":true},"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","widgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListController.bundle.min.js","componentUrlTemplate":"","componentUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListViewerWidget.bundle.min.js","controllerUrlTemplate":"","viewer":{"errorReporting":{"url":""}},"migratingToOoi":true},"tpaWidgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","default":true}},"applicationId":9444,"appDefinitionName":"Pricing Plans"},"10805":{"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/index","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"mobileSettingsEnabled":true},"tpaWidgetId":"faq_widget","default":true}},"applicationId":10805,"appDefinitionName":"Wix FAQ"},"11062":{"widgets":{"13707259-eaf0-b80f-57bc-3423f704a304":{"widgetUrl":"https:\/\/wixlabs-hcounter.appspot.com\/index","widgetId":"13707259-eaf0-b80f-57bc-3423f704a304","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wixlabs-hcounter.appspot.com\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"hitcounter-dev","default":true}},"applicationId":11062,"appDefinitionName":"Wix Hit Counter"},"13534":{"widgets":{"136e8e54-a599-3a61-e4cd-14548c1da9d2":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","widgetId":"136e8e54-a599-3a61-e4cd-14548c1da9d2","refreshOnWidthChange":true,"mobileUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"powr_banner_slider","default":true}},"applicationId":13534,"appDefinitionName":"Social Stream"},"15556":{"widgets":{"14635280-8c8d-5346-b643-691f84f48973":{"widgetUrl":"https:\/\/instafeed.codev.wixapps.net\/widget","widgetId":"14635280-8c8d-5346-b643-691f84f48973","refreshOnWidthChange":true,"mobileUrl":"https:\/\/instafeed.codev.wixapps.net\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"mobileSettingsEnabled":true},"tpaWidgetId":"instagram_feed","default":true}},"applicationId":15556,"appDefinitionName":"Instagram Feed"},"17266":{"widgets":{"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","widgetId":"a7dcdfcb-8abd-4008-af19-fed5fcd12b40","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","appPage":{"id":"groups","name":"Groups","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/viewerApp.bundle.min.js","mobileSettingsEnabled":true,"controllerUrlTemplate":"","componentUrlTemplate":"<%= serviceUrl('social-groups-app', 'viewerApp.bundle.min.js') %>"},"default":true},"83b2af08-c021-40c8-a3a5-b329a959ec2b":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","widgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js"},"tpaWidgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","default":false},"0a9f687f-7e00-4576-a8e1-9415844b8f44":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp?widget=discovery","widgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","controllerUrlTemplate":"","componentUrlTemplate":""},"tpaWidgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","default":false},"513a5d84-3ebb-4ca6-a5aa-83effd2123b9":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","widgetId":"513a5d84-3ebb-4ca6-a5aa-83effd2123b9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","appPage":{"id":"group","name":"Group","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidget.bundle.min.js","mobileSettingsEnabled":true,"componentUrlTemplate":"<%= serviceUrl('social-group', 'viewerWidget.bundle.min.js') %>","controllerUrlTemplate":"","viewer":{"errorReporting":{"url":""}},"noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/social-group\/<%=serviceVersion('social-group')%>\/viewerWidgetNoCss.bundle.min.js"},"default":false},"c1d78264-dd73-4564-969f-d47d619f7051":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/editorApp.html","widgetId":"c1d78264-dd73-4564-969f-d47d619f7051","refreshOnWidthChange":true,"appPage":{"id":"groups_area","name":"Groups area","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"default":false}},"applicationId":17266,"appDefinitionName":"Wix Groups"},"18059":{"widgets":{"14dbefdd-0f55-0dfe-70a2-79a8fe7ee7b9":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","widgetId":"14dbefdd-0f55-0dfe-70a2-79a8fe7ee7b9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","appPage":{"id":"all_members","name":"Members","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":18059,"appDefinitionName":"Members"},"18654":{"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":18654,"appDefinitionName":"Members About"},"19189":{"widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":0},"default":true}},"applicationId":19189,"appDefinitionName":"communities-notifications-app"},"19932":{"widgets":{"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","refreshOnWidthChange":true,"mobileUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"applicationId":19932,"appDefinitionName":"Settings"}},"appsClientSpecMapData":{"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"applicationId":28,"appDefinitionName":"Email Marketing","appFields":{"premiumBundle":{"parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"}},"isWixTPA":true},"1328daed-5aba-1c57-e6d2-44c93b6e2bde":{"applicationId":34,"appDefinitionName":"Customer Reviews","appFields":{"packagePickerV2":[{"model":{"plans":[{"id":"4881eab4-0cb8-4762-a1a1-bad637a9beb7","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"1e51b20b-15b3-4a93-a15a-66424ac3217b":"","24011c30-460e-4039-80d8-9263c5b9906a":"","46e26f7d-61b9-41fe-b0c2-ac964deca612":""},"mostPopular":false},{"id":"9c4ff786-a52f-46b9-8bb7-3c597be07355","name":"Premium","billing":{"yearlyPrice":2.4200000762939,"monthlyPrice":2.9900000095367,"oneTimePrice":0,"yearlyDiscountPercent":19},"vendorId":"premium","featureList":{"1e51b20b-15b3-4a93-a15a-66424ac3217b":"","24011c30-460e-4039-80d8-9263c5b9906a":"","314cb363-876c-4cc5-9b1b-99130f53352c":"","46e26f7d-61b9-41fe-b0c2-ac964deca612":"","81940618-5a9b-415f-b7c5-3115fc1c50ce":"","8ea54525-799f-4bea-99fb-c160faf49b35":"","c7a743e2-87f7-4a3c-96aa-f29f254d9091":"","cadf36df-e8b3-413f-83a1-e421f7b8eed8":""},"mostPopular":false}],"features":[{"id":"46e26f7d-61b9-41fe-b0c2-ac964deca612","name":"Manage your customer reviews","description":"You’ll receive all reviews to your email reviews to your inbox. Filter the testimonials and publish the ones you want to show off on your site. "},{"id":"1e51b20b-15b3-4a93-a15a-66424ac3217b","name":"Unlimited reviews","description":"Get as many reviews from your customers as you can and display the ones you want."},{"id":"24011c30-460e-4039-80d8-9263c5b9906a","name":"Fully customizable","description":"Fully customize the App’s colors for seamless integration onto your site. "},{"id":"cadf36df-e8b3-413f-83a1-e421f7b8eed8","name":"Display Star Rating","description":"Show site visitors written reviews with star ratings included. "},{"id":"314cb363-876c-4cc5-9b1b-99130f53352c","name":"Respond to reviews","description":"Respond to your customers who have given you reviews."},{"id":"c7a743e2-87f7-4a3c-96aa-f29f254d9091","name":"View Email","description":"View email address entered for each review."},{"id":"8ea54525-799f-4bea-99fb-c160faf49b35","name":"Choose Display Reviews","description":"Can can choose to display the newest reviews first or have 5 star reviews appear first."},{"id":"81940618-5a9b-415f-b7c5-3115fc1c50ce","name":"Customize font","description":"Select the font you like best and that matches your brand’s colors."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false}}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"13ee53b4-2343-b641-c84d-056d2e6ed2e6":{"applicationId":35,"appDefinitionName":"Visitor Analytics","appFields":{"packagePickerV2":[{"appId":"8ef06506-5675-40a3-917b-db1817d9576d","model":{"plans":[{"id":"01622543-6a93-4256-a3cb-7599559548cb","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"3622d6b3-7359-4bfb-ab57-4b138dde489d":"","4c01a0e3-681d-4b4e-952d-932f1bc7bbbc":"","d701f65c-c03e-4142-90d6-6a9e743ca907":""},"mostPopular":false},{"id":"d155fd2c-e82c-4764-bf2d-56206a2d5ea3","name":"Premium","billing":{"yearlyPrice":4.9899997711182,"monthlyPrice":5.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"lmozwcvuly","featureList":{"0d9c8917-d401-4434-a455-61f3385d4e97":"","3622d6b3-7359-4bfb-ab57-4b138dde489d":"","4c01a0e3-681d-4b4e-952d-932f1bc7bbbc":"","6367b257-3a82-4b2f-be06-a48b62d5a01b":"","914da81f-b6fe-49fa-961a-052905e0c602":"","9b95e7bc-62d9-4145-a47b-61feda9a1157":"","9e1dc3c3-7049-4f39-a19f-066736e21a3d":"","ac2a22aa-45cf-481a-9b4a-5af84062b2e1":"","d6bbeacd-f956-446f-9882-1b41289be8f1":"","d701f65c-c03e-4142-90d6-6a9e743ca907":"","e7916eef-e534-4c4d-aa68-935fe1eae513":""},"mostPopular":false}],"features":[{"id":"d701f65c-c03e-4142-90d6-6a9e743ca907","name":"Get Started Easily","description":"Add Visitors Analytics, publish your site and you're set. You'll see all your stats in your dashboard."},{"id":"ac2a22aa-45cf-481a-9b4a-5af84062b2e1","name":"View All Your Stats","description":"See where visitors come from, who's live on your site right now, what days you get the most traffic and more."},{"id":"4c01a0e3-681d-4b4e-952d-932f1bc7bbbc","name":"Track Everything at a Glance","description":"Easy to follow charts and graphs make viewing all your stats a breeze."},{"id":"9e1dc3c3-7049-4f39-a19f-066736e21a3d","name":"Get Advanced Insights ","description":"Find out more about your visitors like the browsers they use, their operating systems, IP addresses, etc."},{"id":"3622d6b3-7359-4bfb-ab57-4b138dde489d","name":"Show Off Your Visits ","description":"Proudly display how many visitors you get with a traffic counter on your site."},{"id":"d6bbeacd-f956-446f-9882-1b41289be8f1","name":"Set Email Notifications ","description":"Get an overview of your important stats right to your inbox. Set the frequency - daily, weekly or monthly, then sit back and enjoy."},{"id":"9b95e7bc-62d9-4145-a47b-61feda9a1157","name":"Find Out Where Visitors Go ","description":"Visitor Analytics' click path graphs show you how visitors navigate your site, so you can better optimize your content. "},{"id":"e7916eef-e534-4c4d-aa68-935fe1eae513","name":"Easily Export Your Data ","description":"Quickly export your stats to Excel, so you can save them to a datasheet for offline use. "},{"id":"0d9c8917-d401-4434-a455-61f3385d4e97","name":"Map Your Visitors ","description":"Visitor Analytics puts your traffic on the map, so you can easily pinpoint the country and city where each visitor comes from. "},{"id":"914da81f-b6fe-49fa-961a-052905e0c602","name":"Filter Your Site Visits","description":"Exclude your own site visits from the data, so your stats are as accurate as can be. "},{"id":"6367b257-3a82-4b2f-be06-a48b62d5a01b","name":"Unlimited Stats","description":"Get access to detailed information for all your visitors. without being limited to 1000 page visits per month."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"13322a7c-6039-ac58-86e8-48b76f901d91":{"applicationId":36,"appDefinitionName":"Site Search","appFields":{"packagePickerV2":[{"model":{"plans":[{"id":"95517cb0-60b7-4872-b983-9fd753d1830c","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"10294a8d-c16a-4390-9259-520fd6b4ea78":"30\/Month","aee23261-3137-4a3e-8fff-7a64c57a3019":"","e9ff4266-d566-4719-86fb-f9ebf392e344":" Every week"},"mostPopular":false},{"id":"8d5b2fc6-3cbc-44c2-93f2-de246c96b5d0","name":"Premium","billing":{"yearlyPrice":4.9899997711182,"monthlyPrice":5.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"InstantSearch","featureList":{"10294a8d-c16a-4390-9259-520fd6b4ea78":"Unlimited","2071e478-9cdd-4fd4-9e64-9ff2ba85a8fd":"","51e032b0-7f91-40f3-8f8a-fbe7c9b53216":"","aee23261-3137-4a3e-8fff-7a64c57a3019":"","cb1364f5-cfeb-4cd2-a3e6-1db4ae9c9c94":"","cd941757-2715-4543-a7b1-ee8aa25b0fd5":"","e9ff4266-d566-4719-86fb-f9ebf392e344":"Every day & on-demand"},"mostPopular":false}],"features":[{"id":"10294a8d-c16a-4390-9259-520fd6b4ea78","name":"Number of searches","description":"Let your visitors conduct up 30 monthly searches with our free plan or unlimited searches with our premium plan"},{"id":"e9ff4266-d566-4719-86fb-f9ebf392e344","name":"Frequent Sync","description":"Site content will be refreshed every day and on-demand for premium users, and weekly for free active users."},{"id":"aee23261-3137-4a3e-8fff-7a64c57a3019","name":"Search and navigation","description":"Allows users to search your Wix site and find what they are looking for. Users get results in the search results window."},{"id":"2071e478-9cdd-4fd4-9e64-9ff2ba85a8fd","name":"AutoComplete Suggestions","description":"Delight your visitors like the pros do, with a fast dropdown of autocomplete suggestions."},{"id":"cb1364f5-cfeb-4cd2-a3e6-1db4ae9c9c94","name":"Business dashboard","description":"Review all the content your users are searching for on your site, so that you can serve them better. Get insights on how to improve your SEO and attract more organic search traffic to your site"},{"id":"51e032b0-7f91-40f3-8f8a-fbe7c9b53216","name":"eCommmerce search results","description":"Show users eCommerce search results with price and more"},{"id":"cd941757-2715-4543-a7b1-ee8aa25b0fd5","name":"Remove Logo","description":"Control whether users are presented our 'powered by' logo."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false}}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"12f1fbab-8b9d-3002-87b5-2972897e8314":{"applicationId":50,"appDefinitionName":"Online Store","appFields":{"packagePickerV2":[{"appId":"7d3518e9-872e-4cc7-8f23-54062904df4c","model":{"plans":[{"id":"cd05c1aa-4463-49fe-b3de-0161774e4c62","name":"Starter","billing":{"yearlyPrice":6.6300001144409,"monthlyPrice":7.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_BASIC","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"50","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":false},{"id":"c15295cc-7c98-4c14-977d-c2906b2d372f","name":"Professional","billing":{"yearlyPrice":15.829999923706,"monthlyPrice":19,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_PREMIUM","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"2500","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","5f6fabcb-fad1-465f-8575-0555b910c4cd":"","6c29cceb-0662-488c-8385-366d7e8e4ff4":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","8ffdce81-2a11-49e9-83b3-6d1e8fb833a3":"","a7243392-1082-4776-a9c6-89790af9d1b6":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","d66c12cf-b335-4fb6-afcb-6bc756c67028":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":true},{"id":"ebef3ea0-1dd7-47cf-bb36-692a225baac2","name":"Unlimited","billing":{"yearlyPrice":65.830001831055,"monthlyPrice":79,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_UNLIMITED_POS","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"Unlimited","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","5f6fabcb-fad1-465f-8575-0555b910c4cd":"","6c29cceb-0662-488c-8385-366d7e8e4ff4":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","8ba8812b-4dd9-4d25-8ea5-1eb1ed173009":"","8ffdce81-2a11-49e9-83b3-6d1e8fb833a3":"","a6f6ebbf-7dd3-4cca-b3b0-b34dc8b1e722":"Annual Only","a7243392-1082-4776-a9c6-89790af9d1b6":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","d66c12cf-b335-4fb6-afcb-6bc756c67028":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":false}],"features":[{"id":"54f7d572-6b92-47de-972d-1face00836f6","name":"Number of Products","description":"List 10 to unlimited products in your store - choose what works best for your business"},{"id":"570c58e2-0495-4cc0-931d-4a5b9d5b9fe9","name":"Global Shipping & Payments","description":"Real time shipping rates from UPS, Fedex, USPS, DHL, and more. Native integration to 50+ payment gateways."},{"id":"39feda35-9fb5-4ebb-b838-786045238392","name":"No Transaction Fees","description":"Your profit is 100% yours, meaning you don?t have to worry about us taking a percentage of your sales. "},{"id":"cb765a3a-452c-40dd-861e-7596b817a0ec","name":"Mobile Responsive Store","description":"Your Wix site and Ecwid store will look beautiful on any device: mobile, tablet or desktop."},{"id":"14354c8c-1037-4496-bcf2-a2c3dcd8daef","name":"Sell on Facebook","description":"Ecwid e-commerce has helped over 40,000 small businesses go from sharing products to selling them on Facebook."},{"id":"e4089874-312d-43a0-b1d2-e8876237d17c","name":"Sell on Instagram","description":"More than 1 billion customers can order directly from your Instagram posts when you're powered by Ecwid E-commerce. "},{"id":"849ea124-9d67-4f2f-934e-c9e3640e7a55","name":"Discount Coupons","description":"Offer coupons and special discounts to keep customers coming back and attract new ones."},{"id":"5f6fabcb-fad1-465f-8575-0555b910c4cd","name":"Abandoned Cart Recovery ","description":"Track abandoned carts and send follow up emails automatically, encouraging customers to complete their purchase. "},{"id":"a7243392-1082-4776-a9c6-89790af9d1b6","name":"Automatic Tax Calculations","description":"Taxes are complicated, let us do the work for you! Automatically charge precise tax rate depending on where you and your customer are located. No setup required."},{"id":"8ffdce81-2a11-49e9-83b3-6d1e8fb833a3","name":"Sell Downloadable goods","description":"Sell downloadable goods like ebooks, music, software in your store. After purchase customer will receive protected link to download files. "},{"id":"6c29cceb-0662-488c-8385-366d7e8e4ff4","name":"Sell on Marketplaces","description":"Export products to major marketplaces sites like eBay, Amazon, Google Shopping, Shopping.com and more."},{"id":"d66c12cf-b335-4fb6-afcb-6bc756c67028","name":"Ecwid Mobile App","description":"Manage your store on the go and accept credit card payments in person with Square and PayPal Here card readers."},{"id":"8ba8812b-4dd9-4d25-8ea5-1eb1ed173009","name":"Point-of-Sale Integrations","description":"Integrate your online and offline business by synchronizing with leading point-of-sale systems Square and Vend (available for Unlimited and Managed Store plans)."},{"id":"a6f6ebbf-7dd3-4cca-b3b0-b34dc8b1e722","name":"ShopApp application","description":"Allow your customers to shop from their mobile devices with your own, branded iOS and Android shopping app (available on the Annual Unlimited plan)."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa":{"applicationId":51,"appDefinitionName":"EasyChat","appFields":{"packagePickerV2":[{"appId":"f77ac768-f3ff-41a6-93f9-f8ce9353a4bc","model":{"plans":[{"id":"46b533ca-f108-4f5b-940a-72cef53ec239","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"00e81c5f-1efe-4b40-baeb-a39db745745f":"","9198071a-3be3-4b3b-a3c6-1f7c6c490617":"","b0b307c8-310a-467c-8c5d-c2ba2ff88dbf":"","c2568835-6945-4c75-a3fe-99020f2b2890":"","e721832d-05e2-4249-a07e-7f84030af501":"","f8bdbe56-3cbc-4e95-a448-be200b1c84eb":""},"mostPopular":false},{"id":"1de8fb23-ed26-4317-bfaf-95c808583553","name":"Premium","billing":{"yearlyPrice":7.9000000953674,"monthlyPrice":10,"oneTimePrice":0,"yearlyDiscountPercent":21},"vendorId":"1","featureList":{"00e81c5f-1efe-4b40-baeb-a39db745745f":"","48c46403-9e16-4214-8c19-9a22123c1e54":"","9198071a-3be3-4b3b-a3c6-1f7c6c490617":"","af872ef0-c7dc-4de3-af79-40e4708786bd":"","b0b307c8-310a-467c-8c5d-c2ba2ff88dbf":"","c2568835-6945-4c75-a3fe-99020f2b2890":"","e721832d-05e2-4249-a07e-7f84030af501":"","f8bdbe56-3cbc-4e95-a448-be200b1c84eb":""},"mostPopular":false}],"features":[{"id":"c2568835-6945-4c75-a3fe-99020f2b2890","name":"Simple Set Up","description":"Create your chatbot in minutes. Simply add keywords like \"address\" or \"location,\" and set your automatic reply."},{"id":"b0b307c8-310a-467c-8c5d-c2ba2ff88dbf","name":"Instant Engagement","description":"Answer common questions instantly and engage visitors with realistic live chat-style responses."},{"id":"e721832d-05e2-4249-a07e-7f84030af501","name":"Add Your Top Ten","description":"Provide instant answers to frequently asked questions, such as your location, hours, contact info and more."},{"id":"9198071a-3be3-4b3b-a3c6-1f7c6c490617","name":"Fully Customizable Design","description":"Customize colors, fonts and more. Add your own chat icon, match your pop-up chat box to your brand, and tailor it seamlessly to your site."},{"id":"f8bdbe56-3cbc-4e95-a448-be200b1c84eb","name":"Expert Analytics","description":"Analyze your visitors' questions and refine your responses. Provide the right answers, every time."},{"id":"00e81c5f-1efe-4b40-baeb-a39db745745f","name":"The Personal Touch","description":"Give your chatbot a personality and voice that fits your brand. Create grouped answers linked by words and phrases for clear, varied replies."},{"id":"48c46403-9e16-4214-8c19-9a22123c1e54","name":"Unlimited Answers & Replies","description":"Add as many answers as you want by upgrading your app. Plus, never leave a question unanswered. Send visitors a response, direct to their email."},{"id":"af872ef0-c7dc-4de3-af79-40e4708786bd","name":"Upgrade to Make it Your Own","description":"Remove \"Powered by Nser\" from your app and related emails, for a fully integrated chatbot. "}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"applicationId":2902,"appDefinitionName":"Member Account Info","appFields":{},"isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"applicationId":3388,"appDefinitionName":"Profile Card","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0"},"baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('profile-card-tpa-ooi', '\/') %>"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'viewerScript.bundle.min.js') %>","isStretched":{},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}}},"isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"applicationId":3940,"appDefinitionName":"Wix Stores","appFields":{"platform":{"baseUrls":{"galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1489.0\/editor.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1489.0\/viewerScript.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('wixstores-client-cart-ooi', '\/') %>","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"viewerScriptUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/<%=serviceVersion('wixstores-client-worker')%>\/viewerScript.bundle.min.js","isStretched":{"desktop":false,"tablet":false,"mobile":false},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.serverless.serverless-wixstores-tpa-site-ss"}}},"isWixTPA":true},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"applicationId":4368,"appDefinitionName":"My Addresses","appFields":{},"isWixTPA":true},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"applicationId":4584,"appDefinitionName":"My Wallet","appFields":{},"isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"applicationId":5588,"appDefinitionName":"Wix Site Search","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.153.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerScript.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/viewerScript.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}}},"isWixTPA":true},"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3":{"applicationId":9444,"appDefinitionName":"Pricing Plans","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/editorScript.bundle.min.js","margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"","isStretched":{},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}},"baseUrls":{"staticsBaseUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.275.0"}}},"isWixTPA":true},"14c92d28-031e-7910-c9a8-a670011e062d":{"applicationId":10805,"appDefinitionName":"Wix FAQ","appFields":{},"isWixTPA":true},"13707244-ccaa-a180-9ae4-664d3a833580":{"applicationId":11062,"appDefinitionName":"Wix Hit Counter","appFields":{},"isWixTPA":true},"136e8e3c-0f84-1750-d45a-da6f5d7229f8":{"applicationId":13534,"appDefinitionName":"Social Stream","appFields":{"packagePickerV2":[{"appId":"e7fa3a01-ea5b-4963-a1f7-ceb25dc8c2fa","model":{"plans":[{"id":"70ed5d0d-f8b4-42f1-9287-ae85644af312","name":"Starter","billing":{"yearlyPrice":3.5799999237061,"monthlyPrice":3.9900000095367,"oneTimePrice":0,"yearlyDiscountPercent":10},"vendorId":"premium","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"12","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"2","d81a8679-b0e9-444a-ae70-4a67d715c30b":"2","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"12 Hours"},"mostPopular":false},{"id":"fbb76cdf-3eab-4c3c-9dec-0a259ff93c83","name":"Pro","billing":{"yearlyPrice":7.75,"monthlyPrice":11.069999694824,"oneTimePrice":0,"yearlyDiscountPercent":30},"vendorId":"pro","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"20","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"4","d81a8679-b0e9-444a-ae70-4a67d715c30b":"5","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"3 Hours","fc4a28c8-f76b-4783-91a3-532700089cc2":""},"mostPopular":true},{"id":"73eed1ba-9e61-4fea-a24c-b5acdb41286c","name":"Business","billing":{"yearlyPrice":13.199999809265,"monthlyPrice":15.989999771118,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"enterprise","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"50","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"15","d81a8679-b0e9-444a-ae70-4a67d715c30b":"Unlimited","f251a052-01aa-4c78-925b-75eb416229f6":"","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"20 Minutes","fc4a28c8-f76b-4783-91a3-532700089cc2":""},"mostPopular":false}],"features":[{"id":"35e5e9dd-7e87-4619-839f-2a15e0bb43b7","name":"No POWr Logo","description":"Remove the POWr logo from the bottom of your Social Feed"},{"id":"d81a8679-b0e9-444a-ae70-4a67d715c30b","name":"Number of Streams","description":"The number of different Social Streams you can add to one website."},{"id":"f64eccfd-d916-43c5-9c4a-55d85c68c5ed","name":"Content Updates","description":"The amount of time before your Social Stream is updated with new posts."},{"id":"41efcd19-c307-4e4b-9101-c141f82b3f03","name":"Accounts\/Hashtags Per Stream","description":"The number of handles and\/or hashtags you can follow in one Social Stream."},{"id":"0e4c2154-e024-4a70-988b-7beb424c1519","name":"Posts Per Account","description":"The maximum number of posts you can display in one Social Stream."},{"id":"fc4a28c8-f76b-4783-91a3-532700089cc2","name":"Shareable Entries","description":"Add social sharing buttons to your images or videos so visitors can share them on social media."},{"id":"f251a052-01aa-4c78-925b-75eb416229f6","name":"Manual Approval","description":"Manually approve posts before they appear on your stream and delete any unwanted posts."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]},"isWixTPA":false},"14635256-b183-1c71-a4d2-f55179b80e8a":{"applicationId":15556,"appDefinitionName":"Instagram Feed","appFields":{},"isWixTPA":true},"148c2287-c669-d849-d153-463c7486a694":{"applicationId":17266,"appDefinitionName":"Wix Groups","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","staticsGroupBaseUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/editor.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/viewer.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('social-groups-app', '\/') %>","staticsGroupBaseUrl":"<%= serviceUrl('social-group', '\/') %>"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"viewerScriptUrlTemplate":"<%= serviceUrl('social-groups-platform-app', 'viewer.bundle.min.js') %>","isStretched":{"desktop":false,"tablet":false,"mobile":false},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.groups.social-groups-web"}}},"isWixTPA":true},"14dbefd2-01b4-fb61-32a7-3abd44da4908":{"applicationId":18059,"appDefinitionName":"Members","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-app-editor-script\/1.0.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"","isStretched":{"desktop":false,"tablet":false,"mobile":false},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}}},"isWixTPA":true},"14dbef06-cc42-5583-32a7-3abd44da4908":{"applicationId":18654,"appDefinitionName":"Members About","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-app-editor-script\/1.0.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"","isStretched":{"desktop":false,"tablet":false,"mobile":false},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}}},"isWixTPA":true},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"applicationId":19189,"appDefinitionName":"communities-notifications-app","appFields":{},"isWixTPA":true},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"applicationId":19932,"appDefinitionName":"Settings","appFields":{},"isWixTPA":true}},"previewMode":false,"siteRevision":320,"isPremiumDomain":true,"userFileDomainUrl":"filesusr.com","metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","routersConfig":{"routers-kbqk1dsl":{"prefix":"account","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"private\",\"patterns\":{\"\/my-account\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14cffd81-5215-0a7f-22f8-074b0e2401fb\",\"appPageId\":\"member_info\",\"menuOrder\":3,\"visibleForRoles\":[]},\"page\":\"e998991b-f707-4797-83ad-2a51fadfb1eb\",\"seoData\":{\"title\":\"My Account\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Account\"},\"\/my-orders\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1380b703-ce81-ff05-f115-39571d94dfcd\",\"appPageId\":\"order_history\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"be6858a9-bcab-4021-9c8f-8e41682f9f46\",\"seoData\":{\"title\":\"My Orders\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Orders\"},\"\/my-addresses\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1505b775-e885-eb1b-b665-1e485d9bf90e\",\"appPageId\":\"my_addresses\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"725da943-e4ee-4233-a9ac-80f265a23e09\",\"seoData\":{\"title\":\"My Addresses\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Addresses\"},\"\/my-wallet\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"4aebd0cb-fbdb-4da7-b5d1-d05660a30172\",\"appPageId\":\"my_wallet\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"6c2afba6-8182-4f78-bb2b-7ea3bf62f023\",\"seoData\":{\"title\":\"My Wallet\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Wallet\"},\"\/notifications\":{\"socialHome\":false,\"appData\":{\"numbers\":{\"key\":\"notificationsCount\",\"default\":0},\"appDefinitionId\":\"14f25924-5664-31b2-9568-f9c5ed98c9b1\",\"appPageId\":\"notifications_app\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"2f94325b-803e-40b0-9e33-8bfa6b294ee4\",\"seoData\":{\"title\":\"Notifications\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Notifications\"},\"\/settings\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14f25dc5-6af3-5420-9568-f9c5ed98c9b1\",\"appPageId\":\"settings\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"ff3de31e-1c35-47d6-bbd9-e92df2236882\",\"seoData\":{\"title\":\"Settings\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Settings\"}}}","group":"members","pages":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":"d6cby","6c2afba6-8182-4f78-bb2b-7ea3bf62f023":"ax19b","725da943-e4ee-4233-a9ac-80f265a23e09":"qucgd","be6858a9-bcab-4021-9c8f-8e41682f9f46":"a8o2z","e998991b-f707-4797-83ad-2a51fadfb1eb":"vbkg7","2f94325b-803e-40b0-9e33-8bfa6b294ee4":"ydt6e"}},"routers-kbqk1dsq":{"prefix":"profile","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"public\",\"patterns\":{\"\/{userName}\/profile\":{\"socialHome\":true,\"appData\":{\"numbers\":{},\"appDefinitionId\":\"14dbef06-cc42-5583-32a7-3abd44da4908\",\"appPageId\":\"about\",\"menuOrder\":1,\"visibleForRoles\":[]},\"page\":\"b3ad4b94-041b-4ddc-afab-af1f826d16b4\",\"seoData\":{\"title\":\"{userName} | Profile\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"false\"},\"title\":\"Profile\"}}}","group":"members","pages":{"b3ad4b94-041b-4ddc-afab-af1f826d16b4":"m2jw3"}}},"routersByPrefix":{"account":{"routerId":"routers-kbqk1dsl"},"profile":{"routerId":"routers-kbqk1dsq"}},"viewMode":"site","externalBaseUrl":"https:\/\/www.fudbeens.com","tpaModalConfig":{"wixTPAs":{"14":true,"15":true,"16":true,"19":true,"20":true,"21":true,"22":true,"23":true,"24":true,"25":true,"26":true,"27":true,"28":true,"29":true,"30":true,"31":true,"32":true,"33":true,"38":true,"48":true,"49":true,"1979":true,"2902":true,"3388":true,"3940":true,"4368":true,"4584":true,"5588":true,"6108":true,"7048":true,"9444":true,"10805":true,"11062":true,"15556":true,"17266":true,"18059":true,"18654":true,"19189":true,"19932":true}},"appSectionParams":{},"requestUrl":"https:\/\/www.fudbeens.com\/","isMobileView":false,"deviceType":"desktop","isMobileDevice":false,"extras":{"currency":"INR"},"tpaDebugParams":{"debugApp":null,"petri_ovr":null},"locale":"en","timeZone":"Asia\/Calcutta","debug":false,"regionalLanguage":"en"},"windowWixCodeSdk":{"locale":"en-in","previewMode":false,"isMobileFriendly":true,"formFactor":"Desktop","pageIdToRouterAppDefinitionId":{"d6cby":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","ax19b":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","qucgd":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","a8o2z":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","vbkg7":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","ydt6e":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","m2jw3":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9"}},"wixEmbedsApi":{"isAdminPage":false},"platform":{"landingPageId":"c1dmp","isChancePlatformOnLandingPage":true,"clientWorkerUrl":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/clientWorker.88b35cf2.bundle.min.js","bootstrapData":{"isMobileView":false,"appsSpecData":{"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","type":"public","instanceId":"74093e3f-d868-42e5-a586-29f7887670fa","appDefinitionName":"Members Area","isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","type":"public","instanceId":"d31cf5c6-0323-4e0b-9b5c-ec0925de9ccd","appDefinitionName":"Profile Card","isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","type":"public","instanceId":"420dfa68-efdd-4ab9-a529-0b0105a1b2e8","appDefinitionName":"Wix Stores","isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","type":"public","instanceId":"8edde0d0-8032-4cdd-97d9-861784bacb49","appDefinitionName":"Wix Site Search","isWixTPA":true},"cdd4b6d5-6fb4-4bd1-9189-791244b5361e":{"appDefinitionId":"cdd4b6d5-6fb4-4bd1-9189-791244b5361e","type":"public","instanceId":"2b4ca597-dbe7-48d3-ace2-1fea2efa1d05","appDefinitionName":"Pay Button","isWixTPA":true},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","type":"public","instanceId":"550dc7ba-6ed4-41ef-a6c6-0add8868fa55","appDefinitionName":"Wix Forms & Payments","isWixTPA":true},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","type":"siteextension","instanceId":"578752c2-983f-49ac-aa62-3c925b1da855"},"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3":{"appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","type":"public","instanceId":"6e2af774-1ec0-4d54-854b-29238818ae28","appDefinitionName":"Pricing Plans","isWixTPA":true},"148c2287-c669-d849-d153-463c7486a694":{"appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","type":"public","instanceId":"233e2163-f16f-43f4-9bdc-d27c8ee936ae","appDefinitionName":"Wix Groups","isWixTPA":true},"dataBinding":{"appDefinitionId":"dataBinding","type":"application","instanceId":"578752c2-983f-49ac-aa62-3c925b1da855","appDefinitionName":"Data Binding","isWixTPA":true}},"appsUrlData":{"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefName":"Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.762.0\/app.bundle.min.js","baseUrls":{},"widgets":{}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefName":"Profile Card","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0"},"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd"}}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefName":"Wix Stores","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1489.0\/viewerScript.bundle.min.js","baseUrls":{"galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/"},"widgets":{"1380bba0-253e-a800-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","noCssComponentUrl":"","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4"},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb"},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIcon.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b"},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPage.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc"},"14fd5970-8072-c276-1246-058b79e70c1a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a"},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidgetNoCss.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd"},"14666402-0bc7-b763-e875-e99840d131bd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCart.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCartNoCss.bundle.min.js","errorReportingUrl":"https:\/\/[email protected]\/1865790","widgetId":"14666402-0bc7-b763-e875-e99840d131bd"},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlistController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlist.bundle.min.js","noCssComponentUrl":"","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5"},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14"},"13afb094-84f9-739f-44fd-78d036adb028":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","noCssComponentUrl":"","widgetId":"13afb094-84f9-739f-44fd-78d036adb028"},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGallery.bundle.min.js","noCssComponentUrl":"","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82"},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1257.0\/thankYouPageController.bundle.min.js","componentUrl":"","noCssComponentUrl":"","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4"}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefName":"Wix Site Search","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/"},"widgets":{"44c66af6-4d25-485a-ad9d-385f5460deef":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef"}}},"cdd4b6d5-6fb4-4bd1-9189-791244b5361e":{"appDefId":"cdd4b6d5-6fb4-4bd1-9189-791244b5361e","appDefName":"Pay Button","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pay-button-worker\/1.797.0\/viewer-script.bundle.min.js","baseUrls":{},"widgets":{}},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefName":"Wix Forms & Payments","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.517.0\/viewer-app.bundle.min.js","baseUrls":{"":""},"widgets":{}},"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3":{"appDefId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","appDefName":"Pricing Plans","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.275.0"},"widgets":{"15293875-09d7-6913-a093-084a9b6ae7f4":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"15293875-09d7-6913-a093-084a9b6ae7f4"},"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830"}}},"148c2287-c669-d849-d153-463c7486a694":{"appDefId":"148c2287-c669-d849-d153-463c7486a694","appDefName":"Wix Groups","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/viewer.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","staticsGroupBaseUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/"},"widgets":{"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/viewerApp.bundle.min.js","noCssComponentUrl":"","widgetId":"a7dcdfcb-8abd-4008-af19-fed5fcd12b40"},"83b2af08-c021-40c8-a3a5-b329a959ec2b":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","noCssComponentUrl":"","widgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b"},"0a9f687f-7e00-4576-a8e1-9415844b8f44":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","noCssComponentUrl":"","widgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44"},"513a5d84-3ebb-4ca6-a5aa-83effd2123b9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidgetNoCss.bundle.min.js","widgetId":"513a5d84-3ebb-4ca6-a5aa-83effd2123b9"},"c1d78264-dd73-4564-969f-d47d619f7051":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"c1d78264-dd73-4564-969f-d47d619f7051"}}},"dataBinding":{"appDefId":"dataBinding","appDefName":"Data Binding","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.2624.0\/app.js","baseUrls":{},"widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefId":"675bbcef-18d8-41f5-800e-131ec9e08762","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.52\/app.js","baseUrls":{},"widgets":{}}},"componentSdksServerUrl":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.5780.0\/componentSSRSdks.bundle.js","componentSdksClientUrl":"https:\/\/static.parastorage.com\/services\/editor-elements\/dist\/componentSdks.fbf38484.bundle.min.js","location":{"domain":"fudbeens.com","externalBaseUrl":"https:\/\/www.fudbeens.com","isPremiumDomain":true,"metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","userFileDomainUrl":"filesusr.com"},"bi":{"ownerId":"a6a6662e-c5bf-48b1-85fa-1aee79b7c5f1","isMobileFriendly":true,"isPreview":false,"svSession":"c510a03286db55076cbf16602325330145dd976485a7add270893f5952d8f274d426b86db0d1f30bbe9b72ba4f1d3c091e60994d53964e647acf431e4f798bcd1ca9be68356e8385d53246bd16c778a5d3fdaa8c9d9c10c5490ce9e289fc709b4d7f5bb8b5cb44570baef6c0d95b2b1131feccd7b7b6db3ef76f6c636623f10850508a13032995e458e711bfc685de70"},"platformAPIData":{"routersConfigMap":{"routers-kbqk1dsl":{"prefix":"account","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"private\",\"patterns\":{\"\/my-account\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14cffd81-5215-0a7f-22f8-074b0e2401fb\",\"appPageId\":\"member_info\",\"menuOrder\":3,\"visibleForRoles\":[]},\"page\":\"e998991b-f707-4797-83ad-2a51fadfb1eb\",\"seoData\":{\"title\":\"My Account\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Account\"},\"\/my-orders\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1380b703-ce81-ff05-f115-39571d94dfcd\",\"appPageId\":\"order_history\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"be6858a9-bcab-4021-9c8f-8e41682f9f46\",\"seoData\":{\"title\":\"My Orders\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Orders\"},\"\/my-addresses\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1505b775-e885-eb1b-b665-1e485d9bf90e\",\"appPageId\":\"my_addresses\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"725da943-e4ee-4233-a9ac-80f265a23e09\",\"seoData\":{\"title\":\"My Addresses\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Addresses\"},\"\/my-wallet\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"4aebd0cb-fbdb-4da7-b5d1-d05660a30172\",\"appPageId\":\"my_wallet\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"6c2afba6-8182-4f78-bb2b-7ea3bf62f023\",\"seoData\":{\"title\":\"My Wallet\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Wallet\"},\"\/notifications\":{\"socialHome\":false,\"appData\":{\"numbers\":{\"key\":\"notificationsCount\",\"default\":0},\"appDefinitionId\":\"14f25924-5664-31b2-9568-f9c5ed98c9b1\",\"appPageId\":\"notifications_app\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"2f94325b-803e-40b0-9e33-8bfa6b294ee4\",\"seoData\":{\"title\":\"Notifications\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Notifications\"},\"\/settings\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14f25dc5-6af3-5420-9568-f9c5ed98c9b1\",\"appPageId\":\"settings\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"ff3de31e-1c35-47d6-bbd9-e92df2236882\",\"seoData\":{\"title\":\"Settings\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Settings\"}}}","group":"members","pages":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":"d6cby","6c2afba6-8182-4f78-bb2b-7ea3bf62f023":"ax19b","725da943-e4ee-4233-a9ac-80f265a23e09":"qucgd","be6858a9-bcab-4021-9c8f-8e41682f9f46":"a8o2z","e998991b-f707-4797-83ad-2a51fadfb1eb":"vbkg7","2f94325b-803e-40b0-9e33-8bfa6b294ee4":"ydt6e"}},"routers-kbqk1dsq":{"prefix":"profile","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"public\",\"patterns\":{\"\/{userName}\/profile\":{\"socialHome\":true,\"appData\":{\"numbers\":{},\"appDefinitionId\":\"14dbef06-cc42-5583-32a7-3abd44da4908\",\"appPageId\":\"about\",\"menuOrder\":1,\"visibleForRoles\":[]},\"page\":\"b3ad4b94-041b-4ddc-afab-af1f826d16b4\",\"seoData\":{\"title\":\"{userName} | Profile\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"false\"},\"title\":\"Profile\"}}}","group":"members","pages":{"b3ad4b94-041b-4ddc-afab-af1f826d16b4":"m2jw3"}}}},"wixCodeBootstrapData":{"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","wixCodeInstanceId":"578752c2-983f-49ac-aa62-3c925b1da855","wixCloudBaseDomain":"wix-code.com","dbsmViewerApp":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.2624.0","wixCodePlatformBaseUrl":"https:\/\/static.parastorage.com\/services\/wix-code-platform\/1.839.0","wixCodeModel":{"appData":{"codeAppId":"492826ba-5a50-4637-a35d-e2ececc89da1"},"signedAppRenderInfo":"c550710eb43b410a224103bd357776e2912c6320.eyJncmlkQXBwSWQiOiI0OTI4MjZiYS01YTUwLTQ2MzctYTM1ZC1lMmVjZWNjODlkYTEiLCJodG1sU2l0ZUlkIjoiZmVlMzgyODItY2JjZC00NTA1LTlhYjctMzJlZTQwODcwMjg0IiwiZGVtb0lkIjpudWxsLCJzaWduRGF0ZSI6MTYyMTc2NDEwNDc1Mn0="},"wixCodePageIds":{"xauo4":"https:\/\/578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com\/static\/v2\/492826ba-5a50-4637-a35d-e2ececc89da1\/578752c2-983f-49ac-aa62-3c925b1da855\/pages\/xauo4.js?use-globals-object=true","af6sn":"https:\/\/578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com\/static\/v2\/492826ba-5a50-4637-a35d-e2ececc89da1\/578752c2-983f-49ac-aa62-3c925b1da855\/pages\/af6sn.js?use-globals-object=true","masterPage":"https:\/\/578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com\/static\/v2\/492826ba-5a50-4637-a35d-e2ececc89da1\/578752c2-983f-49ac-aa62-3c925b1da855\/pages\/masterPage.js?use-globals-object=true","c1dmp":"https:\/\/578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com\/static\/v2\/492826ba-5a50-4637-a35d-e2ececc89da1\/578752c2-983f-49ac-aa62-3c925b1da855\/pages\/c1dmp.js?use-globals-object=true","eah3p":"https:\/\/578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com\/static\/v2\/492826ba-5a50-4637-a35d-e2ececc89da1\/578752c2-983f-49ac-aa62-3c925b1da855\/pages\/eah3p.js?use-globals-object=true"},"elementorySupport":{"baseUrl":"https:\/\/www.fudbeens.com\/_api\/wix-code-public-dispatcher\/siteview"}},"disabledPlatformApps":{},"studioAppsAppDefinitionIds":[],"widgetNames":{"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","widgets":{}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":"profile"}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","widgets":{"1380bba0-253e-a800-a235-88821cf3f8a4":"product_gallery","14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":"order_history","1380bbc4-1485-9d44-4616-92e36b1ead6b":"shopping_cart_icon","13a94f09-2766-3c40-4a32-8edb5acdd8bc":"product_page","14fd5970-8072-c276-1246-058b79e70c1a":"checkout","13ec3e79-e668-cc0c-2d48-e99d53a213dd":"product_widget","14666402-0bc7-b763-e875-e99840d131bd":"add_to_cart_button","a63a5215-8aa6-42af-96b1-583bfd74cff5":"wishlist","1380bbab-4da3-36b0-efb4-2e0599971d14":"shopping_cart","13afb094-84f9-739f-44fd-78d036adb028":"grid_gallery","139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":"slider_gallery","1380bbb4-8df0-fd38-a235-88821cf3f8a4":"thank_you_page"}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","widgets":{"44c66af6-4d25-485a-ad9d-385f5460deef":"search_results"}},"cdd4b6d5-6fb4-4bd1-9189-791244b5361e":{"appDefinitionId":"cdd4b6d5-6fb4-4bd1-9189-791244b5361e","widgets":{}},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","widgets":{}},"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3":{"appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","widgets":{"15293875-09d7-6913-a093-084a9b6ae7f4":"membership_plan_picker_tpa","80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830"}},"148c2287-c669-d849-d153-463c7486a694":{"appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","widgets":{"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":"groups","83b2af08-c021-40c8-a3a5-b329a959ec2b":"83b2af08-c021-40c8-a3a5-b329a959ec2b","0a9f687f-7e00-4576-a8e1-9415844b8f44":"0a9f687f-7e00-4576-a8e1-9415844b8f44","513a5d84-3ebb-4ca6-a5aa-83effd2123b9":"group","c1d78264-dd73-4564-969f-d47d619f7051":"groups_area"}},"dataBinding":{"appDefinitionId":"dataBinding","widgets":{}}},"essentials":{"appsConductedExperiments":{}}},"appsOnPageScriptsUrls":{"675bbcef-18d8-41f5-800e-131ec9e08762":["https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.52\/app.js"]},"debug":{"disablePlatform":false,"disableSnapshots":false,"enableSnapshots":false}}},"siteAssets":{"dataFixersParams":{"ck":6,"experiments":{"dm_fixMobileHoverBoxDesign":true,"bv_removeMenuDataFromPageJson":true,"bv_migrateResponsiveLayoutToSingleLayoutData":true,"bv_migrateResponsiveToVariantsModels":true,"bv_cartPageResponsiveLayoutFixer":true,"bv_remove_add_chat_viewer_fixer":"new"},"dfVersion":"1.1273.0","isHttps":true,"isUrlMigrated":true,"metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","quickActionsMenuEnabled":false,"siteId":"fee38282-cbcd-4505-9ab7-32ee40870284","siteRevision":320,"v":3},"modulesParams":{"features":{"moduleName":"thunderbolt-features","contentType":"application\/json","resourceType":"features","languageResolutionMethod":"QueryParam","isMultilingualEnabled":false,"externalBaseUrl":"https:\/\/www.fudbeens.com","useSandboxInHTMLComp":false},"platform":{"moduleName":"thunderbolt-platform","contentType":"application\/json","resourceType":"platform","externalBaseUrl":"https:\/\/www.fudbeens.com"},"css":{"moduleName":"thunderbolt-css","contentType":"text\/css","resourceType":"css","stylableMetaData":"thunderbolt-elements.ac7f0a5e1344d4ad71c9e3b579d27c30e68f2d30","stylableMetadataURLs":null,"ooiVersions":"MTM4MGJiYzQtMTQ4NS05ZDQ0LTQ2MTYtOTJlMzZiMWVhZDZiPXAud2l4c3RvcmVzLWNsaWVudC1jYXJ0LWljb24vMS45MjQuMC9jYXJ0SWNvbk5vQ3NzLmNzc0NvbmZpZy5idW5kbGUubWluLmpzOzEzYTk0ZjA5LTI3NjYtM2M0MC00YTMyLThlZGI1YWNkZDhiYz1wLndpeHN0b3Jlcy1jbGllbnQtcHJvZHVjdC1wYWdlLzEuMTg3Ny4wL3Byb2R1Y3RQYWdlTm9Dc3MuY3NzQ29uZmlnLmJ1bmRsZS5taW4uanM7NTEzYTVkODQtM2ViYi00Y2E2LWE1YWEtODNlZmZkMjEyM2I5PXAuc29jaWFsLWdyb3VwLzEuMjQxNC4wL3ZpZXdlcldpZGdldE5vQ3NzLmNzc0NvbmZpZy5idW5kbGUubWluLmpz"}},"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.wixstatic.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.fudbeens.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/","pathToEditorElementsModulesInFileRepoForFallback":"editor-elements\/dist\/"},"siteScopeParams":{"wixCodePageIds":["xauo4","af6sn","masterPage","c1dmp","eah3p"],"hasTPAWorkerOnSite":false,"viewMode":"desktop","freemiumBanner":false,"coBrandingBanner":false,"mobileActionsMenu":false,"isWixSite":false,"urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["app","apps","_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"pageJsonFileNames":{"cz8ti":"a6a666_41304500e4ba53fec74fe30854bc24da_305.json","dv4ba":"a6a666_e4dbe16d62102150081c84c21f619db6_282.json","decvk":"a6a666_798c782e2bb7e04c61dbca5c7cb264e8_143.json","wzqyl":"a6a666_d2c7f286d3b8b1e0bc1cbf41699ab66f_305.json","j9q9x":"a6a666_d07fc48b26fed61e8b5528af1573278e_305.json","pck01":"a6a666_8e20a5bb37c8b7260e8d8cfe27114f8b_298.json","i78pz":"a6a666_e6de884c6f44889566db09a5f6c1156b_305.json","c1dmp":"a6a666_8b6aaec21701e671ee9da87ef020dff4_320.json","o6udd":"a6a666_9bf51ce1076011aece6ab7a867777350_305.json","pre5g":"a6a666_f9206b81e6401e277edefb6b6fe7ea1f_305.json","ixe0t":"a6a666_948f55041fa7d5e8e387ae842417df94_305.json","m2izr":"a6a666_39617b29857e99f34537289f78bf11dc_314.json","bx5r8":"a6a666_99c18b9c06eeea6cfa9e13ba6bca6345_298.json","yv9or":"a6a666_731938cfca7c7005a6db20c013e5bf04_306.json","hb5a1":"a6a666_9c0063d0e6dfa0e88e6f85a81d4e4080_232.json","rjg0h":"a6a666_665496852365066477ebe8648bf993c9_306.json","ufl1b":"a6a666_ed85c1a8f30d13320220385dc2d7278f_232.json","af6sn":"a6a666_afa3a113ddc1e80fcff0701fc5777a54_306.json","m2jw3":"a6a666_0eaccdf81d249b97efdc972c1eea1aaa_232.json","xauo4":"a6a666_06e8af075d4f982d12b5e95d41389b25_306.json","w0k4o":"a6a666_b439f9285a0c8997e9b140f0a5559c3b_232.json","n9s0s":"a6a666_5eda1784c4ade2e6f4902bee2df2b73a_150.json","ztci0":"a6a666_3155d67d73db581a88b612e71f845542_200.json","q2wpc":"a6a666_0df2b214c02b6d3665ea7b1c19f80f46_320.json","veoqu":"a6a666_5570fc2c38d8e875cb1c03fff250ba87_282.json","eah3p":"a6a666_89245c034b380aa33deec0700bf322a5_181.json","dznvc":"a6a666_ad2be09c713f7c274d0aa88bdc92aba1_306.json","us69l":"a6a666_9fa34a810461c493cddf8550b5055e6f_221.json","q1n6e":"a6a666_2467a33fe758ba76c79b319394845c6a_305.json","agdqi":"a6a666_370929b2ed610c181ad4ae9063a66a5d_305.json","masterPage":"a6a666_0181ef665fbef6550bf9e353b62ae512_320.json"},"protectedPageIds":["qucgd","ydt6e","vbkg7","d6cby","ax19b","a8o2z"],"routersInfo":{"configMap":{"routers-kbqk1dsl":{"prefix":"account","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"private\",\"patterns\":{\"\/my-account\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14cffd81-5215-0a7f-22f8-074b0e2401fb\",\"appPageId\":\"member_info\",\"menuOrder\":3,\"visibleForRoles\":[]},\"page\":\"e998991b-f707-4797-83ad-2a51fadfb1eb\",\"seoData\":{\"title\":\"My Account\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Account\"},\"\/my-orders\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1380b703-ce81-ff05-f115-39571d94dfcd\",\"appPageId\":\"order_history\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"be6858a9-bcab-4021-9c8f-8e41682f9f46\",\"seoData\":{\"title\":\"My Orders\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Orders\"},\"\/my-addresses\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"1505b775-e885-eb1b-b665-1e485d9bf90e\",\"appPageId\":\"my_addresses\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"725da943-e4ee-4233-a9ac-80f265a23e09\",\"seoData\":{\"title\":\"My Addresses\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Addresses\"},\"\/my-wallet\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"4aebd0cb-fbdb-4da7-b5d1-d05660a30172\",\"appPageId\":\"my_wallet\",\"menuOrder\":2,\"visibleForRoles\":[]},\"page\":\"6c2afba6-8182-4f78-bb2b-7ea3bf62f023\",\"seoData\":{\"title\":\"My Wallet\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"My Wallet\"},\"\/notifications\":{\"socialHome\":false,\"appData\":{\"numbers\":{\"key\":\"notificationsCount\",\"default\":0},\"appDefinitionId\":\"14f25924-5664-31b2-9568-f9c5ed98c9b1\",\"appPageId\":\"notifications_app\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"2f94325b-803e-40b0-9e33-8bfa6b294ee4\",\"seoData\":{\"title\":\"Notifications\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Notifications\"},\"\/settings\":{\"socialHome\":false,\"appData\":{\"appDefinitionId\":\"14f25dc5-6af3-5420-9568-f9c5ed98c9b1\",\"appPageId\":\"settings\",\"menuOrder\":4,\"visibleForRoles\":[]},\"page\":\"ff3de31e-1c35-47d6-bbd9-e92df2236882\",\"seoData\":{\"title\":\"Settings\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"true\"},\"title\":\"Settings\"}}}","group":"members","pages":{"ff3de31e-1c35-47d6-bbd9-e92df2236882":"d6cby","6c2afba6-8182-4f78-bb2b-7ea3bf62f023":"ax19b","725da943-e4ee-4233-a9ac-80f265a23e09":"qucgd","be6858a9-bcab-4021-9c8f-8e41682f9f46":"a8o2z","e998991b-f707-4797-83ad-2a51fadfb1eb":"vbkg7","2f94325b-803e-40b0-9e33-8bfa6b294ee4":"ydt6e"}},"routers-kbqk1dsq":{"prefix":"profile","appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","config":"{\"type\":\"public\",\"patterns\":{\"\/{userName}\/profile\":{\"socialHome\":true,\"appData\":{\"numbers\":{},\"appDefinitionId\":\"14dbef06-cc42-5583-32a7-3abd44da4908\",\"appPageId\":\"about\",\"menuOrder\":1,\"visibleForRoles\":[]},\"page\":\"b3ad4b94-041b-4ddc-afab-af1f826d16b4\",\"seoData\":{\"title\":\"{userName} | Profile\",\"description\":\"\",\"keywords\":\"\",\"noIndex\":\"false\"},\"title\":\"Profile\"}}}","group":"members","pages":{"b3ad4b94-041b-4ddc-afab-af1f826d16b4":"m2jw3"}}}},"anonymousClientSpecMap":{"13":{"type":"sitemembers","applicationId":13,"collectionType":"Open","collectionFormFace":"Register","collectionExposure":"Public","smcollectionId":"fed0222d-878d-406a-b50e-2fcd3ea312eb","instanceId":"","instance":""},"14":{"type":"public","applicationId":14,"appDefinitionId":"14bca956-e09f-f4d6-14d7-466cb3f09103","appDefinitionName":"Wix Cashier","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/cashier.wixapps.net\/cashier-settings-server\/cashier-site-worker\/editor-script.js"}}},"15":{"type":"public","applicationId":15,"appDefinitionId":"141fbfae-511e-6817-c9f0-48993a7547d1","appDefinitionName":"Inbox","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"16":{"type":"public","applicationId":16,"appDefinitionId":"13ee94c1-b635-8505-3391-97919052c16f","appDefinitionName":"Wix Invoices","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":null},"19":{"type":"public","applicationId":19,"appDefinitionId":"150ae7ee-c74a-eecd-d3d7-2112895b988a","appDefinitionName":"Marketing Integration","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"20":{"type":"public","applicationId":20,"appDefinitionId":"a322993b-2c74-426f-bbb8-444db73d0d1b","appDefinitionName":"One App","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{},"version":"0.0.26"},"21":{"type":"public","applicationId":21,"appDefinitionId":"55cd9036-36bb-480b-8ddc-afda3cb2eb8d","appDefinitionName":"PriceQuotes","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"22":{"type":"public","applicationId":22,"appDefinitionId":"f123e8f1-4350-4c9b-b269-04adfadda977","appDefinitionName":"Promote Home","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"23":{"type":"public","applicationId":23,"appDefinitionId":"9bead16f-1c73-4cda-b6c4-28cff46988db","appDefinitionName":"Facebook Ads","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"24":{"type":"public","applicationId":24,"appDefinitionId":"1480c568-5cbd-9392-5604-1148f5faffa0","appDefinitionName":"Get Found on Google","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"25":{"type":"public","applicationId":25,"appDefinitionId":"13aa9735-aa50-4bdb-877c-0bb46804bd71","appDefinitionName":"Promote SEO Patterns","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"26":{"type":"public","applicationId":26,"appDefinitionId":"d70b68e2-8d77-4e0c-9c00-c292d6e0025e","appDefinitionName":"Promote SEO Tools","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"27":{"type":"public","applicationId":27,"appDefinitionId":"14b89688-9b25-5214-d1cb-a3fb9683618b","appDefinitionName":"Mobile App-Social Posts","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"28":{"type":"public","applicationId":28,"appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","appDefinitionName":"Email Marketing","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","widgetId":"141995eb-c700-8487-6366-a482f7432e2b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"shoutout_feed","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"premiumBundle":{"parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"}}},"29":{"type":"public","applicationId":29,"appDefinitionId":"146c0d71-352e-4464-9a03-2e868aabe7b9","appDefinitionName":"Ascend Tasks","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"30":{"type":"public","applicationId":30,"appDefinitionId":"139ef4fa-c108-8f9a-c7be-d5f492a2c939","appDefinitionName":"Automated Emails","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":null},"31":{"type":"public","applicationId":31,"appDefinitionId":"307ba931-689c-4b55-bb1d-6a382bad9222","appDefinitionName":"Video Maker","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"32":{"type":"public","applicationId":32,"appDefinitionId":"ea2821fc-7d97-40a9-9f75-772f29178430","appDefinitionName":"Workflows","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"33":{"type":"public","applicationId":33,"appDefinitionId":"14d7032a-0a65-5270-cca7-30f599708fed","appDefinitionName":"WixCoupons","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"nonDiscoverable":true}},"34":{"type":"public","applicationId":34,"appDefinitionId":"1328daed-5aba-1c57-e6d2-44c93b6e2bde","appDefinitionName":"Customer Reviews","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"1329084e-aa10-48b1-3a48-3404d63de029":{"widgetUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","widgetId":"1329084e-aa10-48b1-3a48-3404d63de029","refreshOnWidthChange":true,"mobileUrl":"https:\/\/www.writeacustomerreview.com\/review\/wix_review.php","published":false,"mobilePublished":true,"seoEnabled":true,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"write_a_customer_review","default":false}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"packagePickerV2":[{"model":{"plans":[{"id":"4881eab4-0cb8-4762-a1a1-bad637a9beb7","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"1e51b20b-15b3-4a93-a15a-66424ac3217b":"","24011c30-460e-4039-80d8-9263c5b9906a":"","46e26f7d-61b9-41fe-b0c2-ac964deca612":""},"mostPopular":false},{"id":"9c4ff786-a52f-46b9-8bb7-3c597be07355","name":"Premium","billing":{"yearlyPrice":2.4200000762939,"monthlyPrice":2.9900000095367,"oneTimePrice":0,"yearlyDiscountPercent":19},"vendorId":"premium","featureList":{"1e51b20b-15b3-4a93-a15a-66424ac3217b":"","24011c30-460e-4039-80d8-9263c5b9906a":"","314cb363-876c-4cc5-9b1b-99130f53352c":"","46e26f7d-61b9-41fe-b0c2-ac964deca612":"","81940618-5a9b-415f-b7c5-3115fc1c50ce":"","8ea54525-799f-4bea-99fb-c160faf49b35":"","c7a743e2-87f7-4a3c-96aa-f29f254d9091":"","cadf36df-e8b3-413f-83a1-e421f7b8eed8":""},"mostPopular":false}],"features":[{"id":"46e26f7d-61b9-41fe-b0c2-ac964deca612","name":"Manage your customer reviews","description":"You’ll receive all reviews to your email reviews to your inbox. Filter the testimonials and publish the ones you want to show off on your site. "},{"id":"1e51b20b-15b3-4a93-a15a-66424ac3217b","name":"Unlimited reviews","description":"Get as many reviews from your customers as you can and display the ones you want."},{"id":"24011c30-460e-4039-80d8-9263c5b9906a","name":"Fully customizable","description":"Fully customize the App’s colors for seamless integration onto your site. "},{"id":"cadf36df-e8b3-413f-83a1-e421f7b8eed8","name":"Display Star Rating","description":"Show site visitors written reviews with star ratings included. "},{"id":"314cb363-876c-4cc5-9b1b-99130f53352c","name":"Respond to reviews","description":"Respond to your customers who have given you reviews."},{"id":"c7a743e2-87f7-4a3c-96aa-f29f254d9091","name":"View Email","description":"View email address entered for each review."},{"id":"8ea54525-799f-4bea-99fb-c160faf49b35","name":"Choose Display Reviews","description":"Can can choose to display the newest reviews first or have 5 star reviews appear first."},{"id":"81940618-5a9b-415f-b7c5-3115fc1c50ce","name":"Customize font","description":"Select the font you like best and that matches your brand’s colors."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false}}],"featuresForNewPackagePicker":[]}},"35":{"type":"public","applicationId":35,"appDefinitionId":"13ee53b4-2343-b641-c84d-056d2e6ed2e6","appDefinitionName":"Visitor Analytics","instance":"","instanceId":"","appWorkerUrl":"https:\/\/loadbalancer.visitor-analytics.io\/worker","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"14b2d589-33e5-af98-ec53-a386bbb29a4f":{"widgetUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","widgetId":"14b2d589-33e5-af98-ec53-a386bbb29a4f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/statcounter.va-endpoint.com\/widget.html","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"visitor_analytics_stat_counter","default":false},"147ce056-e1f1-42ae-8e33-95f9865d63c8":{"widgetUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","widgetId":"147ce056-e1f1-42ae-8e33-95f9865d63c8","refreshOnWidthChange":true,"gluedOptions":{"placement":"TOP_RIGHT","verticalMargin":0,"horizontalMargin":0},"mobileUrl":"https:\/\/app.visitor-analytics.io\/empty_widget.html","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"147ce056-e1f1-42ae-8e33-95f9865d63c8","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"packagePickerV2":[{"appId":"8ef06506-5675-40a3-917b-db1817d9576d","model":{"plans":[{"id":"01622543-6a93-4256-a3cb-7599559548cb","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"3622d6b3-7359-4bfb-ab57-4b138dde489d":"","4c01a0e3-681d-4b4e-952d-932f1bc7bbbc":"","d701f65c-c03e-4142-90d6-6a9e743ca907":""},"mostPopular":false},{"id":"d155fd2c-e82c-4764-bf2d-56206a2d5ea3","name":"Premium","billing":{"yearlyPrice":4.9899997711182,"monthlyPrice":5.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"lmozwcvuly","featureList":{"0d9c8917-d401-4434-a455-61f3385d4e97":"","3622d6b3-7359-4bfb-ab57-4b138dde489d":"","4c01a0e3-681d-4b4e-952d-932f1bc7bbbc":"","6367b257-3a82-4b2f-be06-a48b62d5a01b":"","914da81f-b6fe-49fa-961a-052905e0c602":"","9b95e7bc-62d9-4145-a47b-61feda9a1157":"","9e1dc3c3-7049-4f39-a19f-066736e21a3d":"","ac2a22aa-45cf-481a-9b4a-5af84062b2e1":"","d6bbeacd-f956-446f-9882-1b41289be8f1":"","d701f65c-c03e-4142-90d6-6a9e743ca907":"","e7916eef-e534-4c4d-aa68-935fe1eae513":""},"mostPopular":false}],"features":[{"id":"d701f65c-c03e-4142-90d6-6a9e743ca907","name":"Get Started Easily","description":"Add Visitors Analytics, publish your site and you're set. You'll see all your stats in your dashboard."},{"id":"ac2a22aa-45cf-481a-9b4a-5af84062b2e1","name":"View All Your Stats","description":"See where visitors come from, who's live on your site right now, what days you get the most traffic and more."},{"id":"4c01a0e3-681d-4b4e-952d-932f1bc7bbbc","name":"Track Everything at a Glance","description":"Easy to follow charts and graphs make viewing all your stats a breeze."},{"id":"9e1dc3c3-7049-4f39-a19f-066736e21a3d","name":"Get Advanced Insights ","description":"Find out more about your visitors like the browsers they use, their operating systems, IP addresses, etc."},{"id":"3622d6b3-7359-4bfb-ab57-4b138dde489d","name":"Show Off Your Visits ","description":"Proudly display how many visitors you get with a traffic counter on your site."},{"id":"d6bbeacd-f956-446f-9882-1b41289be8f1","name":"Set Email Notifications ","description":"Get an overview of your important stats right to your inbox. Set the frequency - daily, weekly or monthly, then sit back and enjoy."},{"id":"9b95e7bc-62d9-4145-a47b-61feda9a1157","name":"Find Out Where Visitors Go ","description":"Visitor Analytics' click path graphs show you how visitors navigate your site, so you can better optimize your content. "},{"id":"e7916eef-e534-4c4d-aa68-935fe1eae513","name":"Easily Export Your Data ","description":"Quickly export your stats to Excel, so you can save them to a datasheet for offline use. "},{"id":"0d9c8917-d401-4434-a455-61f3385d4e97","name":"Map Your Visitors ","description":"Visitor Analytics puts your traffic on the map, so you can easily pinpoint the country and city where each visitor comes from. "},{"id":"914da81f-b6fe-49fa-961a-052905e0c602","name":"Filter Your Site Visits","description":"Exclude your own site visits from the data, so your stats are as accurate as can be. "},{"id":"6367b257-3a82-4b2f-be06-a48b62d5a01b","name":"Unlimited Stats","description":"Get access to detailed information for all your visitors. without being limited to 1000 page visits per month."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]}},"36":{"type":"public","applicationId":36,"appDefinitionId":"13322a7c-6039-ac58-86e8-48b76f901d91","appDefinitionName":"Site Search","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"147f339b-3fcf-2fc5-c69b-207cd644130e":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","widgetId":"147f339b-3fcf-2fc5-c69b-207cd644130e","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_SERP","appPage":{"id":"search_results_page","name":"Search Results Page","defaultPage":"serp","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"published":false,"mobilePublished":true,"seoEnabled":true,"preFetch":true,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":false},"13322a9f-8ffc-59f0-c8fc-ca95943cb55c":{"widgetUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?v=2020.06.13","widgetId":"13322a9f-8ffc-59f0-c8fc-ca95943cb55c","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix-instantsearchplus-ssl.akamaized.net\/wix_widget\/wix_instantsearchplus_widget-V3.html?mobile=1&v=2020.06.13","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"tpaWidgetId":"instantsearch+_basics","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"packagePickerV2":[{"model":{"plans":[{"id":"95517cb0-60b7-4872-b983-9fd753d1830c","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"10294a8d-c16a-4390-9259-520fd6b4ea78":"30\/Month","aee23261-3137-4a3e-8fff-7a64c57a3019":"","e9ff4266-d566-4719-86fb-f9ebf392e344":" Every week"},"mostPopular":false},{"id":"8d5b2fc6-3cbc-44c2-93f2-de246c96b5d0","name":"Premium","billing":{"yearlyPrice":4.9899997711182,"monthlyPrice":5.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"InstantSearch","featureList":{"10294a8d-c16a-4390-9259-520fd6b4ea78":"Unlimited","2071e478-9cdd-4fd4-9e64-9ff2ba85a8fd":"","51e032b0-7f91-40f3-8f8a-fbe7c9b53216":"","aee23261-3137-4a3e-8fff-7a64c57a3019":"","cb1364f5-cfeb-4cd2-a3e6-1db4ae9c9c94":"","cd941757-2715-4543-a7b1-ee8aa25b0fd5":"","e9ff4266-d566-4719-86fb-f9ebf392e344":"Every day & on-demand"},"mostPopular":false}],"features":[{"id":"10294a8d-c16a-4390-9259-520fd6b4ea78","name":"Number of searches","description":"Let your visitors conduct up 30 monthly searches with our free plan or unlimited searches with our premium plan"},{"id":"e9ff4266-d566-4719-86fb-f9ebf392e344","name":"Frequent Sync","description":"Site content will be refreshed every day and on-demand for premium users, and weekly for free active users."},{"id":"aee23261-3137-4a3e-8fff-7a64c57a3019","name":"Search and navigation","description":"Allows users to search your Wix site and find what they are looking for. Users get results in the search results window."},{"id":"2071e478-9cdd-4fd4-9e64-9ff2ba85a8fd","name":"AutoComplete Suggestions","description":"Delight your visitors like the pros do, with a fast dropdown of autocomplete suggestions."},{"id":"cb1364f5-cfeb-4cd2-a3e6-1db4ae9c9c94","name":"Business dashboard","description":"Review all the content your users are searching for on your site, so that you can serve them better. Get insights on how to improve your SEO and attract more organic search traffic to your site"},{"id":"51e032b0-7f91-40f3-8f8a-fbe7c9b53216","name":"eCommmerce search results","description":"Show users eCommerce search results with price and more"},{"id":"cd941757-2715-4543-a7b1-ee8aa25b0fd5","name":"Remove Logo","description":"Control whether users are presented our 'powered by' logo."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false}}],"featuresForNewPackagePicker":[]}},"37":{"type":"public","applicationId":37,"appDefinitionId":"2b1943e2-3fc2-47bc-be56-3d402e5966d7","appDefinitionName":"Shippo","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{}},"38":{"type":"public","applicationId":38,"appDefinitionId":"4b10fcce-732d-4be3-9d46-801d271acda9","appDefinitionName":"Secrets Vault","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{},"version":"0.0.30"},"48":{"type":"public","applicationId":48,"appDefinitionId":"8725b255-2aa2-4a53-b76d-7d3c363aaeea","appDefinitionName":"Subscriptions","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"49":{"type":"public","applicationId":49,"appDefinitionId":"35aec784-bbec-4e6e-abcb-d3d724af52cf","appDefinitionName":"Recurring Invoices","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{}},"50":{"type":"public","applicationId":50,"appDefinitionId":"12f1fbab-8b9d-3002-87b5-2972897e8314","appDefinitionName":"Online Store","instance":"","instanceId":"","sectionUrl":"https:\/\/wix.ecwid.com\/wix\/app\/store","sectionMobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/mobile","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"1396de3a-4236-9601-c4a1-ef4361bba0e9":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","widgetId":"1396de3a-4236-9601-c4a1-ef4361bba0e9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/search","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"search","default":false},"1396de24-8028-c0e8-06fc-324d1267889f":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","widgetId":"1396de24-8028-c0e8-06fc-324d1267889f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"minicart","default":false},"6b6ace36-3b27-463d-9a8b-29e72c7ab67e":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/cart_v2","widgetId":"6b6ace36-3b27-463d-9a8b-29e72c7ab67e","refreshOnWidthChange":true,"gluedOptions":{"placement":"BOTTOM_RIGHT","verticalMargin":0,"horizontalMargin":0},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"floating_shopping_bag_icon","default":false},"13a386d3-301e-bb86-22d1-56fc41b524e2":{"widgetUrl":"https:\/\/wix.ecwid.com\/wix\/app\/store","widgetId":"13a386d3-301e-bb86-22d1-56fc41b524e2","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wix.ecwid.com\/wix\/app\/mobile","appPage":{"id":"online_store","name":"Online Store","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"allowPaymentRequest":true},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"packagePickerV2":[{"appId":"7d3518e9-872e-4cc7-8f23-54062904df4c","model":{"plans":[{"id":"cd05c1aa-4463-49fe-b3de-0161774e4c62","name":"Starter","billing":{"yearlyPrice":6.6300001144409,"monthlyPrice":7.9899997711182,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_BASIC","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"50","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":false},{"id":"c15295cc-7c98-4c14-977d-c2906b2d372f","name":"Professional","billing":{"yearlyPrice":15.829999923706,"monthlyPrice":19,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_PREMIUM","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"2500","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","5f6fabcb-fad1-465f-8575-0555b910c4cd":"","6c29cceb-0662-488c-8385-366d7e8e4ff4":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","8ffdce81-2a11-49e9-83b3-6d1e8fb833a3":"","a7243392-1082-4776-a9c6-89790af9d1b6":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","d66c12cf-b335-4fb6-afcb-6bc756c67028":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":true},{"id":"ebef3ea0-1dd7-47cf-bb36-692a225baac2","name":"Unlimited","billing":{"yearlyPrice":65.830001831055,"monthlyPrice":79,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"WIX_UNLIMITED_POS","featureList":{"14354c8c-1037-4496-bcf2-a2c3dcd8daef":"","39feda35-9fb5-4ebb-b838-786045238392":"","54f7d572-6b92-47de-972d-1face00836f6":"Unlimited","570c58e2-0495-4cc0-931d-4a5b9d5b9fe9":"","5f6fabcb-fad1-465f-8575-0555b910c4cd":"","6c29cceb-0662-488c-8385-366d7e8e4ff4":"","849ea124-9d67-4f2f-934e-c9e3640e7a55":"","8ba8812b-4dd9-4d25-8ea5-1eb1ed173009":"","8ffdce81-2a11-49e9-83b3-6d1e8fb833a3":"","a6f6ebbf-7dd3-4cca-b3b0-b34dc8b1e722":"Annual Only","a7243392-1082-4776-a9c6-89790af9d1b6":"","cb765a3a-452c-40dd-861e-7596b817a0ec":"","d66c12cf-b335-4fb6-afcb-6bc756c67028":"","e4089874-312d-43a0-b1d2-e8876237d17c":""},"mostPopular":false}],"features":[{"id":"54f7d572-6b92-47de-972d-1face00836f6","name":"Number of Products","description":"List 10 to unlimited products in your store - choose what works best for your business"},{"id":"570c58e2-0495-4cc0-931d-4a5b9d5b9fe9","name":"Global Shipping & Payments","description":"Real time shipping rates from UPS, Fedex, USPS, DHL, and more. Native integration to 50+ payment gateways."},{"id":"39feda35-9fb5-4ebb-b838-786045238392","name":"No Transaction Fees","description":"Your profit is 100% yours, meaning you don?t have to worry about us taking a percentage of your sales. "},{"id":"cb765a3a-452c-40dd-861e-7596b817a0ec","name":"Mobile Responsive Store","description":"Your Wix site and Ecwid store will look beautiful on any device: mobile, tablet or desktop."},{"id":"14354c8c-1037-4496-bcf2-a2c3dcd8daef","name":"Sell on Facebook","description":"Ecwid e-commerce has helped over 40,000 small businesses go from sharing products to selling them on Facebook."},{"id":"e4089874-312d-43a0-b1d2-e8876237d17c","name":"Sell on Instagram","description":"More than 1 billion customers can order directly from your Instagram posts when you're powered by Ecwid E-commerce. "},{"id":"849ea124-9d67-4f2f-934e-c9e3640e7a55","name":"Discount Coupons","description":"Offer coupons and special discounts to keep customers coming back and attract new ones."},{"id":"5f6fabcb-fad1-465f-8575-0555b910c4cd","name":"Abandoned Cart Recovery ","description":"Track abandoned carts and send follow up emails automatically, encouraging customers to complete their purchase. "},{"id":"a7243392-1082-4776-a9c6-89790af9d1b6","name":"Automatic Tax Calculations","description":"Taxes are complicated, let us do the work for you! Automatically charge precise tax rate depending on where you and your customer are located. No setup required."},{"id":"8ffdce81-2a11-49e9-83b3-6d1e8fb833a3","name":"Sell Downloadable goods","description":"Sell downloadable goods like ebooks, music, software in your store. After purchase customer will receive protected link to download files. "},{"id":"6c29cceb-0662-488c-8385-366d7e8e4ff4","name":"Sell on Marketplaces","description":"Export products to major marketplaces sites like eBay, Amazon, Google Shopping, Shopping.com and more."},{"id":"d66c12cf-b335-4fb6-afcb-6bc756c67028","name":"Ecwid Mobile App","description":"Manage your store on the go and accept credit card payments in person with Square and PayPal Here card readers."},{"id":"8ba8812b-4dd9-4d25-8ea5-1eb1ed173009","name":"Point-of-Sale Integrations","description":"Integrate your online and offline business by synchronizing with leading point-of-sale systems Square and Vend (available for Unlimited and Managed Store plans)."},{"id":"a6f6ebbf-7dd3-4cca-b3b0-b34dc8b1e722","name":"ShopApp application","description":"Allow your customers to shop from their mobile devices with your own, branded iOS and Android shopping app (available on the Annual Unlimited plan)."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]}},"51":{"type":"public","applicationId":51,"appDefinitionId":"14cc0205-326b-ea2d-1cf1-5f9893c1d2fa","appDefinitionName":"EasyChat","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"151d4c25-cbae-f866-9fbd-56a59370dcfc":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","widgetId":"151d4c25-cbae-f866-9fbd-56a59370dcfc","refreshOnWidthChange":true,"mobileUrl":"https:\/\/nser.io\/wix\/widget.php?mobile=true","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"mobile_widget","default":false},"14cc02e4-3017-04af-0069-41765b4adc1b":{"widgetUrl":"https:\/\/nser.io\/wix\/widget.php","widgetId":"14cc02e4-3017-04af-0069-41765b4adc1b","refreshOnWidthChange":true,"gluedOptions":{"placement":"BOTTOM_RIGHT","verticalMargin":0,"horizontalMargin":0},"mobileUrl":"https:\/\/nser.io\/wix\/widget.php","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"nser.io","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"packagePickerV2":[{"appId":"f77ac768-f3ff-41a6-93f9-f8ce9353a4bc","model":{"plans":[{"id":"46b533ca-f108-4f5b-940a-72cef53ec239","name":"Free","billing":{"yearlyPrice":0,"monthlyPrice":0,"oneTimePrice":0,"yearlyDiscountPercent":0},"featureList":{"00e81c5f-1efe-4b40-baeb-a39db745745f":"","9198071a-3be3-4b3b-a3c6-1f7c6c490617":"","b0b307c8-310a-467c-8c5d-c2ba2ff88dbf":"","c2568835-6945-4c75-a3fe-99020f2b2890":"","e721832d-05e2-4249-a07e-7f84030af501":"","f8bdbe56-3cbc-4e95-a448-be200b1c84eb":""},"mostPopular":false},{"id":"1de8fb23-ed26-4317-bfaf-95c808583553","name":"Premium","billing":{"yearlyPrice":7.9000000953674,"monthlyPrice":10,"oneTimePrice":0,"yearlyDiscountPercent":21},"vendorId":"1","featureList":{"00e81c5f-1efe-4b40-baeb-a39db745745f":"","48c46403-9e16-4214-8c19-9a22123c1e54":"","9198071a-3be3-4b3b-a3c6-1f7c6c490617":"","af872ef0-c7dc-4de3-af79-40e4708786bd":"","b0b307c8-310a-467c-8c5d-c2ba2ff88dbf":"","c2568835-6945-4c75-a3fe-99020f2b2890":"","e721832d-05e2-4249-a07e-7f84030af501":"","f8bdbe56-3cbc-4e95-a448-be200b1c84eb":""},"mostPopular":false}],"features":[{"id":"c2568835-6945-4c75-a3fe-99020f2b2890","name":"Simple Set Up","description":"Create your chatbot in minutes. Simply add keywords like \"address\" or \"location,\" and set your automatic reply."},{"id":"b0b307c8-310a-467c-8c5d-c2ba2ff88dbf","name":"Instant Engagement","description":"Answer common questions instantly and engage visitors with realistic live chat-style responses."},{"id":"e721832d-05e2-4249-a07e-7f84030af501","name":"Add Your Top Ten","description":"Provide instant answers to frequently asked questions, such as your location, hours, contact info and more."},{"id":"9198071a-3be3-4b3b-a3c6-1f7c6c490617","name":"Fully Customizable Design","description":"Customize colors, fonts and more. Add your own chat icon, match your pop-up chat box to your brand, and tailor it seamlessly to your site."},{"id":"f8bdbe56-3cbc-4e95-a448-be200b1c84eb","name":"Expert Analytics","description":"Analyze your visitors' questions and refine your responses. Provide the right answers, every time."},{"id":"00e81c5f-1efe-4b40-baeb-a39db745745f","name":"The Personal Touch","description":"Give your chatbot a personality and voice that fits your brand. Create grouped answers linked by words and phrases for clear, varied replies."},{"id":"48c46403-9e16-4214-8c19-9a22123c1e54","name":"Unlimited Answers & Replies","description":"Add as many answers as you want by upgrading your app. Plus, never leave a question unanswered. Send visitors a response, direct to their email."},{"id":"af872ef0-c7dc-4de3-af79-40e4708786bd","name":"Upgrade to Make it Your Own","description":"Remove \"Powered by Nser\" from your app and related emails, for a fully integrated chatbot. "}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]}},"52":{"type":"public","applicationId":52,"appDefinitionId":"622e5f4f-d996-451b-b2fa-150ff44af8da","appDefinitionName":"Kudobuzz Reviews","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{}},"1979":{"type":"public","applicationId":1979,"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefinitionName":"Members Area","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-editor-app\/1.1234.0\/editorAppModule.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.762.0\/app.bundle.min.js","routerServiceUrl":"\/_api\/santa-members-server","viewerScriptUrlTemplate":""}}},"2902":{"type":"public","applicationId":2902,"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appDefinitionName":"Member Account Info","instance":"","instanceId":"","sectionUrl":"https:\/\/members.wixapps.net\/member-info\/view","sectionMobileUrl":"https:\/\/members.wixapps.net\/member-info\/view","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/members.wixapps.net\/member-info\/view","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/member-info\/view","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"3388":{"type":"public","applicationId":3388,"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefinitionName":"Profile Card","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/profile-card-tpa-ooi\/1.248.0\/editor\/ProfileCard.html","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"mobileSettingsEnabled":true,"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardController.bundle.min.js","componentUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'ProfileCardViewerWidget.bundle.min.js') %>","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/ProfileCardViewerWidget.bundle.min.js","controllerUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'ProfileCardController.bundle.min.js') %>"},"tpaWidgetId":"profile","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0"},"baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('profile-card-tpa-ooi', '\/') %>"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"<%= serviceUrl('profile-card-tpa-ooi', 'viewerScript.bundle.min.js') %>","isStretched":{},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.248.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}}}},"3940":{"type":"public","applicationId":3940,"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefinitionName":"Wix Stores","instance":"","instanceId":"","sectionUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","sectionMobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","minHeightInMobile":340,"mobileSettingsEnabled":true,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/galleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/gallery.bundle.min.js"},"default":true},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIcon.bundle.min.js","componentName":"cartWidget","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/cartIconController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIconController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIcon.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/cartIconNoCss.bundle.min.js"},"tpaWidgetId":"shopping_cart_icon","default":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product","appPage":{"id":"product_page","name":"Product Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPage.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/productPageController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPageController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPage.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/productPageNoCss.bundle.min.js"},"default":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":480,"fullPageDesktopOnly":true},"default":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidget.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/productWidgetController.bundle.min.js","minHeightInMobile":354,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidgetController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidget.bundle.min.js","noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/productWidgetNoCss.bundle.min.js"},"tpaWidgetId":"product_widget","default":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCartController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCart.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/addToCart.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCartController.bundle.min.js","viewer":{"errorReporting":{"url":"https:\/\/[email protected]\/1865790"}},"noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/addToCartNoCss.bundle.min.js"},"tpaWidgetId":"add_to_cart_button","default":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlist.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/wishlistController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/wishlistController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/wishlist.bundle.min.js"},"default":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/wixstores-client-cart-ooi\/1.527.0\/editor\/cart.html","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartViewerWidget.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0\/cartController.bundle.min.js","controllerUrlTemplate":"<%= serviceUrl('wixstores-client-cart-ooi', 'cartController.bundle.min.js') %>","componentUrlTemplate":"<%= serviceUrl('wixstores-client-cart-ooi', 'cartViewerWidget.bundle.min.js') %>"},"default":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/gallery","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/gallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/galleryController.bundle.min.js","mobileSettingsEnabled":true,"controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/galleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/gallery.bundle.min.js"},"tpaWidgetId":"grid_gallery","default":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/minigallery","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGallery.bundle.min.js","controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/sliderGalleryController.bundle.min.js","controllerUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/sliderGalleryController.bundle.min.js","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/sliderGallery.bundle.min.js"},"tpaWidgetId":"slider_gallery","default":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/success","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/ecom.wix.com\/storefront\/success","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1257.0\/thankYouPageController.bundle.min.js","iframeWithPlatform":true},"default":false}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"baseUrls":{"galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.2087.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.924.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.518.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.1877.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.1031.0\/","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.527.0","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.978.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1489.0\/editor.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.1489.0\/viewerScript.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('wixstores-client-cart-ooi', '\/') %>","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/<%=serviceVersion('wixstores-client-add-to-cart')%>\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/<%=serviceVersion('wixstores-client-cart-icon')%>\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/<%=serviceVersion('wixstores-client-product-widget')%>\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/<%=serviceVersion('wixstores-client-gallery')%>\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/<%=serviceVersion('wixstores-client-wishlist')%>\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/<%=serviceVersion('wixstores-client-product-page')%>\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"viewerScriptUrlTemplate":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/<%=serviceVersion('wixstores-client-worker')%>\/viewerScript.bundle.min.js","isStretched":{"desktop":false,"tablet":false,"mobile":false},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.serverless.serverless-wixstores-tpa-site-ss"}}}},"4368":{"type":"public","applicationId":4368,"appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","appDefinitionName":"My Addresses","instance":"","instanceId":"","sectionUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","sectionMobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","widgetId":"151290e1-62a2-0775-6fbc-02182fad5dec","refreshOnWidthChange":true,"mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"4584":{"type":"public","applicationId":4584,"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appDefinitionName":"My Wallet","instance":"","instanceId":"","sectionUrl":"https:\/\/cashier.wixapps.net\/wallet","sectionMobileUrl":"https:\/\/cashier.wixapps.net\/wallet","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/cashier.wixapps.net\/wallet","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/cashier.wixapps.net\/wallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"5588":{"type":"public","applicationId":5588,"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefinitionName":"Wix Site Search","instance":"","instanceId":"","sectionUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.353.0\/editorWidget.html","sectionMobileUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.353.0\/editorWidget.html","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","refreshOnWidthChange":true,"mobileUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/editorWidget.html","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerWidget.bundle.min.js","controllerUrlTemplate":"","componentUrlTemplate":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/viewerWidget.bundle.min.js"},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.153.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/1.1884.0\/viewerScript.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"https:\/\/static.parastorage.com\/services\/search-results-widget\/<%=serviceVersion('search-results-widget')%>\/viewerScript.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}}}},"6108":{"type":"public","applicationId":6108,"appDefinitionId":"cdd4b6d5-6fb4-4bd1-9189-791244b5361e","appDefinitionName":"Pay Button","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{"platform":{"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pay-button-worker\/1.797.0\/editor-script.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pay-button-worker\/1.797.0\/viewer-script.bundle.min.js","errorReporting":{},"enableInEditor":true,"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}}}},"7048":{"type":"public","applicationId":7048,"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefinitionName":"Wix Forms & Payments","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-form-builder\/1.4506.0\/editor-app.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.517.0\/viewer-app.bundle.min.js","hasDashboardComponent":true,"baseUrls":{"":""},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"viewerScriptUrlTemplate":"https:\/\/static.parastorage.com\/services\/forms-viewer\/<%=serviceVersion('forms-viewer')%>\/viewer-app.bundle.min.js","isStretched":{"desktop":false,"tablet":false,"mobile":false},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}},"premiumBundle":{"parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"mostPopularPackage":"Mid_Range","featuresForNewPackagePicker":[{"forPackages":[{"value":"Unlimited","packageId":"Basic"},{"value":"Unlimited","packageId":"Mid_Range"},{"value":"Unlimited","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"100MB Storage","packageId":"Basic"},{"value":"1GB Storage","packageId":"Mid_Range"},{"value":"10GB Storage","packageId":"Pro"}]},{"forPackages":[{"value":"10 Forms","packageId":"Basic"},{"value":"100 Forms","packageId":"Mid_Range"},{"value":"Unlimited","packageId":"Pro"}]},{"forPackages":[{"value":"1000 Submissions\/month","packageId":"Basic"},{"value":"5000 Submissions\/month","packageId":"Mid_Range"},{"value":"Unlimited","packageId":"Pro"}]},{"forPackages":[{"value":"1 User","packageId":"Basic"},{"value":"5 Users","packageId":"Mid_Range"},{"value":"Unlimited Users","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Basic"},{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]},{"forPackages":[{"value":"true","packageId":"Mid_Range"},{"value":"true","packageId":"Pro"}]}]}},"7996":{"type":"siteextension","applicationId":7996,"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","instance":"","instanceId":""},"9444":{"type":"public","applicationId":9444,"appDefinitionId":"1522827f-c56c-a5c9-2ac9-00f9e6ae12d3","appDefinitionName":"Pricing Plans","instance":"","instanceId":"","sectionUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","sectionMobileUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"15293875-09d7-6913-a093-084a9b6ae7f4":{"widgetUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","widgetId":"15293875-09d7-6913-a093-084a9b6ae7f4","refreshOnWidthChange":true,"mobileUrl":"https:\/\/pricing-plans.wixapps.net\/tpa","appPage":{"id":"membership_plan_picker_tpa","name":"Plans & Pricing","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":0},"default":true},"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830":{"widgetUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","widgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","refreshOnWidthChange":true,"mobileUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.300.0\/editor\/PlanList.html","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListController.bundle.min.js","componentUrlTemplate":"","componentUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/PlanListViewerWidget.bundle.min.js","controllerUrlTemplate":"","viewer":{"errorReporting":{"url":""}},"migratingToOoi":true},"tpaWidgetId":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/editorScript.bundle.min.js","margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrlTemplate":"","isStretched":{},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pricing-plans-tpa\/1.300.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}},"baseUrls":{"staticsBaseUrl":"https:\/\/editor-flow.wixapps.net\/render\/pricing-plans-tpa\/1.275.0"}}}},"10805":{"type":"public","applicationId":10805,"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","appDefinitionName":"Wix FAQ","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/index","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wixlabs-wix-faq-11.appspot.com\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"mobileSettingsEnabled":true},"tpaWidgetId":"faq_widget","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"11062":{"type":"public","applicationId":11062,"appDefinitionId":"13707244-ccaa-a180-9ae4-664d3a833580","appDefinitionName":"Wix Hit Counter","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"13707259-eaf0-b80f-57bc-3423f704a304":{"widgetUrl":"https:\/\/wixlabs-hcounter.appspot.com\/index","widgetId":"13707259-eaf0-b80f-57bc-3423f704a304","refreshOnWidthChange":true,"mobileUrl":"https:\/\/wixlabs-hcounter.appspot.com\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"hitcounter-dev","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{}},"13534":{"type":"public","applicationId":13534,"appDefinitionId":"136e8e3c-0f84-1750-d45a-da6f5d7229f8","appDefinitionName":"Social Stream","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"136e8e54-a599-3a61-e4cd-14548c1da9d2":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","widgetId":"136e8e54-a599-3a61-e4cd-14548c1da9d2","refreshOnWidthChange":true,"mobileUrl":"https:\/\/www.powr.io\/plugins\/social-feed\/wix_cached_view","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"powr_banner_slider","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":false,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"packagePickerV2":[{"appId":"e7fa3a01-ea5b-4963-a1f7-ceb25dc8c2fa","model":{"plans":[{"id":"70ed5d0d-f8b4-42f1-9287-ae85644af312","name":"Starter","billing":{"yearlyPrice":3.5799999237061,"monthlyPrice":3.9900000095367,"oneTimePrice":0,"yearlyDiscountPercent":10},"vendorId":"premium","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"12","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"2","d81a8679-b0e9-444a-ae70-4a67d715c30b":"2","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"12 Hours"},"mostPopular":false},{"id":"fbb76cdf-3eab-4c3c-9dec-0a259ff93c83","name":"Pro","billing":{"yearlyPrice":7.75,"monthlyPrice":11.069999694824,"oneTimePrice":0,"yearlyDiscountPercent":30},"vendorId":"pro","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"20","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"4","d81a8679-b0e9-444a-ae70-4a67d715c30b":"5","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"3 Hours","fc4a28c8-f76b-4783-91a3-532700089cc2":""},"mostPopular":true},{"id":"73eed1ba-9e61-4fea-a24c-b5acdb41286c","name":"Business","billing":{"yearlyPrice":13.199999809265,"monthlyPrice":15.989999771118,"oneTimePrice":0,"yearlyDiscountPercent":17},"vendorId":"enterprise","featureList":{"0e4c2154-e024-4a70-988b-7beb424c1519":"50","35e5e9dd-7e87-4619-839f-2a15e0bb43b7":"","41efcd19-c307-4e4b-9101-c141f82b3f03":"15","d81a8679-b0e9-444a-ae70-4a67d715c30b":"Unlimited","f251a052-01aa-4c78-925b-75eb416229f6":"","f64eccfd-d916-43c5-9c4a-55d85c68c5ed":"20 Minutes","fc4a28c8-f76b-4783-91a3-532700089cc2":""},"mostPopular":false}],"features":[{"id":"35e5e9dd-7e87-4619-839f-2a15e0bb43b7","name":"No POWr Logo","description":"Remove the POWr logo from the bottom of your Social Feed"},{"id":"d81a8679-b0e9-444a-ae70-4a67d715c30b","name":"Number of Streams","description":"The number of different Social Streams you can add to one website."},{"id":"f64eccfd-d916-43c5-9c4a-55d85c68c5ed","name":"Content Updates","description":"The amount of time before your Social Stream is updated with new posts."},{"id":"41efcd19-c307-4e4b-9101-c141f82b3f03","name":"Accounts\/Hashtags Per Stream","description":"The number of handles and\/or hashtags you can follow in one Social Stream."},{"id":"0e4c2154-e024-4a70-988b-7beb424c1519","name":"Posts Per Account","description":"The maximum number of posts you can display in one Social Stream."},{"id":"fc4a28c8-f76b-4783-91a3-532700089cc2","name":"Shareable Entries","description":"Add social sharing buttons to your images or videos so visitors can share them on social media."},{"id":"f251a052-01aa-4c78-925b-75eb416229f6","name":"Manual Approval","description":"Manually approve posts before they appear on your stream and delete any unwanted posts."}],"languageCode":"en","businessModel":"FREEMIUM","freeTrialDays":0,"isInAppPurchase":false,"isExternalPricing":false},"languageCode":"en"}],"featuresForNewPackagePicker":[]}},"15556":{"type":"public","applicationId":15556,"appDefinitionId":"14635256-b183-1c71-a4d2-f55179b80e8a","appDefinitionName":"Instagram Feed","instance":"","instanceId":"","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"14635280-8c8d-5346-b643-691f84f48973":{"widgetUrl":"https:\/\/instafeed.codev.wixapps.net\/widget","widgetId":"14635280-8c8d-5346-b643-691f84f48973","refreshOnWidthChange":true,"mobileUrl":"https:\/\/instafeed.codev.wixapps.net\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"mobileSettingsEnabled":true},"tpaWidgetId":"instagram_feed","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{}},"17266":{"type":"public","applicationId":17266,"appDefinitionId":"148c2287-c669-d849-d153-463c7486a694","appDefinitionName":"Wix Groups","instance":"","instanceId":"","sectionUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","sectionMobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"a7dcdfcb-8abd-4008-af19-fed5fcd12b40":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","widgetId":"a7dcdfcb-8abd-4008-af19-fed5fcd12b40","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/editorApp","appPage":{"id":"groups","name":"Groups","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/viewerApp.bundle.min.js","mobileSettingsEnabled":true,"controllerUrlTemplate":"","componentUrlTemplate":"<%= serviceUrl('social-groups-app', 'viewerApp.bundle.min.js') %>"},"default":true},"83b2af08-c021-40c8-a3a5-b329a959ec2b":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","widgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js"},"tpaWidgetId":"83b2af08-c021-40c8-a3a5-b329a959ec2b","default":false},"0a9f687f-7e00-4576-a8e1-9415844b8f44":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp?widget=discovery","widgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-groups-app\/widgetEditorApp","published":true,"mobilePublished":true,"seoEnabled":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/widgetViewerApp.bundle.min.js","controllerUrlTemplate":"","componentUrlTemplate":""},"tpaWidgetId":"0a9f687f-7e00-4576-a8e1-9415844b8f44","default":false},"513a5d84-3ebb-4ca6-a5aa-83effd2123b9":{"widgetUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","widgetId":"513a5d84-3ebb-4ca6-a5aa-83effd2123b9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/groups.wixapps.net\/social-groups\/api\/render\/social-group\/editorApp","appPage":{"id":"group","name":"Group","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"componentUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/viewerWidget.bundle.min.js","mobileSettingsEnabled":true,"componentUrlTemplate":"<%= serviceUrl('social-group', 'viewerWidget.bundle.min.js') %>","controllerUrlTemplate":"","viewer":{"errorReporting":{"url":""}},"noCssComponentUrlTemplate":"https:\/\/static.parastorage.com\/services\/social-group\/<%=serviceVersion('social-group')%>\/viewerWidgetNoCss.bundle.min.js"},"default":false},"c1d78264-dd73-4564-969f-d47d619f7051":{"widgetUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/editorApp.html","widgetId":"c1d78264-dd73-4564-969f-d47d619f7051","refreshOnWidthChange":true,"appPage":{"id":"groups_area","name":"Groups area","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"default":false}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-app\/1.1941.0\/","staticsGroupBaseUrl":"https:\/\/static.parastorage.com\/services\/social-group\/1.2414.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/editor.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/social-groups-platform-app\/1.1905.0\/viewer.bundle.min.js","baseUrlsTemplate":{"staticsBaseUrl":"<%= serviceUrl('social-groups-app', '\/') %>","staticsGroupBaseUrl":"<%= serviceUrl('social-group', '\/') %>"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"viewerScriptUrlTemplate":"<%= serviceUrl('social-groups-platform-app', 'viewer.bundle.min.js') %>","isStretched":{"desktop":false,"tablet":false,"mobile":false},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.groups.social-groups-web"}}}},"18059":{"type":"public","applicationId":18059,"appDefinitionId":"14dbefd2-01b4-fb61-32a7-3abd44da4908","appDefinitionName":"Members","instance":"","instanceId":"","sectionUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","sectionMobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"14dbefdd-0f55-0dfe-70a2-79a8fe7ee7b9":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","widgetId":"14dbefdd-0f55-0dfe-70a2-79a8fe7ee7b9","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/members","appPage":{"id":"all_members","name":"Members","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":true,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-app-editor-script\/1.0.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"","isStretched":{"desktop":false,"tablet":false,"mobile":false},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}}}},"18654":{"type":"public","applicationId":18654,"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","appDefinitionName":"Members About","instance":"","instanceId":"","sectionUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","sectionMobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","refreshOnWidthChange":true,"mobileUrl":"https:\/\/members.wixapps.net\/members-area\/app\/about","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-app-editor-script\/1.0.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"","isStretched":{"desktop":false,"tablet":false,"mobile":false},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}}},"docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"}}}}},"19189":{"type":"public","applicationId":19189,"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appDefinitionName":"communities-notifications-app","instance":"","instanceId":"","sectionUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","sectionMobileUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":true,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/notifications-app.wixapps.net\/communities-notifications-app\/app","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{"minHeightInMobile":0},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"19932":{"type":"public","applicationId":19932,"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appDefinitionName":"Settings","instance":"","instanceId":"","sectionUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","sectionMobileUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","sectionPublished":true,"sectionMobilePublished":true,"sectionSeoEnabled":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","refreshOnWidthChange":true,"mobileUrl":"https:\/\/apps.wix.com\/notifications\/settings-app","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{}},"-666":{"type":"metasite","metaSiteId":"460e14ec-a806-4b47-b08f-b3b158ba872d","appDefId":"22bef345-3c5b-4c18-b782-74d4085112ff","instance":"","appDefinitionId":"22bef345-3c5b-4c18-b782-74d4085112ff","applicationId":-666,"instanceId":""}},"isPremiumDomain":true,"tbElementsSiteAssets":"siteAssets.e448a59d.bundle.min.js","disableSiteAssetsCache":false,"migratingToOoiWidgetIds":"80a3bd56-82b4-4193-8bb4-b7cb0f3f1830","widgetsToPageJsonFilenames":{},"siteRevisionConfig":{},"registryLibrariesTopology":[{"artifactId":"editor-elements","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.5780.0","manifestName":"library-manifest","namespace":"wixui"},{"artifactId":"editor-elements-design-systems","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.5780.0","manifestName":"design-systems-manifest","namespace":"dsgnsys"}],"isInSeo":false,"language":"en","originalLanguage":"en"},"beckyExperiments":{"specs.thunderbolt.stylableCssPerComponent":true,"specs.thunderbolt.addressInputAtlasProvider":true,"specs.thunderbolt.seoFriendlyDropDownMenu":true,"specs.thunderbolt.image_placeholder":true,"specs.thunderbolt.tb_omitInlineContent":true,"tb_UploadButtonFixValidationNotRequired":true,"specs.thunderbolt.tb_pinLayerDockedBottom":true,"specs.thunderbolt.tb_media_layout_by_effect":true},"manifests":{"node":{"modulesToHashes":{"thunderbolt-css":"299e17dd.bundle.min","thunderbolt-features":"c4324d7e.bundle.min","thunderbolt-platform":"e61e2930.bundle.min"}},"web":{"modulesToHashes":{"webpack-runtime":"29425a48.bundle.min","thunderbolt-css":"9f6694a8.chunk.min","thunderbolt-features":"94e8f292.chunk.min","thunderbolt-platform":"85f6a7d1.chunk.min"},"webpackRuntimeBundle":"29425a48.bundle.min"},"webWorker":{"modulesToHashes":{"thunderbolt-css":"a9810ac5.bundle.min","thunderbolt-features":"ea431625.bundle.min","thunderbolt-platform":"5c1b51ed.bundle.min"}}},"tbElementsManifests":{"web":{"modulesToHashes":{"siteAssets":"05020ce4.chunk.min","webpack-runtime":"d721250b.bundle.min","thunderbolt-elements.03a8805908245ab59e0a22760130ac4e1740f1c4.metadata":"json"},"webpackRuntimeBundle":"d721250b.bundle.min"},"node":{"modulesToHashes":{"siteAssets":"e448a59d.bundle.min"}},"webWorker":{"modulesToHashes":{"siteAssets":"663e5bf1.bundle.min"}}},"staticHTMLComponentUrl":"https:\/\/www-fudbeens-com.filesusr.com\/","remoteWidgetStructureBuilderVersion":"1.226.0"},"experiments":{"storeSanpshotOnRedis":true,"specs.thunderbolt.sm_redirectToResetPasswordLinkOnTokenExpired":true,"dm_fixMobileHoverBoxDesign":true,"specs.thunderbolt.stylableCssPerComponent":true,"specs.thunderbolt.addressInputAtlasProvider":true,"specs.thunderbolt.seoFriendlyDropDownMenu":true,"specs.thunderbolt.RenderMultilingualInSEOFeature":true,"specs.thunderbolt.stylableInteractions":true,"specs.thunderbolt.encode_redirect_url":true,"specs.thunderbolt.addUtmParamsToBiEvents":true,"bv_removeMenuDataFromPageJson":true,"specs.thunderbolt.sm_platformizedLogin":true,"specs.thunderbolt.sm_displayLoginAsAPopup":true,"specs.thunderbolt.image_placeholder":true,"specs.thunderbolt.inject_namespaces_to_wix_code":true,"specs.thunderbolt.wixCodeUseGlobalsObject":true,"specs.promote.ar.reportRestOfEventsToFacebook":true,"bv_migrateResponsiveLayoutToSingleLayoutData":true,"specs.thunderbolt.tb_omitInlineContent":true,"specs.thunderbolt.enableSsrChunkedStreaming":true,"specs.thunderbolt.safari_sticky_fix":true,"specs.promote.ar.capiExtendedFields":true,"tb_UploadButtonFixValidationNotRequired":true,"specs.promote.ar.reportLeadToFacebook":true,"specs.thunderbolt.tb_pinLayerDockedBottom":true,"specs.thunderbolt.prefetch_instead_script":true,"specs.thunderbolt.oldBrowsersDeprecation":true,"specs.thunderbolt.editor_elements_site_assets":true,"specs.thunderbolt.do_not_handle_tpa_messages_from_different_origin":true,"specs.thunderbolt.reducedMotion":true,"displayWixAdsNewVersion":true,"specs.thunderbolt.shouldEnableSACFallbackForClientWorker":true,"specs.thunderbolt.ooi_css_optimization":true,"oneAppWixAds":true,"specs.thunderbolt.enableClientSideRenderTrailingHeader":true,"specs.promote.ar.useStoresPurchaseFBServerEvent":true,"specs.promote.ar.capiIdentifyAdvancedSource":true,"specs.thunderbolt.tb_media_layout_by_effect":true,"specs.thunderbolt.removeCookieFromLanguageDetection":true,"specs.thunderbolt.seoAsNewPageFalse":true,"bv_migrateResponsiveToVariantsModels":true,"specs.thunderbolt.newAuthorizedPagesFlow":true,"bv_cartPageResponsiveLayoutFixer":true,"specs.thunderbolt.platformWebVitals":true,"specs.promote.ar.capiUseFacebookSetupCache":true,"specs.thunderbolt.resourceFetcherConformToFetchApi":true},"fleetConfig":{"fleetName":"thunderbolt-renderer-light","type":"GA","code":0},"dynamicModelUrl":"https:\/\/www.fudbeens.com\/_api\/v2\/dynamicmodel","rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"wix","bsi":"","consentPolicy":{},"consentPolicyHeader":{}}}</script>
<script>
window.viewerModel = JSON.parse(document.getElementById('wix-viewer-model').textContent)
window.fetchDynamicModel = fetch(window.viewerModel.dynamicModelUrl, { credentials: 'same-origin' }).then(function(r){return r.ok ? r.json() : "[" + r.status + "] " + r.statusText}).catch(function(e){ return e.message; });
window.commonConfig = viewerModel.commonConfig
</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.351fb32a.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[54],{130:function(e,n,o){"use strict";var a=window.externalsRegistry={lodash:{},react:{},reactDOM:{}},d=a.lodash,w=a.react,i=a.reactDOM;d.loaded=new Promise((function(e){d.onload=e})),window.reactDOMReference=window.ReactDOM={loading:!0},i.loaded=new Promise((function(e){i.onload=function(){Object.assign(window.reactDOMReference,window.ReactDOM),e()}})),window.reactReference=window.React={loading:!0},w.loaded=new Promise((function(e){w.onload=function(){Object.assign(window.reactReference,window.React),e()}})),window.reactAndReactDOMLoaded=Promise.all([w.loaded,i.loaded])}},[[130,2]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.351fb32a.chunk.min.js.map</script>
<!-- thunderbolt elements promise -->
<script>
window.ThunderboltElementsLoaded = new Promise(function(r) { window.ThunderboltElementsLoadedResolve = r})
</script>
<!-- bi -->
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/tslib.inline.16efbe29.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[5],[function(t,n,r){"use strict";r.d(n,"c",(function(){return o})),r.d(n,"a",(function(){return u})),r.d(n,"f",(function(){return c})),r.d(n,"b",(function(){return i})),r.d(n,"d",(function(){return a})),r.d(n,"i",(function(){return l})),r.d(n,"e",(function(){return f})),r.d(n,"g",(function(){return p})),r.d(n,"h",(function(){return y}));var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])})(t,n)};function o(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}var u=function(){return(u=Object.assign||function(t){for(var n,r=1,e=arguments.length;r<e;r++)for(var o in n=arguments[r])Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o]);return t}).apply(this,arguments)};function c(t,n){var r={};for(var e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.indexOf(e)<0&&(r[e]=t[e]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(e=Object.getOwnPropertySymbols(t);o<e.length;o++)n.indexOf(e[o])<0&&Object.prototype.propertyIsEnumerable.call(t,e[o])&&(r[e[o]]=t[e[o]])}return r}function i(t,n,r,e){return new(r||(r=Promise))((function(o,u){function c(t){try{a(e.next(t))}catch(t){u(t)}}function i(t){try{a(e.throw(t))}catch(t){u(t)}}function a(t){var n;t.done?o(t.value):(n=t.value,n instanceof r?n:new r((function(t){t(n)}))).then(c,i)}a((e=e.apply(t,n||[])).next())}))}function a(t,n){var r,e,o,u,c={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return u={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(u[Symbol.iterator]=function(){return this}),u;function i(u){return function(i){return function(u){if(r)throw new TypeError("Generator is already executing.");for(;c;)try{if(r=1,e&&(o=2&u[0]?e.return:u[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,u[1])).done)return o;switch(e=0,o&&(u=[2&u[0],o.value]),u[0]){case 0:case 1:o=u;break;case 4:return c.label++,{value:u[1],done:!1};case 5:c.label++,e=u[1],u=[0];continue;case 7:u=c.ops.pop(),c.trys.pop();continue;default:if(!(o=c.trys,(o=o.length>0&&o[o.length-1])||6!==u[0]&&2!==u[0])){c=0;continue}if(3===u[0]&&(!o||u[1]>o[0]&&u[1]<o[3])){c.label=u[1];break}if(6===u[0]&&c.label<o[1]){c.label=o[1],o=u;break}if(o&&c.label<o[2]){c.label=o[2],c.ops.push(u);break}o[2]&&c.ops.pop(),c.trys.pop();continue}u=n.call(t,c)}catch(t){u=[6,t],e=0}finally{r=o=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,i])}}}Object.create;function l(t){var n="function"==typeof Symbol&&Symbol.iterator,r=n&&t[n],e=0;if(r)return r.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&e>=t.length&&(t=void 0),{value:t&&t[e++],done:!t}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}function f(t,n){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var e,o,u=r.call(t),c=[];try{for(;(void 0===n||n-- >0)&&!(e=u.next()).done;)c.push(e.value)}catch(t){o={error:t}}finally{try{e&&!e.done&&(r=u.return)&&r.call(u)}finally{if(o)throw o.error}}return c}function p(){for(var t=[],n=0;n<arguments.length;n++)t=t.concat(f(arguments[n]));return t}function y(t,n){for(var r=0,e=n.length,o=t.length;r<e;r++,o++)t[o]=n[r];return t}Object.create}]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/tslib.inline.16efbe29.chunk.min.js.map</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.9872fcd4.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[24],{74:function(n,I,N){"use strict";var A,E;N.d(I,"a",(function(){return A})),N.d(I,"b",(function(){return E})),N.d(I,"c",(function(){return _})),function(n){n[n.START=1]="START",n[n.VISIBLE=2]="VISIBLE",n[n.PAGE_FINISH=33]="PAGE_FINISH",n[n.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",n[n.TBD=-1]="TBD",n[n.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",n[n.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE"}(A||(A={})),function(n){n[n.NAVIGATION=1]="NAVIGATION",n[n.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",n[n.INNER_ROUTE=3]="INNER_ROUTE",n[n.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",n[n.CANCELED=5]="CANCELED"}(E||(E={}));var _={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}}},[[12,2,5,6]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.9872fcd4.chunk.min.js.map</script>
<script>window.bi.sendBeat(1, 'Init')</script>
<!-- preloading pre-scripts -->
<!-- renderIndicator -->
<!-- initial scripts -->
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a232993f.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[44],{98:function(e,r,t){"use strict";t.r(r),t.d(r,"platformWorkerPromise",(function(){return l}));var a=t(0),o=window.viewerModel,n=o.siteAssets.clientTopology,s=o.siteFeatures,i=o.siteFeaturesConfigs.platform,c=o.experiments,p=s.includes("platform");var l=p?function(){return Object(a.b)(this,void 0,void 0,(function(){var e,r,t,o,s,p;return Object(a.d)(this,(function(a){switch(a.label){case 0:return e="platform_create-worker started",performance.mark(e),(r=i.clientWorkerUrl).startsWith("http://localhost:4200/")||r.startsWith("https://bo.wix.com/suricate/")?[4,(l=i.clientWorkerUrl,u=new Blob(["importScripts('"+l+"');"],{type:"application/javascript"}),URL.createObjectURL(u))]:[3,2];case 1:return o=a.sent(),[3,3];case 2:o=r.replace(n.fileRepoUrl,"/_partials"),a.label=3;case 3:return t=o,c["specs.thunderbolt.platform_worker_on_dom_interactive"]?[4,new Promise((function(e){document.addEventListener("readystatechange",(function(){"interactive"===document.readyState&&e()}),{once:!0})}))]:[3,5];case 4:a.sent(),a.label=5;case 5:return(s=new Worker(t)).postMessage({type:"platformScriptsOnPage",appsOnPageScriptsUrls:i.appsOnPageScriptsUrls}),p="platform_create-worker ended",performance.mark(p),performance.measure("Create Platform Web Worker",e,p),[2,s]}var l,u}))}))}():Promise.resolve()}},[[98,2,5]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a232993f.chunk.min.js.map</script>
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.390f3824.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[156],{178:function(n,e,a){"use strict";a.r(e),function(n){var e=new Set,a=[],t=function(n){var a=[];e.forEach((function(e){n.canHandleEvent(e)&&a.push(e)})),a.forEach((function(a){e.delete(a),n.handleEvent(a)}))};n.addEventListener("message",(function(n){var o={source:n.source,data:n.data,origin:n.origin},d=a.find((function(n){return n.canHandleEvent(o)}));d?(t(d),d.handleEvent(o)):e.add(o)})),n._addWindowMessageHandler=function(n){a.push(n),t(n)}}(window)}},[[178,2]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.390f3824.chunk.min.js.map</script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/bootstrap-features.3fc05d6d.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.d7c292fe.chunk.min.js" async=""></script>
<!-- lodash script -->
<script async="" onload="externalsRegistry.lodash.onload()" src="https://static.parastorage.com/unpkg/[email protected]/lodash.min.js"></script>
<!-- react -->
<script crossorigin src="https://static.parastorage.com/unpkg/[email protected]/umd/react.production.min.js" onload="externalsRegistry.react.onload()" defer=""></script>
<!-- siteFeatureChunks -->
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/wix-code-sdk-providers.31bdeb35.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/dynamicPages.9b452069.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/page-features.4bf20dc4.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/ooi.b29aa2e0.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/protectedPages.74a7e435.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/siteMembers.02ecf8c9.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/tpaCommons.635c4163.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegistrar.b866bae7.chunk.min.js"></script>
<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/platform.87784f29.chunk.min.js"></script>
<!-- preloading post-scripts -->
<link rel="preload" crossorigin="anonymous" as="fetch" href="https://siteassets.parastorage.com/pages/pages/thunderbolt?beckyExperiments=specs.thunderbolt.stylableCssPerComponent%3Atrue%2Cspecs.thunderbolt.addressInputAtlasProvider%3Atrue%2Cspecs.thunderbolt.seoFriendlyDropDownMenu%3Atrue%2Cspecs.thunderbolt.image_placeholder%3Atrue%2Cspecs.thunderbolt.tb_omitInlineContent%3Atrue%2Ctb_UploadButtonFixValidationNotRequired%3Atrue%2Cspecs.thunderbolt.tb_pinLayerDockedBottom%3Atrue%2Cspecs.thunderbolt.tb_media_layout_by_effect%3Atrue&contentType=application%2Fjson&dfCk=6&dfVersion=1.1273.0&experiments=bv_cartPageResponsiveLayoutFixer%2Cbv_migrateResponsiveLayoutToSingleLayoutData%2Cbv_migrateResponsiveToVariantsModels%2Cbv_removeMenuDataFromPageJson%2Cbv_remove_add_chat_viewer_fixer%2Cdm_fixMobileHoverBoxDesign&externalBaseUrl=https%3A%2F%2Fwww.fudbeens.com&fileId=e61e2930.bundle.min&hasTPAWorkerOnSite=false&isHttps=true&isInSeo=false&isPremiumDomain=true&isUrlMigrated=true&isWixCodeOnPage=true&isWixCodeOnSite=true&language=en&metaSiteId=460e14ec-a806-4b47-b08f-b3b158ba872d&migratingToOoiWidgetIds=80a3bd56-82b4-4193-8bb4-b7cb0f3f1830&module=thunderbolt-platform&originalLanguage=en&pageId=a6a666_0181ef665fbef6550bf9e353b62ae512_320.json&quickActionsMenuEnabled=false&registryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22library-manifest%22%2C%22namespace%22%3A%22wixui%22%7D%2C%7B%22artifactId%22%3A%22editor-elements-design-systems%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22design-systems-manifest%22%2C%22namespace%22%3A%22dsgnsys%22%7D%5D&remoteWidgetStructureBuilderVersion=1.226.0&siteId=fee38282-cbcd-4505-9ab7-32ee40870284&siteRevision=320&tbElementsSiteAssets=siteAssets.e448a59d.bundle.min.js&viewMode=desktop" id="platform_masterPage">
<link rel="preload" crossorigin="anonymous" as="fetch" href="https://siteassets.parastorage.com/pages/pages/thunderbolt?beckyExperiments=specs.thunderbolt.stylableCssPerComponent%3Atrue%2Cspecs.thunderbolt.addressInputAtlasProvider%3Atrue%2Cspecs.thunderbolt.seoFriendlyDropDownMenu%3Atrue%2Cspecs.thunderbolt.image_placeholder%3Atrue%2Cspecs.thunderbolt.tb_omitInlineContent%3Atrue%2Ctb_UploadButtonFixValidationNotRequired%3Atrue%2Cspecs.thunderbolt.tb_pinLayerDockedBottom%3Atrue%2Cspecs.thunderbolt.tb_media_layout_by_effect%3Atrue&contentType=application%2Fjson&dfCk=6&dfVersion=1.1273.0&experiments=bv_cartPageResponsiveLayoutFixer%2Cbv_migrateResponsiveLayoutToSingleLayoutData%2Cbv_migrateResponsiveToVariantsModels%2Cbv_removeMenuDataFromPageJson%2Cbv_remove_add_chat_viewer_fixer%2Cdm_fixMobileHoverBoxDesign&externalBaseUrl=https%3A%2F%2Fwww.fudbeens.com&fileId=e61e2930.bundle.min&hasTPAWorkerOnSite=false&isHttps=true&isInSeo=false&isPremiumDomain=true&isUrlMigrated=true&isWixCodeOnPage=true&isWixCodeOnSite=true&language=en&metaSiteId=460e14ec-a806-4b47-b08f-b3b158ba872d&migratingToOoiWidgetIds=80a3bd56-82b4-4193-8bb4-b7cb0f3f1830&module=thunderbolt-platform&originalLanguage=en&pageId=a6a666_8b6aaec21701e671ee9da87ef020dff4_320.json&quickActionsMenuEnabled=false&registryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22library-manifest%22%2C%22namespace%22%3A%22wixui%22%7D%2C%7B%22artifactId%22%3A%22editor-elements-design-systems%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22design-systems-manifest%22%2C%22namespace%22%3A%22dsgnsys%22%7D%5D&remoteWidgetStructureBuilderVersion=1.226.0&siteId=fee38282-cbcd-4505-9ab7-32ee40870284&siteRevision=320&tbElementsSiteAssets=siteAssets.e448a59d.bundle.min.js&viewMode=desktop" id="platform_c1dmp">
<link rel="preload" crossorigin="anonymous" as="script" href="https://static.parastorage.com/services/editor-elements/dist/componentSdks.fbf38484.bundle.min.js" id="componentSdks">
<link rel="preload" crossorigin="anonymous" as="script" href="https://static.parastorage.com/services/wix-code-platform/1.839.0/wixCodeNamespacesAndElementorySupport.min.js" id="wixCodeElementarySupport">
<link rel="preload" crossorigin="anonymous" as="script" href="https://578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com/static/v2/492826ba-5a50-4637-a35d-e2ececc89da1/578752c2-983f-49ac-aa62-3c925b1da855/pages/c1dmp.js?use-globals-object=true" id="user_code_c1dmp">
<link rel="preload" crossorigin="anonymous" as="script" href="https://578752c2-983f-49ac-aa62-3c925b1da855.static.pub.wix-code.com/static/v2/492826ba-5a50-4637-a35d-e2ececc89da1/578752c2-983f-49ac-aa62-3c925b1da855/pages/masterPage.js?use-globals-object=true" id="user_code_masterPage">
<link rel="preload" crossorigin="anonymous" as="fetch" href="https://siteassets.parastorage.com/pages/pages/thunderbolt?beckyExperiments=specs.thunderbolt.stylableCssPerComponent%3Atrue%2Cspecs.thunderbolt.addressInputAtlasProvider%3Atrue%2Cspecs.thunderbolt.seoFriendlyDropDownMenu%3Atrue%2Cspecs.thunderbolt.image_placeholder%3Atrue%2Cspecs.thunderbolt.tb_omitInlineContent%3Atrue%2Ctb_UploadButtonFixValidationNotRequired%3Atrue%2Cspecs.thunderbolt.tb_pinLayerDockedBottom%3Atrue%2Cspecs.thunderbolt.tb_media_layout_by_effect%3Atrue&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.1273.0&experiments=bv_cartPageResponsiveLayoutFixer%2Cbv_migrateResponsiveLayoutToSingleLayoutData%2Cbv_migrateResponsiveToVariantsModels%2Cbv_removeMenuDataFromPageJson%2Cbv_remove_add_chat_viewer_fixer%2Cdm_fixMobileHoverBoxDesign&externalBaseUrl=https%3A%2F%2Fwww.fudbeens.com&fileId=c4324d7e.bundle.min&hasTPAWorkerOnSite=false&isHttps=true&isInSeo=false&isMultilingualEnabled=false&isPremiumDomain=true&isUrlMigrated=true&isWixCodeOnPage=true&isWixCodeOnSite=true&language=en&languageResolutionMethod=QueryParam&metaSiteId=460e14ec-a806-4b47-b08f-b3b158ba872d&migratingToOoiWidgetIds=80a3bd56-82b4-4193-8bb4-b7cb0f3f1830&module=thunderbolt-features&originalLanguage=en&pageId=a6a666_0181ef665fbef6550bf9e353b62ae512_320.json&quickActionsMenuEnabled=false&registryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22library-manifest%22%2C%22namespace%22%3A%22wixui%22%7D%2C%7B%22artifactId%22%3A%22editor-elements-design-systems%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22design-systems-manifest%22%2C%22namespace%22%3A%22dsgnsys%22%7D%5D&remoteWidgetStructureBuilderVersion=1.226.0&siteId=fee38282-cbcd-4505-9ab7-32ee40870284&siteRevision=320&staticHTMLComponentUrl=https%3A%2F%2Fwww-fudbeens-com.filesusr.com%2F&tbElementsSiteAssets=siteAssets.e448a59d.bundle.min.js&useSandboxInHTMLComp=false&viewMode=desktop" id="features_masterPage">
<link rel="preload" crossorigin="anonymous" as="fetch" href="https://siteassets.parastorage.com/pages/pages/thunderbolt?beckyExperiments=specs.thunderbolt.stylableCssPerComponent%3Atrue%2Cspecs.thunderbolt.addressInputAtlasProvider%3Atrue%2Cspecs.thunderbolt.seoFriendlyDropDownMenu%3Atrue%2Cspecs.thunderbolt.image_placeholder%3Atrue%2Cspecs.thunderbolt.tb_omitInlineContent%3Atrue%2Ctb_UploadButtonFixValidationNotRequired%3Atrue%2Cspecs.thunderbolt.tb_pinLayerDockedBottom%3Atrue%2Cspecs.thunderbolt.tb_media_layout_by_effect%3Atrue&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.1273.0&experiments=bv_cartPageResponsiveLayoutFixer%2Cbv_migrateResponsiveLayoutToSingleLayoutData%2Cbv_migrateResponsiveToVariantsModels%2Cbv_removeMenuDataFromPageJson%2Cbv_remove_add_chat_viewer_fixer%2Cdm_fixMobileHoverBoxDesign&externalBaseUrl=https%3A%2F%2Fwww.fudbeens.com&fileId=c4324d7e.bundle.min&hasTPAWorkerOnSite=false&isHttps=true&isInSeo=false&isMultilingualEnabled=false&isPremiumDomain=true&isUrlMigrated=true&isWixCodeOnPage=true&isWixCodeOnSite=true&language=en&languageResolutionMethod=QueryParam&metaSiteId=460e14ec-a806-4b47-b08f-b3b158ba872d&migratingToOoiWidgetIds=80a3bd56-82b4-4193-8bb4-b7cb0f3f1830&module=thunderbolt-features&originalLanguage=en&pageId=a6a666_8b6aaec21701e671ee9da87ef020dff4_320.json&quickActionsMenuEnabled=false&registryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22library-manifest%22%2C%22namespace%22%3A%22wixui%22%7D%2C%7B%22artifactId%22%3A%22editor-elements-design-systems%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.5780.0%22%2C%22manifestName%22%3A%22design-systems-manifest%22%2C%22namespace%22%3A%22dsgnsys%22%7D%5D&remoteWidgetStructureBuilderVersion=1.226.0&siteId=fee38282-cbcd-4505-9ab7-32ee40870284&siteRevision=320&staticHTMLComponentUrl=https%3A%2F%2Fwww-fudbeens-com.filesusr.com%2F&tbElementsSiteAssets=siteAssets.e448a59d.bundle.min.js&useSandboxInHTMLComp=false&viewMode=desktop" id="features_c1dmp">
<!-- tbElements css -->
<!-- Initial CSS -->
<style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.9395f539.chunk.min.css">a,abbr,acronym,address,applet,b,big,blockquote,body,button,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,ins,kbd,label,legend,li,nav,object,ol,p,pre,q,s,samp,section,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,title,tr,tt,u,ul,var{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:transparent}body{font-size:10px;font-family:Arial,Helvetica,sans-serif}input,select,textarea{font-family:Helvetica,Arial,sans-serif;box-sizing:border-box}ol,ul{list-style:none}blockquote,q{quotes:none}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a{cursor:pointer;text-decoration:none}body,html{height:100%}body{overflow-x:auto;overflow-y:scroll}body.overflowHidden{overflow:hidden}.testStyles{overflow-y:hidden}.reset-button{background:none;border:0;outline:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}:focus{outline:none}body.device-mobile-optimized{overflow-x:hidden;overflow-y:scroll}body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER{width:320px;overflow-x:visible;position:relative}body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling) #SITE_CONTAINER{margin:0 auto}body.device-mobile-optimized>*{max-width:100%!important}body.device-mobile-optimized #site-root{overflow-x:hidden;overflow-y:hidden}body.device-mobile-non-optimized #SITE_CONTAINER #site-root{overflow-x:hidden;overflow-y:auto}body.device-mobile-non-optimized.fullScreenMode{background-color:#5f6360}body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,body.device-mobile-non-optimized.fullScreenMode #site-root,body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,body.fullScreenMode #WIX_ADS{visibility:hidden}body.fullScreenMode{overflow-x:hidden!important;overflow-y:hidden!important}body.fullScreenMode.device-mobile-optimized #TINY_MENU{opacity:0;pointer-events:none}body.fullScreenMode-scrollable.device-mobile-optimized{overflow-x:hidden!important;overflow-y:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #site-root{overflow-x:hidden!important;overflow-y:hidden!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND{height:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout{height:0!important}body.blockSiteScrolling{position:fixed;width:100%;overflow:hidden}body.blockSiteScrolling #SITE_CONTAINER{margin-top:calc(var(--blocked-site-scroll-margin-top) * -1)}body.blockSiteScrolling:not(.responsive) #WIX_ADS{margin-top:var(--blocked-site-scroll-margin-top)}.fullScreenOverlay{z-index:1005;position:fixed;left:0;top:-60px;right:0;bottom:0;display:flex;justify-content:center;overflow-y:hidden}.fullScreenOverlay>.fullScreenOverlayContent{margin:0 auto;position:absolute;right:0;top:60px;left:0;bottom:0;overflow:hidden;transform:translateZ(0)}[data-mesh-id$=centeredContent],[data-mesh-id$=form],[data-mesh-id$=inlineContent]{position:relative;pointer-events:none}[data-mesh-id$=-gridWrapper],[data-mesh-id$=-rotated-wrapper]{pointer-events:none}[data-mesh-id$=-gridContainer]>*,[data-mesh-id$=-rotated-wrapper]>*,[data-mesh-id$=inlineContent]>:not([data-mesh-id$=-gridContainer]){pointer-events:auto}.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID{-ms-grid-row:2;grid-area:2/1/3/2;position:relative}#masterPage.mesh-layout{display:-ms-grid;display:grid;-ms-grid-rows:max-content max-content min-content max-content;grid-template-rows:-webkit-max-content -webkit-max-content -webkit-min-content -webkit-max-content;grid-template-rows:max-content max-content min-content max-content;-ms-grid-columns:100%;grid-template-columns:100%;align-items:start;justify-content:stretch}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #SITE_FOOTER-placeholder,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~=mobileView]{-ms-grid-column:1;-ms-grid-row-align:start;-ms-grid-column-align:start}#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SITE_HEADER_WRAPPER{-ms-grid-row:1;grid-area:1/1/2/2}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #soapBeforePagesContainer{-ms-grid-row:3;grid-area:3/1/4/2}#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #soapBeforePagesContainer{width:100%}#masterPage.mesh-layout #PAGES_CONTAINER{align-self:stretch}#masterPage.mesh-layout main#PAGES_CONTAINER{display:block}#masterPage.mesh-layout #SITE_FOOTER-placeholder,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER{-ms-grid-row:4;grid-area:4/1/5/2}#masterPage.mesh-layout #SITE_PAGES,#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERcenteredContent],#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERinlineContent]{height:100%}#masterPage.mesh-layout.desktop>*{width:100%}#masterPage.mesh-layout #masterPageinlineContent,#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #SITE_FOOTER,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_PAGES,#site-root{position:relative}#site-root{top:var(--wix-ads-top-height);min-height:100%;margin:0 auto}#site-root img:not([src]){visibility:hidden}#site-root svg img:not([src]){visibility:visible}body:not(.responsive) #site-root{width:100%;min-width:var(--site-width)}#SITE_CONTAINER{position:relative}.auto-generated-link{color:inherit}body:not([data-js-loaded]) [data-hide-prejs]{visibility:hidden}#SCROLL_TO_BOTTOM,#SCROLL_TO_TOP{height:0}[data-z-counter]{z-index:0}[data-z-counter="0"]{z-index:auto}.wixSiteProperties{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}</style>
<script defer src="https://static.parastorage.com/services/tag-manager-client/1.423.0/siteTags.bundle.min.js"></script>
<meta name="format-detection" content="telephone=no">
<meta name="skype_toolbar" content="skype_toolbar_parser_compatible">
<!--pageHtmlEmbeds.head start-->
<script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head start"></script>
<script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head end"></script>
<!--pageHtmlEmbeds.head end-->
<!-- initCustomElements -->
<meta name="wix-dynamic-custom-elements" content="">
<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.891d7f64.chunk.min.js">(window.webpackJsonp__wix_thunderbolt_app=window.webpackJsonp__wix_thunderbolt_app||[]).push([[65,24],{127:function(e,t){!function(){if(void 0!==window.Reflect&&void 0!==window.customElements&&!window.customElements.hasOwnProperty("polyfillWrapFlushCallback")){var e=HTMLElement;window.HTMLElement=function(){return Reflect.construct(e,[],this.constructor)},HTMLElement.prototype=e.prototype,HTMLElement.prototype.constructor=HTMLElement,Object.setPrototypeOf(HTMLElement,e)}}()},169:function(e,t,i){"use strict";i.r(t);var r=i(0),n=i(41),a=i.n(n),o=i(12),s=i(33),c=i(90),u=i.n(c),l=i(19),h=i.n(l),d=function(e,t,i){var r=(Array.isArray(t)?t:t.split(".")).reduce((function(e,t){return e&&void 0!==e[t]?e[t]:null}),e);return null!==r?r:i},f=function(e,t){return(Array.isArray(t)?t:[t]).reduce((function(t,i){var r,n=d(e,i);return void 0!==n?Object.assign(t,((r={})[i]=n,r)):t}),{})};function p(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];for(var r=t[0],n=1;n<t.length;++n)r=r.replace(/\/$/,"")+"/"+t[n].replace(/^\//,"");return r}var g=function(e,t,i){if(!e.containerWidth||!e.containerHeight||!e.imageData.uri)return{uri:"",css:{}};var r=e.imageData,n=e.displayMode||h.a.fittingTypes.SCALE_TO_FILL,a=Object.assign(f(r,"upscaleMethod"),f(e,"filters"),e.quality||r.quality),o=d(e.imageData,"devicePixelRatio",t.devicePixelRatio),s=b(o),c=Object.assign(f(r,["width","height","crop","name","focalPoint"]),{id:r.uri}),u={width:e.containerWidth,height:e.containerHeight,htmlTag:i||"img",pixelAspectRatio:s,alignment:e.alignType||h.a.alignTypes.CENTER},l=h.a.getData(n,c,u,a);return l.uri=m(l.uri,t.staticMediaUrl,t.mediaRootUrl),l},m=function(e,t,i){if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;var r=t+"/";return e&&(/^micons\//.test(e)?r=i:"ico"===/[^.]+$/.exec(e)[0]&&(r=r.replace("media","ficons"))),r+e},b=function(e){var t=window.location.search.split("&").map((function(e){return e.split("=")})).find((function(e){return e[0].toLowerCase().includes("devicepixelratio")}));return(t?Number(t[1]):null)||e||1},v=function(e,t){return e.getAttribute(t?"xlink:href":"src")};var T={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},_=function(e,t){return e&&t&&Object.keys(t).forEach((function(i){return e.setAttribute(i,t[i])}))},y=function(e,t){return e&&t&&Object.keys(t).forEach((function(i){var r=t[i];void 0!==r?e.style[i]=function(e,t){return"number"!=typeof t||T[e]?t:t+"px"}(i,r):e.style.removeProperty(i)}))},I=function(e,t){return e&&t&&Object.keys(t).forEach((function(i){e.style.setProperty(i,t[i])}))},E=function(e,t,i){return void 0===i&&(i=!0),e&&i?(r=e.dataset[t])?"true"===r||"false"!==r&&("null"===r?null:""+ +r===r?+r:r):r:e.dataset[t];var r},A=function(e,t){return e&&t&&Object.assign(e.dataset,t)},w=function(){return window?window.innerHeight||document.documentElement.clientHeight:0};var O={measure:function(e,t,i,r,n){var a=r.containerId,o=r.bgEffectName,s=i[e],c=i[a],u=n.getMediaDimensionsByEffect(o,c.offsetWidth,c.offsetHeight,w()),l=u.width,h=u.height;t.width=l,t.height=h,t.currentSrc=s.style.backgroundImage,t.bgEffectName=s.dataset.bgEffectName},patch:function(e,t,i,r,n){var a=i[e];r.containerWidth=t.width,r.containerHeight=t.height;var o,s,c=g(r,n,"bg");o=t.currentSrc,s=c.uri,void 0===o&&(o=""),o.includes(s)&&!!o==!!s?y(a,c.css.container):function(e,t){var i=Object.assign({backgroundImage:'url("'+t.uri+'")'},t.css.container),r=new Image;r.onload=y.bind(null,e,i),r.src=t.uri}(a,c)}};function S(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function L(e,t){return(L=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var M=function(e,t,i){return function(e){var r,n;function a(){return e.call(this)||this}n=e,(r=a).prototype=Object.create(n.prototype),r.prototype.constructor=r,L(r,n);var o,s,c,u=a.prototype;return u.reLayout=function(){if(!t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")){var e={},r={},n=this.getAttribute("id"),a=JSON.parse(this.dataset.tiledImageInfo),o=this.dataset.bgEffectName,s=a.containerId,c=document.getElementById(s);e[n]=this,e[s]=c,a.displayMode=a.imageData.displayMode,t.mutationService.measure((function(){O.measure(n,r,e,{containerId:s,bgEffectName:o},t)})),t.mutationService.mutate((function(){O.patch(n,r,e,a,i)}))}},u.attributeChangedCallback=function(e,t){t&&this.reLayout()},u.disconnectedCallback=function(){e.prototype.disconnectedCallback.call(this)},o=a,c=[{key:"observedAttributes",get:function(){return["data-tiled-image-info"]}}],(s=null)&&S(o.prototype,s),c&&S(o,c),a}(e)};function R(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function x(e,t){return(x=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var P=function(e,t){var i={width:void 0,height:void 0,left:void 0};return function(e){var r,n;function a(){return e.call(this)||this}n=e,(r=a).prototype=Object.create(n.prototype),r.prototype.constructor=r,x(r,n);var o,s,c,u=a.prototype;return u.reLayout=function(){var e=this,r=this.dataset,n=r.containerId,a=r.pageId,o=r.useCssVars,s=r.bgEffectName,c=document.getElementById(""+n),u=document.getElementById(""+a),l={};t.mutationService.measure((function(){var i="fixed"===window.getComputedStyle(e).position,r=document.documentElement.clientHeight,n=c.getBoundingClientRect(),a=u.getBoundingClientRect(),h=t.getMediaDimensionsByEffect(s,n.width,n.height,r),d=h.hasParallax,f=h.width,p=h.height,g=f+"px",m=p+"px",b=i?n.left-a.left+"px":(n.width-f)/2+"px",v=i||d?0:(n.height-p)/2+"px",T=o?{"--containerW":g,"--containerH":m,"--containerL":b,"--screenH_val":""+r}:{width:g,height:m,left:b,top:v};Object.assign(l,T)})),t.mutationService.mutate((function(){o?(y(e,i),I(e,l)):y(e,l)}))},u.connectedCallback=function(){e.prototype.connectedCallback.call(this),t.windowResizeService.observe(this)},u.disconnectedCallback=function(){e.prototype.disconnectedCallback.call(this),t.windowResizeService.unobserve(this)},u.attributeChangedCallback=function(e,t){t&&this.reLayout()},o=a,c=[{key:"observedAttributes",get:function(){return["data-is-full-height","data-container-size"]}}],(s=null)&&R(o.prototype,s),c&&R(o,c),a}(e)},C=function(e,t,i,r,n,a,o,s){if(e-=n*(o?r.length:r.length-1),e-=s.left+s.right,t&&(r=r.map((function(){return a}))),r.some((function(e){return 0===e})))return null;var c=0,u=r.reduce((function(e,t){return e+t}),0);if(u>e)return null;if(t){if(i){var l=Math.floor(e/r.length),h=r.map((function(){return l}));if((c=l*r.length)<e){var d=Math.floor(e-c);r.forEach((function(e,t){t<=d-1&&h[t]++}))}return h}return r}if(i){var f=Math.floor((e-u)/r.length);c=0;var p=r.map((function(e){return c+=e+f,e+f}));if(c<e){var g=Math.floor(e-c);r.forEach((function(e,t){t<=g-1&&p[t]++}))}return p}return r},F=function(e){var t=parseFloat(e);return isFinite(t)?t:0},G=function(e){return e.getBoundingClientRect().top>window.innerHeight/2},B=function(e,t,i,r){var n=t.width,a=t.height,o=t.alignButtons,s=t.hoverListPosition,c=t.menuItemContainerExtraPixels,u=t.absoluteLeft,l=function(e,t,i,r,n,a,o,s,c){var u="0px",l="auto",h=a.left,d=a.width;("left"===t?u="left"===n?0:h+e.left+"px":"right"===t?(l="right"===n?0:r-h-d-e.right+"px",u="auto"):"left"===n?u=h+(d+e.left-i)/2+"px":"right"===n?(u="auto",l=(d+e.right-(i+e.width))/2+"px"):u=e.left+h+(d-(i+e.width))/2+"px","auto"!==u)&&(u=o+parseInt(u,10)<0?0:u);"auto"!==l&&(l=s-parseInt(l,10)>c?0:l);return{moreContainerLeft:u,moreContainerRight:l}}(c,o,r,n,s,i,u,u+n,t.bodyClientWidth);return{left:l.moreContainerLeft,right:l.moreContainerRight,top:t.needToOpenMenuUp?"auto":a+"px",bottom:t.needToOpenMenuUp?a+"px":"auto"}},k=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},N=function(e){var t={},i={};i[e]=document.getElementById(""+e);var r,n,a=(r=i[e],(n=+E(r,"numItems"))<=0||n>Number.MAX_SAFE_INTEGER?[]:new Array(n).fill(0).map((function(e,t){return String(t)}))),o=function(e){return["moreContainer","itemsContainer","dropWrapper"].concat(e,["__more__"])}(a);o.forEach((function(t){var r=""+e+t;i[r]=document.getElementById(""+r)})),t.children=function(e,t,i,r){var n={};return r.forEach((function(t){var r=""+e+t,a=i[r];a&&(n[r]={width:a.offsetWidth,boundingClientRectWidth:a.getBoundingClientRect().width,height:a.offsetHeight})})),n}(e,0,i,o);var s=i[e],c=i[e+"itemsContainer"],u=c.childNodes,l=i[e+"moreContainer"],h=l.childNodes,d=E(s,"stretchButtonsToMenuWidth"),f=E(s,"sameWidthButtons"),p=s.getBoundingClientRect();t.absoluteLeft=p.left,t.bodyClientWidth=document.body.clientWidth,t.alignButtons=E(s,"dropalign"),t.hoverListPosition=E(s,"drophposition"),t.menuBorderY=parseInt(E(s,"menuborderY"),10),t.ribbonExtra=parseInt(E(s,"ribbonExtra"),10),t.ribbonEls=parseInt(E(s,"ribbonEls"),10),t.labelPad=parseInt(E(s,"labelPad"),10),t.menuButtonBorder=parseInt(E(s,"menubtnBorder"),10),t.menuItemContainerMargins=function(e){var t=e.lastChild,i=window.getComputedStyle(t);return(parseInt(i.marginLeft,10)||0)+(parseInt(i.marginRight,10)||0)}(c),t.menuItemContainerExtraPixels=function(e,t){var i=window.getComputedStyle(e),r=F(i.borderTopWidth)+F(i.paddingTop),n=F(i.borderBottomWidth)+F(i.paddingBottom),a=F(i.borderLeftWidth)+F(i.paddingLeft),o=F(i.borderRightWidth)+F(i.paddingRight);return t&&(r+=F(i.marginTop),n+=F(i.marginBottom),a+=F(i.marginLeft),o+=F(i.marginRight)),{top:r,bottom:n,left:a,right:o,height:r+n,width:a+o}}(c,!0),t.needToOpenMenuUp=G(s),t.menuItemMarginForAllChildren=!d||"false"!==c.getAttribute("data-marginAllChildren"),t.moreSubItem=[],t.labelWidths={},t.linkIds={},t.parentId={},t.menuItems={},t.labels={},h.forEach((function(e,r){t.parentId[e.id]=E(e,"parentId");var n=E(e,"dataId");t.menuItems[n]={dataId:n,parentId:E(e,"parentId"),moreDOMid:e.id,moreIndex:r},i[e.id]=e;var a=e.querySelector("p");i[a.id]=a,t.labels[a.id]={width:a.offsetWidth,height:a.offsetHeight,left:a.offsetLeft,lineHeight:parseInt(window.getComputedStyle(a).fontSize,10)},t.moreSubItem.push(e.id)})),u.forEach((function(e,r){var n=E(e,"dataId");t.menuItems[n]=t.menuItems[n]||{},t.menuItems[n].menuIndex=r,t.menuItems[n].menuDOMid=e.id,t.children[e.id].left=e.offsetLeft;var a=e.querySelector("p");i[a.id]=a,t.labelWidths[a.id]=function(e){return e.getBoundingClientRect().width}(a);var o=e.querySelector("p");i[o.id]=o,t.linkIds[e.id]=o.id}));var g=s.offsetHeight;t.height=g,t.width=s.offsetWidth,t.lineHeight=function(e,t){return e-t.menuBorderY-t.labelPad-t.ribbonEls-t.menuButtonBorder-t.ribbonExtra+"px"}(g,t);var m=function(e,t,i,r,n){var a=t.width;t.hasOriginalGapData={},t.originalGapBetweenTextAndBtn={};var o=n.map((function(i){var n,a=r[e+i],o=E(a,"originalGapBetweenTextAndBtn");return void 0===o?(t.hasOriginalGapData[i]=!1,n=t.children[e+i].boundingClientRectWidth-t.labelWidths[e+i+"label"],t.originalGapBetweenTextAndBtn[e+i]=n):(t.hasOriginalGapData[i]=!0,n=parseFloat(o)),t.children[e+i].width>0?Math.floor(t.labelWidths[e+i+"label"]+n):0})),s=o.pop(),c=i.sameWidthButtons,u=i.stretchButtonsToMenuWidth,l=!1,h=t.menuItemContainerMargins,d=t.menuItemMarginForAllChildren,f=t.menuItemContainerExtraPixels,p=function(e){return e.reduce((function(e,t){return e>t?e:t}),-1/0)}(o),g=C(a,c,u,o,h,p,d,f);if(!g){for(var m=1;m<=o.length;m++)if(g=C(a,c,u,o.slice(0,-1*m).concat(s),h,p,d,f)){l=!0;break}g||(l=!0,g=[s])}if(l){var b=g[g.length-1];for(g=g.slice(0,-1);g.length<n.length;)g.push(0);g[g.length-1]=b}return{realWidths:g,moreShown:l}}(e,t,{sameWidthButtons:f,stretchButtonsToMenuWidth:d},i,a.concat("__more__"));return t.realWidths=m.realWidths,t.isMoreShown=m.moreShown,t.menuItemIds=a,t.hoverState=E(l,"hover",!1),{measures:t,domNodes:i}},D=function(e,t,i){y(i[e],{overflowX:"visible"});var r,n=t.menuItemIds,a=t.needToOpenMenuUp,o=n.concat("__more__");r=i[e],A(r,{dropmode:a?"dropUp":"dropDown"});var s,c,u=0;if("__more__"===t.hoverState){var l=t.realWidths.indexOf(0),h=t.menuItems[(s=t.menuItems,c=function(e){return e.menuIndex===l},Object.keys(s).find((function(e){return c(s[e],e)})))],d=h.moreIndex,f=d===n.length-1;h.moreDOMid&&_(i[h.moreDOMid],{"data-listposition":f?"dropLonely":"top"}),Object.values(t.menuItems).filter((function(e){return!!e.moreDOMid})).forEach((function(e){if(e.moreIndex<d)y(i[e.moreDOMid],{display:"none"});else{var r=e.moreDOMid+"label";u=Math.max(t.labels[r].width,u)}}))}else t.hoverState&&t.moreSubItem.forEach((function(i,r){var n=e+"moreContainer"+r+"label";u=Math.max(t.labels[n].width,u)}));!function(e,t,i,r){var n=t.hoverState;if("-1"!==n){var a=t.menuItemIds.indexOf(n);if(k(t.hoverState)||"__more__"===n){if(!t.realWidths)return;var o=Math.max(r,t.children[-1!==a?e+a:e+"__more__"].width),s=function(e,t){return e+15+t.menuBorderY+t.labelPad+t.menuButtonBorder}(0!==t.moreSubItem.length?t.labels[t.moreSubItem[0]+"label"].lineHeight:0,t);t.moreSubItem.forEach((function(e){y(i[e],{minWidth:o+"px"}),y(i[e+"label"],{minWidth:"0px",lineHeight:s+"px"})}));var c=k(t.hoverState)?t.hoverState:"__more__",u={width:t.children[e+c].width,left:t.children[e+c].left},l=B(0,t,u,o);y(i[e+"moreContainer"],{left:l.left,right:l.right}),y(i[e+"dropWrapper"],{left:l.left,right:l.right,top:l.top,bottom:l.bottom})}}}(e,t,i,u),t.originalGapBetweenTextAndBtn&&o.forEach((function(r){t.hasOriginalGapData[r]||A(i[""+e+r],{originalGapBetweenTextAndBtn:t.originalGapBetweenTextAndBtn[""+e+r]})})),function(e,t,i,r){for(var n=i.realWidths,a=i.height,o=i.menuItemContainerExtraPixels,s=0,c=null,u=null,l=i.lineHeight,h=a-o.height,d=0;d<r.length;d++){var f=n[d],p=f>0,g=e+r[d];u=i.linkIds[g],p?(s++,c=g,y(t[g],{width:f+"px",height:h+"px",position:"relative","box-sizing":"border-box",overflow:"visible",visibility:"inherit"}),y(t[g+"label"],{"line-height":l}),_(t[g],{"aria-hidden":!1})):(y(t[g],{height:"0px",overflow:"hidden",position:"absolute",visibility:"hidden"}),_(t[g],{"aria-hidden":!0}),_(t[u],{tabIndex:-1}))}1===s&&(A(t[e+"moreContainer"],{listposition:"lonely"}),A(t[c],{listposition:"lonely"}))}(e,i,t,o)};function H(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function j(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function U(e,t){return(U=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function W(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}var Y=function(e,t){return function(e){var i,r;function n(){for(var t,i=arguments.length,r=new Array(i),n=0;n<i;n++)r[n]=arguments[n];return W(j(t=e.call.apply(e,[this].concat(r))||this),"_visible",!1),W(j(t),"_mutationIds",{read:null,write:null}),W(j(t),"_itemsContainer",null),W(j(t),"_dropContainer",null),W(j(t),"_labelItems",[]),t}r=e,(i=n).prototype=Object.create(r.prototype),i.prototype.constructor=i,U(i,r);var a,o,s,c=n.prototype;return c.attributeChangedCallback=function(){this._isVisible()&&this.reLayout()},c.connectedCallback=function(){var t=this;this._id=this.getAttribute("id"),this._hideElement(),this._waitForDomLoad().then((function(){e.prototype.observeResize.call(t),t._observeChildrenResize(),t.reLayout()}))},c.disconnectedCallback=function(){t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),e.prototype.disconnectedCallback.call(this)},c._waitForDomLoad=function(){var e,t=this,i=new Promise((function(t){e=t}));return this._isDomReady()?e():(this._waitForDomReadyObserver=new MutationObserver((function(){return t._onRootMutate(e)})),this._waitForDomReadyObserver.observe(this,{childList:!0,subtree:!0})),i},c._isDomReady=function(){return this._itemsContainer=document.getElementById(this._id+"itemsContainer"),this._dropContainer=document.getElementById(this._id+"dropWrapper"),this._itemsContainer&&this._dropContainer},c._onRootMutate=function(e){this._isDomReady()&&(this._waitForDomReadyObserver.disconnect(),e())},c._observeChildrenResize=function(){var t=this,i=Array.from(this._itemsContainer.childNodes);this._labelItems=i.map((function(e){return document.getElementById(e.getAttribute("id")+"label")})),this._labelItems.forEach((function(i){return e.prototype.observeChildResize.call(t,i)}))},c._setVisibility=function(e){this._visible=e,this.style.visibility=e?"inherit":"hidden"},c._isVisible=function(){return this._visible},c._hideElement=function(){this._setVisibility(!1)},c._showElement=function(){this._setVisibility(!0)},c.reLayout=function(){var e,i,r=this;t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),this._mutationIds.read=t.mutationService.measure((function(){var t=N(r._id);e=t.measures,i=t.domNodes})),this._mutationIds.write=t.mutationService.mutate((function(){D(r._id,e,i),r._showElement()}))},a=n,s=[{key:"observedAttributes",get:function(){return["data-hovered-item"]}}],(o=null)&&H(a.prototype,o),s&&H(a,s),n}(e)};function z(e,t){var i="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(i)return(i=i.call(e)).next.bind(i);if(Array.isArray(e)||(i=function(e,t){if(!e)return;if("string"==typeof e)return V(e,t);var i=Object.prototype.toString.call(e).slice(8,-1);"Object"===i&&e.constructor&&(i=e.constructor.name);if("Map"===i||"Set"===i)return Array.from(e);if("Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return V(e,t)}(e))||t&&e&&"number"==typeof e.length){i&&(e=i);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,r=new Array(t);i<t;i++)r[i]=e[i];return r}function q(e){var t="function"==typeof Map?new Map:void 0;return(q=function(e){if(null===e||(i=e,-1===Function.toString.call(i).indexOf("[native code]")))return e;var i;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return Z(e,arguments,Q(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),J(r,e)})(e)}function Z(e,t,i){return(Z=$()?Reflect.construct:function(e,t,i){var r=[null];r.push.apply(r,t);var n=new(Function.bind.apply(e,r));return i&&J(n,i.prototype),n}).apply(null,arguments)}function $(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function J(e,t){return(J=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function Q(e){return(Q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var X=function(e){return function(t){var i,r;function n(){return t.call(this)||this}r=t,(i=n).prototype=Object.create(r.prototype),i.prototype.constructor=i,J(i,r);var a=n.prototype;return a.reLayout=function(){},a.connectedCallback=function(){this.observeResize(),this.reLayout()},a.disconnectedCallback=function(){this.unobserveResize(),this.unobserveChildren()},a.observeResize=function(){e.resizeService.observe(this)},a.unobserveResize=function(){e.resizeService.unobserve(this)},a.observeChildren=function(e){var t=this;this.childListObserver||(this.childListObserver=new MutationObserver((function(){return t.reLayout()}))),this.childListObserver.observe(e,{childList:!0})},a.observeChildAttributes=function(e,t){var i=this;void 0===t&&(t=[]),this.childrenAttributesObservers||(this.childrenAttributesObservers=[]);var r=new MutationObserver((function(){return i.reLayout()}));r.observe(e,{attributeFilter:t}),this.childrenAttributesObservers.push(r)},a.observeChildResize=function(t){this.childrenResizeObservers||(this.childrenResizeObservers=[]),e.resizeService.observeChild(t,this),this.childrenResizeObservers.push(t)},a.unobserveChildrenResize=function(){this.childrenResizeObservers&&(this.childrenResizeObservers.forEach((function(t){e.resizeService.unobserveChild(t)})),this.childrenResizeObservers=null)},a.unobserveChildren=function(){if(this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null),this.childrenAttributesObservers){for(var e,t=z(this.childrenAttributesObservers);!(e=t()).done;){var i=e.value;i.disconnect(),i=null}this.childrenAttributesObservers=null}this.unobserveChildrenResize()},n}(q(HTMLElement))},K={APP_IFRAME_START_LOADING:{eventId:642,src:42,params:{widget_id:"widgetId",widget_name:"widgetName",instance_id:"compId",appId:"appDefinitionId",loading_time:"loadingTime",pid:"pageId",pn:"pageNo",iss:"ssr",tts:"totalLoadingTime",external_app_id:"externalAppDefinitionId",external_widget_id:"externalWidgetId",lazy_load:"lazyLoad"}}};function ee(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function te(e,t){return(te=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ie=function(e,t){return function(e){var i,r;function n(){return e.call(this)||this}r=e,(i=n).prototype=Object.create(r.prototype),i.prototype.constructor=i,te(i,r);var a,o,s,c=n.prototype;return c.reportIframeStartLoading=function(e){var i=this.dataset,r=i.isTpa,n=i.widgetId,a=i.appDefinitionId;t&&t.biService&&"true"===r&&t.biService.reportTpaBiEvent({reportDef:K.APP_IFRAME_START_LOADING,params:{},compId:e.getAttribute("name"),isWixTPA:!0,widgetId:n,appDefinitionId:a})},c.reLayout=function(){var e=this.querySelector("iframe");if(e){var t=e.dataset.src;t&&e.src!==t&&(e.src=t,e.dataset.src="",this.dataset.src="",this.reportIframeStartLoading(e))}},c.attributeChangedCallback=function(e,t,i){i&&this.reLayout()},a=n,s=[{key:"observedAttributes",get:function(){return["data-src"]}}],(o=null)&&ee(a.prototype,o),s&&ee(a,s),n}(e)},re=function(){function e(e){var t;this.mutationService=e,window&&"IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"intersectionRatio"in window.IntersectionObserverEntry.prototype&&"isIntersecting"in window.IntersectionObserverEntry.prototype&&(t=window,!/Edge\/18/.test(t.navigator.userAgent))&&(this.intersectionObserver=new IntersectionObserver(this.getViewPortIntersectionHandler(),{rootMargin:"50% 0px"}),this.scrollEffectsIntersectionObserver=new IntersectionObserver(this.getScrollEffectsIntersectionHandler(),{rootMargin:"10% 0px"}))}var t=e.prototype;return t.isImageInViewPort=function(e,t){return e.top+e.height>=0&&e.bottom-e.height<=t},t.loadImage=function(e,t){var i=t.screenHeight,r=t.boundingRect,n=t.withScrollEffectVars;!this.intersectionObserver||this.isImageInViewPort(r,i)?this.setImageSource(e):(this.intersectionObserver.unobserve(e),this.intersectionObserver.observe(e)),n&&this.scrollEffectsIntersectionObserver&&(this.scrollEffectsIntersectionObserver.unobserve(e),this.scrollEffectsIntersectionObserver.observe(e))},t.onImageDisconnected=function(e){this.intersectionObserver&&this.intersectionObserver.unobserve(e),this.scrollEffectsIntersectionObserver&&this.scrollEffectsIntersectionObserver.unobserve(e)},t.setSrcAttribute=function(e,t,i){v(e,t)!==i&&(t?e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i):e.src=i)},t.setSourceSetAttribute=function(e,t){e.srcset!==t&&(e.srcset=t)},t.setImageSource=function(e){var t=this,i="true"===e.dataset.isSvg,r=e.querySelector(i?"image":"img"),n=e.querySelector("picture");this.setSrcAttribute(r,i,e.dataset.src),n&&Array.from(n.querySelectorAll("source")).forEach((function(e){t.setSourceSetAttribute(e,e.dataset.srcset)}))},t.getViewPortIntersectionHandler=function(){var e=this;return function(t,i){t.filter((function(e){return e.isIntersecting})).forEach((function(t){var r=t.target;e.setImageSource(r),i.unobserve(r)}))}},t.getScrollEffectsIntersectionHandler=function(){var e=this;return function(t){return t.forEach((function(t){var i=t.target;t.isIntersecting?e.mutationService.mutate((function(){return i.classList.add("scroll-css-var--scrollEffect")})):e.mutationService.mutate((function(){return i.classList.remove("scroll-css-var--scrollEffect")}))}))}},e}(),ne={eventId:348,adapter:"ugc-viewer",params:{ow:"originalWidth",oh:"originalHeight",tw:"targetWidth",th:"targetHeight",dpr:"devicePixelRatio",um:"upscaleMethod",url:"url"}};function ae(e){var t=e,i=(t.width,t.height,function(e,t){if(null==e)return{};var i,r,n={},a=Object.keys(e);for(r=0;r<a.length;r++)i=a[r],t.indexOf(i)>=0||(n[i]=e[i]);return n}(t,["width","height"])),r={};for(e in i)""!==i[e]&&(r[e]=i[e]);return r}var oe={measure:function(e,t,i,r,n){var a=r.containerElm,o=r.isSvgImage,s=r.isSvgMask,c=r.mediaHeightOverrideType,u=r.bgEffectName,l=i.image,h=i[e],d=w(),f=a&&u?a:h,p=n.getMediaDimensionsByEffect(u,f.offsetWidth,f.offsetHeight,d),g=p.width,m=p.height;if(l){var b=v(l,o);t.width=g,t.screenHeight=d,t.height=c?d:m,t.isZoomed=h.getAttribute("data-image-zoomed"),t.isSvgImage=o,t.imgSrc=b,t.renderedStyles=h.getAttribute("data-style"),t.boundingRect=h.getBoundingClientRect(),t.mediaHeightOverrideType=c,s&&(t.bBox=function(e){if(e){var t=e.dataset.type;if(t&&"ugc"!==t)if(!e.dataset.bbox){var i=e.getBBox();return i.x+" "+i.y+" "+i.width+" "+i.height}}return null}(i.maskSvg))}},patch:function(e,t,i,r,n,a,o,s){var c,u=(c=t.renderedStyles)&&c.split?c.split(";").reduce((function(e,t){var i=t.split(":");return i[0]&&i[1]&&(e[i[0].trim()]=i[1].trim()),e}),{}):{},l=r.imageData;s&&(l.devicePixelRatio=1);var h,f=Object.assign({},r,{containerWidth:t.isZoomed?l.width:t.width,containerHeight:t.isZoomed?l.height:t.height,displayMode:l.displayMode});if(t.isSvgImage)h=g(f,a,"svg"),_(i.svg,t.isZoomed?h.attr.container:{});else{h=g(f,a,"img");var p=d(h,["css","img"])||{},m=function(e,t,i){if(!e)return t;var r=Object.assign({},t);return"fill"===i&&(r.position="absolute",r.top=0),"fixed"===e&&(r.height="100%",r["will-change"]="transform"),r.objectPosition&&(r.objectPosition=t.objectPosition.replace(/(center|bottom)$/,"top")),r}(t.mediaHeightOverrideType,p,l.displayMode);y(i.image,m)}t.bBox&&i.maskSvg&&_(i.maskSvg,{viewBox:t.bBox});var b=function(e,t){var i=ae(e);return"number"==typeof t&&(i.opacity=t),i}(u,l.opacity);y(i[e],b);var v=d(h,"uri"),T=t.imgSrc;_(i[e],{"data-src":v}),_(i[e],{"data-has-ssr-src":""}),o&&(!function(e,t,i,r,n){var a=n.uri.match(/,lg_(\d)/);t.isViewerMode&&n.uri!==r.currentSrc&&a&&e.reportBI(ne,{originalWidth:i.imageData.width,originalHeight:i.imageData.height,targetWidth:Math.round(i.containerWidth),targetHeight:Math.round(i.containerHeight),upscaleMethod:"1"===a[1]?"classic":"super",devicePixelRatio:Math.floor(100*t.devicePixelRatio),url:r.src})}(n.biService,a,f,{src:v,currentSrc:T},h),n.imageLoader.loadImage(i[e],{screenHeight:t.screenHeight,boundingRect:t.boundingRect}))}};function se(e,t,i){return void 0===i&&(i=1.5),{parallax:e.height*i,fixed:e.screenHeight}[t]||e.height}var ce={measure:function(e,t,i){var r=i.image;if(r){var n=v(r);t.width=i[e].offsetWidth,t.height=i[e].offsetHeight,t.imgSrc=n,t.screenHeight=w(),t.boundingRect=i[e].getBoundingClientRect(),t.documentScroll=window?window.pageYOffset||document.documentElement.scrollTop:0}},patch:function(e,t,i,r,n,a,o){var s,c,u=r.imageData,l=r.parallaxSpeed,h=Object.assign({},r,{containerWidth:t.width,containerHeight:se(t,u.scrollEffect,l),displayMode:u.displayMode}),f=(s=u.opacity,c={},"number"==typeof s&&(c.opacity=s),c);y(i[e],f);var p=g(h,a,"img"),m=d(p,"uri");_(i[e],{"data-src":m});var b,v,T=(b=u.scrollEffect,void 0===(v=r.sourceSets)&&(v=[]),"parallax"===b||v.some((function(e){return"parallax"===e.scrollEffect})));T&&I(i[e],function(e){var t;return(t={})["--compH"]=e.height,t["--top"]=Math.ceil(e.boundingRect.top)+e.documentScroll,t["--scroll"]=e.documentScroll,t}(t));var E=function(e){var t=d(e,["css","img"]);return{width:"100%",objectFit:t?t.objectFit:void 0}}(p);y(i.image,E),i.picture&&function(e,t,i,r){var n=t.sourceSets;if(n&&n.length){var a=JSON.parse(JSON.stringify(t)),o=a.parallaxSpeed;n.forEach((function(t){var n=r.querySelector("source[media='"+t.mediaQuery+"']");a.imageData.crop=t.crop,a.imageData.displayMode=t.displayMode,a.imageData.focalPoint=t.focalPoint,a.containerHeight=se(e,t.scrollEffect,o);var s=g(a,i,"img");_(n,{"data-srcset":d(s,"uri")})}))}}(t,h,a,i.picture),_(i[e],{"data-has-ssr-src":""}),o&&n.imageLoader.loadImage(i[e],{screenHeight:t.screenHeight,boundingRect:t.boundingRect,withScrollEffectVars:T})}};function ue(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function le(e,t){return(le=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var he,de=function(e,t,i){return t.imageLoader||(t.imageLoader=new re(t.mutationService)),function(e){var r,n;function a(){var t;return(t=e.call(this)||this).childListObserver=null,t.timeoutId=null,t}n=e,(r=a).prototype=Object.create(n.prototype),r.prototype.constructor=r,le(r,n);var o,s,c,u=a.prototype;return u.reLayout=function(){if(!t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")){var e={},r={},n=this.getAttribute("id"),a=JSON.parse(this.dataset.imageInfo),o="true"===this.dataset.isSvg,s="true"===this.dataset.isSvgMask,c="true"===this.dataset.isResponsive,u=this.dataset.bgEffectName;e[n]=this,a.containerId&&(e[a.containerId]=document.getElementById(""+a.containerId)),e.image=this.querySelector(o?"image":"img"),e.svg=o?this.querySelector("svg"):null,e.picture=this.querySelector("picture");var l=a.containerId&&e[a.containerId],h=l&&l.dataset.mediaHeightOverrideType;if(s&&(e.maskSvg=e.svg&&e.svg.querySelector("svg")),e.image){this.unobserveChildren(),this.observeChildren(this);var d=c||e.picture?ce:oe;t.mutationService.measure((function(){d.measure(n,r,e,{containerElm:l,isSvg:o,isSvgMask:s,mediaHeightOverrideType:h,bgEffectName:u},t)}));var f=function(o){t.mutationService.mutate((function(){d.patch(n,r,e,a,t,i,o,u)}))};!v(e.image,o)||this.dataset.hasSsrSrc?f(!0):this.debounceImageLoad(f)}else{var p=o&&e.svg||this;this.observeChildren(p)}}},u.debounceImageLoad=function(e){clearTimeout(this.timeoutId),this.timeoutId=setTimeout((function(){e(!0)}),250),e(!1)},u.attributeChangedCallback=function(e,t){t&&this.reLayout()},u.disconnectedCallback=function(){e.prototype.disconnectedCallback.call(this),t.imageLoader.onImageDisconnected(this),this.unobserveChildren()},o=a,c=[{key:"observedAttributes",get:function(){return["data-image-info"]}}],(s=null)&&ue(o.prototype,s),c&&ue(o,c),a}(e)},fe=function(e,t,i,r,n,a,o,s,c,u,l){var d=i?t.offsetWidth:e.parentElement.offsetWidth,f=e.parentElement.offsetHeight,g=parseInt(r,10),m=parseInt(n,10),b=function(e,t,i,r){var n;n=e===h.a.fittingTypes.SCALE_TO_FIT?Math.min(t.wScale,t.hScale):Math.max(t.wScale,t.hScale);return{width:Math.round(i*n),height:Math.round(r*n)}}(a,function(e,t,i,r){return{wScale:e/i,hScale:t/r}}(d,f,g,m),g,m),v=function(e,t,i){var r=i.width,n=i.height,a=t.width,o=t.height,s=r-a,c=n-o;return me[e||h.a.alignTypes.CENTER]({verticalMiddle:Math.round(c/2),horizontalMiddle:Math.round(s/2),top:c,left:s})}(o,b,{width:d,height:f}),T=function(e,t,i,r){if("mp4"===r)return e.url?p(t,e.url):p(t,i,e.quality,r,"file.mp4");return""}(function(e,t){var i=t.width,r=t.height;return(n=e,a=function(e){return e.size},o=n.reduce((function(e,t){return e[a(t)]=t,e}),{}),Object.values(o)).find((function(e){return e.size>i*r}))||e[e.length-1];var n,a,o}(s,b),c,u,l);return{videoSourceUrl:T,needsSrcUpdate:function(e,t){var i=e.networkState===e.NETWORK_NO_SOURCE,r=!e.currentSrc.endsWith(t);return t&&(r||i)}(e,T),videoStyle:{width:b.width,height:b.height,left:v.left,top:v.top}}},pe=function(e,t,i,r,n,a,o,s,c,u,l){_(i,{width:r.width,height:r.height}),t?y(t,r):(!function(e,t,i,r,n,a){a&&t.paused&&(i.style.opacity="1",t.style.opacity="0");if(t.paused&&(e||a))if(t.ontimeupdate=null,t.onseeked=null,t.onplay=null,!a&&n){var o=t.muted;t.muted=!0,t.ontimeupdate=function(){t.currentTime>0&&(t.ontimeupdate=null,t.onseeked=function(){t.onseeked=null,t.muted=o,be(t,i,r)},t.currentTime=0)}}else t.onplay=function(){t.onplay=null,be(t,i,r)}}(o,i,e,s,n,l),n?i.setAttribute("autoplay",""):i.removeAttribute("autoplay"),y(i,r)),function(e,t,i){e&&(t.src=i,t.load())}(o,i,a),i.playbackRate=u},ge=h.a.alignTypes,me=((he={})[ge.CENTER]=function(e){return{left:e.horizontalMiddle,top:e.verticalMiddle}},he[ge.LEFT]=function(e){return{left:0,top:e.verticalMiddle}},he[ge.RIGHT]=function(e){return{left:e.left,top:e.verticalMiddle}},he[ge.TOP]=function(e){return{left:e.horizontalMiddle,top:0}},he[ge.BOTTOM]=function(e){return{left:e.horizontalMiddle,top:e.top}},he[ge.TOP_LEFT]=function(){return{left:0,top:0}},he[ge.TOP_RIGHT]=function(e){return{left:e.left,top:0}},he[ge.BOTTOM_LEFT]=function(e){return{left:0,top:e.top}},he[ge.BOTTOM_RIGHT]=function(e){return{left:e.left,top:e.top}},he);function be(e,t,i){"fade"===i&&(t.style.transition="opacity 1.6s ease-out"),t.style.opacity="0",e.style.opacity="1"}function ve(e,t){for(var i=0;i<t.length;i++){var r=t[i];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Te(e,t){return(Te=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var _e=function(e,t,i){return function(e){var r,n;function a(){return e.call(this)||this}n=e,(r=a).prototype=Object.create(n.prototype),r.prototype.constructor=r,Te(r,n);var o,s,c,u=a.prototype;return u.reLayout=function(){var e=this,r=JSON.parse(this.dataset.videoInfo),n=r.isVideoDataExists,a=r.videoWidth,o=r.videoHeight,s=r.qualities,c=r.videoId,u=r.videoFormat,l=r.alignType,h=r.fittingType,d=r.hasBgScrollEffect,f=r.autoPlay,p=r.animatePoster,g=r.containerId,m=r.isEditorMode,b=r.playbackRate,v=r.hasAlpha;if(n){var T=!i.prefersReducedMotion&&f,_=this.querySelector('video[id^="'+g+'"]'),y=this.querySelector('.bgVideoposter[id^="'+g+'"]');if(this.unobserveChildren(),_&&y){var I=document.getElementById(""+g),E=I.querySelector('.webglcanvas[id^="'+g+'"]');!(v||"true"===I.dataset.hasAlpha)||E?t.mutationService.measure((function(){var e=fe(_,I,d,a,o,h,l,s,i.staticVideoUrl,c,u),r=e.videoSourceUrl,n=e.needsSrcUpdate,f=e.videoStyle;t.mutationService.mutate((function(){pe(y,E,_,f,T,r,n,p,u,b,m)}))})):requestAnimationFrame((function(){return e.reLayout()}))}else this.observeChildren(this)}},u.attributeChangedCallback=function(e,t){t&&this.reLayout()},o=a,c=[{key:"observedAttributes",get:function(){return["data-video-info"]}}],(s=null)&&ve(o.prototype,s),c&&ve(o,c),a}(e)};function ye(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,r)}return i}function Ie(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function Ee(e,t){void 0===customElements.get(e)&&customElements.define(e,t)}function Ae(e,t,i){Ee("wix-image",de(e,t,i))}function we(e,t,i){Ee("wix-bg-image",M(e,t,i))}function Oe(e,t,i,r){Ee("wix-bg-media",P(e,function(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?ye(Object(i),!0).forEach((function(t){Ie(e,t,i[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):ye(Object(i)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))}))}return e}({windowResizeService:t},i),r))}function Se(e,t){Ee("wix-dropdown-menu",Y(e,t))}function Le(e,t,i){Ee("wix-video",_e(e,t,i))}function Me(e,t){Ee("wix-iframe",ie(e,t))}var Re={init:function(e){i(127);var t,r,n=e.resizeService.init((function(e){o.getLayoutTargets(e.map((function(e){return e.target}))).forEach((function(e){return e.reLayout()}))})),a={registry:new Set,observe:function(e){a.registry.add(e)},unobserve:function(e){a.registry.delete(e)}};e.windowResizeService.init((t=function(){return a.registry.forEach((function(e){return e.reLayout()}))},r=!1,function(){for(var e=arguments.length,i=new Array(e),n=0;n<e;n++)i[n]=arguments[n];r||(r=!0,requestAnimationFrame((function(){r=!1,t.apply(void 0,i)})))}));var o={observedElementToRelayoutTarget:new Map,getLayoutTargets:function(e){var t=new Set;return e.forEach((function(e){return t.add(o.observedElementToRelayoutTarget.get(e))})),t},observe:function(e){o.observedElementToRelayoutTarget.set(e,e),n.observe(e)},unobserve:function(e){o.observedElementToRelayoutTarget.delete(e),n.unobserve(e)},observeChild:function(e,t){o.observedElementToRelayoutTarget.set(e,t),n.observe(e)},unobserveChild:function(e){o.observedElementToRelayoutTarget.delete(e),n.unobserve(e)}},s=X({resizeService:o});return Ee("wix-element",s),{defineWixImage:Ae.bind(null,s),defineWixBgImage:we.bind(null,s),defineWixBgMedia:Oe.bind(null,s,a),defineWixDropdownMenu:Se.bind(null,s),defineWixVideo:Le.bind(null,s),defineWixIframe:Me.bind(null,s)}}};function xe(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,r)}return i}function Pe(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}var Ce,Fe,Ge,Be,ke=function(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?xe(Object(i),!0).forEach((function(t){Pe(e,t,i[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):xe(Object(i)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))}))}return e}({imageClientApi:h.a},Re),Ne=window.viewerModel,De=Ne.experiments,He=Ne.media,je=Ne.requestUrl;Ce={experiments:De,media:He,requestUrl:je},Ge=Promise.all([!("customElements"in window)&&i.e(46).then(i.t.bind(null,779,7)),!("IntersectionObserver"in window)&&i.e(66).then(i.t.bind(null,780,7)),!("ResizeObserver"in window)&&i.e(154).then(i.bind(null,781)).then((function(e){return window.ResizeObserver=e.default}))]).then((function(){return t=Fe,s={staticMediaUrl:(e=Ce).media.staticMediaUrl,mediaRootUrl:e.media.mediaRootUrl,experiments:{},isViewerMode:!0,devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio},c={mutationService:a.a,biService:o.instance,isExperimentOpen:function(t){return Boolean(e.experiments[t])}},l=Object(r.a)({getMediaDimensionsByEffect:function(e,t,i,n){var a=u.a[e]||{},o=a.getMediaDimensions,s=Object(r.f)(a,["getMediaDimensions"]);return o?Object(r.a)(Object(r.a)({},o(t,i,n)),s):Object(r.a)({width:t,height:i},s)}},c),Object(r.a)(Object(r.a)({},e),{wixCustomElements:t||(i={init:function(e){return new ResizeObserver(e)}},n={init:function(e){return window.addEventListener("resize",e)}},ke.init({resizeService:i,windowResizeService:n})),services:c,environmentConsts:s,mediaServices:l});var e,t,i,n,s,c,l})),Be=new Promise((function(e){"complete"===document.readyState||"interactive"===document.readyState?e():document.addEventListener("readystatechange",(function(){return e()}),{once:!0})})),Promise.all([Ge,Be]).then((function(e){var t=Object(r.e)(e,1)[0],i=t.services,n=t.environmentConsts,a=t.wixCustomElements,o=t.experiments,c=t.media,u=t.requestUrl,l=t.mediaServices;a.defineWixImage(l,n),a.defineWixBgImage(l,n),a.defineWixBgMedia(l,n),a.defineWixVideo(l,Object(r.a)(Object(r.a)({},n),{staticVideoUrl:c.staticVideoUrl,prefersReducedMotion:Object(s.a)(window,o,u)})),a.defineWixDropdownMenu(i,n),a.defineWixIframe(i,n)})),window.__imageClientApi__=ke.imageClientApi},19:function(e,t,i){e.exports=function(e){var t={};function i(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,i),n.l=!0,n.exports}return i.m=e,i.c=t,i.d=function(e,t,r){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(r,n,function(t){return e[t]}.bind(null,n));return r},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=15)}([function(e,t,i){"use strict";var r={JPG:"jpg",JPEG:"jpeg",JPE:"jpe",PNG:"png",WEBP:"webp",WIX_ICO_MP:"wix_ico_mp",WIX_MP:"wix_mp",GIF:"gif",SVG:"svg",UNRECOGNIZED:"unrecognized"},n=[r.JPG,r.JPEG,r.JPE,r.PNG,r.GIF,r.WEBP];e.exports={alignTypes:{CENTER:"center",TOP:"top",TOP_LEFT:"top_left",TOP_RIGHT:"top_right",BOTTOM:"bottom",BOTTOM_LEFT:"bottom_left",BOTTOM_RIGHT:"bottom_right",LEFT:"left",RIGHT:"right"},alignTypesMap:{center:"c",top:"t",top_left:"tl",top_right:"tr",bottom:"b",bottom_left:"bl",bottom_right:"br",left:"l",right:"r"},transformTypes:{FIT:"fit",FILL:"fill",FILL_FOCAL:"fill_focal",CROP:"crop",LEGACY_CROP:"legacy_crop",LEGACY_FILL:"legacy_fill"},fittingTypes:{SCALE_TO_FILL:"fill",SCALE_TO_FIT:"fit",STRETCH:"stretch",ORIGINAL_SIZE:"original_size",TILE:"tile",TILE_HORIZONTAL:"tile_horizontal",TILE_VERTICAL:"tile_vertical",FIT_AND_TILE:"fit_and_tile",LEGACY_STRIP_TILE:"legacy_strip_tile",LEGACY_STRIP_TILE_HORIZONTAL:"legacy_strip_tile_horizontal",LEGACY_STRIP_TILE_VERTICAL:"legacy_strip_tile_vertical",LEGACY_STRIP_SCALE_TO_FILL:"legacy_strip_fill",LEGACY_STRIP_SCALE_TO_FIT:"legacy_strip_fit",LEGACY_STRIP_FIT_AND_TILE:"legacy_strip_fit_and_tile",LEGACY_STRIP_ORIGINAL_SIZE:"legacy_strip_original_size",LEGACY_ORIGINAL_SIZE:"actual_size",LEGACY_FIT_WIDTH:"fitWidth",LEGACY_FIT_HEIGHT:"fitHeight",LEGACY_FULL:"full",LEGACY_BG_FIT_AND_TILE:"legacy_tile",LEGACY_BG_FIT_AND_TILE_HORIZONTAL:"legacy_tile_horizontal",LEGACY_BG_FIT_AND_TILE_VERTICAL:"legacy_tile_vertical",LEGACY_BG_NORMAL:"legacy_normal"},htmlTag:{BG:"bg",IMG:"img",SVG:"svg"},upscaleMethods:{AUTO:"auto",CLASSIC:"classic",SUPER:"super"},upscaleMethodsValues:{classic:1,super:2},defaultUSM:{radius:.66,amount:1,threshold:.01},emptyData:{uri:"",css:{img:{},container:{}},attr:{img:{},container:{}}},imageQuality:{HIGH:"HIGH",MEDIUM:"MEDIUM",LOW:"LOW",TINY:"TINY"},imageFilters:{CONTRAST:"contrast",BRIGHTNESS:"brightness",SATURATION:"saturation",HUE:"hue",BLUR:"blur"},imageScaleDefaults:{HIGH:{size:196e4,quality:90,maxUpscale:1},MEDIUM:{size:36e4,quality:85,maxUpscale:1},LOW:{size:16e4,quality:80,maxUpscale:1.2},TINY:{size:0,quality:80,maxUpscale:1.4}},fileType:r,supportedExtensions:n,webp:{LOSSLESS:"lossless",LOSSY:"lossy",ALPHA:"alpha",ANIMATION:"animation"},noWEBP:{lossless:!1,lossy:!1,alpha:!1,animation:!1},DSKTP_MAX_BG_SITE_LEGACY_WIDTH:1920,MOBILE_MAX_BG_SITE_LEGACY_WIDTH:1e3,DSKTP_MAX_BG_SITE_LEGACY_HEIGHT:1920,MOBILE_MAX_BG_SITE_LEGACY_HEIGHT:1e3,SAFE_TRANSFORMED_AREA:25e6,SUPER_UPSCALE_MODELS:[1.5,2,4],MAX_DEVICE_PIXEL_RATIO:2,API_VERSION:"v1"}},function(e,t,i){"use strict";var r=i(3),n=i(0);function a(e){var t=[n.fileType.PNG,n.fileType.JPEG,n.fileType.JPG,n.fileType.JPE,n.fileType.WIX_ICO_MP,n.fileType.WIX_MP];return r.includes(t,c(e))}function o(e){return r.includes(["webp"],c(e))}function s(e){return/(^https?)|(^data)|(^\/\/)/.test(e)}function c(e){return(/[.]([^.]+)$/.exec(e)&&/[.]([^.]+)$/.exec(e)[1]||"").toLowerCase()}function u(e,t,i,r,a){return a===n.transformTypes.FILL?function(e,t,i,r){return Math.max(i/e,r/t)}(e,t,i,r):a===n.transformTypes.FIT?function(e,t,i,r){return Math.min(i/e,r/t)}(e,t,i,r):1}function l(e,t){var i=f(e,t);return{optimizedScaleFactor:n.imageScaleDefaults[i].maxUpscale,upscaleMethodValue:n.upscaleMethodsValues.classic,forceUSM:!1}}function h(e,t){var i=f(e,t);return{optimizedScaleFactor:n.imageScaleDefaults[i].maxUpscale,upscaleMethodValue:n.upscaleMethodsValues.classic,forceUSM:!1}}function d(e,t,i){return{optimizedScaleFactor:r.last(n.SUPER_UPSCALE_MODELS),upscaleMethodValue:n.upscaleMethodsValues.super,forceUSM:!(n.SUPER_UPSCALE_MODELS.includes(i)||i>r.last(n.SUPER_UPSCALE_MODELS))}}function f(e,t){var i=e*t;return i>n.imageScaleDefaults[n.imageQuality.HIGH].size?n.imageQuality.HIGH:i>n.imageScaleDefaults[n.imageQuality.MEDIUM].size?n.imageQuality.MEDIUM:i>n.imageScaleDefaults[n.imageQuality.LOW].size?n.imageQuality.LOW:n.imageQuality.TINY}function p(e,t){var i=Math.pow(10,t||0);return(e*i/i).toFixed(parseInt(t,10))}e.exports.isImageTransformApplicable=function(e){return a(e)&&!s(e)},e.exports.isValidRequest=function(e,t,i){return i&&t&&!(!(a=t.id)||!a.trim()||"none"===a.toLowerCase())&&r.includes(n.fittingTypes,e);var a},e.exports.isImageTypeSupported=a,e.exports.isExternalUrl=s,e.exports.isWEBP=o,e.exports.isSEOBot=function(e){return e&&e.isSEOBot||!1},e.exports.getFileType=function(e){return function(e){return r.includes([n.fileType.JPEG,n.fileType.JPG,n.fileType.JPE],c(e))}(e)?n.fileType.JPG:function(e){return r.includes(["png"],c(e))}(e)?n.fileType.PNG:o(e)?n.fileType.WEBP:n.fileType.UNRECOGNIZED},e.exports.getFileExtension=c,e.exports.getFileName=function(e,t){var i=/\.([^.]*)$/;if("string"==typeof t&&t.length){var a=["/","\\","?","<",">","|","\u201c",":",'"'].map(encodeURIComponent),o=new RegExp("("+a.concat(["\\.","\\*"]).join("|")+")","g"),s=t,c=t.match(i);return c&&r.includes(n.supportedExtensions,c[1])&&(s=t.replace(i,"")),encodeURIComponent(s).replace(o,"_")}var u=e.match(/\/(.*?)$/);return(u?u[1]:e).replace(i,"")},e.exports.getAlignedRect=function(e,t,i){var r,a;switch(i){case n.alignTypes.CENTER:r=Math.max(0,(e.width-t.width)/2),a=Math.max(0,(e.height-t.height)/2);break;case n.alignTypes.TOP:r=Math.max(0,(e.width-t.width)/2),a=0;break;case n.alignTypes.TOP_LEFT:r=0,a=0;break;case n.alignTypes.TOP_RIGHT:r=Math.max(0,e.width-t.width),a=0;break;case n.alignTypes.BOTTOM:r=Math.max(0,(e.width-t.width)/2),a=Math.max(0,e.height-t.height);break;case n.alignTypes.BOTTOM_LEFT:r=0,a=Math.max(0,e.height-t.height);break;case n.alignTypes.BOTTOM_RIGHT:r=Math.max(0,e.width-t.width),a=Math.max(0,e.height-t.height);break;case n.alignTypes.LEFT:r=0,a=Math.max(0,(e.height-t.height)/2);break;case n.alignTypes.RIGHT:r=Math.max(0,e.width-t.width),a=Math.max(0,(e.height-t.height)/2)}return{x:e.x?e.x+r:r,y:e.y?e.y+a:a,width:Math.min(e.width,t.width),height:Math.min(e.height,t.height)}},e.exports.getOverlappingRect=function(e,t){var i=Math.max(0,Math.min(e.width,t.x+t.width)-Math.max(0,t.x)),r=Math.max(0,Math.min(e.height,t.y+t.height)-Math.max(0,t.y));return i&&r&&(e.width!==i||e.height!==r)?{x:Math.max(0,t.x),y:Math.max(0,t.y),width:i,height:r}:null},e.exports.getScaleFactor=u,e.exports.getTransformData=function(e,t,i,r,a,o){var s=function(e,t,i,r,a){var o,s,c;if(o=u(e,t,i,r,a),a===n.transformTypes.FILL?(s=i,c=r):a===n.transformTypes.FIT&&(s=e*o,c=t*o),s*c>n.SAFE_TRANSFORMED_AREA){var l=Math.sqrt(n.SAFE_TRANSFORMED_AREA/(s*c));o=u(e,t,s*=l,c*=l,a)}return{scaleFactor:o,width:s,height:c}}(e=e||i.width,t=t||i.height,i.width*r,i.height*r,a),c=s.scaleFactor;return function(e,t,i,r,a,o,s){var c,u,f=function(e,t,i,r){return{classic:l,auto:h,super:d}[r](e,t,i)}(e,t,o,a),p=f.optimizedScaleFactor,g=f.upscaleMethodValue,m=f.forceUSM;if(o<=p)return{width:i,height:r,scaleFactor:o,upscaleMethodValue:g,forceUSM:m,cssUpscaleNeeded:!1};switch(s){case n.transformTypes.FILL:c=i*(p/o),u=r*(p/o);break;case n.transformTypes.FIT:c=e*p,u=t*p}return{width:c,height:u,scaleFactor:p,upscaleMethodValue:g,forceUSM:m,cssUpscaleNeeded:!0}}(e,t,s.width,s.height,o,c,a)},e.exports.getDevicePixelRatio=function(e){return Math.min(e.pixelAspectRatio||1,n.MAX_DEVICE_PIXEL_RATIO)},e.exports.getAlignment=function(e){return n.alignTypesMap[e.alignment]||n.alignTypesMap[n.alignTypes.CENTER]},e.exports.getPreferredImageQuality=function(e,t){return n.imageScaleDefaults[f(e,t)].quality},e.exports.getDimension=function(e,t,i,r,n){var a=u(e,t,i,r,n);return{width:Math.round(e*a),height:Math.round(t*a)}},e.exports.getFocalPoint=function(e){var t=null;return"number"!=typeof e.x||isNaN(e.x)||"number"!=typeof e.y||isNaN(e.y)||(t={x:p(Math.max(0,Math.min(100,e.x))/100,2),y:p(Math.max(0,Math.min(100,e.y))/100,2)}),t},e.exports.getUpscaleString=function(e){return e&&e.upscaleMethod&&"string"==typeof e.upscaleMethod&&n.upscaleMethods[e.upscaleMethod.toUpperCase()]||n.upscaleMethods.AUTO},e.exports.roundToFixed=p},function(e,t,i){"use strict";var r={isWEBP:i(0).noWEBP,isObjectFitBrowser:!0};e.exports.getFeature=function(e){return r[e]},e.exports.setFeature=function(e,t){r[e]=t}},function(e,t,i){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports.includes=function(e,t){return e.indexOf?e.indexOf(t)>-1:!(!e||"object"!==r(e))&&Object.keys(e).some((function(i){return e[i]===t}))},e.exports.last=function(e){return e[e.length-1]},e.exports.template=function(e){return function(t){var i=e;for(var r in t)t.hasOwnProperty(r)&&(i=i.replace(new RegExp("\\${"+r+"}","g"),t[r]));return i}}},function(e,t,i){"use strict";function r(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,r)}return i}function n(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}var a=i(1),o=a.isSEOBot,s=a.getFileType,c=a.getFileName,u=a.getFileExtension,l=a.getDevicePixelRatio,h=a.getUpscaleString,d=a.isImageTransformApplicable,f=i(7),p=f.isMobile,g=f.isWEBPBrowserSupport,m=i(10),b=i(11),v=i(0);e.exports.getTransform=function(e,t,i,r){var n=o(r),a=s(t.id),f=c(t.id,t.name),p=u(t.id),v=!n&&g(a),T=n?1:l(i),_={fileName:f,fileExtension:p,fileType:a,isWEBPSupport:v,fittingType:e,preferredExtension:v?"webp":p,src:{id:t.id,width:t.width,height:t.height,isCropped:!1},focalPoint:{x:t.focalPoint&&t.focalPoint.x,y:t.focalPoint&&t.focalPoint.y},parts:[],devicePixelRatio:T,quality:0,upscaleMethod:h(r),progressive:!0,watermark:"",unsharpMask:{},filters:{}};return d(t.id)&&(m.setTransformParts(_,t,i),b.setTransformOptions(_,r)),_},e.exports.getTarget=function(e,t,i){var a=function(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?r(Object(i),!0).forEach((function(t){n(e,t,i[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):r(Object(i)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))}))}return e}({},i),o=p();switch(e){case v.fittingTypes.LEGACY_BG_FIT_AND_TILE:case v.fittingTypes.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case v.fittingTypes.LEGACY_BG_FIT_AND_TILE_VERTICAL:case v.fittingTypes.LEGACY_BG_NORMAL:var s=o?v.MOBILE_MAX_BG_SITE_LEGACY_WIDTH:v.DSKTP_MAX_BG_SITE_LEGACY_WIDTH,c=o?v.MOBILE_MAX_BG_SITE_LEGACY_HEIGHT:v.DSKTP_MAX_BG_SITE_LEGACY_HEIGHT;a.width=Math.min(s,t.width),a.height=Math.min(c,Math.round(a.width/(t.width/t.height))),a.pixelAspectRatio=1}return a}},function(e,t,i){"use strict";var r=i(2),n=i(0);function a(e){var t=r.getFeature("isWEBP"),i=new window.Image;i.onload=function(){t[e]=i.width>0&&i.height>0,r.setFeature("isWEBP",t)},i.onerror=function(){t[e]=!1,r.setFeature("isWEBP",t)},i.src="data:image/webp;base64,"+{lossy:"UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA",lossless:"UklGRhoAAABXRUJQVlA4TA0AAAAvAAAAEAcQERGIiP4HAA==",alpha:"UklGRkoAAABXRUJQVlA4WAoAAAAQAAAAAAAAAAAAQUxQSAwAAAARBxAR/Q9ERP8DAABWUDggGAAAABQBAJ0BKgEAAQAAAP4AAA3AAP7mtQAAAA==",animation:"UklGRlIAAABXRUJQVlA4WAoAAAASAAAAAAAAAAAAQU5JTQYAAAD/////AABBTk1GJgAAAAAAAAAAAAAAAAAAAGQAAABWUDhMDQAAAC8AAAAQBxAREYiI/gcA"}[e]}e.exports.checkSupportByUserAgent=function(e,t){var i=t.browser,a=t.os;if(e){var o,s=parseFloat(i.version),c=parseFloat(a.version),u=new RegExp(/AppleWebKit\/([\d.]+)/),l=null===u.exec(e)?null:parseFloat(u.exec(e)[1]),h=function(e,t,i,r,n){var a=!e.phone&&!e.tablet&&i.chrome&&r>=23,o=e.android&&(e.phone||e.tablet)&&i.webkit&&i.chrome&&r>=25,s=e.android&&n<535&&(e.phone||e.tablet)&&t>=4.2&&i.webkit&&!i.safari,c=i.edge&&r>=18,u=!e.firefoxos&&i.firefox&&!i.webkit&&r>=65;return!!(a||o||s||c||u)}(a,c,i,s,l);r.setFeature("isWEBP",((o={})[n.webp.LOSSY]=function(e,t,i,r,n){var a=!e.phone&&!e.tablet&&i.chrome&&r>=17,o=e.android&&(e.phone||e.tablet)&&i.webkit&&i.chrome&&r>=25,s=e.android&&n<535&&(e.phone||e.tablet)&&t>=4&&i.webkit,c=i.edge&&r>=18,u=!e.firefoxos&&i.firefox&&!i.webkit&&r>=65;return!!(a||o||s||c||u)}(a,c,i,s,l),o[n.webp.LOSSLESS]=h,o[n.webp.ALPHA]=h,o[n.webp.ANIMATION]=function(e,t,i,r){var n=!e.ios&&i.chrome&&r>=32,a=i.edge&&r>=18,o=!e.firefoxos&&i.firefox&&!i.webkit&&r>=65;return!!(n||a||o)}(a,0,i,s),o))}},e.exports.checkSupportByFeatureDetection=function(){a(n.webp.LOSSY),a(n.webp.LOSSLESS),a(n.webp.ALPHA),a(n.webp.ANIMATION)},e.exports.isWEBPBrowserSupport=function(e){var t=r.getFeature("isWEBP"),i=e===n.fileType.JPG&&t[n.webp.LOSSY],a=e===n.fileType.PNG&&t[n.webp.LOSSLESS],o=e===n.fileType.PNG&&t[n.webp.ALPHA];return i||a&&o}},function(e,t,i){"use strict";var r=i(0).noWEBP,n=i(9),a=i(5),o=i(2);e.exports.populateGlobalFeatureSupport=function(e){var t;void 0===e&&(e=""),"undefined"!=typeof window&&"undefined"!=typeof navigator?((t=n(navigator.userAgent)).browser.safari||t.os.iphone||t.os.ipad?o.setFeature("isWEBP",r):(a.checkSupportByUserAgent(navigator.userAgent,t),a.checkSupportByFeatureDetection()),o.setFeature("isObjectFitBrowser","objectFit"in window.document.documentElement.style),o.setFeature("isMobile",t.os.phone)):(t=n(e),a.checkSupportByUserAgent(e,t),o.setFeature("isMobile",t.os.phone))}},function(e,t,i){"use strict";var r=i(5),n=i(2);e.exports.isWEBPBrowserSupport=r.isWEBPBrowserSupport,e.exports.isObjectFitBrowserSupport=function(){return n.getFeature("isObjectFitBrowser")},e.exports.isMobile=function(){return n.getFeature("isMobile")}},function(e,t,i){"use strict";var r=i(0),n=i(1).isImageTransformApplicable,a=i(12),o=i(4);e.exports.getURI=function(e,t,i,s,c){var u=r.emptyData.uri;return n(t.id)?(c=c||o.getTransform(e,t,i,s,c),u=a.getImageURI(c)):u=t.id,u}},function(e,t,i){e.exports=function(){"use strict";return function(e){var t={},i={};if(!e)return{browser:i,os:t};var r=e.match(/Web[kK]it[\/]{0,1}([\d.]+)/),n=e.match(/(Android);?[\s\/]+([\d.]+)?/),a=!!e.match(/\(Macintosh\; Intel /),o=e.match(/(iPad).*OS\s([\d_]+)/),s=e.match(/(iPod)(.*OS\s([\d_]+))?/),c=!o&&e.match(/(iPhone\sOS)\s([\d_]+)/),u=e.match(/(webOS|hpwOS)[\s\/]([\d.]+)/),l=e.match(/Windows Phone ([\d.]+)/),h=u&&e.match(/TouchPad/),d=e.match(/Kindle\/([\d.]+)/),f=e.match(/Silk\/([\d._]+)/),p=e.match(/(BlackBerry).*Version\/([\d.]+)/),g=e.match(/(BB10).*Version\/([\d.]+)/),m=e.match(/(RIM\sTablet\sOS)\s([\d.]+)/),b=e.match(/PlayBook/),v=e.match(/Chrome\/([\d.]+)/)||e.match(/CriOS\/([\d.]+)/),T=e.match(/Firefox\/([\d.]+)/),_=e.match(/MSIE\s([\d.]+)/)||e.match(/Trident\/[\d](?=[^\?]+).*rv:([0-9.].)/),y=!v&&e.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/),I=y||e.match(/Version\/([\d.]+)([^S](Safari)|[^M]*(Mobile)[^S]*(Safari))/),E=e.match(/Edge\/(\d{2,}\.[\d\w]+)$/),A=e.match(/Opera Mini/);return i.webkit=r&&!E,i.webkit&&(i.version=r[1]),n&&(t.android=!0,t.version=n[2]),c&&!s&&(t.ios=t.iphone=!0,t.version=c[2].replace(/_/g,".")),o&&(t.ios=t.ipad=!0,t.version=o[2].replace(/_/g,".")),s&&(t.ios=t.ipod=!0,t.version=s[3]?s[3].replace(/_/g,"."):null),l&&(t.wp=!0,t.version=l[1]),u&&(t.webos=!0,t.version=u[2]),h&&(t.touchpad=!0),p&&(t.blackberry=!0,t.version=p[2]),g&&(t.bb10=!0,t.version=g[2]),m&&(t.rimtabletos=!0,t.version=m[2]),b&&(i.playbook=!0),d&&(t.kindle=!0,t.version=d[1]),f&&(i.silk=!0,i.version=f[1]),!f&&t.android&&e.match(/Kindle Fire/)&&(i.silk=!0),v&&!E&&(i.chrome=!0,i.version=v[1]),T&&!E&&(i.firefox=!0,i.version=T[1]),_&&(i.ie=!0,i.version=_[1]),I&&(a||t.ios)&&(i.safari=!0,a&&(i.version=I[1])),y&&(i.webview=!0),E&&(i.edge=!0,i.version=E[1]),A&&(i.operaMini=!0),t.tablet=!!(o||b||n&&!e.match(/Mobile/)||T&&e.match(/Tablet/)||(_||E)&&!e.match(/Phone/)&&e.match(/Touch/)),t.phone=!(t.tablet||t.ipod||!(n||c||u||p||g||v&&e.match(/Android/)||v&&e.match(/CriOS\/([\d.]+)/)||T&&e.match(/Mobile/)||_&&e.match(/Touch/))),t.mac=a,t.googleBot=!!e.match(/Googlebot\/2.1/),{browser:i,os:t}}}()},function(e,t,i){"use strict";var r=i(0),n=i(1),a=n.getAlignment,o=n.getScaleFactor,s=n.getOverlappingRect,c=n.getAlignedRect,u=n.getTransformData,l=n.getFocalPoint;function h(e,t){var i=u(e.src.width,e.src.height,t,e.devicePixelRatio,r.transformTypes.FIT,e.upscaleMethod);return{transformType:r.transformTypes.FILL,width:Math.round(i.width),height:Math.round(i.height),alignment:r.alignTypesMap.center,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}function d(e){return{transformType:r.transformTypes.CROP,x:Math.round(e.x),y:Math.round(e.y),width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}e.exports.setTransformParts=function(e,t,i){var n;switch(t.crop&&(n=s(t,t.crop))&&(e.src.width=n.width,e.src.height=n.height,e.src.cropped=!0,e.parts.push(d(n))),e.fittingType){case r.fittingTypes.SCALE_TO_FIT:case r.fittingTypes.LEGACY_FIT_WIDTH:case r.fittingTypes.LEGACY_FIT_HEIGHT:case r.fittingTypes.LEGACY_FULL:case r.fittingTypes.FIT_AND_TILE:case r.fittingTypes.LEGACY_BG_FIT_AND_TILE:case r.fittingTypes.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.fittingTypes.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.fittingTypes.LEGACY_BG_NORMAL:e.parts.push(h(e,i));break;case r.fittingTypes.SCALE_TO_FILL:e.parts.push(function(e,t){var i=u(e.src.width,e.src.height,t,e.devicePixelRatio,r.transformTypes.FILL,e.upscaleMethod),n=l(e.focalPoint);return{transformType:n?r.transformTypes.FILL_FOCAL:r.transformTypes.FILL,width:Math.round(i.width),height:Math.round(i.height),alignment:a(t),focalPointX:n&&n.x,focalPointY:n&&n.y,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}(e,i));break;case r.fittingTypes.STRETCH:e.parts.push(function(e,t){var i=o(e.src.width,e.src.height,t.width,t.height,r.transformTypes.FILL),n=Object.assign({},t);return n.width=e.src.width*i,n.height=e.src.height*i,h(e,n)}(e,i));break;case r.fittingTypes.TILE_HORIZONTAL:case r.fittingTypes.TILE_VERTICAL:case r.fittingTypes.TILE:case r.fittingTypes.LEGACY_ORIGINAL_SIZE:case r.fittingTypes.ORIGINAL_SIZE:n=c(e.src,i,i.alignment),e.src.isCropped?(Object.assign(e.parts[0],n),e.src.width=n.width,e.src.height=n.height):e.parts.push(d(n));break;case r.fittingTypes.LEGACY_STRIP_TILE_HORIZONTAL:case r.fittingTypes.LEGACY_STRIP_TILE_VERTICAL:case r.fittingTypes.LEGACY_STRIP_TILE:case r.fittingTypes.LEGACY_STRIP_ORIGINAL_SIZE:e.parts.push(function(e){return{transformType:r.transformTypes.LEGACY_CROP,width:Math.round(e.width),height:Math.round(e.height),alignment:a(e),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}(i));break;case r.fittingTypes.LEGACY_STRIP_SCALE_TO_FIT:case r.fittingTypes.LEGACY_STRIP_FIT_AND_TILE:e.parts.push(function(e){return{transformType:r.transformTypes.FIT,width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1}}(i));break;case r.fittingTypes.LEGACY_STRIP_SCALE_TO_FILL:e.parts.push(function(e){return{transformType:r.transformTypes.LEGACY_FILL,width:Math.round(e.width),height:Math.round(e.height),alignment:a(e),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1}}(i))}}},function(e,t,i){"use strict";var r=i(3),n=i(0),a=i(1),o=a.getPreferredImageQuality,s=a.roundToFixed;function c(e,t,i){return!isNaN(e)&&"number"==typeof e&&0!==e&&e>=t&&e<=i}e.exports.setTransformOptions=function(e,t){t=t||{},e.quality=function(e,t){var i=e.fileType===n.fileType.PNG&&e.isWEBPSupport;if(e.fileType===n.fileType.JPG||i){var a=r.last(e.parts),s=o(a.width,a.height),c=t.quality&&t.quality>=5&&t.quality<=90?t.quality:s;return c=i?c+5:c,parseInt(c,10)}return 0}(e,t),e.progressive=function(e){return!1!==e.progressive}(t),e.watermark=function(e){return e.watermark}(t),e.unsharpMask=function(e,t){var i;return function(e){e=e||{};var t=!isNaN(e.radius)&&"number"==typeof e.radius&&e.radius>=.1&&e.radius<=500,i=!isNaN(e.amount)&&"number"==typeof e.amount&&e.amount>=0&&e.amount<=10,r=!isNaN(e.threshold)&&"number"==typeof e.threshold&&e.threshold>=0&&e.threshold<=255;return t&&i&&r}(t.unsharpMask)?i={radius:t.unsharpMask.radius,amount:t.unsharpMask.amount,threshold:t.unsharpMask.threshold}:function(e){return e=e||{},!isNaN(e.radius)&&"number"==typeof e.radius&&0===e.radius&&!isNaN(e.amount)&&"number"==typeof e.amount&&0===e.amount&&!isNaN(e.threshold)&&"number"==typeof e.threshold&&0===e.threshold}(t.unsharpMask)||function(e){var t=r.last(e.parts);return!(t.scaleFactor>=1)||t.forceUSM}(e)&&(i=n.defaultUSM),i&&(i.radius=s(i.radius,2),i.amount=s(i.amount,2),i.threshold=s(i.threshold,2)),i}(e,t),e.filters=function(e){var t=e.filters||{},i={};return c(t[n.imageFilters.CONTRAST],-100,100)&&(i[n.imageFilters.CONTRAST]=t[n.imageFilters.CONTRAST]),c(t[n.imageFilters.BRIGHTNESS],-100,100)&&(i[n.imageFilters.BRIGHTNESS]=t[n.imageFilters.BRIGHTNESS]),c(t[n.imageFilters.SATURATION],-100,100)&&(i[n.imageFilters.SATURATION]=t[n.imageFilters.SATURATION]),c(t[n.imageFilters.HUE],-180,180)&&(i[n.imageFilters.HUE]=t[n.imageFilters.HUE]),c(t[n.imageFilters.BLUR],0,100)&&(i[n.imageFilters.BLUR]=t[n.imageFilters.BLUR]),i}(t)}},function(e,t,i){"use strict";var r,n=i(3),a=i(0),o=a.imageFilters,s=a.transformTypes,c=a.API_VERSION,u=n.template("fit/w_${width},h_${height}"),l=n.template("fill/w_${width},h_${height},al_${alignment}"),h=n.template("fill/w_${width},h_${height},fp_${focalPointX}_${focalPointY}"),d=n.template("crop/x_${x},y_${y},w_${width},h_${height}"),f=n.template("crop/w_${width},h_${height},al_${alignment}"),p=n.template("fill/w_${width},h_${height},al_${alignment}"),g=n.template(",lg_${upscaleMethodValue}"),m=n.template(",q_${quality}"),b=n.template(",usm_${radius}_${amount}_${threshold}"),v=n.template(",bl"),T=n.template(",wm_${watermark}"),_=((r={})[o.CONTRAST]=n.template(",con_${contrast}"),r[o.BRIGHTNESS]=n.template(",br_${brightness}"),r[o.SATURATION]=n.template(",sat_${saturation}"),r[o.HUE]=n.template(",hue_${hue}"),r[o.BLUR]=n.template(",blur_${blur}"),r);e.exports.getImageURI=function(e){var t=[];e.parts.forEach((function(e){switch(e.transformType){case s.CROP:t.push(d(e));break;case s.LEGACY_CROP:t.push(f(e));break;case s.LEGACY_FILL:var i=p(e);e.upscale&&(i+=g(e)),t.push(i);break;case s.FIT:var r=u(e);e.upscale&&(r+=g(e)),t.push(r);break;case s.FILL:var n=l(e);e.upscale&&(n+=g(e)),t.push(n);break;case s.FILL_FOCAL:var a=h(e);e.upscale&&(a+=g(e)),t.push(a)}}));var i=t.join("/");return e.quality&&(i+=m(e)),e.unsharpMask&&(i+=b(e.unsharpMask)),e.progressive||(i+=v(e)),e.watermark&&(i+=T(e)),e.filters&&(i+=Object.keys(e.filters).map((function(t){return _[t](e.filters)})).join("")),e.src.id+"/"+c+"/"+i+"/"+e.fileName+"."+e.preferredExtension}},function(e,t,i){"use strict";var r=i(14),n=i(0),a=/^media\//i,o="undefined"!=typeof window?window.devicePixelRatio:1,s=function(e,t){var i=(void 0===t?{}:t).baseHostURL;return i?""+i+e:function(e){return a.test(e)?"https://static.wixstatic.com/"+e:"https://static.wixstatic.com/media/"+e}(e)};e.exports.populateGlobalFeatureSupport=r.populateGlobalFeatureSupport,e.exports.getScaleToFitImageURL=function(e,t,i,a,c,u){var l=r.getData(n.fittingTypes.SCALE_TO_FIT,{id:e,width:t,height:i,name:u&&u.name},{width:a,height:c,htmlTag:r.htmlTag.IMG,alignment:r.alignTypes.CENTER,pixelAspectRatio:o},u);return s(l.uri,u)},e.exports.getScaleToFillImageURL=function(e,t,i,a,c,u){var l=r.getData(n.fittingTypes.SCALE_TO_FILL,{id:e,width:t,height:i,name:u&&u.name,focalPoint:{x:u&&u.focalPoint&&u.focalPoint.x,y:u&&u.focalPoint&&u.focalPoint.y}},{width:a,height:c,htmlTag:r.htmlTag.IMG,alignment:r.alignTypes.CENTER,pixelAspectRatio:o},u);return s(l.uri,u)},e.exports.getCropImageURL=function(e,t,i,a,c,u,l,h,d,f){var p=r.getData(n.fittingTypes.SCALE_TO_FILL,{id:e,width:t,height:i,name:f&&f.name,crop:{x:a,y:c,width:u,height:l}},{width:h,height:d,htmlTag:r.htmlTag.IMG,alignment:r.alignTypes.CENTER,pixelAspectRatio:o},f);return s(p.uri,f)}},function(e,t,i){"use strict";var r=i(0),n=i(1).isValidRequest,a=i(6).populateGlobalFeatureSupport,o=i(4),s=i(8).getURI;e.exports.populateGlobalFeatureSupport=a,e.exports.getData=function(e,t,i,a){var c=r.emptyData.uri;if(n(e,t,i)){var u=o.getTarget(e,t,i),l=o.getTransform(e,t,u,a);c=s(e,t,u,a,l)}return{uri:c}},e.exports.fittingTypes=r.fittingTypes,e.exports.alignTypes=r.alignTypes,e.exports.htmlTag=r.htmlTag,e.exports.upscaleMethods=r.upscaleMethods},function(e,t,i){"use strict";var r=i(0),n=i(6).populateGlobalFeatureSupport,a=i(16),o=a.getData,s=a.getPlaceholder,c=i(13),u=c.getScaleToFitImageURL,l=c.getScaleToFillImageURL,h=c.getCropImageURL;n(),e.exports.populateGlobalFeatureSupport=n,e.exports.getData=o,e.exports.getPlaceholder=s,e.exports.fittingTypes=r.fittingTypes,e.exports.alignTypes=r.alignTypes,e.exports.htmlTag=r.htmlTag,e.exports.upscaleMethods=r.upscaleMethods,e.exports.sdk={getScaleToFitImageURL:u,getScaleToFillImageURL:l,getCropImageURL:h}},function(e,t,i){"use strict";function r(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,r)}return i}function n(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?r(Object(i),!0).forEach((function(t){a(e,t,i[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):r(Object(i)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))}))}return e}function a(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}var o=i(0),s=i(1).isValidRequest,c=i(17),u=i(4),l=i(8).getURI,h=i(22),d=h.getScaledDimensions,f=h.getBlurValue,p=h.getCSSOverrides,g=h.validateTargetDimensions,m=h.getIsFakeTile,b=h.getConvertedFitting;function v(e,t,i,r){var n={};if(s(e,t,i)){var a=u.getTarget(e,t,i),h=u.getTransform(e,t,a,r);n.uri=l(e,t,a,r,h),Object.assign(n,c.getAttributes(h,a))}else n=o.emptyData;return n}e.exports.getData=v,e.exports.getPlaceholder=function(e,t,i,r){if(void 0===r&&(r={}),!s(e,t,i))return o.emptyData;var a=n(n({},i),g(t,i)),c=i.alignment,u=i.htmlTag,l=r.isSEOBot,h=m(e,t,a),T=d(e,t,a,l),_=f(a.width,e,l),y=b(e,h),I=p(e,t,i,c),E=v(y,t,n(n({},T),{},{alignment:c,htmlTag:u}),{filters:{blur:_}}).uri,A=v(e,t,n(n({},a),{},{alignment:c,htmlTag:u})),w=A.attr,O=void 0===w?{}:w,S=A.css;return S.img=S.img||{},S.container=S.container||{},Object.assign(S.img,I.img),Object.assign(S.container,I.container),{uri:E,css:S,attr:O}}},function(e,t,i){"use strict";var r=i(0).htmlTag,n=i(7).isObjectFitBrowserSupport,a=i(18),o=i(19),s=i(20),c=i(21);e.exports.getAttributes=function(e,t){return(t.htmlTag===r.BG?a:t.htmlTag===r.SVG?s:n()?o:c).get(e,t)}},function(e,t,i){"use strict";var r=i(0),n=r.alignTypes,a=r.fittingTypes;e.exports.get=function(e,t){var i={css:{container:{}}},r=i.css;switch(e.fittingType){case a.ORIGINAL_SIZE:case a.LEGACY_ORIGINAL_SIZE:case a.LEGACY_STRIP_ORIGINAL_SIZE:r.container.backgroundSize="auto",r.container.backgroundRepeat="no-repeat";break;case a.SCALE_TO_FIT:case a.LEGACY_STRIP_SCALE_TO_FIT:r.container.backgroundSize="contain",r.container.backgroundRepeat="no-repeat";break;case a.STRETCH:r.container.backgroundSize="100% 100%",r.container.backgroundRepeat="no-repeat";break;case a.SCALE_TO_FILL:case a.LEGACY_STRIP_SCALE_TO_FILL:r.container.backgroundSize="cover",r.container.backgroundRepeat="no-repeat";break;case a.TILE_HORIZONTAL:case a.LEGACY_STRIP_TILE_HORIZONTAL:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat-x";break;case a.TILE_VERTICAL:case a.LEGACY_STRIP_TILE_VERTICAL:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat-y";break;case a.TILE:case a.LEGACY_STRIP_TILE:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat";break;case a.FIT_AND_TILE:case a.LEGACY_STRIP_FIT_AND_TILE:r.container.backgroundSize="contain",r.container.backgroundRepeat="repeat";break;case a.LEGACY_BG_FIT_AND_TILE:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat";break;case a.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat-x";break;case a.LEGACY_BG_FIT_AND_TILE_VERTICAL:r.container.backgroundSize="auto",r.container.backgroundRepeat="repeat-y";break;case a.LEGACY_BG_NORMAL:r.container.backgroundSize="auto",r.container.backgroundRepeat="no-repeat"}switch(t.alignment){case n.CENTER:r.container.backgroundPosition="center center";break;case n.LEFT:r.container.backgroundPosition="left center";break;case n.RIGHT:r.container.backgroundPosition="right center";break;case n.TOP:r.container.backgroundPosition="center top";break;case n.BOTTOM:r.container.backgroundPosition="center bottom";break;case n.TOP_RIGHT:r.container.backgroundPosition="right top";break;case n.TOP_LEFT:r.container.backgroundPosition="left top";break;case n.BOTTOM_RIGHT:r.container.backgroundPosition="right bottom";break;case n.BOTTOM_LEFT:r.container.backgroundPosition="left bottom"}return i}},function(e,t,i){"use strict";var r,n=i(0),a=n.alignTypes,o=n.fittingTypes,s=((r={})[a.CENTER]="center",r[a.TOP]="top",r[a.TOP_LEFT]="top left",r[a.TOP_RIGHT]="top right",r[a.BOTTOM]="bottom",r[a.BOTTOM_LEFT]="bottom left",r[a.BOTTOM_RIGHT]="bottom right",r[a.LEFT]="left",r[a.RIGHT]="right",r),c={position:"absolute",top:"auto",right:"auto",bottom:"auto",left:"auto"};e.exports={get:function(e,t){var i={css:{container:{},img:{}}},r=i.css,n=e.fittingType,u=t.alignment;switch(r.container.position="relative",n){case o.ORIGINAL_SIZE:case o.LEGACY_ORIGINAL_SIZE:e.parts&&e.parts.length?(r.img.width=e.parts[0].width,r.img.height=e.parts[0].height):(r.img.width=e.src.width,r.img.height=e.src.height);break;case o.SCALE_TO_FIT:case o.LEGACY_FIT_WIDTH:case o.LEGACY_FIT_HEIGHT:case o.LEGACY_FULL:r.img.width=t.width,r.img.height=t.height,r.img.objectFit="contain",r.img.objectPosition=s[u]||"unset";break;case o.LEGACY_BG_NORMAL:r.img.width="100%",r.img.height="100%",r.img.objectFit="none",r.img.objectPosition=s[u]||"unset";break;case o.STRETCH:r.img.width=t.width,r.img.height=t.height,r.img.objectFit="fill";break;case o.SCALE_TO_FILL:r.img.width=t.width,r.img.height=t.height,r.img.objectFit="cover"}if("number"==typeof r.img.width&&(r.img.width!==t.width||r.img.height!==t.height)){var l=Math.round((t.height-r.img.height)/2),h=Math.round((t.width-r.img.width)/2);Object.assign(r.img,c,function(e,t,i){var r;return(r={})[a.TOP_LEFT]={top:0,left:0},r[a.TOP_RIGHT]={top:0,right:0},r[a.TOP]={top:0,left:t},r[a.BOTTOM_LEFT]={top:0,left:0},r[a.BOTTOM_RIGHT]={bottom:0,right:0},r[a.BOTTOM]={bottom:0,left:t},r[a.RIGHT]={top:e,right:0},r[a.LEFT]={top:e,left:0},r[a.CENTER]={width:i.width,height:i.height,objectFit:"none"},r}(l,h,t)[u])}return i}}},function(e,t,i){"use strict";var r=i(0),n=r.fittingTypes,a=r.alignTypes,o=r.transformTypes,s=i(1),c=s.getDimension,u=s.isImageTransformApplicable;e.exports={get:function(e,t){var i,r={css:{container:{}},attr:{container:{},img:{}}},s=r.css,l=r.attr,h=e.fittingType,d=t.alignment,f=e.src,p=f.width,g=f.height;switch(s.container.position="relative",h){case n.ORIGINAL_SIZE:case n.LEGACY_ORIGINAL_SIZE:case n.TILE:e.parts&&e.parts.length?(l.img.width=e.parts[0].width,l.img.height=e.parts[0].height):(l.img.width=p,l.img.height=g),l.img.preserveAspectRatio="xMidYMid slice";break;case n.SCALE_TO_FIT:case n.LEGACY_FIT_WIDTH:case n.LEGACY_FIT_HEIGHT:case n.LEGACY_FULL:l.img.width="100%",l.img.height="100%",l.img.transform="",l.img.preserveAspectRatio="";break;case n.STRETCH:l.img.width=t.width,l.img.height=t.height,l.img.x=0,l.img.y=0,l.img.transform="",l.img.preserveAspectRatio="none";break;case n.SCALE_TO_FILL:u(e.src.id)?(l.img.width=t.width,l.img.height=t.height):(i=c(p,g,t.width,t.height,o.FILL),l.img.width=i.width,l.img.height=i.height),l.img.x=0,l.img.y=0,l.img.transform="",l.img.preserveAspectRatio="xMidYMid slice"}if("number"==typeof l.img.width&&(l.img.width!==t.width||l.img.height!==t.height)){var m,b,v=0,T=0;h===n.TILE?(m=t.width%l.img.width,b=t.height%l.img.height):(m=t.width-l.img.width,b=t.height-l.img.height);var _=Math.round(m/2),y=Math.round(b/2);switch(d){case a.TOP_LEFT:v=0,T=0;break;case a.TOP:v=_,T=0;break;case a.TOP_RIGHT:v=m,T=0;break;case a.LEFT:v=0,T=y;break;case a.CENTER:v=_,T=y;break;case a.RIGHT:v=m,T=y;break;case a.BOTTOM_LEFT:v=0,T=b;break;case a.BOTTOM:v=_,T=b;break;case a.BOTTOM_RIGHT:v=m,T=b}l.img.x=v,l.img.y=T}return l.container.width=t.width,l.container.height=t.height,l.container.viewBox=[0,0,t.width,t.height].join(" "),r}}},function(e,t,i){"use strict";var r=i(0),n=r.fittingTypes,a=r.alignTypes,o=r.transformTypes,s=i(1),c=s.getDimension,u=s.isImageTypeSupported,l=s.isExternalUrl;e.exports={get:function(e,t){var i,r,s,h={css:{container:{},img:{}}},d=h.css,f=e.fittingType,p=t.alignment;switch(e.parts&&e.parts.length?(i=e.parts[0].width,r=e.parts[0].height):(i=e.src.width,r=e.src.height),d.img.display="block",d.container.position="relative",d.img.position="absolute",d.img.top="auto",d.img.right="auto",d.img.bottom="auto",d.img.left="auto",f){case n.ORIGINAL_SIZE:case n.LEGACY_ORIGINAL_SIZE:d.img.width=i,d.img.height=r;break;case n.SCALE_TO_FIT:case n.LEGACY_FIT_WIDTH:case n.LEGACY_FIT_HEIGHT:case n.LEGACY_FULL:s=c(i,r,t.width,t.height,o.FIT),Object.assign(d.img,s);break;case n.STRETCH:d.img.width=t.width,d.img.height=t.height;break;case n.SCALE_TO_FILL:var g=e.src.id;u(g)||l(g)?(d.img.width=t.width,d.img.height=t.height):(s=c(i,r,t.width,t.height,o.FILL),Object.assign(d.img,s),d.container.overflow="hidden")}if(d.img.width!==t.width||d.img.height!==t.height){var m=Math.round((t.height-d.img.height)/2),b=Math.round((t.width-d.img.width)/2);switch(p){default:case a.CENTER:d.img.top=m,d.img.left=b;break;case a.LEFT:d.img.left=0,d.img.top=m;break;case a.RIGHT:d.img.right=0,d.img.top=m;break;case a.TOP:d.img.left=b,d.img.top=0;break;case a.BOTTOM:d.img.left=b,d.img.bottom=0;break;case a.TOP_RIGHT:d.img.right=0,d.img.top=0;break;case a.TOP_LEFT:d.img.left=0,d.img.top=0;break;case a.BOTTOM_RIGHT:d.img.right=0,d.img.bottom=0;break;case a.BOTTOM_LEFT:d.img.left=0,d.img.bottom=0}}return h}}},function(e,t,i){"use strict";var r,n=i(0),a=n.alignTypes,o=n.fittingTypes,s=((r={})[a.CENTER]="50% 50%",r[a.TOP_LEFT]="0% 0%",r[a.TOP_RIGHT]="100% 0%",r[a.TOP]="50% 0%",r[a.BOTTOM_LEFT]="0% 100%",r[a.BOTTOM_RIGHT]="100% 100%",r[a.BOTTOM]="50% 100%",r[a.RIGHT]="100% 50%",r[a.LEFT]="0% 50%",r),c=Object.entries(s).reduce((function(e,t){var i=t[0];return e[t[1]]=i,e}),{}),u=[o.TILE,o.TILE_HORIZONTAL,o.TILE_VERTICAL,o.LEGACY_BG_FIT_AND_TILE,o.LEGACY_BG_FIT_AND_TILE_HORIZONTAL,o.LEGACY_BG_FIT_AND_TILE_VERTICAL],l=[o.LEGACY_ORIGINAL_SIZE,o.ORIGINAL_SIZE,o.LEGACY_BG_NORMAL];function h(e,t,i){var r=i.width,n=i.height;return e===o.TILE&&t.width>r&&t.height>n}function d(e,t,i){var r=e.width,n=e.height,a=t.width,o=t.height,s=i.x,c=i.y;if(!a||!o)return s+"% "+c+"%";var u=Math.max(a/r,o/n),l=r*u,h=n*u,d=Math.max(0,Math.min(l-a,l*(s/100)-a/2)),f=Math.max(0,Math.min(h-o,h*(c/100)-o/2));return(d&&Math.floor(d/(l-a)*100))+"% "+(f&&Math.floor(f/(h-o)*100))+"%"}e.exports.validateTargetDimensions=function(e,t){var i=t.width,r=t.height;if(!i||!r){var n=i||Math.min(980,e.width),a=n/e.width;return{width:n,height:r||e.height*a}}return{width:i,height:r}},e.exports.getScaledDimensions=function(e,t,i,r){var n=i.width,a=i.height;if(void 0===r&&(r=!1),r)return{width:n,height:a};var o=!l.includes(e),s=h(e,t,{width:n,height:a}),c=!s&&u.includes(e),d=c?t.width:n,f=c?t.height:a,p=o?function(e){return e>900?.25:e>500?.3:e>200?.4:1}(d):1;return{width:s?1920:d*p,height:f*p}},e.exports.getConvertedFitting=function(e,t){var i=u.includes(e)&&!t;return e===o.SCALE_TO_FILL||i?o.SCALE_TO_FIT:e},e.exports.getIsFakeTile=h,e.exports.getBlurValue=function(e,t,i){return i?0:u.includes(t)?1:e>200?2:3},e.exports.getCSSOverrides=function(e,t,i,r){void 0===r&&(r="center");var n,a,l={img:{},container:{}};if(e===o.SCALE_TO_FILL){var h=t.focalPoint&&(a=(n=t.focalPoint).x+"% "+n.y+"%",c[a]||""),f=h||r;t.focalPoint&&!h?l.img={objectPosition:d(t,i,t.focalPoint)}:l.img={objectPosition:s[f]}}else[o.LEGACY_ORIGINAL_SIZE,o.ORIGINAL_SIZE].includes(e)?l.img={objectFit:"none",top:"auto",left:"auto",right:"auto",bottom:"auto"}:u.includes(e)&&(l.container={backgroundSize:t.width+"px "+t.height+"px"});return l}}])},32:function(e,t,i){"use strict";i.d(t,"e",(function(){return r})),i.d(t,"c",(function(){return n})),i.d(t,"d",(function(){return a})),i.d(t,"h",(function(){return o})),i.d(t,"a",(function(){return s})),i.d(t,"b",(function(){return c})),i.d(t,"g",(function(){return l})),i.d(t,"f",(function(){return h})),i.d(t,"i",(function(){return d}));var r=function(e){return!!e&&!!e.document&&!!e.document.documentMode},n=function(e){return u(e).indexOf("edg")>-1},a=function(e){return u(e).indexOf("firefox")>-1},o=function(e){var t=u(e);return t.indexOf("safari")>-1&&t.indexOf("version")>-1},s=function(e){if(o(e)){var t=u(e).split(" ");return t=(t=t.find((function(e){return e.startsWith("version/")}))).split("/")[1],parseInt(t,10)}return-1},c=function(e){var t=u(e);return t.indexOf("safari")>-1&&t.indexOf("crios")>-1},u=function(e){return e&&e.navigator&&e.navigator.userAgent?e.navigator.userAgent.toLowerCase():""},l=function(e){var t=u(e);return/ip(hone|od|ad).*os 11/.test(t)},h=function(e){var t=function(e){return e&&e.navigator&&e.navigator.platform||""}(e);return!!t&&/iPad|iPhone|iPod/.test(t)},d=function(e){var t=u(e);return!!t&&/.*\(win.*\).*/i.test(t)}},33:function(e,t,i){"use strict";i.d(t,"a",(function(){return n}));var r=i(32),n=function(e,t,i){void 0===i&&(i="");var n=t["specs.thunderbolt.reducedMotion"],a=Object(r.i)(e);return i.toLowerCase().includes("forcereducedmotion")||!(!e||!n||a)&&e.matchMedia("(prefers-reduced-motion: reduce)").matches}},74:function(e,t,i){"use strict";var r,n;i.d(t,"a",(function(){return r})),i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return a})),function(e){e[e.START=1]="START",e[e.VISIBLE=2]="VISIBLE",e[e.PAGE_FINISH=33]="PAGE_FINISH",e[e.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",e[e.TBD=-1]="TBD",e[e.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",e[e.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE"}(r||(r={})),function(e){e[e.NAVIGATION=1]="NAVIGATION",e[e.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",e[e.INNER_ROUTE=3]="INNER_ROUTE",e[e.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",e[e.CANCELED=5]="CANCELED"}(n||(n={}));var a={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}},90:function(e,t,i){"use strict";var r=function(e){return e*Math.PI/180},n=function(e,t){return{width:e,height:t}},a=function(e,t,i){return{width:e,height:Math.max(t,i)}};e.exports={BackgroundParallax:{hasParallax:!0,getMediaDimensions:a},BackgroundParallaxZoom:{hasParallax:!0,getMediaDimensions:a},BackgroundReveal:{hasParallax:!0,getMediaDimensions:a},BgCloseUp:{getMediaDimensions:n},BgExpand:{getMediaDimensions:n},BgFabeBack:{getMediaDimensions:n},BgFadeIn:{getMediaDimensions:n},BgFadeOut:{getMediaDimensions:n},BgFake3D:{hasParallax:!0,getMediaDimensions:a},BgPanLeft:{getMediaDimensions:function(e,t){return{width:1.2*e,height:t}}},BgPanRight:{getMediaDimensions:function(e,t){return{width:1.2*e,height:t}}},BgParallax:{hasParallax:!0,getMediaDimensions:a},BgPullBack:{getMediaDimensions:n},BgReveal:{hasParallax:!0,getMediaDimensions:a},BgRotate:{getMediaDimensions:function(e,t){return function(e,t,i){var n=r(i),a=Math.hypot(e,t)/2,o=Math.acos(e/2/a),s=e*Math.abs(Math.cos(n))+t*Math.abs(Math.sin(n)),c=e*Math.abs(Math.sin(n))+t*Math.abs(Math.cos(n));return{width:Math.ceil(n<o?s:2*a),height:Math.ceil(n<r(90)-o?c:2*a)}}(e,t,22)}},BgShrink:{getMediaDimensions:n},BgSkew:{getMediaDimensions:function(e,t){return function(e,t,i){var n=r(i);return{width:e,height:e*Math.tan(n)+t}}(e,t,20)}},BgUnwind:{getMediaDimensions:n},BgZoomIn:{hasParallax:!0,getMediaDimensions:a},BgZoomOut:{getMediaDimensions:function(e,t){return{width:1.15*e,height:1.15*t}}}}}},[[169,2,0,5,6]]]);
//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.891d7f64.chunk.min.js.map</script>
<!-- tbElements js -->
<script src="https://static.parastorage.com/services/editor-elements/dist/thunderboltElements.31b92ac5.bundle.min.js" defer="" onload="window.ThunderboltElementsLoadedResolve()"></script>
<script async id="wix-perf-measure" src="https://static.parastorage.com/services/wix-perf-measure/1.466.0/wix-perf-measure.bundle.min.js"></script>
<!-- react-dom -->
<script crossorigin src="https://static.parastorage.com/unpkg/[email protected]/umd/react-dom.production.min.js" onload="externalsRegistry.reactDOM.onload()" defer=""></script>
<meta http-equiv="X-Wix-Meta-Site-Id" content="460e14ec-a806-4b47-b08f-b3b158ba872d">
<meta http-equiv="X-Wix-Application-Instance-Id" content="fee38282-cbcd-4505-9ab7-32ee40870284">
<meta http-equiv="X-Wix-Published-Version" content="320"/>
<meta http-equiv="etag" content="bug"/>
<!-- render-head end -->
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/page-features.4bf20dc4.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/wix-code-sdk-providers.31bdeb35.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/imageZoom.e5520e0b.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/loginSocialBar.ae595ce9.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/ooiTpaSharedConfig.c0f65fc9.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/ooi.b29aa2e0.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/platformPubsub.53f75229.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/protectedPages.74a7e435.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/siteMembers.02ecf8c9.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/sosp.0e2cb91f.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/tpa.5b946007.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/platform.87784f29.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/pageTransitions.19a2e879.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/wix-thunderbolt/dist/screenIn.fe0fbf3c.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/bootstrap-components-common.298f32be.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/Container_DefaultAreaSkin.32265d95.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/FooterContainer_BevelScreen.ca73063f.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/bootstrap-components-classic.eed27cba.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/common-site-members-dialogs.9d9f2fd1.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/SearchBox.f1a2ddbf.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/LoginSocialBar.21dafa7b.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/FiveGridLine_SolidLine.286e461d.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/MeshGroup.fceb4749.chunk.min.js" async=""></script>
<script src="https://static.parastorage.com/services/editor-elements/dist/SiteButton_ButtonThreeD.3ea7f5c5.chunk.min.js" async=""></script>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/bootstrap-components-common.2e48afc7.chunk.min.css">._2_Pya{position:absolute;top:0;right:0;bottom:0;width:100%;left:0}._1s0Ge{transition:.2s ease-in;transform:translateY(-100%)}._3-JNd{transition:.2s;transform:translateY(0)}.FxFZJ{transition:.2s ease-in;opacity:0;visibility:hidden}.lSyDa{transition:.2s;opacity:1}._1jI8r{height:auto}._1jI8r,._2qN73{position:relative;width:100%}body:not(.device-mobile-optimized) ._1M8CM{margin-left:calc((100% - var(--site-width)) / 2);width:var(--site-width)}._17W7D,.UZpZM ._1M8CM{position:absolute;top:0;right:0;bottom:0;left:0}.s0eeT{cursor:pointer}.TG-Zk{-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:var(--opacity);fill:var(--fill);fill-opacity:var(--fill-opacity);stroke:var(--stroke);stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none)}.TG-Zk,.TG-Zk svg{position:absolute;top:0;right:0;bottom:0;left:0}.TG-Zk svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto}._1UnNA *{vector-effect:non-scaling-stroke}._27iav svg,._37OKp svg{overflow:visible!important}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.TG-Zk._37OKp{will-change:filter}}}._2HrZd{opacity:0}._2fuJI{transition:opacity var(--transition-duration) cubic-bezier(.37,0,.63,1)}._2fuJI,.g0xNe{opacity:1}.PeTAs{transition:opacity var(--transition-duration) cubic-bezier(.37,0,.63,1)}._1IGjY,.PeTAs{opacity:0}.Ic0Mb{transition:opacity var(--transition-duration) cubic-bezier(.64,0,.78,0)}.Ic0Mb,.WjNI2{opacity:1}.Y5LuX{opacity:0;transition:opacity var(--transition-duration) cubic-bezier(.22,1,.36,1)}._3P3IS{transform:translateX(100%)}._1vZD6{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._1vZD6,.AM-g_{transform:translateX(0)}._1MVJv{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._1MVJv,._2uVRM{transform:translateX(-100%)}._2kt-u{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._2kt-u,._3f6Db{transform:translateX(0)}._3u3Qg{transform:translateX(100%);transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._2LoMk{transform:translateY(100%)}._3VRRq{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._3VRRq,._8b5uM{transform:translateY(0)}._1c8N5{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._1c8N5,._1SRt2{transform:translateY(-100%)}.mMep-{transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}._3jOkM,.mMep-{transform:translateY(0)}._1hGK7{transform:translateY(100%);transition:transform var(--transition-duration) cubic-bezier(.87,0,.13,1)}.StylableButton1872886392__root{-archetype:box;cursor:pointer;border:none;display:block;min-width:10px;min-height:10px;width:100%;height:100%;box-sizing:border-box;padding:0}.StylableButton1872886392__root[disabled]{pointer-events:none}.StylableButton1872886392__root.StylableButton1872886392--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton1872886392__root.StylableButton1872886392--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton1872886392__root.StylableButton1872886392--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton1872886392__root.StylableButton1872886392--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton1872886392__root.StylableButton1872886392--hasColor,.StylableButton1872886392__root.StylableButton1872886392--hasColor .StylableButton1872886392__label{color:var(--corvid-color)!important}.StylableButton1872886392__link{-archetype:box;text-decoration:none;box-sizing:border-box;color:#000}.StylableButton1872886392__container{display:flex;flex-basis:auto;justify-content:center;flex-direction:row;flex-grow:1;align-items:center;overflow:hidden;height:100%;width:100%;transition:all .2s ease,visibility 0s}.StylableButton1872886392__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit}.StylableButton1872886392__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);min-width:1px;height:50px;transition:inherit;flex-shrink:0}.StylableButton1872886392__icon>div,.StylableButton1872886392__icon svg{display:flex;width:inherit;height:inherit}.GFY_-{pointer-events:none;overflow:hidden;padding:0;white-space:nowrap}._2Yk_Z{cursor:pointer}ol.font_100,ul.font_100{color:#080808;font-family:"Arial, Helvetica, sans-serif",serif;font-size:10px;font-style:normal;font-variant:normal;font-weight:400;margin:0;text-decoration:none;line-height:normal;letter-spacing:normal}ol.font_100 li,ul.font_100 li{margin-bottom:12px}ol.wix-list-text-align,ul.wix-list-text-align{list-style-position:inside}ol.wix-list-text-align h1,ol.wix-list-text-align h2,ol.wix-list-text-align h3,ol.wix-list-text-align h4,ol.wix-list-text-align h5,ol.wix-list-text-align h6,ol.wix-list-text-align p,ul.wix-list-text-align h1,ul.wix-list-text-align h2,ul.wix-list-text-align h3,ul.wix-list-text-align h4,ul.wix-list-text-align h5,ul.wix-list-text-align h6,ul.wix-list-text-align p{display:inline}._2tuyK{cursor:pointer}.XcBF6 ._1cEyW{position:relative;width:100%;height:100%;word-wrap:break-word;overflow-wrap:break-word}.XcBF6 ._1cEyW ul{list-style:disc inside}.XcBF6 ._1cEyW li{margin-bottom:12px}._2bafp{word-wrap:break-word;overflow-wrap:break-word;text-align:start;pointer-events:none}._2bafp>*{pointer-events:auto}._2bafp li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}._2bafp ol,._2bafp ul{padding-left:1.3em;padding-right:0;margin-left:.5em;margin-right:0;line-height:normal;letter-spacing:normal}._2bafp ul{list-style-type:disc}._2bafp ol{list-style-type:decimal}._2bafp ol ul,._2bafp ul ul{list-style-type:circle}._2bafp ol ol ul,._2bafp ol ul ul,._2bafp ul ol ul,._2bafp ul ul ul{list-style-type:square}._2bafp ol[dir=rtl],._2bafp ol[dir=rtl] ol,._2bafp ol[dir=rtl] ul,._2bafp ul[dir=rtl],._2bafp ul[dir=rtl] ol,._2bafp ul[dir=rtl] ul{padding-left:0;padding-right:1.3em;margin-left:0;margin-right:.5em}._2bafp blockquote,._2bafp h1,._2bafp h2,._2bafp h3,._2bafp h4,._2bafp h5,._2bafp h6,._2bafp p{margin:0;line-height:normal;letter-spacing:normal}._2bafp a{color:inherit}.lJm9X ._1cEyW{position:relative;width:100%;height:100%;word-wrap:break-word;overflow-wrap:break-word}.lJm9X ._1cEyW ol,.lJm9X ._1cEyW ul{padding-left:1.3em;margin-left:.5em;line-height:normal;letter-spacing:normal}.lJm9X ._1cEyW ol[dir=rtl],.lJm9X ._1cEyW ul[dir=rtl]{padding-right:1.3em;margin-right:.5em}.lJm9X ._1cEyW ul{list-style-type:disc}.lJm9X ._1cEyW ol{list-style-type:decimal}.lJm9X ._1cEyW ol[dir=rtl],.lJm9X ._1cEyW ul[dir=rtl]{padding-right:1.3em;margin-right:.5em}.lJm9X ._1cEyW ol ul,.lJm9X ._1cEyW ul ul{list-style-type:circle;line-height:normal}.lJm9X ._1cEyW ol ol ul,.lJm9X ._1cEyW ol ul ul,.lJm9X ._1cEyW ul ol ul,.lJm9X ._1cEyW ul ul ul{list-style-type:square;line-height:normal}.lJm9X ._1cEyW li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.lJm9X ._1cEyW h1,.lJm9X ._1cEyW h2,.lJm9X ._1cEyW h3,.lJm9X ._1cEyW h4,.lJm9X ._1cEyW h5,.lJm9X ._1cEyW h6,.lJm9X ._1cEyW p{margin:0;line-height:normal;letter-spacing:normal}.lJm9X ._1cEyW a{color:inherit}._3tDhR{display:grid;grid-template-rows:1fr;grid-template-columns:1fr}._3tDhR>div{justify-self:stretch!important;align-self:stretch!important}._2oJTp{top:0;left:0;position:fixed;width:100%;height:calc(100% - var(--wix-ads-height));margin-top:var(--wix-ads-height);display:grid;grid-template-columns:1fr;grid-template-rows:1fr}._1PGFM,._2oJTp{pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container))}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/Container_DefaultAreaSkin.0b1317f3.chunk.min.css">._3ucik{--container-corvid-border-color:rgba(var(--brd,var(--color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:rgba(var(--bg,var(--color_11)),var(--alpha-bg,1))}._15Xjo{border:var(--container-corvid-border-width,var(--brw,1px)) solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11)),var(--alpha-bg,1)));border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px rgba(0,0,0,.6));position:absolute;top:0;right:0;bottom:0;left:0}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/FooterContainer_BevelScreen.4d17234d.chunk.min.css">._1RIj1{position:absolute;top:0;right:0;bottom:0;width:100%;left:0}._68yCh{transition:.2s ease-in;transform:translateY(-100%)}._2agpV{transition:.2s;transform:translateY(0)}.IYEZp{transition:.2s ease-in;opacity:0;visibility:hidden}.ZEQQG{transition:.2s;opacity:1}._3m7l_{height:auto}._3Dvoa,._3m7l_{position:relative;width:100%}body:not(.device-mobile-optimized) ._3bZ4_{margin-left:calc((100% - var(--site-width)) / 2);width:var(--site-width)}._2yPnt .C9-39{top:0;bottom:0;box-shadow:var(--shd,inset 0 1px 1px hsla(0,0%,100%,.6),inset 0 -1px 1px rgba(0,0,0,.6),0 0 5px rgba(0,0,0,.6));background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEsCAYAAAACUNnVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Mjg3Q0ZFRjI1MUI3MTFFMTk2RDU4QUVGMUIyOEIyRDUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Mjg3Q0ZFRjM1MUI3MTFFMTk2RDU4QUVGMUIyOEIyRDUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyODdDRkVGMDUxQjcxMUUxOTZENThBRUYxQjI4QjJENSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyODdDRkVGMTUxQjcxMUUxOTZENThBRUYxQjI4QjJENSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po3MNv4AAABMSURBVHjaYvj//78TEwMDw38QwYBKYBNDkyBCCe3EiHDLIBEbdcYQTkPUtoN0xSQZSh2nkSlBkuspkcWvjWJ7SQ9EGqsjXTEDQIABANY+R1StVfE0AAAAAElFTkSuQmCC);background-color:var(--screenwidth-corvid-background-color,rgba(var(--bg,var(--color_11)),var(--alpha-bg,1)));border-top:var(--brwt,0) solid var(--screenwidth-corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1)));border-bottom:var(--brwb,0) solid var(--screenwidth-corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1)));background-repeat:repeat-x}._2yPnt ._3bZ4_,._2yPnt .C9-39{position:absolute;right:0;left:0}._2yPnt ._3bZ4_{top:var(--brwt,0);bottom:var(--brwb,0)}body.device-mobile-optimized ._2yPnt ._3bZ4_{left:10px;right:10px}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/bootstrap-components-classic.77073ea7.chunk.min.css">.dmysR{position:absolute;top:0;right:0;bottom:0;width:100%;left:0}._1veUs{transition:.2s ease-in;transform:translateY(-100%)}._3FGUd{transition:.2s;transform:translateY(0)}._2JCUO{transition:.2s ease-in;opacity:0;visibility:hidden}._2qLBX{transition:.2s;opacity:1}._1MBwI{height:auto}._1MBwI,._2_pp6{position:relative;width:100%}body:not(.device-mobile-optimized) ._1DMOb{margin-left:calc((100% - var(--site-width)) / 2);width:var(--site-width)}._26XlU .kvZ7q{top:0;bottom:0;box-shadow:var(--shd,0 0 5px rgba(0,0,0,.7));background-color:var(--screenwidth-corvid-background-color,rgba(var(--bg,var(--color_11)),var(--alpha-bg,1)));border-top:var(--brwt,0) solid var(--screenwidth-corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1)));border-bottom:var(--brwb,0) solid var(--screenwidth-corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1)))}._26XlU .kvZ7q,._26XlU .mtROD{position:absolute;right:0;left:0}._26XlU .mtROD{top:var(--brwt,0);bottom:var(--brwb,0);border-radius:var(--rd,0);background-color:rgba(var(--bgctr,var(--color_11)),var(--alpha-bgctr,1))}._26XlU ._1DMOb{position:absolute;top:0;right:0;bottom:0;left:0}body.device-mobile-optimized ._26XlU ._1DMOb{left:10px;right:10px}._31Ne5{position:relative}._1XT8x{-webkit-backface-visibility:hidden;backface-visibility:hidden}._2US5Z{cursor:pointer}.cs8rE{border-color:var(--hover-box-border-color);border-radius:var(--hover-box-border-radius);border-style:var(--hover-box-border-style);border-width:var(--hover-box-border-width);box-shadow:var(--hover-box-box-shadow);transform:var(--hover-box-transform);margin:var(--hover-box-margin);overflow:var(--hover-box-overflow);position:relative}._2k7xj{text-align:initial;display:flex;align-items:center;box-sizing:border-box;width:-webkit-max-content;width:-moz-max-content;width:max-content;justify-content:var(--label-align);min-width:100%}._2k7xj:before{max-width:var(--margin-left,0)}._2k7xj:after,._2k7xj:before{content:"";flex-grow:1;align-self:stretch}._2k7xj:after{max-width:var(--margin-right,0)}._2btH0{height:100%}._2btH0 ._2k7xj{border-radius:var(--corvid-border-radius,var(--rd,0));position:absolute;top:0;right:0;bottom:0;left:0;transition:var(--trans1,border-color .4s ease 0s,background-color .4s ease 0s);box-shadow:var(--shd,0 1px 4px rgba(0,0,0,.6))}._2btH0 ._2k7xj:link,._2btH0 ._2k7xj:visited{border-color:transparent}._2btH0 .nr31w{font:var(--fnt,var(--font_5));transition:var(--trans2,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15))));position:relative;white-space:nowrap;margin:0}._2btH0[aria-disabled=false] ._2k7xj{background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1))) var(--corvid-border-width,var(--brw,0));cursor:pointer!important}body.device-mobile-optimized ._2btH0[aria-disabled=false]:active ._2k7xj{background-color:rgba(var(--bgh,var(--color_18)),var(--alpha-bgh,1));border-color:rgba(var(--brdh,var(--color_15)),var(--alpha-brdh,1))}body.device-mobile-optimized ._2btH0[aria-disabled=false]:active .nr31w{color:rgb(var(--txth,var(--color_15)))}body:not(.device-mobile-optimized) ._2btH0[aria-disabled=false]:hover ._2k7xj{background-color:rgba(var(--bgh,var(--color_18)),var(--alpha-bgh,1));border-color:rgba(var(--brdh,var(--color_15)),var(--alpha-brdh,1))}body:not(.device-mobile-optimized) ._2btH0[aria-disabled=false]:hover .nr31w{color:rgb(var(--txth,var(--color_15)))}._2btH0[aria-disabled=true] ._2k7xj{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));border-width:var(--corvid-border-width,var(--brw,0));border-style:solid}._2btH0[aria-disabled=true] .nr31w{color:rgb(var(--txtd,255,255,255))}.e3SAW{width:100%;height:100%;overflow:hidden}.e3SAW._3qUQs:hover{cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM3MEUzMUU4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM3MEUzMUQ4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4bqsJgAAACF0lEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPmgI0F2YdmxXQUhX///sVQqK2tDVL4DFkhF8zK2NjY/4aGhshOOMJAJAB5ZjdAADGQCpiB4Cear3uwKQR74vv372BPLFq0CKZ4GnLcdMGiFtnXmzZtQo0Bdnb2r/b29nBFMIwUjkxghby8vHfFxMQwTMQWp0YggZcvX/5HBpqamhgKQdafAQnq6en9j4+P/4/me150nzsCPfYOKrkWKvYCymcjJozPgqIYIMAYcUjKAnEcELsDbVECOpkNiO8B+buAeCEQ3yUqFllYWNYh+4Obm/u/ubn5f0tLy//QPIqM90ATHVagDHTJH5BCfn7+/xcvXvyPC9y7d+8/KHqghv4FYj0M04BxeAOkQEhI6P+vX79QDECOeBj49+/ffzk5OZih91FyP4gAGiIDooH5hIGVlRUsAXQpGMMAMh+Y1xksLCzg5QxGrAFzwAxY2GzYsIGgC48cOYIclsuwBiIbG9sCmCJFRcX/+/fvxwi/EydOwIoDGH6JLQEiA26ga1egxSY2vAUpkcKKEV5iCwVOIObBU8w8RzLYgYHaAAACg5CxaxSLgwAAAABJRU5ErkJggg==),auto}.e3SAW.UKJJk:hover{cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6N0I4QkNGQTI4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N0I4QkNGQTE4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7hiSPZAAACGklEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPm/EcHUA3TURT+/fsXQ6G2tjZI4TNkhVwwK2NjY/8bGhoiO+EIA5EA5JndAAHEQCpgBoKfaL7uwaYQHLrfv38He2LRokUwxdOQ46YLFrXIYNOmTagxwM7O/tXe3h4sCYs3EEYKRyawQl5e3rtiYmL/sQH0ODUCCbx8+RJFkaamJoZCkPVnQIJ6enr/4+Pj/6P5nhfd545Aj72DSq6Fir2A8tmICeOzoCgGCDBGHJKyQBwHxO5AW5SATmYD4ntA/i4gXgjEd4mKRRYWlnXI/uDm5v5vbm7+39LS8j80jyLjPdBEhxUoA13yB6SQn5///8WLF//jAvfu3fsPih6ooX+BWA/DNGAc3gApEBIS+v/r16//hMC/f//+y8nJwQy9j2wWC4gAGiIDooH5hIGVlRUsAXQpVq98/PgRVBAwWFhYMDx69AhczkBj7RdyFpgBC5sNGzYQdOGRI0eQw3IZVpvZ2NgWwBQpKir+379/P4ZBJ06cgBUHMPwSWwJEBtxA165Ai01seAtSIoUVI7zEFgqcQMyDp5h5jmSwAwO1AQBU5q033XYWQwAAAABJRU5ErkJggg==),auto}._3oqF5{text-align:initial;display:flex;align-items:center;box-sizing:border-box;width:-webkit-max-content;width:-moz-max-content;width:max-content;justify-content:var(--label-align);min-width:100%}._3oqF5:before{max-width:var(--margin-left,0)}._3oqF5:after,._3oqF5:before{content:"";flex-grow:1;align-self:stretch}._3oqF5:after{max-width:var(--margin-right,0)}._1P1ro[aria-disabled=false] ._3oqF5{cursor:pointer}body.device-mobile-optimized ._1P1ro[aria-disabled=false]:active ._22ngm,body:not(.device-mobile-optimized) ._1P1ro[aria-disabled=false]:hover ._22ngm{color:rgb(var(--txth,var(--color_15)));transition:var(--trans,color .4s ease 0s)}._1P1ro ._3oqF5{position:absolute;top:0;right:0;bottom:0;left:0}._1P1ro ._22ngm{font:var(--fnt,var(--font_5));transition:var(--trans,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15))));white-space:nowrap}._1P1ro[aria-disabled=true] ._22ngm{color:rgb(var(--txtd,255,255,255))}._2AO2a{position:var(--bg-position);top:var(--wix-ads-height);min-height:calc(100vh - var(--wix-ads-height));height:100%;width:100%;min-width:var(--site-width)}body:not(.device-mobile-optimized) .JSM9k{display:flex}body:not(.device-mobile-optimized) ._2EoGw{display:flex;position:relative;width:calc(100% - var(--padding) * 2);margin:0 auto}body:not(.device-mobile-optimized) ._2EoGw>*{flex:var(--column-flex);min-width:var(--column-width);margin-top:var(--padding);margin-bottom:var(--padding);position:relative;left:0;top:0;margin-left:var(--margin)}body:not(.device-mobile-optimized) ._2EoGw>:first-child{margin-left:0}body.device-mobile-optimized ._2EoGw{display:block;position:relative;padding:var(--padding) 0}body.device-mobile-optimized ._2EoGw>*{margin-bottom:var(--margin);position:relative}body.device-mobile-optimized ._2EoGw>:first-child{margin-top:-1px}body.device-mobile-optimized ._2EoGw>:last-child{margin-bottom:-1px}._1NovW{-webkit-backface-visibility:hidden;backface-visibility:hidden}.rca7A{width:100%;height:100%;display:block}.rca7A svg._1eMqj{width:0;height:0;left:0;top:0;overflow:hidden;position:absolute}._1K4Go,._1K4Go svg{width:100%;height:100%}._22Lsw,.X-jRX{position:absolute;top:0;width:100%;height:100%;overflow:hidden}.X-jRX{left:0;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events)}.X-jRX._2AZ6T{clip:rect(0,auto,auto,0)}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.X-jRX._2AZ6T{clip:auto;-webkit-clip-path:inset(0)}}}._1J6n9{height:100%}.mlsxv{background-color:var(--bg-overlay-color)}._1-b-O{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}._1-b-O img{width:100%;height:100%}._2kjIP{position:absolute;width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom)}.ysaOK{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.kBelp{position:relative;width:100%;height:100%}._1n_5u{-webkit-clip-path:var(--fill-layer-clip);clip-path:var(--fill-layer-clip)}._1n_5u,._3UHRA{position:absolute;top:0}._1n_5u,._1ytkV img,._3UHRA{width:100%;height:100%}._1BP2G{position:absolute;top:0}._3nV6U{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);left:0}._1qeol,._3nV6U,.YhHhy{width:100%;height:100%;top:0}.YhHhy{position:absolute}._1qeol{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){._1qeol{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}._2ws69{cursor:pointer}._2edl5{width:100%;height:100%;box-sizing:border-box}._2ztx1{min-height:var(--image-min-height);min-width:var(--image-min-width)}._2ztx1 img{-o-object-position:var(--object-position);object-position:var(--object-position);filter:var(--filter-effect-svg-url)}.Ued3M{position:var(--position-fixed,static);left:var(--left,auto);top:var(--top,auto);z-index:var(--z-index,auto)}.Ued3M ._2ztx1 img{position:static;box-shadow:0 0 0 #000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.Ued3M ._2edl5{display:block}.Ued3M ._2edl5,.Ued3M ._2ztx1{overflow:hidden}._1m93a .PE8t5 ._2-pBe{display:var(--item-display);width:var(--item-size);height:var(--item-size)}._1m93a .PE8t5 ._2-pBe:not(:last-child){margin:var(--item-margin)}._1m93a .PE8t5 ._2-pBe .fNVUF{display:block}._1m93a .PE8t5 ._2-pBe .fNVUF ._21zrA{width:var(--item-size);height:var(--item-size)}._1m93a .PE8t5{position:absolute;width:100%;height:100%;white-space:nowrap}body.device-mobile-optimized ._1m93a .PE8t5{white-space:normal}._3XkhD{position:absolute;top:0;right:0;bottom:0;left:0}._3UCvU{height:auto;width:100%;position:relative}body:not(.responsive) ._3V_xK{height:100%;position:relative;left:0;grid-area:1/1/1/1;align-self:start;justify-self:stretch}body:not(.device-mobile-optimized) ._3XkhD{margin-left:calc((100% - var(--site-width)) / 2);width:var(--site-width)}._4INfd ._3XkhD{overflow:hidden;background-color:rgba(var(--bg,var(--color_11)),var(--alpha-bg,1))}body.device-mobile-optimized ._3XkhD{left:10px;right:10px}._1vnzj{position:absolute;top:0;right:0;bottom:0;left:0}._2egft{height:auto;width:100%;position:relative}body:not(.responsive) ._3akMP{height:100%;position:relative;left:0;grid-area:1/1/1/1;align-self:start;justify-self:stretch}body:not(.device-mobile-optimized) ._1vnzj{margin-left:calc((100% - var(--site-width)) / 2);width:var(--site-width)}body.device-mobile-optimized ._1vnzj{left:10px;right:10px}._1Cfot{pointer-events:none}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/common-site-members-dialogs.d415cb14.chunk.min.css">@-webkit-keyframes lMM2r{to{opacity:1;transform:rotate(115deg)}}@keyframes lMM2r{to{opacity:1;transform:rotate(115deg)}}@-webkit-keyframes _1CYQu{0%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:rotate(180deg)}45%{transform:rotate(198deg)}55%{transform:rotate(234deg)}to{transform:rotate(540deg)}}@keyframes _1CYQu{0%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:rotate(180deg)}45%{transform:rotate(198deg)}55%{transform:rotate(234deg)}to{transform:rotate(540deg)}}.Sv44f.D2Qbg{-webkit-animation:_1CYQu 1s linear 1ms infinite;animation:_1CYQu 1s linear 1ms infinite;height:30px;left:50%;margin-left:-15px;margin-top:-15px;overflow:hidden;position:absolute;top:var(--preloaderTop,50%);transform-origin:100% 50%;width:15px}.Sv44f.D2Qbg:before{color:#7fccf7}.Sv44f.D2Qbg:after,.Sv44f.D2Qbg:before{content:"";top:0;left:0;right:-100%;bottom:0;border:3px solid currentColor;border-color:currentColor transparent transparent currentColor;border-radius:50%;position:absolute;transform:rotate(-45deg);-webkit-animation:lMM2r .5s linear 1ms infinite alternate;animation:lMM2r .5s linear 1ms infinite alternate}.Sv44f.D2Qbg:after{color:#3899ec;opacity:0}.Sv44f.D2Qbg._3bhOj:before{color:#f0f0f0}.Sv44f.D2Qbg._3bhOj:after{color:#dcdcdc}.Sv44f.kQk_f:after,.Sv44f.kQk_f:before{color:rgba(var(--color_15),var(--alpha-color_15,1))}._3kgor{position:fixed!important;width:100%!important;height:100%!important;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:var(--above-all-z-index);color:rgb(var(--txt,156,156,156))}._3kgor ._3rSaY{position:fixed;touch-action:manipulation;top:60px;right:60px;background:none;z-index:3}._3kgor ._3rSaY:hover{cursor:pointer}._3kgor ._3rSaY svg{width:25px;height:25px;stroke:param-color(clr,color_15);stroke-width:15;cursor:pointer;pointer-events:none;fill:rgba(var(--color_15),var(--alpha-color_15,1))}._3kgor[data-layout=popup] ._3rSaY{position:absolute;top:24px;right:24px}._3kgor ._3nDPE{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));position:fixed;top:0;right:0;bottom:0;left:0;visibility:visible;zoom:1;overflow:auto}._3kgor[data-layout=popup] ._3nDPE{background-color:#000;opacity:.6}._3kgor .aonqC{position:fixed;display:flex;flex-direction:column;align-items:center;overflow:auto}body:not(.device-mobile-optimized) ._3kgor .aonqC[data-dialogposition=center]>*{margin:auto}._3kgor[data-layout=fullscreen] .aonqC{width:100%;height:100%}._3kgor[data-layout=popup] .aonqC{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));box-sizing:border-box;max-height:100%}body.device-mobile-optimized ._3kgor[data-layout=popup] .aonqC{height:100%;width:100%}body:not(.device-mobile-optimized) ._3kgor[data-layout=popup] .aonqC{padding:70px 80px 80px;width:480px}._2KYMK,._3v1H-{width:100%;height:48px}._2KYMK button,._3v1H- button{box-sizing:border-box;--fnt:getVar(font_8);font-size:16px;--rd:0px;--trans1:bord er-color 0.4s ease 0s,background-color 0.4s ease 0s;--shd:none;--trans2:color 0.4s ease 0s;--bgd:204,204,204;--brdd:204,204,204;--txtd:255,255,255;--boxShadowToggleOn-shd:none;--alpha-txt:1;--alpha-brd:1;--alpha-txth:1;--alpha-bgh:1;--label-align:center;--label-text-align:center}._2KYMK{--brw:0px;--txt:var(--color_8);--bg:var(--color_18);--brd:var(--color_14);--bgh:var(--color_18);--brdh:var(--color_12);--txth:var(--color_11);--alpha-brdh:0;--alpha-bg:1;--shc-mutated-brightness:28,37,106;--alpha-bgh:0.7}._3v1H- button{--brw:1px;--txt:var(--color_15);--bg:(--color_11);--brd:var(--color_13);--bgh:var(--color_11);--brdh:var(--color_15);--txth:var(--color_15);--alpha-brdh:1;--alpha-bg:0;--shc-mutated-brightness:128,128,128}body:not(.device-mobile-optimized) ._2KYMK,body:not(.device-mobile-optimized) ._3v1H-{font-weight:300}body.device-mobile-optimized ._3kgor ._3rSaY{top:30px;right:30px;width:20px;height:20px}body.device-mobile-optimized ._3kgor ._3rSaY svg{width:16px;height:16px;stroke-width:12px}body.device-mobile-optimized ._3kgor ._3v1H- button{font-size:14px}._2nKSe{text-align:center}body:not(.device-mobile-optimized) ._2nKSe{position:relative;top:calc(50% - 230px)}body.device-mobile-optimized ._2nKSe{margin-top:40px;width:280px}._2nKSe._1lq-B{opacity:.6}._2nKSe ._15DDX{color:rgba(var(--color_15),var(--alpha-color_15,1));font:var(--ttlFnt,var(--font_2));font-size:48px;line-height:48px;margin-bottom:24px;margin-top:10px;padding-top:0;padding-bottom:0;text-align:center}body.device-mobile-optimized ._2nKSe ._15DDX{font-size:36px;margin-bottom:8px}body:not(.device-mobile-optimized) ._2nKSe ._6UDPd{width:auto;max-width:800px;display:inline-block}body:not(.device-mobile-optimized) ._2nKSe ._6UDPd._14jSF ._7e4-q{width:320px}body:not(.device-mobile-optimized) ._2nKSe ._6UDPd._14jSF ._1ABF8{border-right:1px solid param-color(secondary-color,color_13);margin:-20px 66px}._2nKSe ._6UDPd._14jSF ._3tCiR{position:relative;width:320px;margin:auto}body.device-mobile-optimized ._2nKSe ._6UDPd._14jSF ._3tCiR{margin-top:10px;width:100%}._2nKSe ._6UDPd._14jSF ._32GNY{font-size:14px;line-height:14px;text-decoration:underline}._2nKSe ._6UDPd._14jSF ._32GNY .hC8b0{float:none}._2nKSe ._6UDPd._2QSEv ._3tCiR{display:block}._2nKSe ._6UDPd._2QSEv ._1q-e7{display:block!important;margin:34px auto}body:not(.device-mobile-optimized) ._2nKSe ._6UDPd ._7e4-q{width:320px;margin:auto}._2nKSe ._6UDPd ._7e4-q ._1RlXb,._2nKSe ._6UDPd ._7e4-q .MQAj0{--textAlign:left;--shd:0.00px 2.00px 0px 0px rgba(var(--color_15),1);--rd:0px;--fnt:normal normal normal 15px/1.4em futura-lt-w01-book,sans-serif;--brw:0px;--bg:245,255,254;--txt:82,82,82;--brd:82,82,82;--txt2:var(--color_15);--brwh:0px;--bgh:232,255,253;--brdh:0,0,0;--brwf:0px;--bgf:245,255,254;--brdf:0,0,0;--brwe:1px;--bge:255,64,64;--brde:255,64,64;--trns:opacity 0.5s ease 0s,border 0.5s ease 0s,color 0.5s ease 0s;--bgd:204,204,204;--txtd:232,232,232;--brwd:1px;--brdd:219,219,219;--fntlbl:normal normal normal 15px/1.4em futura-lt-w01-book,sans-serif;--txtlbl:var(--color_15);--txtlblrq:null;--alpha-brdf:0;--alpha-brdh:0;--alpha-brd:1;--alpha-bgd:0;--alpha-bge:0;--alpha-bgf:0;--alpha-bg:0;--alpha-bgh:0;height:auto;--dir:ltr;--labelMarginBottom:14px;--inputHeight:37px;--textPadding:3px 3px 3px 0px;--labelPadding:0 20px 0 0px;--requiredIndicationDisplay:none}body:not(.device-mobile-optimized) ._2nKSe ._6UDPd ._3tCiR{width:320px;margin:auto}._2nKSe ._6UDPd ._3tCiR ._2Qh4_{width:100%;opacity:0;transition:opacity 1s ease-in}._2nKSe ._6UDPd ._3tCiR ._2Qh4_.EMAmg{opacity:1}._2nKSe ._6UDPd ._3tCiR ._3zEfu{opacity:0;transition:opacity 1s ease-in}._2nKSe ._6UDPd ._3tCiR ._3zEfu.EMAmg{opacity:1}._2nKSe ._1axeK{text-align:center;padding-top:0;margin-bottom:32px}._2nKSe ._1axeK ._1T3e4{color:rgba(var(--color_15),var(--alpha-color_15,1));margin-right:4px;margin-left:4px}body:not(.device-mobile-optimized) ._2nKSe ._1axeK ._1T3e4{font:var(--fnt,var(--font_8));font-size:18px}body.device-mobile-optimized ._2nKSe ._1axeK ._1T3e4{font:var(--fnt,var(--font_8));font-size:15px}._2nKSe ._1axeK .qTEkA{color:rgb(var(--txt,var(--color_18)));border-bottom:1px solid #0198ff;float:none;border:none;text-align:left;font-weight:400;text-decoration:none;cursor:pointer}body.device-mobile-optimized ._2nKSe ._1axeK .qTEkA{font:var(--fnt,var(--font_8));font-size:15px}body:not(.device-mobile-optimized) ._2nKSe ._1axeK .qTEkA{font:var(--fnt,var(--font_8));font-size:18px}._2nKSe ._1axeK .qTEkA:hover{border-bottom-color:#04f}._2nKSe ._3fqFH{width:320px;text-align:center;margin:12px auto 24px;height:11px;border-bottom:1px solid;border-color:rgba(var(--color_13),var(--alpha-color_13,1))}body.device-mobile-optimized ._2nKSe ._3fqFH{width:100%}._2nKSe ._3fqFH span{font:var(--fnt,var(--font_8));font-size:16px;color:rgba(var(--color_15),var(--alpha-color_15,1));background-color:rgba(var(--bg,var(--color_11)),var(--alpha-bg,1));padding:0 13px}._2nKSe ._1RlXb,._2nKSe .MQAj0{position:relative;margin-bottom:25px}._2nKSe ._2KYMK,._2nKSe ._3v1H-{position:relative;font:var(--font_8)}._2nKSe ._3v1H-{height:40px}._2nKSe ._2GLgU{font:var(--fnt,var(--font_8));color:rgba(var(--color_15),var(--alpha-color_15,1));font-size:16px;line-height:17px;text-decoration:underline;cursor:pointer;opacity:1;transition:opacity .2s ease-in-out;border:none;text-align:left}._2nKSe ._2GLgU:hover{opacity:.8;transition:opacity .2s ease-in-out}._2nKSe ._2GLgU._3q6f7{font-size:14px;line-height:14px;padding-top:24px}body.device-mobile-optimized ._2nKSe ._2GLgU._3TBnK,body:not(.device-mobile-optimized) ._2nKSe ._2GLgU._3q6f7{display:none}._2nKSe ._3gF_x{display:flex;justify-content:space-between;padding-top:13px;padding-bottom:18px}._1o9Hd{--preloaderTop:calc(50% - 1270px)}._2Qh4_,._3zEfu{width:100%}._3zEfu{height:32px}.dWWEK{display:none}._261Bs{margin-bottom:20px}._1Gsmj{margin-bottom:8px;color:#df3131;font-size:12px}.ureNT{position:fixed;bottom:0;left:0;background-color:#212121;padding:16px 20px;box-shadow:inset 0 4px 8px 0 #000,0 0 4px 0 #000;width:100%;font-size:16px;text-align:initial;color:#fff;visibility:hidden;opacity:0;transition:visibility .1s,opacity .1s linear;box-sizing:border-box}.IVl43{visibility:visible;opacity:1}._3lg4Z{margin:48px 0}._4ZNrK{width:280px;margin:0 auto}._2c16g{font:var(--fnt,var(--font_8));text-align:center}body:not(.device-mobile-optimized) ._2c16g{width:320px}._2c16g ._1N1kq{margin-bottom:13px;height:18px}._2c16g ._1N1kq ._24c7g{margin-right:12px;width:18px;height:18px}._2c16g ._1N1kq ._24c7g:last-child{margin-right:0}._2c16g ._2nB7r{font:var(--font_8);font-size:15px;font-weight:300}._2c16g ._2GwgW,._2c16g ._2nB7r{color:rgba(var(--color_15),var(--alpha-color_15,1));line-height:1.6}._2c16g ._2GwgW{text-decoration:underline;font:var(--font_8);font-size:15px;cursor:pointer;opacity:1;transition:opacity .2s ease-in-out}._2c16g ._2GwgW:hover{opacity:.8;transition:opacity .2s ease-in-out}._3SkbC{font:var(--font_8);display:flex;flex-direction:column;margin-top:48px;font-size:15px;line-height:1.6;text-align:center;color:rgba(var(--color_15),var(--alpha-color_15,1));font-weight:300}._3SkbC:empty{margin-top:0}._3SkbC ._1FJM2{color:rgba(var(--color_15),var(--alpha-color_15,1));font-weight:300;text-decoration:underline;cursor:pointer;opacity:1;transition:opacity .2s ease-in-out}._3SkbC ._1FJM2:hover{opacity:.8;transition:opacity .2s ease-in-out}.jkbsq{position:relative;align-self:center;font-size:15px;margin-bottom:10px;max-width:540px}body.device-mobile-optimized .jkbsq{width:100%}.jkbsq ._2K3ZN{display:flex;align-items:center;justify-content:center}body.device-mobile-optimized .jkbsq ._2K3ZN{margin-bottom:10px}.jkbsq ._2K3ZN label{margin-right:5px}.jkbsq ._2K3ZN button{text-decoration:underline;cursor:pointer;font-size:15px}.jkbsq ._2K3ZN input{margin:5px 10px 3px 0;width:12px;cursor:pointer;vertical-align:top}._1b8ap>:not(:last-child){margin-right:4px}._3Q5za{display:block}._1ggNP{--shd:none;--rd:0px;--fnt:var(--font_8);--brw:0px 0px 1px 0px;--bg:245,255,254;--txt:var(--color_15);--brd:var(--color_13);--txt2:var(--color_13);--brwh:0px 0px 1px 0px;--bgh:232,255,253;--brdh:var(--color_15);--brwf:0px 0px 1px 0px;--bgf:245,255,254;--brdf:var(--color_18);--brwe:1px;--bge:255,61,61;--brde:255,61,61;--trns:opacity 0.5s ease 0s,border 0.5s ease 0s,color 0.5s ease 0s;--bgd:204,204,204;--txtd:232,232,232;--brwd:1px;--brdd:219,219,219;--fntlbl:var(--font_8);--txtlbl:var(--color_14);--txtlblrq:null;--boxShadowToggleOn-shd:none;--alpha-brdf:1;--alpha-brdh:1;--alpha-brd:1;--alpha-bgd:0;--alpha-bge:0;--alpha-bgf:0;--alpha-bg:0;--alpha-bgh:0;height:53px;--dir:ltr;--textAlign:left;--textPadding:2px;--labelMarginBottom:0;--inputHeight:26px;--labelPadding:0 20px 0 0px;--requiredIndicationDisplay:none}._1ggNP._2oEKP input{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}._1ggNP span{font:var(--font_8);display:block;padding-top:4px;color:#ff3d3d;text-align:left;font-size:12px}._1ggNP input[type=email]{font-size:16px}._1ggNP input[type=password],body.device-mobile-optimized ._1ggNP input[type=email]{font-size:14px}._1ggNP input::-moz-placeholder{font-size:16px}._1ggNP input:-ms-input-placeholder{font-size:16px}._1ggNP input::placeholder{font-size:16px}._1ggNP label{font-size:16px}.Captcha4108226129__root{position:relative}.Captcha4108226129__root .Captcha4108226129__captcha{display:none}.Captcha4108226129__root.Captcha4108226129--loaded .Captcha4108226129__captcha{display:block}.Captcha4108226129__root.Captcha4108226129--loaded.Captcha4108226129--isMobileFriendly .Captcha4108226129__captcha{transform:scale(.77);transform-origin:top left}.Captcha4108226129__root .Captcha4108226129__checkbox{position:absolute;opacity:0;bottom:0;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.m1MV9{position:fixed!important;width:100%!important;height:100%!important;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:var(--above-all-z-index);color:rgb(var(--txt,156,156,156))}.m1MV9 ._10uXQ{position:fixed;touch-action:manipulation;top:60px;right:60px;background:none;z-index:3}.m1MV9 ._10uXQ:hover{cursor:pointer}.m1MV9 ._10uXQ svg{width:25px;height:25px;stroke:param-color(clr,color_15);stroke-width:15;cursor:pointer;pointer-events:none;fill:rgba(var(--color_15),var(--alpha-color_15,1))}.m1MV9[data-layout=popup] ._10uXQ{position:absolute;top:24px;right:24px}.m1MV9 ._9_QIp{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));position:fixed;top:0;right:0;bottom:0;left:0;visibility:visible;zoom:1;overflow:auto}.m1MV9[data-layout=popup] ._9_QIp{background-color:#000;opacity:.6}.m1MV9 ._3g1fN{position:fixed;display:flex;flex-direction:column;align-items:center;overflow:auto}body:not(.device-mobile-optimized) .m1MV9 ._3g1fN[data-dialogposition=center]>*{margin:auto}.m1MV9[data-layout=fullscreen] ._3g1fN{width:100%;height:100%}.m1MV9[data-layout=popup] ._3g1fN{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));box-sizing:border-box;max-height:100%}body.device-mobile-optimized .m1MV9[data-layout=popup] ._3g1fN{height:100%;width:100%}body:not(.device-mobile-optimized) .m1MV9[data-layout=popup] ._3g1fN{padding:70px 80px 80px;width:480px}._2oziF,.XIv2V{width:100%;height:48px}._2oziF button,.XIv2V button{box-sizing:border-box;--fnt:getVar(font_8);font-size:16px;--rd:0px;--trans1:bord er-color 0.4s ease 0s,background-color 0.4s ease 0s;--shd:none;--trans2:color 0.4s ease 0s;--bgd:204,204,204;--brdd:204,204,204;--txtd:255,255,255;--boxShadowToggleOn-shd:none;--alpha-txt:1;--alpha-brd:1;--alpha-txth:1;--alpha-bgh:1;--label-align:center;--label-text-align:center}.XIv2V{--brw:0px;--txt:var(--color_8);--bg:var(--color_18);--brd:var(--color_14);--bgh:var(--color_18);--brdh:var(--color_12);--txth:var(--color_11);--alpha-brdh:0;--alpha-bg:1;--shc-mutated-brightness:28,37,106;--alpha-bgh:0.7}._2oziF button{--brw:1px;--txt:var(--color_15);--bg:(--color_11);--brd:var(--color_13);--bgh:var(--color_11);--brdh:var(--color_15);--txth:var(--color_15);--alpha-brdh:1;--alpha-bg:0;--shc-mutated-brightness:128,128,128}body:not(.device-mobile-optimized) ._2oziF,body:not(.device-mobile-optimized) .XIv2V{font-weight:300}body.device-mobile-optimized .m1MV9 ._10uXQ{top:30px;right:30px;width:20px;height:20px}body.device-mobile-optimized .m1MV9 ._10uXQ svg{width:16px;height:16px;stroke-width:12px}body.device-mobile-optimized .m1MV9 ._2oziF button{font-size:14px}._2iiFd{text-align:center}body:not(.device-mobile-optimized) ._2iiFd{position:relative;top:calc(50% - 230px)}body.device-mobile-optimized ._2iiFd{margin-top:40px;width:280px}._2iiFd._338x7{opacity:.6}._2iiFd ._3MX-O{color:rgba(var(--color_15),var(--alpha-color_15,1));font:var(--ttlFnt,var(--font_2));font-size:48px;line-height:48px;margin-bottom:24px;margin-top:10px;padding-top:0;padding-bottom:0;text-align:center}body.device-mobile-optimized ._2iiFd ._3MX-O{font-size:36px;margin-bottom:8px}body:not(.device-mobile-optimized) ._2iiFd .gwbOA{width:auto;max-width:800px;display:inline-block}body:not(.device-mobile-optimized) ._2iiFd .gwbOA._1XPg8 .g4lFC{width:320px}body:not(.device-mobile-optimized) ._2iiFd .gwbOA._1XPg8 .xXUD6{border-right:1px solid param-color(secondary-color,color_13);margin:-20px 66px}._2iiFd .gwbOA._1XPg8 ._1GfG1{position:relative;width:320px;margin:auto}body.device-mobile-optimized ._2iiFd .gwbOA._1XPg8 ._1GfG1{margin-top:10px;width:100%}._2iiFd .gwbOA._1XPg8 ._3_VaM{font-size:14px;line-height:14px;text-decoration:underline}._2iiFd .gwbOA._1XPg8 ._3_VaM ._2DBqe{float:none}._2iiFd .gwbOA._1gnMd ._1GfG1{display:block}._2iiFd .gwbOA._1gnMd ._3a1aA{display:block!important;margin:34px auto}body:not(.device-mobile-optimized) ._2iiFd .gwbOA .g4lFC{width:320px;margin:auto}._2iiFd .gwbOA .g4lFC .Hj-WZ,._2iiFd .gwbOA .g4lFC .VydXt{--textAlign:left;--shd:0.00px 2.00px 0px 0px rgba(var(--color_15),1);--rd:0px;--fnt:normal normal normal 15px/1.4em futura-lt-w01-book,sans-serif;--brw:0px;--bg:245,255,254;--txt:82,82,82;--brd:82,82,82;--txt2:var(--color_15);--brwh:0px;--bgh:232,255,253;--brdh:0,0,0;--brwf:0px;--bgf:245,255,254;--brdf:0,0,0;--brwe:1px;--bge:255,64,64;--brde:255,64,64;--trns:opacity 0.5s ease 0s,border 0.5s ease 0s,color 0.5s ease 0s;--bgd:204,204,204;--txtd:232,232,232;--brwd:1px;--brdd:219,219,219;--fntlbl:normal normal normal 15px/1.4em futura-lt-w01-book,sans-serif;--txtlbl:var(--color_15);--txtlblrq:null;--alpha-brdf:0;--alpha-brdh:0;--alpha-brd:1;--alpha-bgd:0;--alpha-bge:0;--alpha-bgf:0;--alpha-bg:0;--alpha-bgh:0;height:auto;--dir:ltr;--labelMarginBottom:14px;--inputHeight:37px;--textPadding:3px 3px 3px 0px;--labelPadding:0 20px 0 0px;--requiredIndicationDisplay:none}body:not(.device-mobile-optimized) ._2iiFd .gwbOA ._1GfG1{width:320px;margin:auto}._2iiFd .gwbOA ._1GfG1 ._3CZeg{width:100%;opacity:0;transition:opacity 1s ease-in}._2iiFd .gwbOA ._1GfG1 ._3CZeg._3PFTR{opacity:1}._2iiFd .gwbOA ._1GfG1 ._140Fu{opacity:0;transition:opacity 1s ease-in}._2iiFd .gwbOA ._1GfG1 ._140Fu._3PFTR{opacity:1}._2iiFd .FPiye{text-align:center;padding-top:0;margin-bottom:32px}._2iiFd .FPiye .nJUqU{color:rgba(var(--color_15),var(--alpha-color_15,1));margin-right:4px;margin-left:4px}body:not(.device-mobile-optimized) ._2iiFd .FPiye .nJUqU{font:var(--fnt,var(--font_8));font-size:18px}body.device-mobile-optimized ._2iiFd .FPiye .nJUqU{font:var(--fnt,var(--font_8));font-size:15px}._2iiFd .FPiye ._2tNZN{color:rgb(var(--txt,var(--color_18)));border-bottom:1px solid #0198ff;float:none;border:none;text-align:left;font-weight:400;text-decoration:none;cursor:pointer}body.device-mobile-optimized ._2iiFd .FPiye ._2tNZN{font:var(--fnt,var(--font_8));font-size:15px}body:not(.device-mobile-optimized) ._2iiFd .FPiye ._2tNZN{font:var(--fnt,var(--font_8));font-size:18px}._2iiFd .FPiye ._2tNZN:hover{border-bottom-color:#04f}._2iiFd ._1OTcP{width:320px;text-align:center;margin:12px auto 24px;height:11px;border-bottom:1px solid;border-color:rgba(var(--color_13),var(--alpha-color_13,1))}body.device-mobile-optimized ._2iiFd ._1OTcP{width:100%}._2iiFd ._1OTcP span{font:var(--fnt,var(--font_8));font-size:16px;color:rgba(var(--color_15),var(--alpha-color_15,1));background-color:rgba(var(--bg,var(--color_11)),var(--alpha-bg,1));padding:0 13px}._2iiFd .Hj-WZ,._2iiFd .VydXt{position:relative;margin-bottom:25px}._2iiFd ._2oziF,._2iiFd .XIv2V{position:relative;font:var(--font_8)}._2iiFd ._2oziF{height:40px}._2iiFd ._1H91a{font:var(--fnt,var(--font_8));color:rgba(var(--color_15),var(--alpha-color_15,1));font-size:16px;line-height:17px;text-decoration:underline;cursor:pointer;opacity:1;transition:opacity .2s ease-in-out;border:none;text-align:left}._2iiFd ._1H91a:hover{opacity:.8;transition:opacity .2s ease-in-out}._2iiFd ._1H91a._2q9pJ{font-size:14px;line-height:14px;padding-top:24px}body.device-mobile-optimized ._2iiFd ._1H91a._14lTW,body:not(.device-mobile-optimized) ._2iiFd ._1H91a._2q9pJ{display:none}._2iiFd ._3Pcpx{display:flex;justify-content:space-between;padding-top:13px;padding-bottom:18px}._1H70r{--preloaderTop:calc(50% - 1270px)}._3CZeg,._140Fu{width:100%}._140Fu{height:32px}.rFhKZ{display:none}._72Y5k{margin-bottom:20px}.hrzD9{margin-bottom:8px;color:#df3131;font-size:12px}._1j_EM{position:fixed;bottom:0;left:0;background-color:#212121;padding:16px 20px;box-shadow:inset 0 4px 8px 0 #000,0 0 4px 0 #000;width:100%;font-size:16px;text-align:initial;color:#fff;visibility:hidden;opacity:0;transition:visibility .1s,opacity .1s linear;box-sizing:border-box}._27IRq{visibility:visible;opacity:1}.l13MR{margin:48px 0}._3A2wL{width:280px;margin:0 auto}._2zjnY{font:var(--fnt,var(--font_8));text-align:center}body:not(.device-mobile-optimized) ._2zjnY{width:320px}._2zjnY .EVGAJ{margin-bottom:13px;height:18px}._2zjnY .EVGAJ ._1AW23{margin-right:12px;width:18px;height:18px}._2zjnY .EVGAJ ._1AW23:last-child{margin-right:0}._2zjnY ._3u6-f{font:var(--font_8);font-size:15px;font-weight:300}._2zjnY ._1ysiC,._2zjnY ._3u6-f{color:rgba(var(--color_15),var(--alpha-color_15,1));line-height:1.6}._2zjnY ._1ysiC{text-decoration:underline;font:var(--font_8);font-size:15px;cursor:pointer;opacity:1;transition:opacity .2s ease-in-out}._2zjnY ._1ysiC:hover{opacity:.8;transition:opacity .2s ease-in-out}._11F4V{position:fixed!important;width:100%!important;height:100%!important;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:var(--above-all-z-index);color:rgb(var(--txt,156,156,156))}._11F4V ._8vZ-e{position:fixed;touch-action:manipulation;top:60px;right:60px;background:none;z-index:3}._11F4V ._8vZ-e:hover{cursor:pointer}._11F4V ._8vZ-e svg{width:25px;height:25px;stroke:param-color(clr,color_15);stroke-width:15;cursor:pointer;pointer-events:none;fill:rgba(var(--color_15),var(--alpha-color_15,1))}._11F4V[data-layout=popup] ._8vZ-e{position:absolute;top:24px;right:24px}._11F4V .WmezM{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));position:fixed;top:0;right:0;bottom:0;left:0;visibility:visible;zoom:1;overflow:auto}._11F4V[data-layout=popup] .WmezM{background-color:#000;opacity:.6}._11F4V .akXcv{position:fixed;display:flex;flex-direction:column;align-items:center;overflow:auto}body:not(.device-mobile-optimized) ._11F4V .akXcv[data-dialogposition=center]>*{margin:auto}._11F4V[data-layout=fullscreen] .akXcv{width:100%;height:100%}._11F4V[data-layout=popup] .akXcv{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));box-sizing:border-box;max-height:100%}body.device-mobile-optimized ._11F4V[data-layout=popup] .akXcv{height:100%;width:100%}body:not(.device-mobile-optimized) ._11F4V[data-layout=popup] .akXcv{padding:70px 80px 80px;width:480px}._1Axwi,._3l8yw{width:100%;height:48px}._1Axwi button,._3l8yw button{box-sizing:border-box;--fnt:getVar(font_8);font-size:16px;--rd:0px;--trans1:bord er-color 0.4s ease 0s,background-color 0.4s ease 0s;--shd:none;--trans2:color 0.4s ease 0s;--bgd:204,204,204;--brdd:204,204,204;--txtd:255,255,255;--boxShadowToggleOn-shd:none;--alpha-txt:1;--alpha-brd:1;--alpha-txth:1;--alpha-bgh:1;--label-align:center;--label-text-align:center}._3l8yw{--brw:0px;--txt:var(--color_8);--bg:var(--color_18);--brd:var(--color_14);--bgh:var(--color_18);--brdh:var(--color_12);--txth:var(--color_11);--alpha-brdh:0;--alpha-bg:1;--shc-mutated-brightness:28,37,106;--alpha-bgh:0.7}._1Axwi button{--brw:1px;--txt:var(--color_15);--bg:(--color_11);--brd:var(--color_13);--bgh:var(--color_11);--brdh:var(--color_15);--txth:var(--color_15);--alpha-brdh:1;--alpha-bg:0;--shc-mutated-brightness:128,128,128}body:not(.device-mobile-optimized) ._1Axwi,body:not(.device-mobile-optimized) ._3l8yw{font-weight:300}body.device-mobile-optimized ._11F4V ._8vZ-e{top:30px;right:30px;width:20px;height:20px}body.device-mobile-optimized ._11F4V ._8vZ-e svg{width:16px;height:16px;stroke-width:12px}body.device-mobile-optimized ._11F4V ._1Axwi button{font-size:14px}._2TkGT{position:fixed!important;width:100%!important;height:100%!important;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:var(--above-all-z-index);color:rgb(var(--txt,156,156,156))}._2TkGT ._3DZp7{position:fixed;touch-action:manipulation;top:60px;right:60px;background:none;z-index:3}._2TkGT ._3DZp7:hover{cursor:pointer}._2TkGT ._3DZp7 svg{width:25px;height:25px;stroke:param-color(clr,color_15);stroke-width:15;cursor:pointer;pointer-events:none;fill:rgba(var(--color_15),var(--alpha-color_15,1))}._2TkGT[data-layout=popup] ._3DZp7{position:absolute;top:24px;right:24px}._2TkGT ._2gOCx{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));position:fixed;top:0;right:0;bottom:0;left:0;visibility:visible;zoom:1;overflow:auto}._2TkGT[data-layout=popup] ._2gOCx{background-color:#000;opacity:.6}._2TkGT ._3aote{position:fixed;display:flex;flex-direction:column;align-items:center;overflow:auto}body:not(.device-mobile-optimized) ._2TkGT ._3aote[data-dialogposition=center]>*{margin:auto}._2TkGT[data-layout=fullscreen] ._3aote{width:100%;height:100%}._2TkGT[data-layout=popup] ._3aote{background-color:rgba(var(--bg-clr,var(--color_11)),var(--alpha-bg-clr,1));box-sizing:border-box;max-height:100%}body.device-mobile-optimized ._2TkGT[data-layout=popup] ._3aote{height:100%;width:100%}body:not(.device-mobile-optimized) ._2TkGT[data-layout=popup] ._3aote{padding:70px 80px 80px;width:480px}._3a1n2,.ks_Cr{width:100%;height:48px}._3a1n2 button,.ks_Cr button{box-sizing:border-box;--fnt:getVar(font_8);font-size:16px;--rd:0px;--trans1:bord er-color 0.4s ease 0s,background-color 0.4s ease 0s;--shd:none;--trans2:color 0.4s ease 0s;--bgd:204,204,204;--brdd:204,204,204;--txtd:255,255,255;--boxShadowToggleOn-shd:none;--alpha-txt:1;--alpha-brd:1;--alpha-txth:1;--alpha-bgh:1;--label-align:center;--label-text-align:center}.ks_Cr{--brw:0px;--txt:var(--color_8);--bg:var(--color_18);--brd:var(--color_14);--bgh:var(--color_18);--brdh:var(--color_12);--txth:var(--color_11);--alpha-brdh:0;--alpha-bg:1;--shc-mutated-brightness:28,37,106;--alpha-bgh:0.7}._3a1n2 button{--brw:1px;--txt:var(--color_15);--bg:(--color_11);--brd:var(--color_13);--bgh:var(--color_11);--brdh:var(--color_15);--txth:var(--color_15);--alpha-brdh:1;--alpha-bg:0;--shc-mutated-brightness:128,128,128}body:not(.device-mobile-optimized) ._3a1n2,body:not(.device-mobile-optimized) .ks_Cr{font-weight:300}body.device-mobile-optimized ._2TkGT ._3DZp7{top:30px;right:30px;width:20px;height:20px}body.device-mobile-optimized ._2TkGT ._3DZp7 svg{width:16px;height:16px;stroke-width:12px}body.device-mobile-optimized ._2TkGT ._3a1n2 button{font-size:14px}.tZwHx,.tZwHx ._3m7KS{text-align:center}.tZwHx ._3m7KS{font:var(--headingL,var(--font_2));font-size:48px;line-height:.8em;margin-bottom:23px;margin-top:10px;padding-top:0;padding-bottom:0}.tZwHx ._3m7KS,.tZwHx ._3xtJ7{color:rgba(var(--clr,var(--color_15)),var(--alpha-clr,1))}.tZwHx ._3xtJ7{background:transparent;font-family:Helvetica}body.device-mobile-optimized .tZwHx ._3xtJ7{width:100%}.tZwHx ._3xtJ7 ._1klxb{font:var(--fnt,var(--font_8));font-size:18px;color:rgba(var(--clr,var(--color_15)),var(--alpha-clr,1));text-align:center;margin-top:0;padding-bottom:60px}.tZwHx ._3xtJ7 .JFaos{width:100%;padding-bottom:0}.tZwHx ._3xtJ7 .ks_Cr{font:var(--font_8);font-size:16px;margin-top:25px;position:relative}body:not(.device-mobile-optimized) .tZwHx ._3xtJ7 .ks_Cr{width:320px}body.device-mobile-optimized .tZwHx{width:280px;margin-top:74px}body.device-mobile-optimized .tZwHx ._3m7KS{line-height:.8em;margin-bottom:18px;font-size:36px}body.device-mobile-optimized .tZwHx ._3xtJ7{height:auto;padding:0 0 20px}body.device-mobile-optimized .tZwHx ._3xtJ7 ._1klxb{font-size:15px;margin-top:18px;padding-bottom:35px}body:not(.device-mobile-optimized) .tZwHx ._3xtJ7{width:320px;max-width:450px;display:inline-block}._1FsS0{position:relative;min-height:25px;display:flex;flex-direction:column}._1FsS0 .ABx0f{height:var(--inputHeight);position:relative}._1FsS0 .aawvf{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);position:absolute;left:0;top:0;width:50px;min-height:100%;max-height:100%;display:flex;justify-content:center;align-items:center}._1FsS0 ._3rh7f,._1FsS0 .aawvf{color:var(--corvid-color,rgb(var(--txt,var(--color_15))))}._1FsS0 ._3rh7f{box-shadow:var(--shd,0 0 0 transparent);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));box-sizing:border-box!important;border-style:solid;padding:var(--textPadding);margin:0;max-width:100%;text-overflow:ellipsis;text-align:var(--textAlign);direction:var(--dir);min-height:var(--inputHeight);width:100%}._1FsS0 ._3rh7f[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;width:100%}._1FsS0 ._3rh7f::-moz-placeholder{color:rgb(var(--txt2,var(--color_15)))}._1FsS0 ._3rh7f:-ms-input-placeholder{color:rgb(var(--txt2,var(--color_15)))}._1FsS0 ._3rh7f::placeholder{color:rgb(var(--txt2,var(--color_15)))}._1FsS0 ._3rh7f:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}._1FsS0 ._3rh7f:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}._1FsS0:not(._2DgfU) ._3rh7f:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}._1FsS0._2DgfU ._3rh7f:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}._1FsS0._2DgfU ._3rh7f:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}._1FsS0 ._1qrSw{display:none}._1FsS0._36G3j ._1qrSw{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15)));word-break:break-word;display:inline-block;line-height:1;margin-bottom:var(--labelMarginBottom);padding:var(--labelPadding);text-align:var(--textAlign);direction:var(--dir)}._1FsS0._36G3j._19QH- ._1qrSw:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}._3KHpU{display:flex;flex-direction:column}._3KHpU .ABx0f{flex:1;display:flex;flex-direction:column;position:relative}._3KHpU .aawvf{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);position:absolute;left:0;top:0;width:50px;max-height:100%;display:flex;justify-content:center;align-items:center}._3KHpU ._3rh7f,._3KHpU .aawvf{color:var(--corvid-color,rgb(var(--txt,var(--color_15))));min-height:100%}._3KHpU ._3rh7f{box-shadow:var(--shd,0 0 0 transparent);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));box-sizing:border-box!important;border-style:solid;padding:var(--textPadding);margin:0;width:100%;flex:1;text-overflow:ellipsis;text-align:var(--textAlign);direction:var(--dir)}._3KHpU ._3rh7f[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield}._3KHpU ._3rh7f::-moz-placeholder{color:rgb(var(--txt2,var(--color_15)))}._3KHpU ._3rh7f:-ms-input-placeholder{color:rgb(var(--txt2,var(--color_15)))}._3KHpU ._3rh7f::placeholder{color:rgb(var(--txt2,var(--color_15)))}._3KHpU ._3rh7f:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}._3KHpU ._3rh7f:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}._3KHpU:not(._2DgfU) ._3rh7f:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}._3KHpU._2DgfU ._3rh7f:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}._3KHpU._2DgfU ._3rh7f:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}._3KHpU ._1qrSw{display:none}._3KHpU._36G3j ._1qrSw{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15)));word-break:break-word;display:inline-block;line-height:1;margin-bottom:var(--labelMarginBottom);padding:var(--labelPadding);text-align:var(--textAlign);direction:var(--dir)}._3KHpU._36G3j._19QH- ._1qrSw:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/SearchBox.60c0f4aa.chunk.min.css">#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .search-box-component-focus-ring-visible{box-shadow:0 0 0 1px #fff,0 0 0 3px #116dff!important;z-index:999}._3k95X{--alpha-searchBoxBackgroundColor:var(--alpha-inputBackgroundColor,1);--alpha-searchInputIconColor:var(--alpha-inputIconColor,1);--borderAlpha:var(--alpha-inputBorderColor,1);--borderColor:var(--inputBorderColor,$inputBorderColorFallback);--borderWidth:var(--inputBorderWidth,$inputDefaultBorderWidth);--leftBorderWidth:var(--input-left-border-width,inputDefaultBorderWidth);--searchBoxBackgroundColor:var(--inputBackgroundColor,$inputBackgroundColorFallback);--searchInputIconColor:var(--inputIconColor,var(--color_15));display:grid}._3k95X:hover{--alpha-searchBoxBackgroundColor:var(--alpha-inputHoverBackgroundColor,1);--alpha-searchInputIconColor:1;--borderAlpha:var(--alpha-inputHoverBorderColor,1);--borderColor:var(--inputHoverBorderColor,$inputBorderColorFallback);--borderWidth:var(--inputHoverBorderWidth,$inputDefaultBorderWidth);--leftBorderWidth:var(--input-hover-left-border-width,inputDefaultBorderWidth);--searchBoxBackgroundColor:var(--inputHoverBackgroundColor,$inputBackgroundColorFallback);--searchInputIconColor:var(--inputHoverIconColor,var(--color_15))}._3k95X._2Y0Ez,._3k95X:focus-within,._3k95X:focus-within:hover{--alpha-searchBoxBackgroundColor:var(--alpha-inputFocusBackgroundColor,1);--alpha-searchInputIconColor:1;--borderAlpha:var(--alpha-inputFocusBorderColor,1);--borderColor:var(--inputFocusBorderColor,$inputBorderColorFallback);--borderWidth:var(--inputFocusBorderWidth,$inputDefaultBorderWidth);--leftBorderWidth:var(--input-focus-left-border-width,inputDefaultBorderWidth);--searchBoxBackgroundColor:var(--inputFocusBackgroundColor,$inputBackgroundColorFallback);--searchInputIconColor:var(--inputFocusIconColor,var(--color_15))}._249eT{box-sizing:border-box;cursor:text;display:flex;height:100%;overflow:hidden;width:100%}body:not(.device-mobile-optimized) ._249eT._39ReI{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:0}._1JyyC{--alpha-inputFocusBackgroundColor:1;--box-border-color:RGBA(var(--borderColor),var(--borderAlpha));font:var(--inputFont,var(--font_8));border-color:var(--box-border-color);border-style:solid;border-width:var(--borderWidth);box-shadow:var(--inputShadow,none);box-sizing:border-box;color:rgba(var(--inputTextColor,var(--color_15)),var(--alpha-inputTextColor,1));display:grid;min-height:100%;overflow:hidden;position:absolute;top:0;width:100%}._1JyyC,._1JyyC>:last-child{border-radius:var(--inputBorderRadius,0)}._1JyyC>:last-child{border-top-left-radius:0;border-top-right-radius:0}._1JyyC._2wVdu{z-index:1000;height:auto;min-width:280px}._1JyyC._2wVdu ._1vLGn{height:calc(var(--component-height) - var(--input-focus-bottom-border-width, 1px))}._1JyyC._2wVdu ._3Ee3y{min-width:calc(280px - 2 * var(--input-focus-left-border-width, 1px))}._1JyyC._2wVdu ._3Ee3y ._3FN8G{overflow:auto;background:rgba(var(--inputFocusBackgroundColor,var(--color_11)),var(--alpha-inputFocusBackgroundColor,1));pointer-events:auto;max-height:480px}._1JyyC ._3SFtY:hover,._1JyyC ._3SFtY[aria-selected=true]{background:RGBA(var(--inputTextColor,color_15),.05)}body.device-mobile-optimized ._3Ee3y{display:none}.eqAVD{display:flex;padding:10px 20px;cursor:pointer}.eqAVD ._3RI71{margin-left:12px;display:flex;flex-direction:column;min-width:0;justify-content:center}.eqAVD ._3RI71:first-child{margin-left:0}.eqAVD ._3jFDY{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;flex:0 0 auto;height:55px;width:73px;box-sizing:border-box}.eqAVD ._3jFDY._1tFgG{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzYiIGhlaWdodD0iMTI0Ij48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiM5REE1QUYiIGQ9Ik0wIDBoMTc2djEyNEgweiIvPjxwYXRoIGZpbGw9IiNEN0RDRTIiIGQ9Ik05OS43MjEgNDhIMTA5YTQgNCAwIDAxNCA0djI2YTQgNCAwIDAxLTQgNEg2OGE0IDQgMCAwMS00LTRWNTJhNCA0IDAgMDE0LTRoOS4yOTRsMS41NS01LjI4MmExIDEgMCAwMS45Ni0uNzE4SDk3LjI5YTEgMSAwIDAxLjk2NC43MzJMOTkuNzIgNDh6TTg4LjUgNzUuNUM5NC4yOTkgNzUuNSA5OSA3MC43OTkgOTkgNjVzLTQuNzAxLTEwLjUtMTAuNS0xMC41Uzc4IDU5LjIwMSA3OCA2NXM0LjcwMSAxMC41IDEwLjUgMTAuNXoiLz48L2c+PC9zdmc+")}.eqAVD ._3jFDY._1kpns{position:relative;overflow:hidden;background-color:#eee}.eqAVD ._3jFDY._1kpns:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-image:linear-gradient(90deg,hsla(0,0%,88.2%,0),#e0e0e0 51%,hsla(0,0%,90.6%,0));-webkit-animation-name:_2K7Rz;animation-name:_2K7Rz;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.eqAVD ._3BuZ1{line-height:1.5}.eqAVD ._3BuZ1,.eqAVD ._3fMrs{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.eqAVD ._3fMrs{font-size:.75em;line-height:1.42;margin-top:4px}@-webkit-keyframes _2K7Rz{0%{transform:translateX(-100%)}to{transform:translateX(100%)}}@keyframes _2K7Rz{0%{transform:translateX(-100%)}to{transform:translateX(100%)}}._10ZhY{font:var(--inputFont,var(--font_8));padding:20px 20px 11px 20px;line-height:1.5}._10ZhY .D06ur{display:flex;justify-content:space-between}._10ZhY ._3tjoI{margin-top:8px;height:1px;background:rgba(var(--color_15),var(--alpha-color_15,1));opacity:.3}._10ZhY ._3Yybn{font-size:.9em;opacity:.8;transition:opacity .2s;flex-shrink:0;color:inherit}._10ZhY ._3Yybn:hover{opacity:1}._2v-B0{font:var(--inputFont,var(--font_8));--footer-text-opacity:0.6;background:rgba(var(--inputFocusBackgroundColor,var(--color_11)),var(--alpha-inputFocusBackgroundColor,1));padding:12px 20px;display:flex;align-items:center;transition:opacity .2s;height:38px;box-sizing:border-box;color:inherit;outline:none;text-decoration:none;cursor:pointer;width:100%;pointer-events:auto}._2v-B0:hover{--footer-text-opacity:1}._2v-B0 ._3KXu1{width:12px;height:12px;margin-right:12px;flex-shrink:0}._2v-B0 ._1df_W,._2v-B0 ._3KXu1{opacity:var(--footer-text-opacity)}._2v-B0 ._1df_W{font-size:.75em;line-height:1.5;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.lF8Fv{align-items:center;background-color:rgba(var(--searchBoxBackgroundColor),var(--alpha-searchBoxBackgroundColor,1));display:flex;flex-direction:var(--container-direction,row);flex-grow:1;overflow:hidden}.lF8Fv ._2FB6v{width:calc(var(--icon-spacing, $fallbackIconSpacing) - var(--leftBorderWidth) + var(--input-left-border-width, inputDefaultBorderWidth));flex-shrink:0}.lF8Fv ._2_MY-,.lF8Fv ._2FB6v{display:var(--search-icon-display,flex)}.lF8Fv ._2_MY-{color:rgba(var(--searchInputIconColor,var(--color_15)),var(--alpha-searchInputIconColor,1))}.lF8Fv .dzPrM{align-items:center;background:rgba(var(--buttonBackgroundColor,var(--color_15)),var(--alpha-buttonBackgroundColor,1));border:solid rgba(var(--inputBorderColor,var(--color_15)),var(--alpha-inputBorderColor,1)) var(--borderWidth);border-right:none;border-top:none;border-bottom:none;color:rgb(var(--buttonIconColor,var(--color_11)));cursor:pointer;display:var(--search-button-display,none);height:100%;padding-left:var(--icon-spacing);padding-right:var(--icon-spacing)}.lF8Fv .dzPrM:hover{background:rgba(var(--buttonHoverBackgroundColor,var(--color_15)),var(--alpha-buttonHoverBackgroundColor,1))}.lF8Fv .dzPrM:focus{box-shadow:inset 0 0 0 2px #116dff,inset 0 0 0 3px #fff;z-index:999}._3rrF8{flex-shrink:0;font:var(--inputFont,var(--font_8));height:.9em;max-height:50px;max-width:50px;min-height:14px;min-width:14px;width:.9em}._3rrF8 svg{display:block}._23ru3{--bgf:transparent;--bgh:transparent;--bg:transparent;--brw:0;--brwf:0;--brwh:0;--shd:none;--fnt:var(--inputFont,var(--font_8));--textAlign:var(--input-text-align);--textPadding:var(--text-padding);--txt:var(--inputTextColor);--txt2:var(--inputPlaceholderColor);align-items:center;margin-right:42px;margin-left:var(--text-spacing);overflow:hidden;width:100%;display:flex}._23ru3._2W0DN{margin-right:0}._23ru3 input[type=search]{-webkit-appearance:none;-moz-appearance:none}._23ru3 input[type=search]::-webkit-search-cancel-button,._23ru3 input[type=search]::-webkit-search-decoration,._23ru3 input[type=search]::-webkit-search-results-button,._23ru3 input[type=search]::-webkit-search-results-decoration{display:none}.we6XB{flex-grow:1;flex-shrink:1;overflow:hidden}body.device-mobile-optimized ._23ru3{margin-right:38px}body.device-mobile-optimized ._23ru3._2W0DN{margin-right:0}._1Lj0F{color:rgb(var(--inputTextColor,var(--color_15)));cursor:pointer;display:flex;opacity:.6;margin-left:15px;margin-right:15px}body.device-mobile-optimized ._1Lj0F{margin-top:1px}._1Lj0F:hover{color:rgb(var(--inputHoverTextColor,var(--color_15)))}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/LoginSocialBar.afc6547d.chunk.min.css">._1NSXQ{display:flex;align-items:center;box-sizing:border-box;background-color:rgba(var(--bg,0,0,0),var(--alpha-bg,0));border:var(--brw,0) solid rgba(var(--brd,var(--color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 transparent)}._27KJ3{display:block;overflow:hidden;flex-shrink:0;padding-left:7px;padding-right:7px;fill:rgba(var(--fillcolor,var(--color_0)),var(--alpha-fillcolor,1));fill-opacity:var(--alpha-fillcolor)}._27KJ3,._27KJ3 .c0mZI,._27KJ3 svg{width:var(--icon-size,26px);height:var(--icon-size,26px)}._27KJ3 .c0mZI,._27KJ3 svg{position:static}._27KJ3 img{border-radius:50%}._2PFxe,._345YM{cursor:pointer;display:flex;align-items:center;white-space:nowrap;padding-top:6px;padding-bottom:6px;position:relative;min-width:0}._2PFxe,._345YM,._345YM ._11T5N{padding-left:7px;padding-right:7px;color:rgb(var(--txt,var(--color_18)));font:var(--fnt,var(--font_8))}._345YM ._11T5N{overflow:hidden;text-overflow:ellipsis;min-width:60px}._345YM ._1-aWG{padding-left:7px;padding-right:7px}._345YM ._1-aWG path{fill:rgb(var(--txt,var(--color_18)))}._345YM:hover ._11T5N{color:rgb(var(--txth,var(--color_17)))}._345YM:hover ._1-aWG path{fill:rgb(var(--txth,var(--color_17)))}._2PFxe{border-radius:var(--rd,0)}._2PFxe span{padding-left:7px;padding-right:7px}._2PFxe:hover span{opacity:.7}._3c5D0.N-2-- ._345YM{padding-left:0}._3c5D0._1rJBD ._345YM{padding-right:0}.o_DnN{display:flex;flex-shrink:0;padding-top:6px;padding-bottom:6px}.o_DnN ._3DxZO{position:relative}.o_DnN ._3DxZO,.o_DnN ._3DxZO svg{width:var(--icon-size,26px);height:var(--icon-size,26px)}.o_DnN ._3DxZO svg{fill:rgba(var(--fillcolor,var(--color_0)),var(--alpha-fillcolor,1));fill-opacity:var(--alpha-fillcolor)}.o_DnN.ElWPB{padding-left:14px;padding-right:3px}.o_DnN.ElWPB ._3DxZO:not(:last-child){margin-right:10px}.o_DnN.ElWPB ._2z7UX{left:50%}.o_DnN._3BPVB{padding-left:3px;padding-right:14px}.o_DnN._3BPVB ._3DxZO:not(:last-child){margin-left:10px}.o_DnN._3BPVB ._2z7UX{right:50%}._2z7UX{display:block;background-color:rgba(var(--badge-bg,226,28,33),var(--alpha-badge-bg,1));color:rgb(var(--badge-txt,var(--color_11)));border-radius:10px;position:absolute;top:0;pointer-events:none;text-align:center;height:18px;line-height:18px;letter-spacing:1px;padding-left:6px;padding-right:6px}._1Bnqh{opacity:0;cursor:pointer;width:100%;height:100%;left:0;font-size:var(--fnt-size-dd,15px)}._1Bnqh,.w4_Uk{position:absolute}.w4_Uk{display:none;top:calc(100% + var(--brw, 0px));padding:10px 0;z-index:99999;background-color:rgba(var(--bg-dd,var(--color_11)),var(--alpha-bg-dd,1));border:var(--brw-dd,1px) solid rgba(var(--brd-dd,var(--color_15)),var(--alpha-brd-dd,1));box-sizing:border-box;border-radius:var(--rd-dd,0);box-shadow:var(--shd-dd,0 0 0 transparent);font:var(--fnt,var(--font_8));font-size:var(--fnt-size-dd,15px);min-width:100px;max-width:300px}.w4_Uk.Gcvfr{display:block}.w4_Uk hr{margin:5px 20px;opacity:.4}._1SdeY{--force-state-metadata:selected}._29xft{color:rgb(var(--txt-dd,var(--color_15)));cursor:pointer;padding:0 20px;display:flex;line-height:260%;border-radius:var(--rd-dd,0)}._29xft._1SdeY{color:rgb(var(--txt-slct-dd,var(--color_18)))}._29xft:hover{color:rgb(var(--txth-dd,var(--color_14)))}._29xft ._1g7pK{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._29xft ._3niRF{opacity:.6}._1mEpJ{right:14px}._1mEpJ ._3niRF{padding-left:12px}._1_l7F{left:14px}._1_l7F ._3niRF{padding-right:12px}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/FiveGridLine_SolidLine.6f2a41ee.chunk.min.css">._10k60{box-sizing:border-box;border-top:var(--lnw,2px) solid rgba(var(--brd,var(--color_15)),var(--alpha-brd,1));height:0}</style>
<style data-href="https://static.parastorage.com/services/editor-elements/dist/SiteButton_ButtonThreeD.ff9fd2d7.chunk.min.css">._1GHvV{text-align:initial;display:flex;align-items:center;box-sizing:border-box;width:-webkit-max-content;width:-moz-max-content;width:max-content;justify-content:var(--label-align);min-width:100%}._1GHvV:before{max-width:var(--margin-left,0)}._1GHvV:after,._1GHvV:before{content:"";flex-grow:1;align-self:stretch}._1GHvV:after{max-width:var(--margin-right,0)}._3IThy ._1GHvV{border-radius:var(--corvid-border-radius,var(--rd,5px));position:absolute;top:0;right:0;bottom:0;left:0;background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15)),var(--alpha-brd,1))) var(--corvid-border-width,var(--brw,0));box-shadow:1px 1px rgba(var(--shc-mutated-brightness,var(--color_0)),var(--alpha-shc-mutated-brightness,1)),3px 3px rgba(var(--shc-mutated-brightness,var(--color_0)),var(--alpha-shc-mutated-brightness,1)),5px 5px rgba(var(--shc-mutated-brightness,var(--color_0)),var(--alpha-shc-mutated-brightness,1)),7px 7px rgba(var(--shc-mutated-brightness,var(--color_0)),var(--alpha-shc-mutated-brightness,1)),9px 9px rgba(var(--shc-mutated-brightness,var(--color_0)),var(--alpha-shc-mutated-brightness,1))}._3IThy ._1GHvV,._3IThy ._1MugV{transition:var(--trans,all .12s ease 0s)}._3IThy ._1MugV{font:var(--fnt,var(--font_5));color:var(--corvid-color,rgb(var(--txt,var(--color_15))));margin-top:calc(-1 * var(--corvid-border-width, var(--brw, 0)));position:relative;white-space:nowrap;margin-top:0}._3IThy[aria-disabled=false] ._1GHvV{cursor:pointer}body.device-mobile-optimized ._3IThy[aria-disabled=false]:active ._1GHvV{background-color:rgba(var(--bgh,var(--color_18)),var(--alpha-bgh,1));border-color:rgba(var(--brdh,var(--color_15)),var(--alpha-brdh,1));bottom:-9px;box-shadow:0 0 rgba(var(--shc-mutated-brightness),var(--alpha-shc-mutated-brightness,1));left:9px;right:-9px;top:9px}body.device-mobile-optimized ._3IThy[aria-disabled=false]:active ._1MugV{color:rgb(var(--txth,var(--color_15)))}body:not(.device-mobile-optimized) ._3IThy[aria-disabled=false]:hover ._1GHvV{background-color:rgba(var(--bgh,var(--color_18)),var(--alpha-bgh,1));border-color:rgba(var(--brdh,var(--color_15)),var(--alpha-brdh,1));bottom:-9px;box-shadow:0 0 rgba(var(--shc-mutated-brightness),var(--alpha-shc-mutated-brightness,1));left:9px;right:-9px;top:9px}body:not(.device-mobile-optimized) ._3IThy[aria-disabled=false]:hover ._1MugV{color:rgb(var(--txth,var(--color_15)))}._3IThy[aria-disabled=true] ._1GHvV{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1))}._3IThy[aria-disabled=true] ._1MugV{color:rgb(var(--txtd,255,255,255))}</style>
<title>Cmg Soon | FudBeens</title>
<meta name="description" content="FudBeens, food store where all the ingredients to prepare food can be purchased from here with rich in quality and makes the consumer health and we runs with the concept of health is wealth
ORGANIC HEALTH DELIVERS"/>
<link rel="canonical" href="https://www.fudbeens.com"/>
<meta property="og:title" content="Cmg Soon | FudBeens"/>
<meta property="og:description" content="FudBeens, food store where all the ingredients to prepare food can be purchased from here with rich in quality and makes the consumer health and we runs with the concept of health is wealth
ORGANIC HEALTH DELIVERS"/>
<meta property="og:image" content="https://static.wixstatic.com/media/a6a666_2e21099cee7e4cd48b03795dd58a2f54~mv2.png/v1/fill/w_359,h_356,al_c/a6a666_2e21099cee7e4cd48b03795dd58a2f54~mv2.png"/>
<meta property="og:image:width" content="359"/>
<meta property="og:image:height" content="356"/>
<meta property="og:url" content="https://www.fudbeens.com"/>
<meta property="og:site_name" content="FudBeens"/>
<meta property="og:type" content="website"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Cmg Soon | FudBeens"/>
<meta name="twitter:description" content="FudBeens, food store where all the ingredients to prepare food can be purchased from here with rich in quality and makes the consumer health and we runs with the concept of health is wealth
ORGANIC HEALTH DELIVERS"/>
<meta name="twitter:image" content="https://static.wixstatic.com/media/a6a666_2e21099cee7e4cd48b03795dd58a2f54~mv2.png/v1/fill/w_359,h_356,al_c/a6a666_2e21099cee7e4cd48b03795dd58a2f54~mv2.png"/>
</head>
<body class='' >
<script type="text/javascript">
var bodyCacheable = false;
var exclusionReason = {"shouldRender":true,"forced":false};
var ssrInfo = {"renderBodyTime":1207,"renderTimeStamp":1621764105992}
</script>
<!-- react-dom -->
<script>window.clientSideRender = false;</script>
<!--pageHtmlEmbeds.bodyStart start-->
<script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart start"></script>
<script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart end"></script>
<!--pageHtmlEmbeds.bodyStart end-->
<script id="wix-first-paint">
if (window.ResizeObserver &&
(!window.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || PerformanceObserver.supportedEntryTypes.indexOf('paint') === -1)) {
new ResizeObserver(function (entries, observer) {
entries.some(function (entry) {
var contentRect = entry.contentRect;
if (contentRect.width > 0 && contentRect.height > 0) {
requestAnimationFrame(function (now) {
window.wixFirstPaint = now;
dispatchEvent(new CustomEvent('wixFirstPaint'));
});
observer.disconnect();
return true;
}
});
}).observe(document.body);
}
</script>
<pages-css id="pages-css"><style id="css_masterPage">
:root{--color_0:255,255,255;--color_1:255,255,255;--color_2:0,0,0;--color_3:237,28,36;--color_4:0,136,203;--color_5:255,203,5;--color_6:114,114,114;--color_7:176,176,176;--color_8:255,255,255;--color_9:114,114,114;--color_10:176,176,176;--color_11:255,255,255;--color_12:232,230,230;--color_13:199,199,199;--color_14:153,153,151;--color_15:0,0,0;--color_16:181,188,240;--color_17:143,152,226;--color_18:56,74,211;--color_19:37,49,141;--color_20:19,25,70;--color_21:249,197,180;--color_22:243,167,143;--color_23:237,88,41;--color_24:158,59,27;--color_25:79,29,14;--color_26:210,172,247;--color_27:186,131,240;--color_28:128,21,232;--color_29:85,14,155;--color_30:43,7,77;--color_31:177,211,187;--color_32:127,168,139;--color_33:64,124,81;--color_34:43,83,54;--color_35:21,41,27;--font_0:normal normal normal 40px/1.4em proxima-n-w01-reg,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,din-next-w02-light,din-next-w10-light,sans-serif;--font_2:normal normal normal 28px/1.4em proxima-n-w01-reg,sans-serif;--font_3:normal normal normal 60px/1.4em proxima-n-w01-reg,sans-serif;--font_4:normal normal normal 40px/1.4em proxima-n-w01-reg,sans-serif;--font_5:normal normal normal 25px/1.4em proxima-n-w01-reg,sans-serif;--font_6:normal normal normal 22px/1.4em proxima-n-w01-reg,sans-serif;--font_7:normal normal normal 17px/1.4em proxima-n-w01-reg,sans-serif;--font_8:normal normal normal 15px/1.4em proxima-n-w01-reg,sans-serif;--font_9:normal normal normal 14px/1.4em proxima-n-w01-reg,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,din-next-w02-light,din-next-w10-light,sans-serif;--wix-ads-height:0px;--wix-ads-top-height:0px;--site-width:980px;--above-all-z-index:100000;--minViewportSize:320;--maxViewportSize:1920}.font_0{font:var(--font_0);color:rgb(var(--color_15))}.font_1{font:var(--font_1);color:rgb(var(--color_14))}.font_2{font:var(--font_2);color:rgb(var(--color_15))}.font_3{font:var(--font_3);color:rgb(var(--color_15))}.font_4{font:var(--font_4);color:rgb(var(--color_15))}.font_5{font:var(--font_5);color:rgb(var(--color_15))}.font_6{font:var(--font_6);color:rgb(var(--color_15))}.font_7{font:var(--font_7);color:rgb(var(--color_15))}.font_8{font:var(--font_8);color:rgb(var(--color_15))}.font_9{font:var(--font_9);color:rgb(var(--color_15))}.font_10{font:var(--font_10);color:rgb(var(--color_14))}.color_0{color:rgb(var(--color_0))}.color_1{color:rgb(var(--color_1))}.color_2{color:rgb(var(--color_2))}.color_3{color:rgb(var(--color_3))}.color_4{color:rgb(var(--color_4))}.color_5{color:rgb(var(--color_5))}.color_6{color:rgb(var(--color_6))}.color_7{color:rgb(var(--color_7))}.color_8{color:rgb(var(--color_8))}.color_9{color:rgb(var(--color_9))}.color_10{color:rgb(var(--color_10))}.color_11{color:rgb(var(--color_11))}.color_12{color:rgb(var(--color_12))}.color_13{color:rgb(var(--color_13))}.color_14{color:rgb(var(--color_14))}.color_15{color:rgb(var(--color_15))}.color_16{color:rgb(var(--color_16))}.color_17{color:rgb(var(--color_17))}.color_18{color:rgb(var(--color_18))}.color_19{color:rgb(var(--color_19))}.color_20{color:rgb(var(--color_20))}.color_21{color:rgb(var(--color_21))}.color_22{color:rgb(var(--color_22))}.color_23{color:rgb(var(--color_23))}.color_24{color:rgb(var(--color_24))}.color_25{color:rgb(var(--color_25))}.color_26{color:rgb(var(--color_26))}.color_27{color:rgb(var(--color_27))}.color_28{color:rgb(var(--color_28))}.color_29{color:rgb(var(--color_29))}.color_30{color:rgb(var(--color_30))}.color_31{color:rgb(var(--color_31))}.color_32{color:rgb(var(--color_32))}.color_33{color:rgb(var(--color_33))}.color_34{color:rgb(var(--color_34))}.color_35{color:rgb(var(--color_35))}.backcolor_0{background-color:rgb(var(--color_0))}.backcolor_1{background-color:rgb(var(--color_1))}.backcolor_2{background-color:rgb(var(--color_2))}.backcolor_3{background-color:rgb(var(--color_3))}.backcolor_4{background-color:rgb(var(--color_4))}.backcolor_5{background-color:rgb(var(--color_5))}.backcolor_6{background-color:rgb(var(--color_6))}.backcolor_7{background-color:rgb(var(--color_7))}.backcolor_8{background-color:rgb(var(--color_8))}.backcolor_9{background-color:rgb(var(--color_9))}.backcolor_10{background-color:rgb(var(--color_10))}.backcolor_11{background-color:rgb(var(--color_11))}.backcolor_12{background-color:rgb(var(--color_12))}.backcolor_13{background-color:rgb(var(--color_13))}.backcolor_14{background-color:rgb(var(--color_14))}.backcolor_15{background-color:rgb(var(--color_15))}.backcolor_16{background-color:rgb(var(--color_16))}.backcolor_17{background-color:rgb(var(--color_17))}.backcolor_18{background-color:rgb(var(--color_18))}.backcolor_19{background-color:rgb(var(--color_19))}.backcolor_20{background-color:rgb(var(--color_20))}.backcolor_21{background-color:rgb(var(--color_21))}.backcolor_22{background-color:rgb(var(--color_22))}.backcolor_23{background-color:rgb(var(--color_23))}.backcolor_24{background-color:rgb(var(--color_24))}.backcolor_25{background-color:rgb(var(--color_25))}.backcolor_26{background-color:rgb(var(--color_26))}.backcolor_27{background-color:rgb(var(--color_27))}.backcolor_28{background-color:rgb(var(--color_28))}.backcolor_29{background-color:rgb(var(--color_29))}.backcolor_30{background-color:rgb(var(--color_30))}.backcolor_31{background-color:rgb(var(--color_31))}.backcolor_32{background-color:rgb(var(--color_32))}.backcolor_33{background-color:rgb(var(--color_33))}.backcolor_34{background-color:rgb(var(--color_34))}.backcolor_35{background-color:rgb(var(--color_35))}#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):focus, #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):focus ~ .wixSdkShowFocusOnSibling{box-shadow:0 0 0 1px #ffffff, 0 0 0 3px #116dff !important;z-index:999}[data-mesh-id=SITE_HEADERinlineContent]{height:auto;width:100%}[data-mesh-id=SITE_HEADERinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:auto;grid-template-rows:min-content min-content min-content min-content min-content 1fr;grid-template-columns:100%}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kb1qzlcc"]{position:relative;margin:24px 0px 41px calc((100% - 980px) * 0.5);left:25px;grid-area:1 / 1 / 5 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kb1rur1q"]{position:relative;margin:1px 0px 38px calc((100% - 980px) * 0.5);left:358px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbymyz3d"]{position:relative;margin:30px 0px 13px calc((100% - 980px) * 0.5);left:93px;grid-area:1 / 1 / 4 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbqojp4y"]{position:relative;margin:19px 0px 30px calc((100% - 980px) * 0.5);left:14px;grid-area:1 / 1 / 6 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbqk1exn"]{position:relative;margin:0px 0px 39px calc((100% - 980px) * 0.5);left:643px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kb4swb5l"]{position:relative;margin:3px 0px 43px calc((100% - 980px) * 0.5);left:910px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrmpzd1"]{position:relative;margin:19px 0px -1px calc((100% - 980px) * 0.5);left:994px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrmm4jw"]{position:relative;margin:30px 0px -12px calc((100% - 980px) * 0.5);left:998px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrrkm9x"]{position:relative;margin:25px 0px -7px calc((100% - 980px) * 0.5);left:989px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrrqcsz"]{position:relative;margin:30px 0px -12px calc((100% - 980px) * 0.5);left:989px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrs02mo"]{position:relative;margin:30px 0px -12px calc((100% - 980px) * 0.5);left:980px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kcvuu3a5"]{position:relative;margin:32px 0px 1px calc((100% - 980px) * 0.5);left:1003px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kcvuunt2"]{position:relative;margin:19px 0px -1px calc((100% - 980px) * 0.5);left:1003px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kcvuxa2y"]{position:relative;margin:19px 0px -1px calc((100% - 980px) * 0.5);left:994px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbrs5q3d"]{position:relative;margin:5px 0px -24px calc((100% - 980px) * 0.5);left:988px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_HEADERinlineContent-gridContainer] > [id="comp-kbpymi8u"]{position:relative;margin:0px 0 0px 0;left:0;grid-area:6 / 1 / 7 / 2;justify-self:stretch;align-self:start}[data-mesh-id=SOSP_CONTAINER_CUSTOM_IDinlineContent]{height:auto;width:980px}[data-mesh-id=SOSP_CONTAINER_CUSTOM_IDinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:auto;grid-template-rows:1fr;grid-template-columns:100%}[data-mesh-id=SOSP_CONTAINER_CUSTOM_IDinlineContent-gridContainer] > [id="comp-kbqk1oyx"]{position:relative;margin:0px 0px 0px 0;left:0px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent]{height:auto;width:100%}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:auto;grid-template-rows:min-content min-content 1fr;grid-template-columns:100%}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kbryfsr0"]{position:relative;margin:22px 0px -1px calc((100% - 980px) * 0.5);left:40px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kihf5wua"]{position:relative;margin:1px 0px 1px calc((100% - 980px) * 0.5);left:40px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kihf7khi"]{position:relative;margin:0px 0px 45px calc((100% - 980px) * 0.5);left:40px;grid-area:3 / 1 / 4 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kdldcbqd"]{position:relative;margin:36px 0px 15px calc((100% - 980px) * 0.5);left:903px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kdlddgru"]{position:relative;margin:36px 0px 15px calc((100% - 980px) * 0.5);left:924px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=SITE_FOOTERinlineContent-gridContainer] > [id="comp-kb1s9z1f"]{position:relative;margin:0px 0px -7px calc((100% - 980px) * 0.5);left:701px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kbymyz3dinlineContent]{height:auto;width:326px}[data-mesh-id=comp-kbymyz3dinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:auto;grid-template-rows:min-content min-content min-content 1fr;grid-template-columns:100%}[data-mesh-id=comp-kbymyz3dinlineContent-gridContainer] > [id="comp-kb1r1fy8"]{position:relative;margin:0px 0px 0px 0;left:0px;grid-area:1 / 1 / 5 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kbymyz3dinlineContent-gridContainer] > [id="comp-kb1r2p8j"]{position:relative;margin:0px 0px 24px 0;left:8px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kbymyz3dinlineContent-gridContainer] > [id="comp-kb1r5zoh"]{position:relative;margin:41px 0px 22px 0;left:66px;grid-area:1 / 1 / 4 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kbymyz3dinlineContent-gridContainer] > [id="comp-kb4t7d67"]{position:relative;margin:47px 0px -2px 0;left:8px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[id="soapAfterPagesContainer"].page-without-sosp [data-mesh-id=soapAfterPagesContainerinlineContent]{height:auto;width:100%;position:static;min-height:auto;padding-bottom:0px;box-sizing:border-box}[id="soapAfterPagesContainer"].page-without-sosp [data-mesh-id=soapAfterPagesContainerinlineContent-gridContainer] > [id="CONTROLLER_COMP_CUSTOM_ID"]{position:absolute;top:-112px;left:20px}[id="soapAfterPagesContainer"].page-with-sosp [data-mesh-id=soapAfterPagesContainerinlineContent]{height:auto;width:100%}[id="soapAfterPagesContainer"].page-with-sosp [data-mesh-id=soapAfterPagesContainerinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:auto;grid-template-rows:1fr;grid-template-columns:100%;padding-bottom:0px;box-sizing:border-box}[id="soapAfterPagesContainer"].page-with-sosp [data-mesh-id=soapAfterPagesContainerinlineContent-gridContainer] > [id="CONTROLLER_COMP_CUSTOM_ID"]{position:absolute;top:-112px;left:20px}[id="soapAfterPagesContainer"].page-with-sosp [data-mesh-id=soapAfterPagesContainerinlineContent-gridContainer] > [id="SOSP_CONTAINER_CUSTOM_ID"]{position:relative;margin:8px 0px 0 calc((100% - 980px) * 0.5);left:0px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}#comp-kb1rutes{justify-self:center;align-self:end;margin-bottom:20px;position:absolute;grid-area:1 / 1 / 2 / 2;pointer-events:auto}#masterPage{left:0;margin-left:0;width:100%;min-width:980px}#SITE_HEADER{left:0;margin-left:0;width:100%;min-width:980px;--pinned-layer-in-container:50;--above-all-in-container:49}#PAGES_CONTAINER{left:0;margin-left:0;width:100%;min-width:980px;--pinned-layer-in-container:52;--above-all-in-container:49}#SOSP_CONTAINER_CUSTOM_ID{width:980px;--pinned-layer-in-container:54;--above-all-in-container:49}#SITE_FOOTER{left:0;margin-left:0;width:100%;min-width:980px;--pinned-layer-in-container:55;--above-all-in-container:49}#comp-kb1qzlcc{width:68px;height:57px}#comp-kb1rur1q{width:242px;height:40px}#comp-kbymyz3d{width:326px}#comp-kbqojp4y{width:82px;height:73px}#comp-kbqk1exn{width:242px;height:40px}#comp-kb4swb5l{width:28px;height:33px}#comp-kbrmpzd1{width:138px;height:25px}#comp-kbrmm4jw{width:120px;height:25px}#comp-kbrrkm9x{width:120px;height:25px}#comp-kbrrqcsz{width:120px;height:25px}#comp-kbrs02mo{width:120px;height:25px}#comp-kcvuu3a5{width:120px;height:10px}#comp-kcvuunt2{width:120px;height:25px}#comp-kcvuxa2y{width:120px;height:25px}#comp-kbrs5q3d{width:149px;height:62px}#comp-kbpymi8u{left:0;margin-left:0;width:100%;min-width:initial;height:5px}#SITE_PAGES{left:0;margin-left:0;width:100%;min-width:980px}#comp-kbqk1oyx{width:980px;height:250px}#comp-kbryfsr0{width:273px;height:50px}#comp-kihf5wua{width:250px;height:16px}#comp-kihf7khi{width:250px;height:20px}#comp-kdldcbqd{width:20px;height:20px}#comp-kdlddgru{width:20px;height:20px}#comp-kb1s9z1f{width:250px;height:25px}#comp-kb1r1fy8{width:206px;height:79px}#comp-kb1r2p8j{width:54px;height:5px}#comp-kb1r5zoh{width:260px;height:16px}#comp-kb4t7d67{width:54px;height:5px}#comp-kb1rutes-pinned-layer{z-index:51;--above-all-in-container:10000}#masterPage.landingPage #SITE_HEADER{display:none}#masterPage.landingPage #comp-kb1rutes{display:none}#masterPage.landingPage #CONTROLLER_COMP_CUSTOM_ID{display:none}#masterPage.landingPage #SOSP_CONTAINER_CUSTOM_ID{display:none}#masterPage.landingPage #SITE_FOOTER{display:none}#masterPage.landingPage #SITE_HEADER-placeholder{display:none}#masterPage.landingPage #SITE_FOOTER-placeholder{display:none}#masterPage:not(.landingPage) #PAGES_CONTAINER{margin-top:0px;margin-bottom:0px}#CONTROLLER_COMP_CUSTOM_ID{--pinned-layer-in-container:53;--above-all-in-container:49}
@font-face {
font-display: block;
font-family:"Proxima-N-W01-Reg";
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/7e90123f-e4a7-4689-b41f-6bcfe331c00a.eot?#iefix");
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/7e90123f-e4a7-4689-b41f-6bcfe331c00a.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/64017d81-9430-4cba-8219-8f5cc28b923e.woff2") format("woff2"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/e56ecb6d-da41-4bd9-982d-2d295bec9ab0.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/2aff4f81-3e97-4a83-9e6c-45e33c024796.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/ab9cd062-380f-4b53-b1a7-c0bec7402235.svg#ab9cd062-380f-4b53-b1a7-c0bec7402235") format("svg");
}
@font-face {
font-display: block;
font-family: "DIN-Next-W01-Light";
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3e0b2cd7-9657-438b-b4af-e04122e8f1f7.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3e0b2cd7-9657-438b-b4af-e04122e8f1f7.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/bc176270-17fa-4c78-a343-9fe52824e501.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3516f91d-ac48-42cd-acfe-1be691152cc4.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/d1b1e866-a411-42ba-8f75-72bf28e23694.svg#d1b1e866-a411-42ba-8f75-72bf28e23694") format("svg");
}
@font-face {
font-display: block;
font-family: "DIN-Next-W02-Light";
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/07d62b21-8d7a-4c36-be86-d32ab1089972.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/c0050890-bbed-44b9-94df-2611d72dbb06.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/9f774d17-c03a-418e-a375-34f3beecbc7a.svg#9f774d17-c03a-418e-a375-34f3beecbc7a") format("svg");
}
@font-face {
font-display: block;
font-family: "DIN-Next-W10-Light";
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3d009cd7-c8fe-40c0-93da-74f4ea8c530b.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3d009cd7-c8fe-40c0-93da-74f4ea8c530b.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/a9e95a29-98a7-404a-90ee-1929ad09c696.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0a7663fd-eae8-4e50-a67a-225271f8cceb.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/58ae9be9-5d95-44b6-8b6c-e6da6a46822c.svg#58ae9be9-5d95-44b6-8b6c-e6da6a46822c") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
src: url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E_Y6323mHUZFJMgTvxaG2iE.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E_Y6323mHUZFJMgTvxaG2iE.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E1tXRa8TVwTICgirnJhmVJw.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2Ez8E0i7KZn-EPnyo3HZu7kw.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E6CWcynf_cDxXwCLxiixG1c.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=ZqlneECqpsd9SXlmAsD2E5bd9NUM7myrQQz30yPaGQ4&skey=4c8d0d0b13516148&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-weight: 700;
src: url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xfY6323mHUZFJMgTvxaG2iE.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xfY6323mHUZFJMgTvxaG2iE.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xVtXRa8TVwTICgirnJhmVJw.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xT8E0i7KZn-EPnyo3HZu7kw.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xaCWcynf_cDxXwCLxiixG1c.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=yS165lxqGuDghyUMXeu6xZbd9NUM7myrQQz30yPaGQ4&skey=f60e73b1bbf362f3&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-style: italic;
src: url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ-ZiE7IA0Up7-VwGqa0iGVY.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ-ZiE7IA0Up7-VwGqa0iGVY.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ6g5eI2G47JWe0-AuFtD150.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ9Ih4imgI8P11RFo6YPCPC0.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ102b4v3fUxqf9CZJ1qUoIA.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=xJLokI-F3wr7NRWXgS0pZ5S_ZaL0arjVp2tkn2-HJhM&skey=989d87b0113009a2&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-weight: 700;
font-style: italic;
src: url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xuZiE7IA0Up7-VwGqa0iGVY.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xuZiE7IA0Up7-VwGqa0iGVY.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xqg5eI2G47JWe0-AuFtD150.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xtIh4imgI8P11RFo6YPCPC0.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xl02b4v3fUxqf9CZJ1qUoIA.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=hw7DQwyFvE7wFOFzpow4xpS_ZaL0arjVp2tkn2-HJhM&skey=25c93348b6ec64d8&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs0wH8DnzcjTrA.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs1wH8DnzcjTrA.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs7wH8Dnzcj.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WohvToJdLm8BvE.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WogvToJdLm8BvE.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WouvToJdLm8.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_A8s5ynghnQci.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_Ass5ynghnQci.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Fostz0rdom9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Vostz0rdom9.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family:"Avenir-LT-W01_35-Light1475496";
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/edefe737-dc78-4aa3-ad03-3c6f908330ed.eot?#iefix");
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/edefe737-dc78-4aa3-ad03-3c6f908330ed.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2") format("woff2"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/908c4810-64db-4b46-bb8e-823eb41f68c0.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/4577388c-510f-4366-addb-8b663bcc762a.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/b0268c31-e450-4159-bfea-e0d20e2b5c0c.svg#b0268c31-e450-4159-bfea-e0d20e2b5c0c") format("svg");
}
@font-face {
font-display: block;
font-family: 'Questrial';
font-style: normal;
font-weight: 400;
src: local('Questrial'), local('Questrial-Regular'), url(https://fonts.gstatic.com/s/questrial/v9/QdVUSTchPBm7nuUeVf70viFluW44JQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#CONTROLLER_COMP_CUSTOM_ID { --bgh:43,104,156;--alpha-bgh:1;--boxShadowToggleOn -shd:none;--bg:61,155,233;--brw:0px;--alpha - brdh:1;--fnt:normal normal normal 14px/1.4em raleway;--alpha - txth:1;--shd:0 1px 4px rgba(0, 0, 0, 0.6);;--txt:255,255,255;--alpha-txt:1;--rd:20px;--brdh:61,155,233;--alpha-brdh:1;--brd:43,104,156;--alpha-brd:1;--alpha-bg:1;--alpha -bgh:1;--txth:255,255,255;--alpha-txth:1;--alpha - txt:1;--alpha - brd:1 }#SOSP_CONTAINER_CUSTOM_ID { --brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--alpha-bg:1;--alpha-brd:1;--boxShadowToggleOn-shd:none;--shc-mutated-brightness:128,128,128 }#SITE_FOOTER { --shd:inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -1px 1px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6);--bg:var(--color_31);--brwt:0px;--brd:var(--color_14);--brwb:0px;--alpha-bg:1;--alpha-brd:1;--shc-mutated-brightness:89,106,94 }#comp-kb1qzlcc { --contentPaddingLeft:0px;--contentPaddingRight:0px;--contentPaddingTop:0px;--contentPaddingBottom:0px;--height:57px;--width:68px }#comp-kb1rur1q { --inputShadow:none;--inputFocusBorderWidth:1px;--inputBorderRadius:6px 6px 6px 6px;--inputFont:normal normal normal 16px/1.4em avenir-lt-w01_35-light1475496,sans-serif;--inputTextColor:50,50,50;--alpha-inputTextColor:1;--inputBorderWidth:1px;--inputBorderColor:var(--color_32);--alpha-inputBorderColor:1;--inputPlaceholderColor:120,120,120;--alpha-inputPlaceholderColor:1;--inputIconColor:75,100,173;--alpha-inputIconColor:1;--inputHoverIconColor:var(--color_15);--alpha-inputHoverIconColor:1;--inputFocusIconColor:var(--color_15);--alpha-inputFocusIconColor:1;--buttonBackgroundColor:var(--color_33);--alpha-buttonBackgroundColor:1;--buttonHoverBackgroundColor:54,143,217;--alpha-buttonHoverBackgroundColor:1;--buttonFocusBackgroundColor:61,155,233;--alpha-buttonFocusBackgroundColor:1;--buttonIconColor:var(--color_11);--alpha-buttonIconColor:1;--buttonHoverIconColor:255,255,255;--alpha-buttonHoverIconColor:1;--buttonFocusIconColor:255,255,255;--alpha-buttonFocusIconColor:1;--inputBackgroundColor:255,255,255;--inputHoverBackgroundColor:255,255,255;--alpha-inputHoverBackgroundColor:1;--inputFocusBackgroundColor:255,255,255;--alpha-inputFocusBackgroundColor:1;--inputHoverBorderWidth:1px;--inputHoverBorderColor:49,134,204;--inputFocusBorderColor:61,155,233;--alpha-inputFocusBorderColor:1;--suggestionSectionDividerColorNew:var(--color_15);--alpha-suggestionSectionDividerColorNew:1;--iconHoverColor:61,155,233;--alpha-iconHoverColor:1;--inputPlaceholderHoverTextColor:143,143,143;--alpha-inputPlaceholderHoverTextColor:1;--iconFocusColor:61,155,233;--alpha-iconFocusColor:1;--inputHoverTextColor:143,143,143;--alpha-inputHoverTextColor:1;--inputFocusTextColor:143,143,143;--alpha-inputFocusTextColor:1;--iconColor:61,155,233;--alpha-buttonFocusColor:1;--inputPlaceholderTextColor:143,143,143;--alpha-inputPlaceholderTextColor:1;--buttonColor:61,155,233;--alpha-buttonColor:1;--alpha-inputHoverBorderColor:1;--buttonHoverColor:61,155,233;--alpha-buttonHoverColor:1;--alpha-inputBackgroundColor:1;--alpha-iconColor:1;--boxShadowToggleOn-inputShadow:none;--buttonFocusColor:61,155,233;--container-direction:row;--icon-spacing:12px;--input-focus-bottom-border-width:1px;--input-focus-left-border-width:1px;--input-hover-left-border-width:1px;--input-left-border-width:1px;--input-text-align:left;--search-button-display:flex;--search-icon-display:none;--text-padding:8px 0 8px 0;--text-spacing:12px }#comp-kbqojp4y { --contentPaddingLeft:0px;--contentPaddingRight:0px;--contentPaddingTop:0px;--contentPaddingBottom:0px;--height:73px;--width:82px }#comp-kbqk1exn { --bg:0,0,0;--alpha-bg:0;--brw:0px;--brd:var(--color_15);--rd:0px;--shd:none;--bg-dd:var(--color_11);--alpha-bg-dd:1;--brw-dd:1px;--brd-dd:var(--color_15);--rd-dd:0px;--shd-dd:none;--fnt:normal normal normal 15px/1.4em proxima-n-w01-reg,sans-serif;--fnt-size-dd:15px;--txt-dd:var(--color_34);--alpha-txt-dd:1;--txt-slct-dd:var(--color_33);--alpha-txt-slct-dd:1;--txth-dd:var(--color_14);--alpha-txth-dd:1;--txth:var(--color_31);--alpha-txth:1;--txt:var(--color_34);--alpha-txt:1;--badge-bg:226,28,33;--alpha-badge-bg:1;--badge-txt:var(--color_11);--alpha-badge-txt:1;--fillcolor:var(--color_33);--alpha-fillcolor:1;--boxShadowToggleOn-shd:none;--alpha-brd:1;--alpha-brd-dd:0.2;--boxShadowToggleOn-shd-dd:none;justify-content:flex-end;direction:ltr;--icon-size:26px }#comp-kbpymi8u { --lnw:1px;--brd:var(--color_34);--alpha-brd:1;transform-origin:center 0.5px }#SITE_PAGES { --transition-duration:700ms }#comp-kbryfsr0 { height:auto }#comp-kihf5wua { height:auto }#comp-kihf7khi { min-height:20px;height:auto }#comp-kdldcbqd { --contentPaddingLeft:0px;--contentPaddingRight:0px;--contentPaddingTop:0px;--contentPaddingBottom:0px;--height:20px;--width:20px }#comp-kdlddgru { --contentPaddingLeft:0px;--contentPaddingRight:0px;--contentPaddingTop:0px;--contentPaddingBottom:0px;--height:20px;--width:20px }#comp-kb1s9z1f { height:auto }#comp-kb1r1fy8 { --contentPaddingLeft:0px;--contentPaddingRight:0px;--contentPaddingTop:0px;--contentPaddingBottom:0px;--height:79px;--width:206px }#comp-kb1r2p8j { --lnw:1px;--brd:var(--color_34);--alpha-brd:1;transform-origin:center 0.5px }#comp-kb1r5zoh { height:auto }#comp-kb4t7d67 { --lnw:1px;--brd:245,117,5;--alpha-brd:1;transform-origin:center 0.5px }
.comp-kb4swb5l .JFG84{--cartWidget_cartIcon: #384AD3;--cartWidget_cartIconText: #384AD3;--cartWidget_cartIconTextFont: normal normal normal 15px/1.4em proxima-n-w01-reg,sans-serif;--cartWidget_cartIconNumberFont: normal normal normal 15px/1.4em proxima-n-w01-reg,sans-serif;--cartWidget_cartIconBubble: #384AD3}.comp-kb4swb5l ._350Q0 rect,.comp-kb4swb5l ._350Q0 polygon,.comp-kb4swb5l ._350Q0 polyline,.comp-kb4swb5l ._350Q0 circle,.comp-kb4swb5l ._350Q0 path{fill:rgb(43, 83, 54)}.comp-kb4swb5l ._350Q0 text{fill:rgb(56, 74, 211);font:normal normal normal 90px/112px proxima-n-w01-reg,sans-serif;text-decoration: ;font-size:90px}.comp-kb4swb5l ._350Q0 ._2u__n{fill:rgb(255, 255, 255);font:normal normal normal 90px/112px proxima-n-w01-reg,sans-serif;text-decoration: ;font-size:90px}.comp-kb4swb5l ._350Q0 ._2u__n._6mbMh{fill:rgb(255, 255, 255)}.comp-kb4swb5l ._350Q0 .ex_uq{fill:rgb(56, 74, 211)} .iOUBo{padding:0;position:relative} .iOUBo>svg{position:absolute !important;top:0;bottom:0;left:0;right:0} ._1ze_q{opacity:0} ._350Q0{text-decoration:none;width:100%;display:block;overflow:hidden;outline:none} .js-focus-visible ._350Q0:focus{position:relative;box-shadow:none} .js-focus-visible ._350Q0:focus:after{content:'';position:absolute;width:100%;height:100%;left:0;top:0;outline:none;box-shadow:inset 0 0 1px 1px #3899EC,inset 0 0 0 2px rgba(255,255,255,0.9)} ._1ArCY text._2u__n{font-size:50px !important} ._1ArCY._158ud ._2u__n{font-size:45px !important} ._1ArCY.Hb6if ._2u__n{font-size:37px !important} ._1PFda._158ud ._2u__n{font-size:80px !important} ._1PFda.Hb6if ._2u__n{font-size:58px !important} ._19H__._158ud ._2u__n{font-size:60px !important} ._19H__.Hb6if ._2u__n{font-size:45px !important} .rxCFl._158ud ._2u__n{font-size:60px !important} .rxCFl.Hb6if ._2u__n{font-size:40px !important} ._39Fhw._158ud ._2u__n{font-size:70px !important} ._39Fhw.Hb6if ._2u__n{font-size:60px !important} .fPzJo._158ud ._2u__n{font-size:80px !important} .fPzJo.Hb6if ._2u__n{font-size:60px !important} ._13MI6._158ud ._2u__n{font-size:75px !important} ._13MI6.Hb6if ._2u__n{font-size:55px !important} ._10mAe._158ud ._2u__n{font-size:75px !important} ._10mAe.Hb6if ._2u__n{font-size:59px !important} ._19eEr._158ud ._2u__n{font-size:80px !important} ._19eEr.Hb6if ._2u__n{font-size:65px !important} ._3FN3m._158ud ._2u__n{font-size:75px !important} ._3FN3m.Hb6if ._2u__n{font-size:60px !important} ._1WTd1._158ud ._2u__n{font-size:80px !important} ._1WTd1.Hb6if ._2u__n{font-size:60px !important}
#BACKGROUND_GROUP { --transition-duration:700ms }/* END STYLABLE DIRECTIVE RULES */
#comp-kbrmpzd1 .style-kbrmq8os__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border: 1px solid #000000;background: #2B5336}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrmpzd1 .style-kbrmq8os__root:hover{
background: #FFFFFF}
#comp-kbrmpzd1 .style-kbrmq8os__root:disabled{background: #E2E2E2}
#comp-kbrmpzd1 .style-kbrmq8os__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrmpzd1 .style-kbrmq8os__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrmpzd1 .style-kbrmq8os__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrmpzd1 .style-kbrmq8os__root .StylableButton1872886392__label{transition: inherit;font-size: 14px;font-family: questrial,sans-serif;color: #FFFFFF}
#comp-kbrmpzd1 .style-kbrmq8os__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrmpzd1 .style-kbrmq8os__root:hover .StylableButton1872886392__label{font-family: questrial,sans-serif;color: #000000}/* END STYLABLE DIRECTIVE RULES */
#comp-kbrmm4jw .style-kbrmp378__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border: 1px solid #000000;background: #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrmm4jw .style-kbrmp378__root:hover{
background: #2B5336}
#comp-kbrmm4jw .style-kbrmp378__root:disabled{background: #E2E2E2}
#comp-kbrmm4jw .style-kbrmp378__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrmm4jw .style-kbrmp378__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrmm4jw .style-kbrmp378__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrmm4jw .style-kbrmp378__root .StylableButton1872886392__label{transition: inherit;font-size: 14px;color: #000000;font-family: questrial,sans-serif}
#comp-kbrmm4jw .style-kbrmp378__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrmm4jw .style-kbrmp378__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}/* END STYLABLE DIRECTIVE RULES */
#comp-kbrrkm9x .style-kbrrpkqb__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrrkm9x .style-kbrrpkqb__root:hover{
background: #2B5336}
#comp-kbrrkm9x .style-kbrrpkqb__root:disabled{background: #E2E2E2}
#comp-kbrrkm9x .style-kbrrpkqb__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrrkm9x .style-kbrrpkqb__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrrkm9x .style-kbrrpkqb__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrrkm9x .style-kbrrpkqb__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kbrrkm9x .style-kbrrpkqb__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrrkm9x .style-kbrrpkqb__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}/* END STYLABLE DIRECTIVE RULES */
#comp-kbrrqcsz .style-kbrs24py__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrrqcsz .style-kbrs24py__root:hover{
background: #2B5336}
#comp-kbrrqcsz .style-kbrs24py__root:disabled{background: #E2E2E2}
#comp-kbrrqcsz .style-kbrs24py__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrrqcsz .style-kbrs24py__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrrqcsz .style-kbrs24py__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrrqcsz .style-kbrs24py__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kbrrqcsz .style-kbrs24py__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrrqcsz .style-kbrs24py__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kbrrqcsz .style-kbrs24py__root {
border: 00px solid #FFFFFF;
}
}/* END STYLABLE DIRECTIVE RULES */
#comp-kbrs02mo .style-kbrs02o5__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrs02mo .style-kbrs02o5__root:hover{
background: #2B5336}
#comp-kbrs02mo .style-kbrs02o5__root:disabled{background: #E2E2E2}
#comp-kbrs02mo .style-kbrs02o5__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrs02mo .style-kbrs02o5__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrs02mo .style-kbrs02o5__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrs02mo .style-kbrs02o5__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kbrs02mo .style-kbrs02o5__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrs02mo .style-kbrs02o5__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kbrs02mo .style-kbrs02o5__root {
border: 00px solid #FFFFFF;
}
}/* END STYLABLE DIRECTIVE RULES */
#comp-kcvuu3a5 .style-kcvuu3d6__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kcvuu3a5 .style-kcvuu3d6__root:hover{
background: #2B5336}
#comp-kcvuu3a5 .style-kcvuu3d6__root:disabled{background: #E2E2E2}
#comp-kcvuu3a5 .style-kcvuu3d6__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kcvuu3a5 .style-kcvuu3d6__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kcvuu3a5 .style-kcvuu3d6__root .StylableButton1872886392__container{transition: inherit}
#comp-kcvuu3a5 .style-kcvuu3d6__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kcvuu3a5 .style-kcvuu3d6__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kcvuu3a5 .style-kcvuu3d6__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kcvuu3a5 .style-kcvuu3d6__root {
border: 00px solid #FFFFFF;
}
}/* END STYLABLE DIRECTIVE RULES */
#comp-kcvuunt2 .style-kcvuunxn__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kcvuunt2 .style-kcvuunxn__root:hover{
background: #2B5336}
#comp-kcvuunt2 .style-kcvuunxn__root:disabled{background: #E2E2E2}
#comp-kcvuunt2 .style-kcvuunxn__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kcvuunt2 .style-kcvuunxn__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kcvuunt2 .style-kcvuunxn__root .StylableButton1872886392__container{transition: inherit}
#comp-kcvuunt2 .style-kcvuunxn__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kcvuunt2 .style-kcvuunxn__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kcvuunt2 .style-kcvuunxn__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kcvuunt2 .style-kcvuunxn__root {
border: 00px solid #FFFFFF;
}
}/* END STYLABLE DIRECTIVE RULES */
#comp-kcvuxa2y .style-kcvuxa4j__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kcvuxa2y .style-kcvuxa4j__root:hover{
background: #2B5336}
#comp-kcvuxa2y .style-kcvuxa4j__root:disabled{background: #E2E2E2}
#comp-kcvuxa2y .style-kcvuxa4j__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kcvuxa2y .style-kcvuxa4j__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kcvuxa2y .style-kcvuxa4j__root .StylableButton1872886392__container{transition: inherit}
#comp-kcvuxa2y .style-kcvuxa4j__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kcvuxa2y .style-kcvuxa4j__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kcvuxa2y .style-kcvuxa4j__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kcvuxa2y .style-kcvuxa4j__root {
border: 00px solid #FFFFFF;
}
}/* END STYLABLE DIRECTIVE RULES */
#comp-kbrs5q3d .style-kbrs5q4i__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;background: #FFFFFF;border: 1px solid #FFFFFF}
/* START STYLABLE DIRECTIVE RULES */
#comp-kbrs5q3d .style-kbrs5q4i__root:hover{
background: #2B5336}
#comp-kbrs5q3d .style-kbrs5q4i__root:disabled{background: #E2E2E2}
#comp-kbrs5q3d .style-kbrs5q4i__root:disabled .StylableButton1872886392__label{color: #8F8F8F}
#comp-kbrs5q3d .style-kbrs5q4i__root:disabled .StylableButton1872886392__icon{fill: #8F8F8F}
#comp-kbrs5q3d .style-kbrs5q4i__root .StylableButton1872886392__container{transition: inherit}
#comp-kbrs5q3d .style-kbrs5q4i__root .StylableButton1872886392__label{transition: inherit;color: #000000;font-family: questrial,sans-serif;font-size: 13px}
#comp-kbrs5q3d .style-kbrs5q4i__root .StylableButton1872886392__icon{transition: inherit;width: 14px;height: 14px;fill: #000000;display: none}
#comp-kbrs5q3d .style-kbrs5q4i__root:hover .StylableButton1872886392__label{color: #FFFFFF;font-family: questrial,sans-serif}
@media screen and (min-width: 1px) and (max-width: 0px) {
#comp-kbrs5q3d .style-kbrs5q4i__root {
border: 00px solid #FFFFFF;
}
}
</style>
<style id="css_c1dmp">
#comp-kihf26tk:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvlvrxy:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvm281i:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvly6b2:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvm48wp:not(.animating-screenIn-exit){visibility:hidden}#comp-kdlaui6y:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvlxhl0:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvm6lw7:not(.animating-screenIn-exit){visibility:hidden}#comp-kcvm7cla:not(.animating-screenIn-exit){visibility:hidden}#comp-kde85psp:not(.animating-screenIn-exit){visibility:hidden}
[data-mesh-id=comp-kdlaui6yinlineContent]{height:auto;width:100%;position:static;min-height:144px}[data-mesh-id=Containerc1dmpinlineContent]{height:auto;width:100%}[data-mesh-id=Containerc1dmpinlineContent-gridContainer]{position:static;display:grid;height:auto;width:100%;min-height:500px;grid-template-rows:min-content min-content min-content min-content min-content min-content min-content min-content min-content 1fr;grid-template-columns:100%;padding-bottom:0px;box-sizing:border-box}[data-mesh-id="comp-kcvlxhl0-rotated-wrapper"] > [id="comp-kcvlxhl0"]{position:relative;left:382px;top:79px}[data-mesh-id="comp-kde85psp-rotated-wrapper"] > [id="comp-kde85psp"]{position:relative;left:61px;top:25px}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kihf26tk"]{position:relative;margin:84px 0px 44px calc((100% - 980px) * 0.5);left:308px;grid-area:1 / 1 / 2 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvlvrxy"]{position:relative;margin:12px 0px -27px calc((100% - 980px) * 0.5);left:138px;grid-area:2 / 1 / 3 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvm281i"]{position:relative;margin:5px 0px 15px calc((100% - 980px) * 0.5);left:138px;grid-area:3 / 1 / 7 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvly6b2"]{position:relative;margin:0px 0px -6px calc((100% - 980px) * 0.5);left:535px;grid-area:3 / 1 / 4 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvm48wp"]{position:relative;margin:0px 0px -1px calc((100% - 980px) * 0.5);left:535px;grid-area:4 / 1 / 5 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kdlahu0d"]{position:relative;margin:16px 0px 16px calc((100% - 980px) * 0.5);left:405px;grid-area:2 / 1 / 8 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kdlaui6y"]{position:relative;margin:0px 0px -1px calc((100% - 980px) * 0.5);left:377px;grid-area:2 / 1 / 10 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kcvlxhl0-rotated-wrapper]{position:static;height:162px;width:0;margin:2px 0px -21px calc((100% - 980px) * 0.5);grid-area:2 / 1 / 9 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvm6lw7"]{position:relative;margin:0px 0px -19px calc((100% - 980px) * 0.5);left:724px;grid-area:3 / 1 / 4 / 2;justify-self:start;align-self:start}[data-mesh-id=Containerc1dmpinlineContent-gridContainer] > [id="comp-kcvm7cla"]{position:relative;margin:0px 0px 28px calc((100% - 980px) * 0.5);left:741px;grid-area:5 / 1 / 6 / 2;justify-self:start;align-self:start}[data-mesh-id=comp-kde85psp-rotated-wrapper]{position:static;height:167px;width:0;margin:0px 0px 0 calc((100% - 980px) * 0.5);grid-area:10 / 1 / 11 / 2;justify-self:start;align-self:start}#c1dmp{left:0;margin-left:0;width:100%;min-width:980px}#comp-kihf26tk{width:310px;height:26px}#comp-kcvlvrxy{width:255px;height:69px}#comp-kcvm281i{width:255px;height:69px}#comp-kcvly6b2{width:174px;height:27px}#comp-kcvm48wp{width:166px;height:28px}#comp-kdlahu0d{width:111px;height:111px}#comp-kdlaui6y{width:149px}#comp-kcvlxhl0{transform:rotate(270deg);width:162px;height:5px}#comp-kcvm6lw7{width:142px;height:40px}#comp-kcvm7cla{width:310px;height:13px}#comp-kde85psp{transform:rotate(31.434683670432094deg);width:127px;height:118px}#masterPage{--pinned-layers-in-page:0}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
src: url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E_Y6323mHUZFJMgTvxaG2iE.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E_Y6323mHUZFJMgTvxaG2iE.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E1tXRa8TVwTICgirnJhmVJw.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2Ez8E0i7KZn-EPnyo3HZu7kw.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/ZqlneECqpsd9SXlmAsD2E6CWcynf_cDxXwCLxiixG1c.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=ZqlneECqpsd9SXlmAsD2E5bd9NUM7myrQQz30yPaGQ4&skey=4c8d0d0b13516148&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-weight: 700;
src: url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xfY6323mHUZFJMgTvxaG2iE.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xfY6323mHUZFJMgTvxaG2iE.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xVtXRa8TVwTICgirnJhmVJw.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xT8E0i7KZn-EPnyo3HZu7kw.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/yS165lxqGuDghyUMXeu6xaCWcynf_cDxXwCLxiixG1c.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=yS165lxqGuDghyUMXeu6xZbd9NUM7myrQQz30yPaGQ4&skey=f60e73b1bbf362f3&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-style: italic;
src: url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ-ZiE7IA0Up7-VwGqa0iGVY.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ-ZiE7IA0Up7-VwGqa0iGVY.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ6g5eI2G47JWe0-AuFtD150.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ9Ih4imgI8P11RFo6YPCPC0.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/xJLokI-F3wr7NRWXgS0pZ102b4v3fUxqf9CZJ1qUoIA.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=xJLokI-F3wr7NRWXgS0pZ5S_ZaL0arjVp2tkn2-HJhM&skey=989d87b0113009a2&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: "Barlow-Medium";
font-weight: 700;
font-style: italic;
src: url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xuZiE7IA0Up7-VwGqa0iGVY.eot?#iefix");
src: url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xuZiE7IA0Up7-VwGqa0iGVY.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xqg5eI2G47JWe0-AuFtD150.woff2") format("woff2"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xtIh4imgI8P11RFo6YPCPC0.woff") format("woff"),
url("//fonts.gstatic.com/s/barlow/v1/hw7DQwyFvE7wFOFzpow4xl02b4v3fUxqf9CZJ1qUoIA.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=hw7DQwyFvE7wFOFzpow4xpS_ZaL0arjVp2tkn2-HJhM&skey=25c93348b6ec64d8&v=v1#Barlow") format("svg");
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs0wH8DnzcjTrA.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs1wH8DnzcjTrA.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 400;
src: local('Barlow Italic'), local('Barlow-Italic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Cfs7wH8Dnzcj.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WohvToJdLm8BvE.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WogvToJdLm8BvE.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: italic;
font-weight: 700;
src: local('Barlow Bold Italic'), local('Barlow-BoldItalic'), url(https://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5WouvToJdLm8.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_A8s5ynghnQci.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_Ass5ynghnQci.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: local('Barlow Regular'), local('Barlow-Regular'), url(https://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Fostz0rdom9.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s6Vostz0rdom9.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-display: block;
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: local('Barlow Bold'), local('Barlow-Bold'), url(https://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-display: block;
font-family:"Avenir-LT-W01_35-Light1475496";
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/edefe737-dc78-4aa3-ad03-3c6f908330ed.eot?#iefix");
src:url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/edefe737-dc78-4aa3-ad03-3c6f908330ed.eot?#iefix") format("eot"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2") format("woff2"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/908c4810-64db-4b46-bb8e-823eb41f68c0.woff") format("woff"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/4577388c-510f-4366-addb-8b663bcc762a.ttf") format("truetype"),url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/b0268c31-e450-4159-bfea-e0d20e2b5c0c.svg#b0268c31-e450-4159-bfea-e0d20e2b5c0c") format("svg");
}
@font-face {
font-display: block;
font-family: "Poppins-SemiBold";
src: url("//fonts.gstatic.com/s/poppins/v5/9VWMTeb5jtXkNoTv949NpVQlYEbsez9cZjKsNMjLOwM.eot?#iefix");
src: url("//fonts.gstatic.com/s/poppins/v5/9VWMTeb5jtXkNoTv949NpVQlYEbsez9cZjKsNMjLOwM.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/poppins/v5/9VWMTeb5jtXkNoTv949Npfk_vArhqVIZ0nv9q090hN8.woff2") format("woff2"),
url("//fonts.gstatic.com/s/poppins/v5/9VWMTeb5jtXkNoTv949NpRsxEYwM7FgeyaSgU71cLG0.woff") format("woff"),
url("//fonts.gstatic.com/s/poppins/v5/9VWMTeb5jtXkNoTv949NpS3USBnSvpkopQaUR-2r7iU.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=9VWMTeb5jtXkNoTv949NpaWUboTb-jS2tyCOQMtm97g&skey=ce7ef9d62ca89319&v=v5#Poppins") format("svg");
}
@font-face {
font-display: block;
font-family: "Poppins-SemiBold";
font-weight: 700;
src: url("//fonts.gstatic.com/s/poppins/v5/aDjpMND83pDErGXlVEr-SVQlYEbsez9cZjKsNMjLOwM.eot?#iefix");
src: url("//fonts.gstatic.com/s/poppins/v5/aDjpMND83pDErGXlVEr-SVQlYEbsez9cZjKsNMjLOwM.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/poppins/v5/aDjpMND83pDErGXlVEr-Sfk_vArhqVIZ0nv9q090hN8.woff2") format("woff2"),
url("//fonts.gstatic.com/s/poppins/v5/aDjpMND83pDErGXlVEr-SRsxEYwM7FgeyaSgU71cLG0.woff") format("woff"),
url("//fonts.gstatic.com/s/poppins/v5/aDjpMND83pDErGXlVEr-SS3USBnSvpkopQaUR-2r7iU.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=aDjpMND83pDErGXlVEr-SaWUboTb-jS2tyCOQMtm97g&skey=cea76fe63715a67a&v=v5#Poppins") format("svg");
}
@font-face {
font-display: block;
font-family: "Poppins-SemiBold";
font-style: italic;
src: url("//fonts.gstatic.com/s/poppins/v5/RbebACOccNN-5ixkDIVLjalSqKUsDpiXlwfj-ZM2w_A.eot?#iefix");
src: url("//fonts.gstatic.com/s/poppins/v5/RbebACOccNN-5ixkDIVLjalSqKUsDpiXlwfj-ZM2w_A.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/poppins/v5/RbebACOccNN-5ixkDIVLjRUOjZSKWg4xBWp_C_qQx0o.woff2") format("woff2"),
url("//fonts.gstatic.com/s/poppins/v5/RbebACOccNN-5ixkDIVLjRa1RVmPjeKy21_GQJaLlJI.woff") format("woff"),
url("//fonts.gstatic.com/s/poppins/v5/RbebACOccNN-5ixkDIVLjdqQynqKV_9Plp7mupa0S4g.ttf") format("truetype"),
url("//fonts.gstatic.com/l/font?kit=RbebACOccNN-5ixkDIVLjd1LKoZ82bBu2f46DhHcs3c&skey=7fbc556774b13ef0&v=v5#Poppins") format("svg");
}
@font-face {
font-display: block;
font-family: "Poppins-SemiBold";
font-weight: 700;
font-style: italic;
src: url("//fonts.gstatic.com/s/poppins/v5/c4FPK8_hIFKoX59qcGwdCqlSqKUsDpiXlwfj-ZM2w_A.eot?#iefix");
src: url("//fonts.gstatic.com/s/poppins/v5/c4FPK8_hIFKoX59qcGwdCqlSqKUsDpiXlwfj-ZM2w_A.eot?#iefix") format("eot"),
url("//fonts.gstatic.com/s/poppins/v5/c4FPK8_hIFKoX59qcGwdChUOjZSKWg4xBWp_C_qQx0o.woff2") format("woff2"),