-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
2122 lines (2032 loc) · 129 KB
/
index.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <meta name="google-site-verification" content="Exxlz7urXb5XhU5rgnhuvVPa6tegzMO-w1L4seva_x8" /> -->
<meta name="google-site-verification" content="rk2uZnv646sMcKkxwRcuekH_Xc2RIaGQRJ4hphkPUT0" />
<meta name="description" content="HackVerse - 4th Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal" />
<meta name="keywords" content="HackVerse, Hackathon, Nation-Wide, NITK Surathkal, Prizes, 4th Edition" />
<meta property="og:title" content="HackVerse - 4th Edition of One of India's Biggest Student Run Hackathons" />
<meta property="og:description"
content="HackVerse - 4th Edition of the 24 Hour Nation-Wide Hackathon at NITK, Surathkal" />
<meta property="og:image" content="https://raw.githubusercontent.com/HackVerse/2023/main/img/logo.webp" />
<meta property="og:type" content="website" />
<meta property="og:url" content="hackverse.nitk.ac.in" />
<link rel="icon" href="./img/logo_light.webp" />
<!-- Devfolio apply button -->
<link href="https://fonts.cdnfonts.com/css/circular-std?styles=17911" rel="stylesheet" />
<!-- <style>
@font-face{font-family:circular std;font-style:normal;font-weight:500;src:local('Circular Std'),url(https://fonts.cdnfonts.com/s/15011/CircularStd-Medium.woff) format('woff')}
</style> -->
<script async defer src="https://apply.devfolio.co/v2/sdk.js"></script>
<!-- Bootstrap 5 -->
<!-- popper is required for bootstrap dropdown -->
<!-- <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" async></script> -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<!-- GSAP Scroll Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js" async></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/ScrollTrigger.min.js" async></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/MotionPathPlugin.min.js" async></script>
<link rel="stylesheet" href="style.css" />
<!-- Schedule stylesheet-->
<link rel="stylesheet" href="./schedule/schedule_styles.css">
<!-- Responsive design stylesheet-->
<link rel="stylesheet" href="responsive.css" />
<!-- minimized version of style.css + responsive.css -->
<!-- <link rel="stylesheet" href="style.min.css" /> -->
<!-- Setting media type as print forces the browser to load the stylesheet asynchronously.
On full page load, the media type is changed to ‘all’ so that the stylesheet gets applied. -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" media="print" onload="this.media='all'">
<!-- Fallback for when JavaScript is disabled, but in this case CSS can’t be loaded asynchronously. -->
<noscript>
<link rel="stylesheet" href="https://unpkg.com/aos@2.3.1/dist/aos.css">
</noscript>
<!-- Judges stylesheet-->
<link rel="stylesheet" href="judges/judges_style.css" />
<!--font-awesome for social media icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
media="print" onload="this.media='all'">
<!-- Fallback for when JavaScript is disabled, but in this case CSS can’t be loaded asynchronously. -->
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</noscript>
<title>Hackverse 4.0 | April 2023</title>
</head>
<body data-bs-spy="scroll" data-bs-target="#scroll-spy" data-bs-offset="90">
<!-- <div id="preloader">
<div class="water">
</div>
</div> -->
<!-- navbar -->
<nav id="scroll-spy" class="navbar fixed-top navbar-dark navbar-expand-lg">
<div class="container" data-aos="fade-up" data-aos-once="true" id="container">
<img src="./img/logo.webp" width="auto" height="50px" alt="Hackverse" class="navbar-brand navbar-logo-custom" />
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav navbar-nav navbar-nav-scroll">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home-section"><span>HOME</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-section"><span>ABOUT</span></a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#stats-section"><span>STATS</span></a>
</li> -->
<li class="nav-item">
<!-- <a class="nav-link" href="#events-section"><span>EVENTS</span></a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#prize-section"><span>PRIZES</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#judges-section"><span>JUDGES & SPEAKERS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#track-section"><span>TRACKS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule-section"><span>TIMELINE</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsors"><span>SPONSORS</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs-section"><span>FAQs</span></a>
</li>
<!-- Temp fix for links issue -->
<li class="nav-item">
<a class="nav-link" href="/gallery" target="_blank"
rel="noopener noreferrer"><span>GALLERY</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://hackverse.nitk.ac.in/blog" target="_blank"
rel="noopener noreferrer"><span>BLOG</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/team" target="_blank"
rel="noopener noreferrer"><span>TEAM</span></a>
</li>
<!-- <li class="dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" data-bs-auto-close="outside"
aria-expanded="false" data-bs-offset="40,10">
LINKS
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown" id="scroll-spy-link">
<li class="nav-item">
<a class="nav-link dropdown-item" href="/blog">HackVerse Blog</a>
</li>
<li class="nav-item">
<a class="nav-link dropdown-item" href="/team">HackVerse Team</a>
</li>
</ul>
</li> -->
</ul>
</div>
<div
class="col-12 col-lg-2 d-flex align-items-lg-end justify-content-evenly social-media-icon navbar-social-media"
style="height: 100%;">
<a class="social-icons" href="http://instagram.com/hackversenitk/" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/instagram-nav.svg" alt="instagram" />
</a>
<a class="social-icons" href="http://t.me/hackverse" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/telegram-nav.svg" alt="telegram" />
</a>
<a class="social-icons" href="http://linkedin.com/company/hackverse" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/linkedin-nav.svg" alt="linkedin" />
</a>
<a class="social-icons" href="http://twitter.com/hackversenitk" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/twitter-nav.svg" alt="twitter" />
</a>
<!-- <a class="social-icons" href="http://www.facebook.com/hackverse/" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/facebook-nav.svg" alt="facebook" />
</a> -->
<!-- <a class="social-icons" href="https://www.youtube.com/channel/UC_hR3RkqNKQMDG1R2hpbSoA" target="_blank"
rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/youtube-nav.svg" alt="youtube" />
</a> -->
<a class="social-icons" href="https://discord.gg/HnmH7fGK" target="_blank" rel="noopener noreferrer">
<img loading="lazy" width="17.5x" height="17.5px" src="img/discord-nav.svg" alt="discord" />
</a>
</div>
</div>
</nav>
<!-- Home Section -->
<div id="hero">
<section id="home-section">
<div class="home fluid-container d-flex flex-column justify-content-start align-items-center">
<!-- Add rectangular space on the top only in the front page to shift the contents below the navbar -->
<div class="home-top-space-custom">
</div>
<div class="hero-card-top" data-aos="fade-up">
<!-- <p class="blink-soft x-small">Discover Your Inner Explorer: <br> Be on the lookout for special prizes!
</p> -->
<p class="blink-soft x-small">See you at Hackverse 5.0 next year. <br>
Until then, stay frosty and keep exploring the Arctic!
</p>
</div>
<div class="d-flex flex-column col-text hero-card" data-aos="fade-up">
<div>
<p>April 15-16, 2023</p>
</div>
<h1>Imagine.</h1>
<div style="line-height:60%;"> <br> </div>
<a class="nav-link" href="/gallery" target="_blank" rel="noopener noreferrer">
<h1 class="font-esgalon"><b>HackVerse 4.0</b></h1>
</a>
<p>24-hour long hackathon @ NITK </p>
<div class="hero-buttons-container">
<div class="row">
<div class="col">
<a href="https://hackverse-2023.devfolio.co/" target="_blank" rel="noopener noreferrer">
<button class="hero-button fill d-flex justify-content-center align-items-center mt-1">
<span>Devfolio Post</span>
</button>
</a>
</div>
<div class="col">
<a href="https://www.nitk.ac.in/How_To_Reach" target="_blank" rel="noopener noreferrer">
<button class="hero-button fill d-flex justify-content-center align-items-center mt-1">
<span>NITK</span>
</button>
</a>
</div>
</div>
<div class="col">
<a href="https://discord.gg/HnmH7fGK" target="_blank" rel="noopener noreferrer">
<button class="pt-2 pb-2 pl-4 pr-4 text-center text-light mb-2 rounded fs-6"
style="background-color: #212529; width: 312px">
<img
src="./img/discord.png"
alt="Discord"
style="height: 30px; margin-right: 10px"
/>
<span style="font-weight:500;font-size: 20px;font-family: Nunito Sans,sans-serif;">Discord Server</span>
</button>
</a>
</div>
<div class="col">
<div class="apply-button" data-hackathon-slug="hackverse-2023" data-button-theme="dark"
style="height: 44px; width: 312px" crossorigin="anonymous"></div>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 750 480"
preserveAspectRatio="xMidYMax slice">
<defs>
<!-- Scene 1 Gradient -->
<linearGradient id="grad1" x1="-154.32" y1="263.27" x2="-154.32" y2="374.3"
gradientTransform="matrix(-1, 0, 0, 1.36, 231.36, -100.14)" gradientUnits="userSpaceOnUse">
<stop offset="0.07" stop-color="#9c536b" />
<stop offset="0.98" stop-color="#d98981" />
</linearGradient>
<linearGradient id="bg_grad" x1="-154.32" y1="120.27" x2="-154.32" y2="374.3" gradientUnits="userSpaceOnUse">
<stop offset="0.0" stop-color="#63C3FB" />
<stop offset="0.8" stop-color="#63C3FB" />
</linearGradient>
<linearGradient id="grad2" x1="242.5" y1="356.25" x2="750" y2="356.25" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fbbd93" />
<stop offset="0.98" stop-color="#c46976" />
</linearGradient>
<linearGradient id="grad3" x1="467.26" y1="500" x2="467.26" y2="225.47" gradientUnits="userSpaceOnUse">
<stop offset="0.01" stop-color="#ffb8bd" />
<stop offset="1" stop-color="#914d64" />
</linearGradient>
<linearGradient id="grad4" x1="216.56" y1="227.64" x2="191.14" y2="600.82" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FCE8F4" />
<stop offset="0.96" stop-color="#8a6e95" />
</linearGradient>
<linearGradient id="grad5" x1="1" y1="413.12" x2="340.58" y2="413.12" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#433d6c" />
<stop offset="1" stop-color="#392e54" />
</linearGradient>
<linearGradient id="grad6" x1="454.13" y1="295.96" x2="454.13" y2="498.93" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#2b2850" />
<stop offset="0.99" stop-color="#563a6a" />
</linearGradient>
<linearGradient id="grad7" x1="434.38" y1="391.96" x2="474.27" y2="516.33" gradientUnits="userSpaceOnUse">
<stop offset="0.3" stop-color="#1c1b38" />
<stop offset="0.38" stop-color="#201e3e" />
<stop offset="0.9" stop-color="#383263" />
</linearGradient>
<linearGradient id="grad8" x1="259.18" y1="335.54" x2="213.65" y2="500.39" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0e0a1a" />
<stop offset="0.3" stop-color="#100d1f" />
<stop offset="0.64" stop-color="#17142c" />
<stop offset="0.95" stop-color="#201f3f" />
</linearGradient>
<linearGradient id="grad9" x1="508.16" y1="321.39" x2="726.97" y2="623.69" gradientUnits="userSpaceOnUse">
<stop offset="0.01" stop-color="#120e22" />
<stop offset="1" stop-color="#221d42" />
</linearGradient>
<!-- Scene2 Gradient -->
<linearGradient id="lg4" x1="641.98" y1="274.9" x2="638.02" y2="334.36" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#F0F9FF" />
<stop offset="1" stop-color="#C4E9FF" />
</linearGradient>
<linearGradient id="lg5" x1="172.37" y1="286.02" x2="171.33" y2="343.08" xlink:href="#lg4" />
<linearGradient id="lg6" x1="505.71" y1="261.55" x2="504.61" y2="322.08" xlink:href="#lg4" />
<linearGradient id="lg7" x1="301.32" y1="260.99" x2="295.66" y2="345.9" xlink:href="#lg4" />
<linearGradient id="lg8" x1="375.59" y1="381.01" x2="373.3" y2="507.08" xlink:href="#lg4" />
<!-- Scene3 Gradient -->
<radialGradient id="bg2-grad" cx="365.22" cy="500" r="631.74"
gradientTransform="translate(750 552.6) rotate(180) scale(1 1.11)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="hsla(349, 94%, 75%, 1)" />
<stop offset="0.12" stop-color="hsla(342, 49%, 62%, 1)" />
<stop offset="0.18" stop-color="hsla(328, 37%, 56%, 1)" />
<stop offset="0.33" stop-color="hsla(281, 33%, 48%, 1)" />
<stop offset="0.41" stop-color="hsla(268, 38%, 48%, 1)" />
<stop offset="0.45" stop-color="hsla(266, 38%, 43%, 1)" />
<stop offset="0.55" stop-color="hsla(261, 37%, 32%, 1)" />
<stop offset="0.64" stop-color="hsla(253, 36%, 24%, 1)" />
<stop offset="0.72" stop-color="hsla(244, 33%, 19%, 1)" />
<stop offset="0.78" stop-color="hsla(240, 33%, 17%, 1)" />
</radialGradient>
<radialGradient id="fstar-grad" cx="1362.39" cy="-53.7" r="39.39"
gradientTransform="matrix(0.89, -0.45, -0.45, -0.89, -473.7, 640.57)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff" />
<stop offset="0.06" stop-color="#fff" stop-opacity="0.8" />
<stop offset="0.12" stop-color="#fff" stop-opacity="0.62" />
<stop offset="0.19" stop-color="#fff" stop-opacity="0.45" />
<stop offset="0.26" stop-color="#fff" stop-opacity="0.31" />
<stop offset="0.33" stop-color="#fff" stop-opacity="0.2" />
<stop offset="0.41" stop-color="#fff" stop-opacity="0.11" />
<stop offset="0.49" stop-color="#fff" stop-opacity="0.05" />
<stop offset="0.59" stop-color="#fff" stop-opacity="0.01" />
<stop offset="0.72" stop-color="#fff" stop-opacity="0" />
</radialGradient>
<linearGradient id="linear-gradient" x1="472" y1="461.56" x2="872.58" y2="461.56"
gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fd75a8" />
<stop offset="1" stop-color="#5a2d81" />
</linearGradient>
<linearGradient id="linear-gradient-2" x1="214.61" y1="508.49" x2="166.09" y2="361.12"
xlink:href="#linear-gradient" />
<linearGradient id="linear-gradient-3" x1="57.65" y1="508.01" x2="448.08" y2="508.01"
xlink:href="#linear-gradient" />
<linearGradient id="linear-gradient-4" x1="193.48" y1="508.3" x2="761.05" y2="508.3"
xlink:href="#linear-gradient" />
</defs>
<rect id="bg" width="750" height="500" opacity="0.8" fill="url(#bg_grad)" />
<!-- SCENE 2 -->
<g id="scene2">
<g id="hills2">
<path id="h2-6"
d="M524.28,418.82c6.36,0,80.19-14.81,103.12-36.53S655.28,345.8,679,359.64s33.69,18.54,46.63,18.82a158.62,158.62,0,0,1,23.88,2.4V447L632,458.92Z"
fill="url(#lg4)" />
<path id="h2-5"
d="M294.06,498.2l49.09-66.93s-64-6.48-93.59-31.29-63.47-49.78-87.15-41.46-81.7,4.44-98.73,15S.1,387.08.1,387.08l.37,60.18L209.75,498.2Z"
fill="url(#lg5)" />
<path id="h2-4"
d="M264.94,449.2s61-16.39,94.07-37.28,61.37-37.2,73.53-36.12,69.9-40,80.18-42.62,13.55-.37,29,1.85,22-5.27,34.52,6.39,43.29,34.86,75.51,48.52c25.88,11,91.48,28.88,91.48,28.88l-31.58,67.73-326.93,9.27Z"
fill="url(#lg6)" />
<path id="h2-3"
d="M.47,469.58V420s113.73-2.74,171.72-26.68,101.69-72.29,134.53-52,31.37-18.48,61.9,13.28S446.68,393.48,478,406.86s113.08,26.06,113.08,26.06l-59.28,53.4L272.55,485Z"
fill="url(#lg7)" />
<path id="h2-2"
d="M749.55,500V398.27l-38.48-6.67s-29.86,12.13-63,11.53-39.61-7.26-70.33-13.41-72.58,21.4-105.61,21.4-75.5-17.78-110.64-17.78c-24.85,0-90.08,20.12-110.82,18.48s-51.11-20.42-82-6.26S.47,409.26.47,409.26V500Z"
fill="url(#lg8)" />
<path id="h2-1"
d="M746.51,371.43c-.18-1,1.74,1.28,2.2.27s2,1.37,2.14.37c.81-3.64.32-8.56-3.75-10.12-2.88-2.18,1.15-.54,2.06-.18,1.1,1.1-.4-4.74,1.86-1.95,2.17-10.09-3.87-8.35-11-11.08-6.32-4.83-1.32-3.94,1.19-.09,1.46,1.73,1.64-.55.82-1.91s1.92-.46,3.1,1.09c2,1.29,2.67-3.2,5.88,1.26-.68-1.81,1.09-6-.76-7,1.21-2.4.59-2.67-3.16-1.1-7.28.94-11.31-9.61-1.41-3-3.86-9,7.46,5.89,5.33-7.74-2.64,1.73-1.42.9-.67-1.37-1.62-.72-15,7.23-12.15-1.46.64-1.28,1,0,2,.73,1.69-5.55,4.78,5.68,3.45-2.56,12-4-1.25-3,7.36-5.61-1.11-2.6-3.43-2.45-.21-5.78-2.64.43-9.82,5.81-12.61,7.75.24-1.15.51-4,3-4.1.6-7.23.24-7-3.46-.64-.74-4.79,3.91-8.88,8.68-7.83-5.28-1.79-2.56-2.09-1-7-6.52,6.54-3.66-4.45-6.7,7,.48-3.06-1.28-4,1.22-7.47,4.44-10.76-3.3,8.72-3.29-7.83-1,.43-.73,6.12-.79,7.07-3-.8-1.7-.34-.69,1.7-1.43,1.17-.74,1.27.8,2.49.74,4.27-2,1.08-3.36-.88-4.35-6.05-.4,2.13-2.72.12-1.24-1.36-4-3.95-3.43-2.14,4.91,4.75.6,3.52,1.19,5.61,1.41.16,4.51-1.36,3.39-.25-5.76,6.22,2.05.63,2.89,1-1,.93-3.28,5.39-.37,3.54.29-1.15,1.37-2.35,1.57-1.48-.46,2,1.69,9.06-1,9.72-2.54,0-4.86-7.06-5.24-6.39-.38,1.49-.5,1.86-1.08.5-3.67-7.21-1.74-.94-3.68-1.65-4-4.19-2-.84-1.32,1.24-4.84,2.49,3.28,2.51,2.44,4.45-.7,1.28-2.07,1.25-.58,1.92,4.58-.37,2,1.39,4.34,2.28,2.88-1,5.26,2.39,2.44,1.69-5-.1-20.52-11-10,.87,7,.12,1,2.11,3.88,3.21,15-1,2.77,4.82-3.33.35,3-1.17-3.57-1.56-7.58-3.23s-.38-1.28,1-3.45-2.05-.77-8.71-.51-5.38-.89-9-2.3,0,0,.51-2.56-1.66.13-3.84.13c-4.52-3.06-1.16-3.32,3.2-3.57,3.67-1.95,5.09,10.6,5.38-.39.77-2.3,1.16,1.92,1.54,4.35,3.76,3-1.2-6.05,12.94-2.81,4.1-1.28-.26-2.31-4-2.69s-1.16-1.28-3.85-3.83c-3.6-1.38-12.91-3.64-4-1.92,4.58-.21-1.85-6.68,7.95-7.92,5.38-3.37-13.42-1.72-14.35-1.15-2.29.56-6.18-3.69-9.28-5.31,12.7,1.23,2.82-11.86,12.22-5.3,5.73-.12-5.55-6.49,8.08-9.45,2.43-2.94-5.26-.26-8.33.26s-.26-1.28-.77-3.58-6.66,3.32-11.66,3.58c-7.8.37-12.63-12.92-4.1-6.27,2.44.64,1.28-.89,3.59-2,3-1.51,3.21,5.49,5.51-.64,2.22-3.05,12.37,2.1,12.68-5.62.56-3.26-3.79,2.9-6.66-2.43-2.36-.88-6.61,4.89-7.3.51-1.42-2.62-4.59,5.33-5.77,1.15-.51-1.53-1.92-.51-3.84.51s-6.52-3.82-3-5c.9-1.15,1.8.64,3.72.89s-.39-.89-.77-2c2.12-1.35,3,.56,5.38,2.94,8.31,2.12-4.64-9.3,4.35-4,4.35,3.21,6-.42.26-2.81-2.82-1.92.38-.77,4-.64s.9-.9,4.1-2.17,3.2-.13,3.33-2c-.26-3.55-8.61,1.51-10.25-.64-2.23-1.5-8.21,6.86-4-1.79.64-2.68-4.48,1.92-7.3,4.09s-1.15-1.15-3.07-2.17-2.31-.89-2.57-2.68c.68-5.19,16.82-.84,8.33-7.54-1.54-2,2.18.64,4.36.13,1.76-4.07-7.91.1,2.94-8,1.54-5.58-8.57,8.13-5.89-.64,1.43-3.27-10.84,9.6-6.28.13-1.56-3-.72-3.44,1.54-6.14-.33-3.42,1.84-3.19,2.43-7.15.9-2-2.17,1.15-3.45,1.66s.25-2.17-1.29-1.28c-8.07,7.69-3.42-7.39-1-10.35-.13-1.4-4.67,4.62-4.67,4.62,2.71-16.44-2.82-12.66-2.37-1.3-5.21-3.92,0,.7-1.54,2.43-1.16,1.15-1.28,1.53-.39,2.68,3.76,9.29-1.34-1-2.3-.64-.9,1.54-.39,2.31-1.93,1.28s-6.14-4.6-5.76-2.42,4.74,4.72,3.2,5.11c-7.75,1.68.41.75-.51,2.81-6.8,6.31,7-2,5.25,1.79-.64,2.42-.89,2.3.39,3.19,2,0,3.62,6.06.89,5-3.91-1.77.54,4.68-.38,4.86-5.08-.23-3.77-10.37-8.44-7.67a17.55,17.55,0,0,0-3-1.15c-5-1.66,1,1.66-1.41,2.94s-1.28,2.56-1.28,2.56c11,.75-1.35,7.24,8.45,4.85-2.31,5.75,7-.71,5.77,2.83-.51,2.16-.77,2.54-.26,3.82,4.57,6.78-6.42-2.12-6.15.38.33,4.58-5,2.33-7,4.73-2,2.68-.39,3.7-4,4.09s-11.53.51-7.95,1.66c6.79-.42,7.22,1,9.48,4.34,1.53-8.78,4.34,3.66,6.66-.64,1.67-1.91,2.44-4.6,3.85-3.19,5.06,1.8,5.87,1.91,2.43,5.49,0,0-3.59-1.79-4.61.39-2.32,5.72-6-1.9-9.1,1.15-.14,7.69-9.9-.58-13.45,2.3a2,2,0,0,1-1.86,1.66c-11.3,1.06,4.16,4.2,4.68,3.45-.21,9.86,5.69-1.41,6.28,2.17-4.69,5.84,5-1.95,5.12.89.64,2,0,3.71,2.31,2.43s6.66-5.62,6.79-2.68c.15,10-13.55,3.34-19.73,8.94-1.68,1-14.07-3.87-11.79-1.15,15.19,1.27.05,9.69,6.34,8.82,12.38-9.88,1.29,6.2,6.6,4,10.7-13.37,3.6,2.41,8.71-.38a21.44,21.44,0,0,1,5.38-4.22c4.24-3.57,6.29,2.58-.38,5.18-6.85.83-10.49,0-14,4.41-8.91-3.26-4.54-1-10.38,1.78-10.63-1.78-5.86,8.17.26,7,12.35-5,2.74,2.09,6.78,3.45,3-1.11,12.28-12.68,7.69-4.73-.89,2.43,2.31.64,1.67,2.43s-3.2,4.21-.13,4c14.75-10.35,12,2.11-.77,4.34-18-4.52-.64.26-15,1.92-12.49,1.49-10.3.29-2.81,5.24-1,2.3-4.1,4.47-1.29,4.34s12.17-4.47,10.51-2.68-5.78,4.9-2.89,3.54c13.76-8.22-5.12,6.11,1.61,4.76,3.71-.76,9.6-6.51,8.84-4s-1.93,4.09.12,2.43c10.51-5.31-2.75,7.93-17.55,5.62-.25,1.92-2.94-1.4-3.2.77-3.67,8.11,13.8,2.67,2.95,8.18-2.44,1.53-11.53-.77-10,.76s2.81,4.25.89,3.92-8.84-.21-3.46,1.45,8.72-1.4,10.51.64-.9,3.07,4,1.79,3.07,1.15-.64,3.45-11.4-.51-11.4,1.53c2.8,5.41-11.91-.08-9.23,2.68,13.63,5.15,5.29,3.48,10,8.18,3.7-3.51,6.77-2,9.62-2.42,12.12-5.68-4.93,5.69-9.48,6.38-11.06-.06-7.31-3.3-10.38,2.94-2.69.77-10.38.51-8.07,2.56,23.95,5.71-5.06,10.66,22.29,4.47-4,5.67,2.68,3.1,4.48,5.11,1,.89-.38,1.22,4.74-.86,8.23-5.29,7,5.71.13,5.46-7.69-1.82-8.17,4.2-14.6.25,0,0,3.45,3.46-.13,3.33s-2.95-1.92-5.13.51-10.76,2.68-8.19,3.32,8.32-1.66,5.89,1.41c-10.92,12.28,7.16-.53,5.38,2.68-11,13.43,6.5-3.12,5.12.77-1.4,9.85,5.22-.89,7,2.68-2.68,5.93,4.6-2.48,6.15.51,11.35-3.6-.37,6.6-7.18,7-8.76-.16-11.08,3.09-17.9.66,2.51-1.82-7.27.12-8.33-2.36-1.27-1.72,6.91.36,4.32-3.91-2.53-1.74-12,1.16-15.24-4.31-2.77-3.36,5.15,3.59,2.1-1.3-.49-1.63,3.27,2,5.63,2.52,4.3.91-7.75-8.32,1-3,1.84.87-.78-1.11-1.84-2.25s4.89,1.63,6.69,1.71c1.87-2.07-4.21-2.56,3.1-5-.13-2.39-10.71.53-9.55-3.18-1.73-.24-11.36,1.59-12.89-3.59.79-2.63,2.84-.17,6.69,1.64,2,.16.33-1.39-.08-2.53s1.63,0,1.06-1.54c-2.89-5.12,3,2.33,4.9,3,1.87.24.57-1.14-.17-2.61.11-2.25,8.1,3.45,8.65-2.6,1.23-2.2-1.63-.73-4-1.47-3.23-1.81-2.29-3-6.61-1.13-1.21-3.51-12.17-1.06-11.58-6.35,3-3,6.93,8.24,7.5.24.65-3.21,7,9.82,4.25-.81.24-2.36.73,0,3.88,1.22,3.73.49-5.31-5,4-5.62,1.48-1.81-6.45,1.5-7.5.73-2.6-3.1-12.48.58-12.57-5.69.08-1.88,2.85.89,4.32,1.7s1.06-.24,1.47-1.54c0-1.82,6.26,3.15,3.27-.57-.49-1.14,1.55.16,2.77,1.14s1.22-2.53,1.22-2.53,3.84,0,5.39-1c1.06-2-3.38-.17-3.59-2.28-2.66-1.31-4.46,1.33-7.67.4-1.63-1.82-1.48-3.37-5.06-1.13-2-2.75-4.95-.91-6-3.75,4.67-4.68,4.9,4,7.92-.49,2.48-1.44,1.21,4.38,2.94-.57,2.42-1.28,9.57-.76-.25-1.79-2.28-.24-1.22-.89-2.53-2.6-1.29-1.54-4.71-.13-4.49-3-3.26-.94-4.67,5.3-4.08-2.68-.77-2.26,5.15,1.83,3.68-1.8,5.9,1.56-1.24-2.76,5.38-3.09,0,0,.74-.82-.81-1.63s2.28-2.93-.9-1.87a13.13,13.13,0,0,0-1.88.72c-2.65-1.81-2.5,4.94-5.39,4.89-.58-.13,2.25-4.21-.24-3.09-1.74.7-.71-3.2.57-3.17,1.13-2.22-.69-3.6,4.08-1.71,1.88.4.08-.65-.49-1.47-.58-1.31,4.61-.72-.32-1.79-1-.24,1.79-1.87,2-3.25-.19-2.2-4.55,4-4.9.73-.68-.25-3.86,6.49-1.47.4.57-.73.49-1-.24-1.7-1-1.11,2.33-4-1-1.55.29-7.14-3.24-9.77-1.52.83-7.68-10.56,4.83,10.75-3.62,3.65-1-.57,0,1.14-.82.81s-2.78-2.36-2.2-1.06c.38,2.53,1.75,2.39,1.55,4.56,1.37,1.54,1.92,2.21,1,3.91,2.91,6-4.9-2.13-4-.08,1.7,5.58-4.73-3.15-3.76.4,6.52,4.89,1.11,2.55,1.88,5.13,1.39.33,3.75-1.38,2.77-.08-5.41,4.26,4.87,1.49,5.31,4.8-3.17,7.07-6.43-1.25-8.24.49,2.7,5.51-1.11.18-2.53,1.14-1,1.36-6.37-1.85-6.53.41.16.9,3.47,2.27,4.73,2.68,2.29-.08,4.33-.81,2.53.41-3.67,1.52-2.61,3.83.16,1.79,4.52-2.26.92.36.82,1.55,1.21,4,3.87-2.8,5.39-.9-2.52,3,1.33-.17,1.87.73,2.29.75-.6,3.8-1.87,3.18s-2.12-1.3-2.45-.33c-.75,2.66-2.77-2.4-3.67-.73-.45,2.79-3.15-.9-4.66-.33-1.39,3.15-4.28-.26-4.24,1.55.21,4.91,6.65,1.63,8.08,3.58,2.1,4.12.89-1.82,5.79,1.71,5.44-4.25,2.37,4.24-2.61,4-6.92-1.41-6.24-4.79-7.91,0-2-.33-6.86-2-5.31-.16,8.07,1.54,1.89,5.64,5.14,6,5.74-4.17-.18,5.47,9.58,3.09-8,5.44-20,1.79-16.84,4.4,8.61,2.38-.65,4.82,7.26,5-3.32-.15-4.95,2.09-7.18,3.67-2.36.24-5.14.89-2.53,1.71,8-2,5.95,3.07,8.25,1.79,1.36-8.7.35,2.66,1.87-.25.48-4,8.74-2.22,4.57,0-6.47-2.35,3.48,2.76-7.83,3-10-1.17-2.53.55-4.9,2.53-2.53,1.06-6.61,1.3-4.89,2,6-1.26,1.33,5.1,5.22,4.11,2.28-1,4.32-3.94,3.67-1.75-2.7,6.6,2.65-.56,3.51.9,1.38,3,5.62-2.59,5.39-.33-3,2.11-3.27,2.63-6.21,4.15-1.87,1.31,2.29,1.55-.08,2.12-4.32.18-13.63,1.24-15.59,2.12,3.82-.78.8,7.22,3.68,4.56,5.61-6.52.25,2.37,3.26,1,2.29-1.71,2.9.93,5.46.9,6.27,4.73-6.4,2.08-6,3.33.49,1.55,1.63,2.28-.57,2.12s-8.32-2.85-6.94-1.06c5.91,2.37-.24,4.09,2.78,5,7-3,.4,1.75,3.92,2.12,27.56-1.09-23,6-35.81,11,0-.24-.41-.76.59-1.33.61-.25-6.88-.2-4.53-.81-.16-1,3.74.85,1.11-1.6-.15-.2,3.58.9,2.64-.76,2.28-1.51-.68-.27-.87-1.24.06-.42-2.81,1.09-1.48-.57-.12-.61-2.45.88-2.8-.14-.94.05-1.33-.6-1.9-1.27-.07-.57,1.25,1.36,1.15.24.31-.36,1.67.85,1.25-.59,1.08.52,1.83.36.75-.73,0-.29,2.15,2.24,1.34.23,1.95,0,.53-.87,2.16-.87,0-.88-2.77-.29-1.95-1.56.08-.51-4.34,1.28-2.24-.25.14.1-6.33-1.3-3.48-1.25,1.83.88,1.78-.93,3-.17.55-.42,2-.05.38-1.34.12-.4,1.57,1.57,1.25.15a2.17,2.17,0,0,0,1.84.11c1-.41-2.57-.66-.92-1.54a20,20,0,0,0-3.55.25c.29-.92.26-.92-1.38-.45-1.33.12-1.34-2.06-.19-.79.52-1.31,2.44,1.39,2-.86.09-.85,1.78,1.57,1.45-.13,1,0,.73-.77,2.31-1,.43-.74-1.65.18-1.4-.78-.56-.46-1.18.81-1.72.32-1.12-1.07-1.65-.47-3.74-.32-.44-.11-.12-.27.16-.59-.58,0-1.64-2.13-.39-.69.8.27.8-2.56,1.78,0,0,1.11,4.52-3.06.65-1.82.85-2.16-3.37,1.39-3.69-.9.31-.18,3.33.71,2.36-.65,0-.53,1.66,0,1.48-.95,3.28-3-4.26,1.48-3.8-.08,1.16-.08,1.27-.79,2.47-.91.17-.61-.58-1,1-1.44-.48-.55.53-2.66-.84-1-1.07-1.34-1.24,1.32-3.25,2.45-.74.11-.47-4.68.21-2.67,1.69.32-1.78-2.35,1.35-.49.71-.48-1.94-1.51.57-.92.07-.47-.9-.76.39-1.82.17-1-2,2.17-1.27.12-.08-.77-1.34,1.7-1.84,1.58.66-1.63-.3-7.28-.53-2.11-3-2.43.53,1.22-.35,2.67-.34-2.18-.84-1.15-2.18-2.28.56,1.47,1.12,1.82-.32,2.27a2.34,2.34,0,0,1,2.82,2.55c-2.08-3.51-1,.25-.15,1.54-.9-.63-3.24-2.38-4.1-2.52,1.3,1.16-.17,1.23-.09,1.87,1.46.68,1.12,0,.69,1.15,1.3.44,1.7.42,1.73,1.69,1.75-2,3.07,2.15-.55.59-1.8-.86-1.65-.67-1.36.21-1.67-1.54-1.51-.42-2.85.3,2.85.06-1.68,2.16,2.21.88.48,1.52,3-1.22,1.89,1,.35.08,2.31-1.66,2-.28-2.12,2.11-4.36,1.12-6.56,2.09,1.69-.3.4,1.25,1.24,1.33,2-.95,1.21.1,1.75.35.89-1.38,1.16.22,1.75-.29.39-.51,1.28-.8,1-.36s-.2,1.19.27.62c2.78-2.63.4.92-1.91.71-2.91.14-4.12-.15-6.07.89,4.56.06.28,4.29,4.33,1.69-1.61,3.29.61-.45.89.24-.47,1.72,1.83-.34.85.8-2.34,2.34-4.91.93-5.87,2.81.38,1.13,1.94.35,2.38.62-.15.29-.86,1.27-.27.8,3.07-2.28-.33.91,2.54-1,3-.76.22,1.18-2,1.54-2.23-.2-2.1-.86-3.24-.3-.59,1.08,2.8,1.26,2.4,1.57-2.1,1.84.94.15.75.36-1,2.18,1.38-1,1.51-.27.06.42.06.89.55.36,1.57-1.52.38.44,1.32,0-.85,2.15-13.05,1.62-6,4,.68,1.17.83.13,1.73.36-.71,2.35,1.06-.42,1.36,0-.16,1.66,1.27-.9,1.54-.21.07.58,2.31-.31-.14,1.2-2.63.82-5,2.27-7.78,2.06.27.7,1.43.45,1.1,1.45,2,0,.37.45.8,1,2.11-.42.86-.1,1.33.65,1.77-.79,1,.12,1.61.35,1.81-.93.16.74,2.25-.12-.63,2-9.9-.19-6.5,1.66-.33,1.29-.08,1,1,1.09-26.75,9.23-51.68,18.58-72.86,19.51.85-1.1-4.3.92-3.1-.69-1.23.7-4.12-1.24-1.79-.57.76-.79.53-.35,1.87.15.72-.24-.58-2.09,1.19-.62.53.35.36-.07.38-.52,0-.6,1.33.7.87-.58-.11-.4,1.05-.1,1.44-.45.43-.75-1.65.18-1.4-.79-3,1.1-2.06-1.1-3.27-.38-1.83.9-2.71,0-2.94-1.43.82.48.47,1.05,1.49-.46.26-.93,1.26,3.22,1.7.58.17-.63.07-.36.7-.37,2.93-2.58-3.79-.09-4.63-1.9.32-.16,3.33.68,2.36-.66.47.1,3.76-2.7,1.61-1.81-1.68.43-6.25,2.13-2.52.07,1.9-.09.11-1.06,2.06-1.63.07-.58-.76-.71.06-1.61-.21-.7-1.36,1.83-1.18,0-1.27.94-4,5.55-3.26-.13.84.65,1.43.73.39-.67,0-.34,1,.68,1.47.67.71-.49-1.94-1.52.57-.93.45,0-.07-.28-.42-.57.06-.52,1.8-2.48-.31-.55-.4.44-.28-.12-.15-.58-.08-.76-1.34,1.7-1.84,1.58.66-1.62-.3-7.29-.53-2.11-3-2.43.53,1.23-.35,2.67-.34-2.18-.84-1.15-2.18-2.28.56,1.47,1.12,1.83-.32,2.28a2.33,2.33,0,0,1,2.82,2.54c-2.08-3.5-1,.25-.15,1.54-1.18-.54-5.09-4.23-3.53-1.33-1.8.71.28.93.56,1.1-1.72,1.13,1,.8,1.2,1.42-.38,1.39,0,.89.73.29,1.84.43,1.31,2.38-1.28,1.31-1.8-.89-1.65-.67-1.36.21-.42-.07-1.43-1.34-1.66-1s.38.59.06.74c-3.44,1.38,1.81-.47-.89,2,1.44-.7,2.7-.08,4.15-.45-.85,1.38-.22.89.92.24,2.71,1.41-5.26,2.1-5.9,2.49,1,.21,1,.61,1.05.9-21-.93-58.84,14-95.62-4.81,3.41-.31,1.6.27.36-1.45-.23-.3-2.74,1.18-.7-.61-1.37,1.26-10.43-1.86-6.45-1.87.39-.74,2.19,1.35,1.53-.12,3.2.88.45-2.09,3.56.41,1.4.05-2.74-2.68,1.33-.6.73.16.06-.57-.54-1.33.1-.67,1-.48,1.21-.41-.16-.05-.66-.25-1.78-.77-.2-.72-2.67.57-1.3-.95-.56.37-6.08.22-4.8-1.58-.13-.55,5,1.53,3.49-.89,4.6,1.24,1,.42,5.53-1.11.57-.5-1.33-.44-2-.63-.53-1.18-.36-.88-2.57-.73-1.59-.82-6.06-2.58-1.4-1.65,2.22,1.23,1.37-.69,3.91-1.36-1.34-.18-2.7-.58-5.12-1-2.4-1.79.87,0,.83-1.3.44-.51,1.27.25,2.6-.16,1.76-.86-2.54.36-.64-1.33-.22,0-6-.71-2.31-1.05,1,.07.63-.63.57-1.17-1-.69-4.67.46-5.93-1.68-1.08-1.31,2,1.4.82-.51-.19-.63,1.27.8,2.19,1,1.67.33-3-3.23.4-1.19.71.34-.31-.43-.72-.87-.38-.67,4.48,2.1,2.29-.42,5.63-2.41-9.27-.66-6.67-4,1.82,1.05,2.67,2.12,2.16-1.07.19-.22,3.54,3.7,2.13.83,0-.9,3.15,1.36,3.36-1,.59-.45-3.79-1.61-4.13-1,0-.49-7.51-2.41-3.56-2.38.65,0,1.88,2.57,2,0,.25-1.28,2.72,3.86,1.66-.31.09-.92.28,0,1.51.47,1.15.14-1.54-2.2,1.57-2.18-.89-.41-7.61.92-7.82-1.94,0-.73,1.11.35,1.69.67.89.09.29-1.4,1.93-.31.55,0-.86-1.39,1-.07.83-.85.58-1,2.57-1.36-.62-1.21-2.81-.79-4.38-.73-.48-.53-.93-1.32-2-.45-.63-.89-1.94-.42-2.32-1.45,1.13-1.64,2,1.25,3.08-.19,1-.58.48,1.71,1.14-.23.95-.46,3.73-.32-.09-.69-.77-.87-2.3-1.2-2.73-2.19-1.22-.06-1.81,1.48-1.59-1-.3-.9,2,.72,1.43-.7,1.95.68-.1-1.23,2.1-1.2,0,0,.28-.32-.32-.64s.89-1.14-.35-.73a4.1,4.1,0,0,0-.73.29c-1-.71-1,1.92-2.1,1.9.84-1.22-1.38-1.44.13-2.44.44-.86-.27-1.4,1.59-.67.73.16,0-.25-.19-.57-.23-.51,1.79-.28-.13-.69.21-.64,1.68-2.3-.64-.67-1-.66-1.73,1.92-1.05-.16.08-1.34-1.77-7.08-1.06-.94-2.25-2.83.21.82-.33,2-.58.27-1.06-1.16-1.4-.26-2.24-1.56.93,2.12.13,2.89,1.13,2.34-1.91-.83-1.56,0,.67,2.17-1.84-1.23-1.46.15,2,1.45.66,1.17.73,2,.54.13,1.46-.54,1.08,0-2.11,1.66,1.89.58,2.06,1.87-.67,2.39-2.69-.26-3.2.19,1.6,2.31-2.88-.74-3.53.6-.09,1,3.74.84,2.83,1.2-1.43.6-1,1.5.06.7,1.76-.88.36.14.32.6.47,1.55,1.5-1.08,2.1-.35-1,1.18.51-.06.73.29,1.14,1.91-2.57.94-3.12.82-.17,1.09-1.22-.34-1.81-.12-.31.93-1.64.09-1.65.6.08,1.91,2.59.63,3.15,1.39.62,1.25,1-.44,2.25.67,2.11-1.66.93,1.65-1,1.55-2.59-.63-2.53-1.63-3.08,0-.76-.13-2.67-.79-2.06-.06,2.44.27,1.11,2.16,2,2.34,1.8-1.38.71,2.21,3.73,1.21-1.46,1.46-7.18,1-6.56,1.71,2.1.14,1,1.88,2,2,2.67-.71-1.63.72-1.94,1.43-3.76.9,1.51.35,1.49.69.13.7.64,1.27.74.67.54-3.46.13,1,.73-.1.2-1.53,3.39-.88,1.78,0-2.39-.89.24.61-.83.61-.31.95-4.95.07-4.38.69,2.33,1.14-2.71,1.16-1.65,1.65,3.26.22-.63,3,3.46.92-1.08,2.54,1.05-.2,1.36.35.56,1.2,2.18-1,2.1-.13-2.1,1.1-2.33,3-4.38,2.57,0-.27-4.82.8-4.13.69,1.47-.31.32,2.83,1.43,1.78.44-.7,1.27-1.27,1.11-.6-1.63,1.86,5,.4,2.22,2.52-2.83-.17-1.54,0-2.47.93-4.29-1.12-1.85-.53-1.63,1.55,2.69-1.23.19.72,1.53.83,2.24-1.16.66.77,1.75.47,1-.62,1.85-.51,2-.06-5,4-42.22-16.12-30.53-10.29,2.07.75-.14-1.38-1.17-2.75-1-1.56,8.79,5.06,2.89-1.45-1.3-1.65,1.8-.41,3.17-.75.57.27-5.69-2.87-7.16-2.07-1.93.07-.07-1.78-.07-1.78-1.36-.17-2,2-4.89-.07-1.68-.74-5.92.58-6.2-2.54,1.6-1-.85-2.32,3.3-.46s1.23-.57,4.69,0c1.38.2,1-1.24.28-2.27-1.68-1.76,10.34,4.45,6.13.07-.49-1.1,4.61-1.38,5.85-2.48,1.64-1.83-7,0-4.68-3-3,.19-10-1.14-13-4.2-1-.95,2.68.76,2.68.76,1.56.19,3.17-.56,5.17,1.31,1.7-2.42.45-2.65,5.38-4.4.82-1.24-2.14.28-4-.14-2.17-2.53-2.23-1-7.1-2.13-5.19-3.87,1.86-.09,1.79-2.81.3-.13,11.48-.73,3.79-1.13.93-5.55-2.8.14-7-3.62-1.12-1.56,5.88.39,3.66-3.29-2.16-1.51-10.11,1-12.87-3.65-2.34-2.85,4.35,3,1.77-1.09-.41-1.38,2.76,1.71,4.76,2.13,3.58.7-6.52-7,.86-2.57,1.56.74-.66-.94-1.55-1.9s4.13,1.37,5.65,1.44c1.57-1.76-3.55-2.15,2.62-4.19-.09-2-9.07.42-8.06-2.68-1.38-.06-9.65,1.25-10.89-3,.69-2.19,2.38-.17,5.65,1.38,1.65.14.28-1.17-.07-2.13s1.38,0,.9-1.3c-2.47-4.31,2.54,2,4.13,2.54,1.58.2.48-1-.14-2.2,0-2,6.87,3,7.3-2.2,1-1.86-1.37-.62-3.37-1.24-2.45-1.49-2.53-2.44-5.58-1-1-3-10.28-.89-9.78-5.36,2.53-2.5,5.85,7,6.33.21.47-2.84,5.93,8.38,3.59-.69.2-2,.62,0,3.27,1,2.78.18-4-4.39,3.41-4.74,1.19-1.62-5.41,1.33-6.34.62-3.08-1.33-3.1-2.18-7.92-1.51-4.7-1.52-2.82-5.9,1-1.86,1.24.69.9-.2,1.24-1.3,0-1.57,5.29,2.68,2.76-.49,6.58,2-.75-.72,7.92-2,.9-1.64-2.85-.14-3-1.92-2.24-1.09-3.77,1.11-6.48.34-1.11-1.21-1.66-2.94-4.27-1-1.32-1.95-4.28-1-5-3.16.92-1.14,3.46-2.19,4.55.48.9,1,.9.27,2.14-.89,2.06-1.28,1,3.73,2.48-.49,2.12-.95,8-.73-.21-1.51-1.93-.2-1-.75-2.14-2.2s-3.94,0-3.78-2.54c-2.76-.61-3.95,4.19-3.45-2.26-.68-2,4.37,1.59,3.1-1.52,4.67,1.37-.69-2.47,4.55-2.61,0,0,.62-.69-.69-1.37s1.93-2.48-.76-1.58a10.66,10.66,0,0,0-1.59.61c-2.23-1.53-2.11,4.17-4.54,4.13,2.16-6.84-3.13,2.32.48-7-.93-2.06,6.48,2.43,2.83-1-.49-.69.41-.48,1.37-.76-.74-1.37-2.94.17.07-3.5-.16-1.86-3.84,3.37-4.13.62-.48-.83-1.31,2.61-1.79,2.54.28-1.56.25-3.85.82-5.57.28-.75-.61.14-1.3.62-1.1.89,1.08-6.11-1.31-5.29-1.26.21.22,5.78,0,6-6.62-9,4.14,9.15-3.06,3.08-.83-.48,0,1-.69.69s-2.35-2-1.86-.9c.41,2.93,3.23,4.6,2.13,7.15,2.45,5.08-4.14-1.8-3.37-.07,1.44,4.72-4-2.65-3.17.34,5.22,3.89,1.12,2.22,1.58,4.33,1.17.28,3.17-1.16,2.34-.06-4.56,3.6,4.11,1.26,4.48,4.05-2.67,6-5.42-1.06-7,.41,3.57,4.89-6.24-1.56-7.64,1.31.13.76,2.93,1.92,4,2.27,1.93-.07,3.65-.69,2.14.34-3.1,1.28-2.2,3.24.14,1.51,3.81-1.91.77.3.69,1.31,1,3.36,3.26-2.36,4.54-.76-2.12,2.56,1.13-.14,1.59.62,1.92.63-.51,3.21-1.59,2.68s-1.79-1.1-2.06-.28c-.64,2.25-2.34-2-3.1-.62-.38,2.36-2.66-.75-3.93-.27-1.18,2.65-3.62-.23-3.58,1.3.17,4.15,5.61,1.38,6.82,3,1.69,3.36,1-1.47,4.89,1.44,4.58-3.59,2,3.58-2.21,3.37-5.84-1.19-5.27-4-6.68,0-1.65-.28-5.79-1.72-4.48-.14,6.4,1.1,1.84,4.72,4.34,5.09,4.84-3.52-.15,4.61,8.09,2.61-6,4.33-16.83,1.66-14.22,3.71,6.91,1.85-.18,4.23,6.13,4.26-2.81-.13-4.18,1.76-6.06,3.09-2,.21-4.34.76-2.14,1.44,6.49-1.69,5.08,2.45,7,1.52.21-1.31.42-3.58.83-2.34.16,5.93.91-.85,2.89.21,2.34.12,4.16.28,1.73,1.92-4.66-1.72.25,1.25-1.8,1.3-.65,2.11-10.75.14-9.5,1.52.75,1.16,2.68,1,.55,1.85-7.23,2.32-2.83.57-1.1,2.82-.14,1.79-.56,3.23,1.37,2.37,6.2-4.84.61,1.08,3.31.72,2.32-2.39,2.7-.92,4.41-.72,4.88-2.79,1.89-.09-.41,1.41-4.9,2.52-.29,1.67-2,2.89-3.64.15-11.5,1-13.16,1.78,3.22-.65.68,6.1,3.1,3.85,1-1.51,2.76-2.75,2.41-1.31s-1.38,2.82.35,2.13c2-1.36,3.27,1.14,5.69,1,1.64,4.94-6.23.88-6.11,2.62.42,1.3,1.38,1.92-.48,1.78s-7-2.4-5.86-.89c5,2-.2,3.45,2.35,4.26,1.86-.21,3.23-1.65,3-.55-2.72,4.76,3.42.38,3.38,2-1.41,4,3.39-1.05,3.78.55,2.66,5.1-19.84,3.31-25.45,3.71,9.09-2.13-10.3-2.08-6.59-3.89,1.71-1.7,10.32-3.2,8.12-4.4s-7.82,2.7-9.32,2,5.31-3.4,3.21-4.1-1.71-2.2-5.51.8c-21.78,10.18-.32-7.41-17.19,2.73-2.05,0-2.24-.8-5-1.67s1-1.44.18-3.12.11-1.27,1.62-2.66-4.17-1-7.42-3.52-.41-1.51.68-.52.83.52,1.12-1c8.81,5,1.57-4.6,10.14,2.32,3.59.82-3.06-8.35,5.85-2.31,1.89-3.31,3.89-5.63,11.13-3.41,5.35-.94-2.39-6.11,10.42-4.4,3.71-2.78-9.4-.49-5-5.09-.71-2-16,3-11.13-1.61-1.36-1.27-25.06-2-25.79-8.1-.53-1.12,3,.81,3.85-.46.36-.77,5.62,2.86,4.9-.64.23-1.21,6.2,1.74,6.2,1.74,3.16-1.25,3.42-1.28,8.87,1,5.25.75-3.68-8.85,2.61-5.26,0,0,.81-.41.35-1.56-1.93-1,18.06,4.39,11.88-2.66-.29-1.68,1.62-2.31,2.89-3.64s-1.33-1.51-3.53-.52c-4.34,1.79-2.21-2.25-7.77-.23-2.66.4-1-1.22.41-1.91.43-1.43-16.37-2.39-16.63-5.61-.7-1.5,2-.69,3.76-.17,2.81-.54,1.13-2.16,6.9.29,3,.52.87-1.33-.52-2.89-.44-1.1,8.71-2.05,10.14-6.08,1.22-1.9-4.64.35-4.64.35-3.66-2.51-4.56-1.28-10.43-.34-2.14-.76,1.1-.87,2.2-2,2-1-21.76-4.5-12.28-4.05,3.9.73.49-5.3,6.37-.63,3.82,2-1.13-5.12,6.2-.52,3.38-.55-3.9-4.27,5.34-7.17,1.76-4.06-8.78,3.07-6.73-2,.56-1.91-19,3.29-9.73-3.53,1.56-2.2,1.91-.12,3.88-.12-1.24-6.61,10.81-8.7-6.26-5.14-2-.23,1.68-1.21,2.55-2.54,1.54-.8-24.09.5-13-2-.81-4.56,2.05.23,4.69-1,1.86-.86,2,.29,3.77-.06s-2.49-4.68-3.65-5.83c-1.88-.8,9.43,1.68,10.6.23,3.32-1.07-1.89-3.84,4.53-6.42.63-1.85-6.32-.75-6.32-.75-1.91-2.64-2.21-2-7.57-.64-2.88.29-.89-1.9,0-3.52-.52-2.58-10.57,3.77-12.08-.58-4.48,1.24-12.37-10.21-4.35-3.12,2.26-.45-.32-2.66,5.74-.58,2.73-.06-.52-3.18.75-3.3s4.87,2.84,5.68,1c-3.68-7.77-1.67-2.2,3.66.17,1-2.17-2-5.89,4.34-3.41,2.39-1.56-2.18-4.29,4.7-3.7.75-1.5-6.55-3.47-8.44-3.53.42-7.83-4.63-1-11.44-1.56-2.84-.34.64-1,1.79-2.71s-9.09-.12-12.51-1.56c-5.39-1.86-8.15-7-2.55-3.82,3.15,1.51,2-1.63,5.44,1.21,2.82,2.67,3.12-6.92,7.6-2,1.16,1.21,1.44.11,1.21-1.56,6,1,4.33-.35.47-4.22,10,6.78,1.94-3.84,8.46,2.37,1.59.95,1.28-2.53,4.87-1.27,4.3-1.77-11.09-2.78-4-6.65.4-1.45-5,1.39-6.61,1.1.05-4.17-6,.72-8.69,0,4.85-9.95-11,4.88-10.43-6.83,1.6-1.84,4.55,4.51,5.56-.75.55-1.8,10,8.27,6.66-1.5.39-3.72,7.69,6.82,6.26-.58.06-2,.87-.34,2.67.06,3.77-2-2.27-3.25,7.3-4.51,1.89-3.22-7.09.76-6-3.41-2.42-1.92-5.11,3.47-7.42,1.39-.56-2.25-6,1-3.42-3.35.74-2.81-18,6.86-12-.58.23-2-6.56-.61-4-5.26.53-2.87,3.56,7.74,4,.23,0-2.16,2.16,2.27,2.48-2.2,1.06-4.27,5.49,14.06,7.36,2.49.82-3.75,6.82.29,5.62-6.25.18-2.31-4.28,1.1-6.66.29-1.14-2.58,3.12-5.73-5.74-1.21-6.3,3.86-15.32-6.2-7-2,1.57.75,1.45.86,2.09-.23.22-1.27,9.51,1.59,4.92-3.24-.4-1.85,2.79-.58,5.22-1.56,1.17-2.73,3.31-3.58,4.87-6.71-.85-3.49-21.42,10-20.11,3.82.6-2.08,7.45,1.28,6.08-3.07.73-1.81,8.67.9,3.77-3.52,12.2-9-.75-1,5.39-10.47-.92-3.15-5.83,8-5.1,0-1.11-3.07-4.78,10.25-5.39,4.11-.52-2.08-1,1.73-1.74,3.7-11.9,18.14-7.17-15.94-4.75-6.3,4.12,2.68.81-3.74-.53-5,.18-1.45,4.41,2.94,6.38,2.89,3-2.13-8.4-6.53,2.44-4,2-.23-.29-1.22-1.8-2.49.35-1.93,7.72-10.9-1.34-2.37-1.73,1.91-1.21-.52-.63-2.48-.4-3.41-5.79,7.4-8,6.83-.13-1.87.11-4.1,2.24-5,.12-2.44-2.76,0,.76-4.68-.61-1.56-3.5,2.9-2.72-1.32-.65-13.59-1.94-6-2.56,1.92-.64,1.41-5-5.11-5.38-4.22.57,4.21,5.8,10.82,3.89,15.72-1.28-1.83-1.45-12.15-4.06-5.88-1,.9-4.83-5.24-5.34-4s4.48,7.67,3.33,8.18c-12.4,3.1,9.86-1.69,7.43,12.66-5.39-8.9-5.57-10.09-4.85.89,3.49.18,3.89,4.17,4.21,5.76-3.91-2.71-14-10.28-17.69-10.87,6.54,6.71-1.3,4.61-.38,8.05,1.79,1.28,5.38,1.41,5.25,1.79-7.46,5,4.26,3.43,5.16,6.14-1.63,6.09.11,3.81,3.17,1.28,1.8,0,.26,3.32,1.67,2.3,3.12-4.77,5.48,3.2,1.16,4.43-4.42,4.37-19.83-11.15-14.23-.2C80.33,241,76,235.53,75,236.8c2.37,5-4.72,3-5.13,5.76.9,1.27,4.62-.13,5.39.76-6.72,9-3.11,3.84,4.16,3.07,1.73,5.74,6.62-1.28,9.94.51-3.67,6-1,3.78,4,1,9.44-.26-4.09,9.72-13.84,6.25,7.66,5.07-12.86,2.4-11.67,4.48,8.2-1,1.23,5.47,5.39,5.76,11.2-4.79,4.61,1.2,7.56,1.53,3.83-6,5,.95,7.56-1.28,1.67-2.17,5.51-3.45,4.36-1.53s-.9,5.11,1.15,2.68c12-11.39,1.71,4-8.26,3.07-10.46.71-7.61-2.95-13.27,1.41-3.21.38-6.92-2.56-6.67-.51s-8.07,1.4-6.28,2.94c7.12,2,11.27,1.93,10.4,8.69,1.46,9.19,6.79-5.3,8.32-1.41-6.92,14,2.89-2,3.84,1-2,7.45,7.92-1.44,3.67,3.46-16.07,15-15.16-1.37-20.59,9.33-7.54,1.39-4.49,2.71-2.3,5.88,1.41.38,8.46-1.66,7.81-.38s-3.71,5.49-1.15,3.45,7.43-5.5,6.67-4-3.08,5-.9,3.2,5-4.73,5.19-3.32c14.22-4.07.2,5.49-8.52,6.65-9.59-.88-9-3.74-14-1.28-2.55,4.62,12.08,5.41,10.38,6.77s-4.62,3.71-2.18,3.84,6-4,5.38-2.3-2,4.85,0,3.06c8.19-9.16,5-.08,8.91-2.68,6.78-6.55,1.64,1.92,5.7-.13,1.54-1.15-4.35,5.88-9.61,6.14-13.69-.74-18,1.41-26.79,5.62,2.86,5.2,12,3.95,12.18,8.31,9.88-3.77,3.47,0,5.89,2.82,9-7.89,3.64-2.83,7.18-2.05,1.28-1.92,5.51-4.48,5.39-3.07-.87,5.13,4.38-2.75,4.48.26-1.67,7.63-16.84,4.52-17.94,10.61-1.68,5.41-31.76-.64-16.41,5.9,2.57.62-1.41,3.05.39,3.56s5.89-.13,4.87,1.15c-7.27,6.17,5.95.71,5,2.43-5.71,7.25,5.6.17,5.64,2.42-.26,1.67-1.54,3.58.64,2.56,8.26-5,2,1.76,5.25.9,11.87-5.08-3.79,3.71-9.36,3.57-4.51.59-26.08-4.3-15.68.77-9.79,1.37-10.59-1.12-17.78-3.75,12,2.66,4-8.64,11.12-3.59,4-.17-3.78-5,6-7,1.8-2.18-3.89-.19-6.17.19-1.94-5.69-1.16-1.56-9.19,0-5.78.28-9.35-9.56-3-4.64,6.14-4.23,4.08,3,6.74-2,1.66-2.26,9.16,1.54,9.38-4.16.21-2.18-3.2,1.93-4.93-1.8-1.74-.65-4.89,3.62-5.4.38-1-1.94-3.4,3.94-4.27.85-.38-1.13-1.42-.38-2.84.38s-4.83-2.84-2.18-3.69c.62-1,5.1,2.67,2.18-.85,1.76-2.21,4.84,5.67,6.25,1-.11-1.39-4.29-4.41,1-1.8,3.22,2.38,4.45-.31.19-2.08-2.08-1.42.29-.57,2.94-.47,1.51-.48,5.28-2.08,5.5-3.12-.19-2.63-6.37,1.11-7.58-.47-1.66-1.11-6.08,5.07-2.94-1.33-2.17-2.22-5.59,7.89-9.58-.57.51-3.84,12.45-.62,6.16-5.58-1.13-1.51,1.61.48,3.23.1.88-3-5.37-.32,2.18-6,1.13-4.13-6.35,6-4.36-.47,1.05-2.42-8,7.1-4.65.09-1.08-1.93-.47-2.78,1.14-4.54-.25-2.53,1.36-2.36,1.8-5.29.66-1.52-1.61.85-2.56,1.23s.19-1.61-.95-.95C14.5,313,29.29,288,20.2,300.44c2-12.17-2.09-9.37-1.76-1-3.86-2.9,0,.51-1.14,1.8-2.09,1.19,1.87,4.05.47,5-2.48-3.23-.55-3.86-3.88-2.55-6.89-4.85-2.58,0-1.9,2-5.74,1.25.3.56-.38,2.08-5,4.67,5.16-1.51,3.89,1.33-.48,1.79-.67,1.7.28,2.36,1.49,0,2.69,4.48.67,3.69-2.9-1.31.39,3.46-.29,3.59-3.76-.17-2.79-7.67-6.24-5.67a12.85,12.85,0,0,0-2.2-.85c-3.69-1.23.76,1.23-1,2.17s-.95,1.89-.95,1.89c7.71.39-.61,5.4,6.26,3.6-1.69,4.18,5.13-.48,4.27,2.09-1.72,2.18,2.3,4.88-.29,4.62-2.08-.47-4.07-2.84-4.45-1.51.26,3.31-3.73,1.78-5.22,3.5-1.52,2-.28,2.74-2.94,3-1.15.5-5-.64-4.57,1.45,2.18.11,4.13-.95,4.29.63,2,5.72.51-1,3.41.67,3.81,4.69,3.24-3.51,8.06-.38,2.62-.48-.2,3.36-.47,3.31-1.14-1.89-4.73,1.76-5.31,2,0,0-4.65-2.46-4.84-.85-.79,5.73-6.83-2-5.14,7.47,5.13-3-1.14,2.21,1.63,1.15,1.8-.3,3.61-2.38,4.08-.86-.13,6,6.24-3.55,6.73-.19-1.91,10.68-16-3.21-12.44,14.18,4.74-8.39,2.45,3.45,5.14.76,3.41-2.49,3.85-4.82,6.83-3.41-1.15,8.63-15.62-.36-12,13,1.87-2.49,4.11-3,1.73,0-.67,1.8,1.7.47,1.23,1.8s-2.37,3.12-.09,2.93,6.63-5.08,6.16-3.54c4.76,2-4.82,8.07-9,6.38v10.34c1.39,14.9.22,65.51-.21,109.79H-1.8v51.47H750.8V500H751c-.08-42.34-.24-88.72,0-114.4-7.23-4.8-2-1.8-3.13-4.68-.93-1.42,1.9-.2,3.13,1.34C752.39,378.09,749.1,372.74,746.51,371.43Zm-25.77-42.08c3,4-3.13.94-4.26,1.37C716.49,328.44,718.56,329.52,720.74,329.35Zm-21.17,6.14c6.19-4.31,12.1,7.62,8.59-2.75-2.34-5.09,9.22,8.36,8.55,1,1,1.88,3.59-.7,3.63,1.92,1.37,8.16,4.44-4.68,5.25-1.77.26,3.11,1.71.13,1.77,1.57.13.9.34,2.72,1.2,1.48,2.05-4.17,3.39.55-1.2,2.1,4.25,5.23-9.14-1.49-8.59.41,1.81,3.07-2,.81-2.44,2.39-1.65,1.52-3.56-2.39-5.28-1-.38,1.15.24,1.64-1.16,1.44-5.25-.44-2.95,1.64-.09,1.78a24.39,24.39,0,0,1-5.74-.59c-3.72-.89,2.82-1.27-.13-3.32C699.89,338.74,687.2,328.3,699.57,335.49Zm15.73,39.3c-1.15,5.3,2.89.45,3.84,1.81-.29,3.43,3.77-2.49,3.56-.74-3.18,9-24.53,1.9-15.7-.44,1.33-1.13,3.31.59,5.64,1.53C716.36,378.89,712.69,374.74,715.3,374.79Zm2.12-10.42c5.46-8.08-13.67,3.44-10.37-7.11,3.39,2.24,2.32-.92,4.45-.31-1,4.37,3.5-1.7,3.84-.46-2.79,2.79-3.89,3.7.33,3-.62,3.74,3.31-2.05,4.34,1.2.67,3.61,3.51-.18,5.83.45C732.58,359.34,721.05,366.32,717.42,364.37Zm2.18-11.05c-1.57.36-2.21-4.65.28-2.46C717.26,350.71,720.81,353.34,719.6,353.32Zm7.43-4.86c-.06.92-.34,2.84-1.79,3.37C724.53,350.33,725.68,347.14,727,348.46ZM610.62,419.89a7.46,7.46,0,0,0,2.32-.33C614.39,421.49,611.58,420.37,610.62,419.89Zm2.46,8.19-.77,0C612.55,427.93,613.08,427.46,613.08,428.08Zm-1-9.54a10.12,10.12,0,0,0-1.3.09C609.07,418,611,416.52,612,418.54Zm-8.32,2.57c3.55,1.23,1-1.07,3.4-1.59C607.1,424.35,598.39,420.93,603.72,421.11Zm-1.25,7.56-.89.07C601.11,428.26,601.68,428.38,602.47,428.67Zm-90.39,16.81a14.34,14.34,0,0,0-1.43.65C511,445.76,511.47,445.18,512.08,445.48ZM70.46,395.58c-5.69,9.41-20,3-28.7,3.67-2.75-.66,2.09-.95-.09-2.46-5.38-1,1.69-2.65,2.84-2.46,1.27,1.1-.72,5.48,1.86,3.29,1.26-1.37,10.69-2.17,11-1.79C53.67,404.06,69.74,393.25,70.46,395.58ZM57.38,426.65c7.23-2.87,18.86-6.19,3.86.76a3.82,3.82,0,0,1-1.37.36C60.31,426.31,59.4,426.21,57.38,426.65ZM47.12,408.79c-1,1.52-2,2.45.27,2,3.82-1.3,5.23-1.94,4.47,1.47C48.34,414.87,38.43,410.79,47.12,408.79Zm-1.91,17.13c1.58-1,2.58-2.24,3.95-1.54C49.68,427.89,47.41,426.9,45.21,425.92Zm-3.07-2.08c-.84-1.51.78-.2,1.55-.67C44.27,424.94,42.87,425.28,42.14,423.84Zm11,3.59a10.78,10.78,0,0,1-2.59,0C54.55,422.47,58.08,427.13,53.14,427.43ZM53,415.52c-5.4-.15,4.77-6.37,4.61-3.45C58.33,415.07,54.75,415.19,53,415.52Zm-19.15-38.4c2.49,1,4.65-1.75,6.07,2.65,1.75,3.32.57-9.6,2.18.28.29,1.8,1.8.1,2.21-2C44.3,377,60,378.74,48.78,376c-2.57-1.78-4.5-4.48-8.35-4.25-1.29-2.57,5.78,3.32,3.92-3.21-.07-2.65,1.74-.73,4.25-2.46.93,2.11-2.7,3.83-.69,4.21,10.53-.67,0,3.38,4,4.47,2.31-.51,5.64-2.68,5.26-1.15-5.3,7.15,8.25-1.7,6.92,1.22-.77,1.46-2.57,3.25-.52,2.49,16-5.85-4.64,5.38-10.63,5-4-.13-8.34-2.81-7.82-.89,2.77,4.17-12.48.83-7.59-1.71.37-1.9-1.24.09-2.85.09S32.75,377,33.89,377.12Zm4.9,16.27c-.21.32-.41.64-.58.95C33.1,392.21,33.48,390,38.79,393.39Z"
fill="#1d1d3a"></path>
</g>
</g>
<!-- <circle id="skateperson" cx="700" cy="375" r="25" fill="red" /> -->
<image id="skateperson" href="./img/Skater_Boy_Silhouette_PNG_Clip_Art_Image.webp" height="49" x="600" y="375" />
</svg>
</div>
<div class="snowflakeContainer">
<div class="snowflake"></div>
</div>
<!-- timer -->
<div id="countdown-section">
<div class="fluid-container">
<div class="justify-content-center countdown-banner" data-aos="zoom-in">
<div class="countdown align-self-center">
<p>Hackathon Ends in</p>
</div>
<div class="countdown ">
<div class="countdown-container">
<div class="countdown-block">
<span class="countdown-title sketch-font" id="countdown-day">
00
</span>
<span class="countdown-desc">
Days
</span>
</div>
<div class="countdown-block">
<span class="countdown-title sketch-font" id="countdown-hour">
00
</span>
<span class="countdown-desc">
Hours
</span>
</div>
<div class="countdown-block">
<span class="countdown-title sketch-font" id="countdown-minute">
00
</span>
<span class="countdown-desc">
Minutes
</span>
</div>
<div class="countdown-block">
<span class="countdown-title sketch-font" id="countdown-second">
00
</span>
<span class="countdown-desc">
Seconds
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="fluid-container fill" id="about-div"> -->
<!-- About hackverse -->
<div id="about-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-4 offset-lg-1 order-lg-last d-flex justify-content-end align-items-center">
<a class="nav-link" href="/gallery" target="_blank"
rel="noopener noreferrer">
<img loading="lazy" class="about-section-logo" src="./img/logo.webp"
onerror="this.onerror=null;this.src='./img/logo.png';" width="100%" style="position: relative"
alt="Hackverse4.0" data-aos="fade-up" />
</a>
</div>
<div class="col-12 col-lg-7 order-lg-first about" data-aos="fade-up">
<h2>
<span class="gradient-text-light">Unleash</span> the power of <span
class="gradient-text-light">innovation</span> in the icy depths of HackVerse, where the Arctic meets <span
class="gradient-text-light">technology</span>
</h2>
<br />
<p class="lead">
Join us at HackVerse, a platform that celebrates the power of
enthusiastic minds to ideate innovative solutions for complex
issues across India. It all started with a vision to bring
together like-minded hackers to our alma mater in NITK Surathkal,
and we're thrilled to be the pioneers of this unique initiative.
</p>
<p class="lead">
Be a part of an experience that celebrates innovation and provides
developers with the opportunity to showcase their potential to the
fullest. Get inspired by industry leaders through engaging
keynotes and workshops.
</p>
<a href="https://hackverse.nitk.ac.in/2022/" target="_blank" rel="noopener noreferrer">
<button class="revisit d-flex align-items-center justify-content-center">
<span> <i style="font-size:24px; padding-right: 10px;" class="fa"></i>Revisit Hackverse 3.0 </span>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="scrollElement"></div>
</div>
<!-- Stats Section -->
<section id="stats-section" class="fluid-container stats d-flex flex-column">
<!-- Start Repeating background text -->
<div class="repeating-text-background">
<div class="accent-text">
highlights highlights highlights
highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights
highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
<div class="accent-text">
highlights highlights highlights highlights<!-- -->
</div>
</div>
<!-- End Repeating background text -->
<div class="fluid-container fill justify-content-center stats-card">
<h1 class="text-center bold-t1 mb-2 p-5 pb-0" data-aos="zoom-out">
<span>HackVerse 3.0</span> <span class="gradient-text-blue">Highlights</span>
</h1>
<!-- Testimonials -->
<div class="fluid-container testimonials">
<div class="testimonials-photo-roll-container">
<div class="testimonials-photo-roll">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-1.webp" alt="First slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-2.webp" alt="Second slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/pc-setup.webp" alt="Third slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-4.webp" alt="Fourth slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/testimonial-1.webp" alt="Fifth slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/testimonial-2.webp" alt="Sixth slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-1.webp" alt="First slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-2.webp" alt="Second slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/pc-setup.webp" alt="Third slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/campus-4.webp" alt="Fourth slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/testimonial-1.webp" alt="Fifth slide">
<img loading="lazy" class="img-shine" src="./img/testimonials/testimonial-2.webp" alt="Sixth slide">
</div>
</div>
</div>
<div class="stats-statistics" data-aos="fade-up">
<div class="container d-flex justify-content-around align-items-center stats-items">
<div class="d-flex justify-content-center align-items-center flex-column institute_icon">
<h1 class="no-margin bold-t1 milestone-number">
<span class="number-holder">1500</span> +
</h1>
<p class="no-margin">Total Registrations</p>
</div>
<div class="d-flex justify-content-center align-items-center flex-column institute_icon">
<h1 class="bold-t1 no-margin milestone-number">
<span class="number-holder">400</span> +
</h1>
<p class="no-margin">Hackers Hosted</p>
</div>
<div class="d-flex justify-content-center align-items-center flex-column institute_icon">
<h1 class="bold-t1 no-margin milestone-number">
<span class="number-holder">140</span> +
</h1>
<p class="no-margin">Engineering Institutes</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Prizes Section -->
<section id="prize-section">
<div class="container">
<div class="prize">
<div class="justify-conter-center text-center" data-aos="fade-up">
<h1 class="gradient-text-dark">
₹ 2,50,000+
</h1>
<h3>
in prizes to be won
</h3>
</div>
<div class="prize-container" data-aos="fade-up">
<div class="prize-navbar-container">
<div class="prize-navbar">
<h4 class="navbar-prize-item active-prize-item">
Prizes
</h4>
<h4 class="navbar-prize-item">
Special Prizes
</h4>
<h4 class="navbar-prize-item">
Participation Perks
</h4>
</div>
</div>
<div class="prize-card-container" data-aos="fade-up">
<div id="prize-card-container-1" class="prize-card-container-main" data-aos="zoom-out">
<div class="prize-card">
<div class="prize-card-number gold" data-aos="zoom-out">
<p>1st</p>
</div>
<div class="prize-card-text">
<h3>₹ 75,000</h3>
<p>Winner</p>
</div>
</div>
<div class="prize-card" data-aos="zoom-out">
<div class="prize-card-number silver">
<p>2nd</p>
</div>
<div class="prize-card-text">
<h3>₹ 50,000</h3>
<p>Runner Up</p>
</div>
</div>
<div class="prize-card" data-aos="zoom-out">
<div class="prize-card-number bronze">
<p>3rd</p>
</div>
<div class="prize-card-text">
<h3>₹ 40,000</h3>
<p>Second Runner Up</p>
</div>
</div>
</div>
<div id="prize-card-container-2" class="prize-card-container-main hidden" data-aos="zoom-out">
<div class="special-prize-container">
<div class="special-prize-card">
<div class="front">
<span class="title">
Polygon
</span>
<div class="prize-logo">
<img src="./img/polygon_vvmhvg.png" alt="Replit">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks.
</p> -->
<p>
Best hack built on Ethereum + Polygon: <strong>$200</strong>
</p>
<p>
Best hack built on Ethereum: <strong>$150</strong>
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
Filecoin
</span>
<div class="prize-logo">
<img src="./img/Filecoin_Coloured_White_Text-1_q7q08w.png" alt="Replit">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
Filecoin is an open-source cloud storage marketplace, protocol, and cryptocurrency.
</p> -->
<p>
Best use of Filecoin and/or IPFS: <strong>$250</strong>
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
Replit
</span>
<div class="prize-logo">
<img src="./img/replit_fpppab.svg" alt="Replit">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
Replit is the best platform for quickly starting, sharing, and developing projects in any programming language, right from your browser.
</p> -->
<p>
<strong>$50</strong> to winning project of the hackathon (must be deployed on Replit)
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
Solana
</span>
<div class="prize-logo">
<img src="./img/Solana_Dark_wmguj1.svg" alt="Replit">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
Solana is the fastest blockchain in the world and the fastest growing ecosystem in crypto, with thousands of projects spanning DeFi, NFTs, Web3 and more.
</p> -->
<p>
Rising teknoking: <strong>$250</strong> for the best project that goes into depth, demonstrating
higher-order code
</p>
<p>
Young gun: <strong>$100</strong> for the best project beginners just starting out on Solana
</p>
<p>
Master glasseater: <strong>$500</strong> for the best advanced project that is almost ready for
full-time development.
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
Digital Ocean
</span>
<div class="prize-logo">
<img src="./img/digitalOcean_logo.png" alt="Digital Ocean" style="height: 5rem;">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
DigitalOcean is a cloud hosting provider that offers cloud computing services and Infrastructure as a Service
</p> -->
<p>
Winners: <strong>$900</strong>
</p>
<p>
Runner Ups: <strong> $650 </strong>
</p>
<p>
Second Runner Up: <strong>$450</strong>
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
Zolve
</span>
<div class="prize-logo">
<img src="./img/zolve_logo.webp" alt="Zolve">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
Zolve is a cross border fintech that enables fair access to financial products for global citizens.
</p> -->
<p>
Application of Generative AI: GAN, Transformers, other LLMs etc in Banking and Finance
Applications
</p>
<p>
<button>
<a href="https://docs.google.com/document/d/1S84raC7cSOC0XU6i77F4pVBYkwFrVw1nfwn9Dq8ji6g/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">
Read More
</a>
</button>
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
<div class="special-prize-card">
<div class="front">
<span class="title">
eSamudaay
</span>
<div class="prize-logo">
<img src="./img/eSamudaay.webp" alt="E-Samudaay">
</div>
</div>
<div class="description">
<p style="margin-top: auto;"></p>
<!-- <p>
eSamudaay.com empowers entrepreneurs with DIY digital tools to run digital businesses, serve communities, and spark local innovations.
</p> -->
<p>
ONDC: Empowering Startups to Revolutionize E-commerce UX in Rural India
</p>
<p>
<button>
<a href="https://docs.google.com/document/d/1N5eepLqafJqHwWP3ZnH1l96dc72ghr1Pf9gC9oy4FNY/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">
Read More
</a>
</button>
</p>
<p>
Revolutionizing E-commerce UX: Addressing the Lack of Innovation and Access in Rural India.
</p>
<p>
<button>
<a href="https://docs.google.com/document/d/19ViKLVyy96kE3NFjwmgqW0-q9yt0NY-CBiJu1JGmtZ4/edit#"
style="color: #EBF8FF; border-radius: 3px; background: #2AA6EC; padding: 8px;" target="_blank"
rel="noopener noreferrer">
Read More
</a>
</button>
</p>
<p>
Top 3 buyer Apps (and SDKs) win <b>cash prizes & seed funding</b> to launch on ONDC with
eSamudaay.com support.
</p>
<p style="margin-bottom: auto;"></p>
</div>
</div>
</div>
</div>
<div id="prize-card-container-3" class="prize-card-container-main hidden" data-aos="zoom-out">
<ul class="participation-prizes">
<li>Digital Ocean free 30 day trial with 50$ in credits</li>
<li>Hackverse 4.0 Participation Certificate</li>
<li>Hackverse 4.0 Goodies</li>
</ul>
</div>
</div>
</div>
</div>
<div class="prize-section-footer mt-4" data-aos="fade-up">
<h3 class="text-center gradient-text-dark mt-2" style="font-weight: 600;">Track Prizes Worth ₹ 75,000 and more
available. </h3>
<!-- <p class="prize-text text-center">Stay Tuned and Keep Your Chill: More Prizes to be Unveiled Soon!</p> -->
</div>
</div>
</section>
<!-- Judges Section -->
<section id="judges-section" class="overflow-hidden">
<div class="container">
<h1 class="text-center bold-t1 mb-2 p-5 pb-0 aos-init aos-animate" data-aos="zoom-out">
<span style="color:#EBF8FF">Judges</span> <span style="color: #07486E;">& Speakers</span>
</h1>
<div id="judges">
<div class="row justify-content-center">
</div>
</div>
</div>
</section>
<!-- Tracks Section -->
<section id="track-section" class="d-lg-flex flex-sm-row position-relative">
<div class="repeating-text-background" style="padding-top: 0;margin-top: 0;color:white">
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
<div class="accent-text">
tracks tracks tracks
tracks tracks tracks
tracks
</div>
</div>