-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
892 lines (776 loc) · 118 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
<!DOCTYPE html>
<html>
<head>
<title>KGP Happiness Estimator</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="bootstrap.min.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49711524-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="all">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="ning">
</div>
<div class="container">
<div class="col-md-4 uparleft" style="float:left">
<h2 style="display:table-cell;vertical-align:middle;text-align:center">
<span class="b2 bx"><a style="color:white" href="https://www.facebook.com/scholarsavenue/">The Scholars' Avenue</a> Presents</span><br>
<span class="b3 bx">KGP Happiness Trends 2015</span><br>
<span class="b4 bx"></Ashris></span>
</h2>
<!-- <div class="ban2">KGP <div class="redder">Happiness</div> Trends 2015</div>
<div class="introfooter">
<div class="ban1">An initiative by <a style="color:black" href="https://www.facebook.com/scholarsavenue/">The Scholars' Avenue</a></div>
<div class="ban1" style="margin-top:0px">Created by Ashris</div> -->
</div>
<div class="col-md-12" style="height:5px;"></div>
<div class="col-md-1"></div>
<div class="col-md-6 uparright" style="float:right">
<div class="introhead"><p style="font-family: 'Roboto', serif;font-weight:normal;font-style: italic;font-size:1.3em">
<br>Happiness is not the absence of problems, it is the ability to deal with them.<br>Steve Maraboli</p><br><p>On August 2015, we invited you to participate in the <a href="https://goo.gl/LxOtsu">KGP Happiness Estimator Survey.</a></p> <p>The study explores corelations of happiness with parameters such as CGPA, Relationships, Societies, Hall of Residence, Gender and Year of Study statistically.</p><p>We tried to understand with a greater insight the multiple facets of Happiness in the campus. So, what are the ingredients to a happy student life?<p>We are excited to share the results with you. </p> Here's some <a href="https://www.youtube.com/watch?v=lbjZPFBD6JU" target="_blank">nice music</a> to listen to while you browse through the results.<br>
</div>
</div>
<div class="icondown">
<a href="#step2" style="color:#ddd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 125" version="1.1" xml:space="preserve" style="" x="0px" y="0px" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.41421"><path d="M50,9.95497c22.0914,0 40,17.9086 40,40c0,22.0914 -17.9086,40 -40,40c-22.0914,0 -40,-17.9086 -40,-40c0,-22.0914 17.9086,-40 40,-40ZM46.4792,67.5503c-4.65217,-4.65217 -19.4483,-19.4483 -24.1005,-24.1005c-0.375072,-0.375074 -0.585784,-0.883783 -0.585782,-1.41422c1.6613e-06,-0.530433 0.210717,-1.03914 0.585791,-1.41421c1.23235,-1.23235 3.01028,-3.01028 4.24263,-4.24263c0.375072,-0.375074 0.883779,-0.585789 1.41421,-0.585791c0.530433,-1.64159e-06 1.03914,0.210711 1.41422,0.585782l20.5147,20.5147l20.5147,-20.5147c0.375073,-0.375075 0.883783,-0.58579 1.41422,-0.585789c0.530435,3.2521e-07 1.03914,0.210716 1.41422,0.585791c1.23235,1.23235 3.01028,3.01028 4.24263,4.24263c0.375075,0.375073 0.585791,0.883782 0.585791,1.41422c2.8916e-07,0.530435 -0.210715,1.03914 -0.585789,1.41422c-4.9194,4.9194 -21.2522,21.2522 -26.1716,26.1716c-0.375073,0.375075 -0.883783,0.58579 -1.41422,0.585789c-0.530435,-3.2521e-07 -1.03914,-0.210716 -1.41422,-0.585791l-2.07106,-2.07106Z" style="" fill="#000"/></svg></a>
</div>
<div class="maincontent col-md-12">
<h5 style="margin-top:50px">Disclaimer: The Scholars' Avenue owns all proprietary rights to all the information and inferences presented in this work. Individuals need to seek formal permission from The Scholars' Avenue if they wish to use this survey output, partially or fully, for any purpose, personal or professional. This work may not be duplicated or distributed without The Scholars' Avenue's permission. In case of any disputes, The Scholars' Avenue's decision will be final.</h5>
<h1 class="titles">Instruction Manual</h1>
<h2 style="text-align:center;margin-bottom:25px">The only boring, preachy part of this page that we pester you to read.</h2>
<div class="contentp"><h4>Word of Caution</h4><ul><li>When data is tampered using analysis, outliers are removed and order is enforced through averaging patterns that are inherently chaotic. Sure, there are ways to be precise and accurate, but it comes at the cost of simplicity. We have tried to prioritize simplicity over rigorous statistics.</li>
<li>Please don't get confused between causation and corelation. One may very rightly observe that people who live long have more birthdays but may wrongly infer that birthdays, hence are good for one's health and longevity.</li><li>In the context of our study, if you notice say, high CGPA implies high happiness values, the inference could either be 'High CGPA scorers are happier' or 'Happier people achieve high CGPA scores'. We advise you to ponder over both the possibilities as the results are open to interpretation. </li>
<li>Feel free to report errors, demand clarifications and suggest edits.
</ul>
<h4>The <div style="display:inline; font-family:Times;font-weight:800;font-size:30px">π</div> Index</h4>
It is reasonable to be skeptical of a study titled 'Happiness Trends'. It seems to imply to have measured happiness, and hence more arrogantly, to have defined what happiness is for everybody. We know that happiness is a relative state; it is based on our ever evolving expectations and perceptions. Hence while we sincerely agree that no unique definition of happiness exists, we need some model, even if an imperfect one in order to understand corelations, as opposed to having no model at all.
Researcher <a href="http://www.huffingtonpost.com/entry/measuring-your-happiness-_b_7889406.html">David Sze</a> presents a model of Happiness that we chose to apply in this study. According to Sze, there are three factors that happiness depends on: <ul><li>Life Satisfaction</li><li>Moods</li><li>Emotions</li></ul>This tells us that what motivates us to stay happy isn't wealth, fame or glory but the end mental rewards we get in the form of more positive emotions, positive moods and fulfillment of Life Goals. Extending this analogy to our context, we wanted a mathematical term that is blind to external factors like CGPA, Department, Friend Circle and only measures the subjective perceptions, moods, and expectations of students.
Hence, we cooked up the Pi Index (affectionately called the Peace Index) to measure these three factors of Happiness. This index is a function of responses to five particular questions that were best indicative of the aforementioned parameters of happiness. Even if you haven't participated in the survey, you can still find out your Pi Index right now and follow along the results.</div>
</div>
<div class="maincontent col-md-12">
<h3 style="margin-bottom:15px;text-align:center">Calculate Your <div style="display:inline; font-family:Times;font-weight:800;font-size:30px">π</div> Index</h3>
<h6 style="text-align:center">Neither the data nor your result is stored.</h6>
<div>
<form>
<div class="col-md-12" style="margin-top:50px;margin-bottom:30px">
<h5>How strongly do you agree or disagree with the following statements:</h5>
</div>
<div class="col-md-5">
<b><em>The first year version of me will be proud of myself now.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount1.value=rollsr[rangeInput1.value-1]" class="slider" type="range" min="1" step="1" max="5" name="rangeInput1" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="Neutral" name="amount1" for="rangeInput1" />
</div>
<div class="col-md-5">
<b><em>I am usually in a positive mood and even if I was in depression, I have been able to overcome it well.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount2.value=rollsr[rangeInput2.value-1]" class="slider" type="range" min="1" step="1" max="5" name="rangeInput2" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="Neutral" name="amount2" for="rangeInput2" />
</div>
<div class="col-md-5">
<b><em>Irrespective of how it may seem, I feel calm and composed mentally and spiritually.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount3.value=rollsr[rangeInput3.value-1]" class="slider" type="range" min="1" step="1" max="5" name="rangeInput3" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="Neutral" name="amount3" for="rangeInput3" />
</div>
<div class="col-md-12" style="margin-top:50px;float:left">
<h5>Which of the following factors do you think have played an important role in your life?</h5>
</div>
<div class="col-md-2">
<input type="checkbox" id="imp1" name="imp1" value="cgppa">CGPA
</div>
<div class="col-md-2">
<input type="checkbox" id="imp2" name="imp2" value="soci">Social Life
</div>
<div class="col-md-2">
<input type="checkbox" id="imp3" name="imp3" value="Friends">Friend Circle
</div>
<div class="col-md-6"></div>
<div class="col-md-12" style="margin-top:50px;float:left">
<h5>On a scale of 1 to 10, how much do you agree with the following statements?</h5>
</div>
<div class="col-md-5">
<b><em>My Academic Profile best expresses my talents, skills and abilities.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount4.value=rangeInput4.value" class="slider" type="range" min="1" step="1" max="10" value="1" name="rangeInput4" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="" name="amount4" for="rangeInput4" />
</div>
<div class="col-md-5">
<b><em>I have real friends that I can count on.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount5.value=rangeInput5.value" class="slider" type="range" min="1" step="1" value="1" max="10" name="rangeInput5" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="" name="amount5" for="rangeInput5" />
</div>
<div class="col-md-5">
<b><em>I feel like I belong to a community.</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount6.value=rangeInput6.value" class="slider" type="range" min="1" step="1" value="1" max="10" name="rangeInput6" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="" name="amount6" for="rangeInput6" />
</div>
<div class="col-md-5">
<b><em>Impact Of IIT In Your Life</em></b>
</div>
<div class="col-md-2"></div>
<div class="col-md-4">
<input oninput="amount7.value=rangeInput7.value" class="slider" type="range" min="1" step="1" value="1" max="10" name="rangeInput7" />
</div>
<div class="col-md-1">
<input class="boxlbl" type="text" style="text-align:center" value="" name="amount7" for="rangeInput7" />
</div>
</form>
<div class="col-md-12" style="float:left;width:100%;height:60px;text-align:center;vertical-align:middle">
<button class="btn btn-primary" onclick="picompu();">Calculate</button>
</div>
<div class="col-md-12" id="pidisplay" style="float:left;width:100%;height:100px"></div>
</div>
<div class="col-md-12" id="pipercentile" style="float:left;width:100%;height:40px;text-align:center;font-weight:bold;font-size:1.1em"></div>
<div class="col-md-12" style="float:left;text-align:center">
The Pi Index ranges from 0 to 10 and is an approximate estimate of your happiness. Higher the Pi index, higher is the probability of you being a happy person holistically. The participants in the survey weren't told that these particular questions would be ingredients of the Happiness Formula. For the computed Pi Index to be of significance, please ensure that your answers are indeed true.
</div>
<div class="maincontent col-md-6">
<h3 class="titles">Points of Information</h3>
<div class="contentp"><ul><li>By the end of the survey period, we received a total of <div class="emphasis">763</div> entries. Out of them, <div class="emphasis">710</div> passed all <a onclick="alert('The fourteen checks were:\n\n1. Entered Hall: SN, MT, RLB or SAM and Sex: Male\n2. Entered Hall: Not SN, MT, RLB or SAM and Sex: Female\n3. Entered Society: Multiple entries in Encore, Pravaah, Druheen and Prasthanam\n4. Number of Relationships > 10 or < 0\n5. Invalid Pincode\n6. Year: UG and Hall: PG\n7. Number of Societies > 7\n8. Society: Both TSA and Awaaz\n9. Society:SSAP and Hall!=AR\n10. Society: Mekanika and Hall != ME\n11. Dep = SMST and Year = UG\n12. All Default Values\n13,14. All Repeated Entries (All max or min)\n')">fourteen spam checks</a>, which made it to the sample set.</li>
<li>The survey only invited current second year, third year, fourth year, fifth year UG batches and second year PG batch to ensure participants have sufficient exposure with the campus lifestyle.</li>
<li>It is ensured that at least 10% of every demographics is represented in our sample set for the analysis to hold significance. For example, if the strength of ARP is 140 students, at least 14 entries from ARP are analyzed. Having said that, we acknowledge that the results of the survey may not be the best representative of the overall population of the campus. Whenever a statement such as 'X% of the students think...' is made, it implies X% of the 710 respondents and not the entire IIT campus.</li>
<li>Considering the previous point, all demographics inadequately represented in the filtered sample set are not part of their domain specific topic results. These include Department of Chemistry and all non-UG Halls. Their entries have not been included in Department specific and Hall specific topics.</li>
<li>Humans err. In case you want to suggest edits, please feel free to drop a mail at [email protected]</li>
</ul>
</div>
</div>
<div class=" maincontent col-md-6">
<h3 class="titles">The Most Common Respondent</h3>
<div class="avbulletedpart">
<ul>
<li>Is a heterosexual boy.</li>
<li>Has 5 close friends, mostly from his Hall or Department.</li>
<li>Has a CGPA of 7.71 ± 0.5 .</li>
<li>Has never been in a relationship.</li>
<li>Is involved in no society.</li>
<li>Desires an annual package of 12.5 lpa.</li>
<li>Has <span style="font-family:Times;font-size:1.5em">π</span> = 7.28 ± 2.42 .</li>
</ul>
</div>
</div>
<div class="maincontent cathead col-md-12" id="Pi">
<span style="font-family:Times;font-size:1.5em">π</span> INDEX
</div>
<div class="catdescr col-md-12">
<ul><li>Variance gives an idea of how best the mean is the representative of the overall sample. </li>
<li>High variances imply higher deviations from the mean. </li>
<li>The Pi Index and Variance tabs can be clicked to sort the data.</li>
</ul>
</div>
<h3 class="titles">Happiness Rankings Across Categories</h3>
<div class="col-md-2">
<div class="dropdown" style="margin-top:50px;margin-bottom:100px">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Arrange by Category
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a hqref="#">CGPA</a></li>
<li><a hrqef="#">Department</a></li>
<li><a hqref="#">Society</a></li>
<li><a hrqef="#">Hall</a></li>
<li><a hrqef="#">Year</a></li>
<li><a hrqef="#">Region</a></li>
<li><a hreqf="#">Gender</a></li>
<li><a hrqef="#">Relationships</a></li>
<li><a hqref="#">Friends</a></li>
<li><a hqref="#">Addictions</a></li>
</ul>
</div>
</div>
<div class="col-md-1"></div>
<div id="listdisp" class="col-md-8" style="margin-top:35px">
<table class="table table-bordered tbltgt">
<thead>
<tr>
<th>Category</th>
<th><button class="btn">Mean <span style="font-family:Times;">π</span> Index</button></th>
<th><button class="btn">Variance</button></th>
</tr>
</thead>
<tbody id="kool">
</tbody>
</table>
</div>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.tablesorter.min.js"></script>
<div class="col-md-1" style="clear:both"></div>
<script type="text/javascript">
$(".dropdown li a").click(function(){
$("#kool").empty();
$(".tbltgt").tablesorter();
var tag=$(this).text();
$(this).parents(".dropdown").find('.btn').html($(this).text() + ' <span class="caret"></span>');
var listfox={"Department":[{"cat":"AE","pi":6.85,"var":1.57},{"cat":"AG","pi":7.12,"var":3.41},{"cat":"AR","pi":7.1,"var":2.06},{"cat":"BT","pi":7.05,"var":2.58},{"cat":"CE","pi":6.79,"var":3.41},{"cat":"CH","pi":7.39,"var":1.81},{"cat":"CSE","pi":7.09,"var":2.92},{"cat":"ECE","pi":6.97,"var":2.56},{"cat":"EE","pi":6.94,"var":2.01},{"cat":"GG","pi":7.17,"var":1.96},{"cat":"HS","pi":7.99,"var":2.91},{"cat":"IM","pi":7.2,"var":2.53},{"cat":"MA","pi":7.25,"var":1.62},{"cat":"ME","pi":7.27,"var":2.21},{"cat":"MI","pi":6.75,"var":2.71},{"cat":"MT","pi":6.2,"var":2.47},{"cat":"NA","pi":6.59,"var":2.47},{"cat":"PH","pi":7.21,"var":2.62}],"Society":[{"cat":"No Society","pi":7.01,"var":2.52},{"cat":"Encore","pi":7.41,"var":1.56},{"cat":"Pravaah","pi":6.91,"var":2.33},{"cat":"Druheen","pi":6.56,"var":2.65},{"cat":"Prasthanam","pi":6.54,"var":3.26},{"cat":"AIESEC","pi":7.58,"var":1.17},{"cat":"KRSSG","pi":7.59,"var":2.35},{"cat":"TFPS","pi":7.39,"var":2.63},{"cat":"TAdS","pi":6.52,"var":2.59},{"cat":"Spectra","pi":6.58,"var":3.40},{"cat":"Bclub","pi":7.64,"var":2.11},{"cat":"Quiz Club","pi":7.03,"var":1.77},{"cat":"Ecell","pi":7.58,"var":1.57},{"cat":"Debsoc","pi":6.57,"var":2.25},{"cat":"TDS","pi":7.10,"var":2.63},{"cat":"ETMS","pi":6.93,"var":1.92},{"cat":"WTMS","pi":6.69,"var":2.28},{"cat":"Awaaz","pi":7.5,"var":2.4},{"cat":"TSA","pi":6.24,"var":2.47},{"cat":"GYWS","pi":7.21,"var":1.82},{"cat":"KDAG","pi":6.56,"var":1.12},{"cat":"TRS","pi":7.77,"var":1.98}],"Hall":[{"cat":"Azad","pi":7.06,"var":2.58},{"cat":"HJB | JCB","pi":6.9,"var":1.98},{"cat":"LBS","pi":7.25,"var":1.55},{"cat":"LLR","pi":6.92,"var":3.39},{"cat":"MMM","pi":6.93,"var":5.1},{"cat":"MS","pi":7.37,"var":2.13},{"cat":"MT","pi":6.9,"var":2.33},{"cat":"Nehru","pi":6.77,"var":2.35},{"cat":"Patel","pi":7,"var":2.77},{"cat":"RK","pi":6.89,"var":1.95},{"cat":"RP","pi":7.28,"var":2.22},{"cat":"SN","pi":6.91,"var":2.07}],"Year":[{"cat":2,"pi":7.17,"var":2.61},{"cat":3,"pi":6.94,"var":2.21},{"cat":4,"pi":6.99,"var":2.22},{"cat":5,"pi":7.21,"var":2.52}],"Region":[{"cat":"AP","pi":6.89,"var":2.7},{"cat":"Bihar","pi":7.21,"var":2.59},{"cat":"Delhi","pi":7.35,"var":1.67},{"cat":"Gujarat","pi":6.79,"var":2.4},{"cat":"Haryana","pi":7.16,"var":3.43},{"cat":"Karnataka","pi":6.9,"var":1.73},{"cat":"Kerala","pi":7.14,"var":2.24},{"cat":"MH","pi":6.95,"var":2.67},{"cat":"MP","pi":7.42,"var":1.44},{"cat":"Odisha","pi":6.85,"var":3.23},{"cat":"Punjab","pi":6.51,"var":2.44},{"cat":"Rajasthan","pi":7.36,"var":1.83},{"cat":"TN","pi":7.06,"var":3.21},{"cat":"UP","pi":7.06,"var":2.14},{"cat":"WB","pi":7,"var":2.41}],"Relationships":[{"cat":0,"pi":7.1,"var":2.29},{"cat":1,"pi":7.04,"var":2.44},{"cat":2,"pi":6.73,"var":2.04},{"cat":3,"pi":6.53,"var":2.1},{"cat":"Undisclosed","pi":6.71,"var":4.09}],"Friends":[{"cat":"0 Friends","pi":5.69,"var":1.81},{"cat":"1 Friend","pi":5.09,"var":3.04},{"cat":"2 Friends","pi":6.71,"var":2.16},{"cat":"3 Friends","pi":6.82,"var":2.11},{"cat":"4 Friends","pi":7.13,"var":2.46},{"cat":"5 Friends","pi":7.38,"var":1.85},{"cat":"6 Friends","pi":7.47,"var":1.33},{"cat":"7 Friends","pi":7.32,"var":3.23},{"cat":"8 Friends","pi":7.39,"var":1.45},{"cat":"9 Friends","pi":7.74,"var":1.17},{"cat":"10 Friends","pi":7.66,"var":1.62},{"cat":"More than 10","pi":7.66,"var":1.94},{"cat":"Undisclosed","pi":6.86,"var":3.35}],"Addictions":[{"cat":"No Addiction","pi":7.11,"var":2.66},{"cat":"Occasionally Weed","pi":7.22,"var":2.17},{"cat":"Frequently Weed","pi":6.44,"var":2.96},{"cat":"Occasional Alcohol","pi":7.1,"var":2.03},{"cat":"Frequently Alcohol","pi":6.53,"var":3.11},{"cat":"Occasional Smoke","pi":6.9,"var":2.45},{"cat":"Frequently Smoke","pi":6.95,"var":2.39}],"Gender":[{"cat":"Bisexual Male","pi":5.73,"var":1.78},{"cat":"Heterosexual Female","pi":7.17,"var":2.03},{"cat":"Heterosexual Male","pi":7.09,"var":2.4},{"cat":"Homosexual Female","pi":6.38,"var":3.57},{"cat":"Homosexual Male","pi":7.08,"var":2.66},{"cat":"Queer Female","pi":6.55,"var":3.32},{"cat":"Queer Male","pi":6.86,"var":1.79},{"cat":"Questioning Male","pi":7.1,"var":2.36}],"CGPA":[{"cat":"Panji","pi":5.72,"var":3.93},{"cat":"Chaggi","pi":6.72,"var":2.62},{"cat":"Satti","pi":7.01,"var":2.24},{"cat":"Atthi","pi":7.4,"var":1.95},{"cat":"Nehli","pi":7.39,"var":2.28}]};
var json=listfox[tag];
for (var i = 0; i < json.length; i++) {
if(i==0){
var content=" ";
}
content += '<tr>';
content += '<td>' + json[i].cat + '</td>';
content += '<td>' + json[i].pi + '</td>';
content += '<td>' + json[i].var + '</td>';
content += '</tr>';
}
$("#kool").empty();
$("#kool").html(content);
console.log(content);
$(".tbltgt").trigger("update");
var sorting = [[2,0],[1,0]];
$(".tbltgt").trigger("sorton",[sorting]);
});
// call the tablesorter plugin
</script>
<div class="iconlist" style="clear:both">
<h3 class="titles" id="step2">Browse Satisfaction by Categories</h3>
<div class="col-md-2 cgpa categ"><a href="#cgpa">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 90 112.5" enable-background="new 0 0 90 90" xml:space="preserve"><g><path d="M73.5,56V39.9l1-0.5c0.7-0.3,1.1-1,1.1-1.8c0-0.7-0.4-1.4-1-1.8L44.4,19.8c-0.6-0.3-1.3-0.3-1.9,0L12.6,35.9 c-0.6,0.4-1,1-1,1.8c0,0.7,0.4,1.4,1.1,1.7l13.1,7c-0.2,0.3-0.3,0.6-0.3,1v16.9c0,0.6,0.2,1.1,0.7,1.5c0.4,0.4,4.6,3.8,17.3,3.8 c12.7,0,16.9-3.2,17.4-3.5c0.5-0.4,0.7-0.9,0.7-1.5V47.1c0-0.3-0.1-0.5-0.2-0.8l8.1-4.3v14c-1.2,0.7-2,2-2,3.4c0,2.2,1.8,4,4,4 c2.2,0,4-1.8,4-4C75.5,58,74.7,56.7,73.5,56z M57.6,63.3c-1.6,0.8-5.7,2.2-14.1,2.2c-8.4,0-12.5-1.6-14-2.3V48.4l13,6.9 c0.3,0.2,0.6,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2l13.2-7V63.3z M43.4,51.3L17.7,37.6l25.8-13.8l25.8,13.8L43.4,51.3z"/></g></svg></a><p class="lbl">CGPA</p>
</div>
<div class="col-md-2 dep categ"><a href="#dep">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="-192" fill="#000000" width="185" height="99"/><rect y="-36" fill="#000000" width="100" height="30"/><text transform="matrix(1 0 0 1 66 -19.5)" fill="#000000" font-family="'Helvetica'" font-size="2.4">http://thenounproject.com</text><text transform="matrix(1 0 0 1 7.166 -24.5)" fill="#000000" font-family="'Helvetica-Bold'" font-size="6.1578">The Noun Project</text><text transform="matrix(1 0 0 1 8.2861 -19.7002)" fill="#000000" font-family="'Helvetica-Bold'" font-size="4">Icon Template</text><text transform="matrix(1 0 0 1 -178.5 10.5)" fill="#000000" font-family="'Helvetica-Bold'" font-size="6.1578">Reminders</text><line fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" x1="8" y1="-14.5" x2="18" y2="-14.5"/><line fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" x1="-179" y1="16.5" x2="-162" y2="16.5"/><g><g><rect x="-170.802" y="31.318" fill="#000000" width="8.721" height="8.642"/><path fill="#000000" d="M-164.455,42.312h4.747v-4.703h-4.747V42.312z M-159.266,42.749h-5.63V37.17h5.63V42.749L-159.266,42.749z M-166.221,44.062h8.279v-8.203h-8.279V44.062L-166.221,44.062z M-157.5,44.5h-9.163v-9.079h9.163V44.5L-157.5,44.5z"/><polygon fill="#000000" points="-166.149,44.133 -166.292,43.991 -158.013,35.787 -157.871,35.929 "/></g></g><rect x="-179" y="58" fill="#000000" width="35" height="32.5"/><text transform="matrix(1 0 0 1 -179 60.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="3">Strokes</text><text transform="matrix(1 0 0 1 -179 65.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">Try to keep strokes at 4px</text><text transform="matrix(1 0 0 1 -179 70.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">Minimum stroke weight is 2px</text><text transform="matrix(1 0 0 1 -179 74.6572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">For thicker strokes use even </text><text transform="matrix(1 0 0 1 -179 77.6572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">numbers: 6px, 8px etc.</text><text transform="matrix(1 0 0 1 -179 82.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="2.4">Remember to expand strokes </text><text transform="matrix(1 0 0 1 -179 85.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="2.4">before saving as an SVG </text><rect x="-136.5" y="58" fill="#000000" width="35" height="32.5"/><text transform="matrix(1 0 0 1 -136.5 60.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="3">Size</text><text transform="matrix(1 0 0 1 -136.5 65.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">Cannot be wider or taller than </text><text transform="matrix(1 0 0 1 -136.5 68.6572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">100px (artboard size)</text><text transform="matrix(1 0 0 1 -136.5 73.6572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">Scale your icon to fill as much of </text><text transform="matrix(1 0 0 1 -136.5 76.6572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">the artboard as possible</text><rect x="-94" y="58" fill="#000000" width="35" height="32.5"/><text transform="matrix(1 0 0 1 -94 60.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="3">Ungroup</text><text transform="matrix(1 0 0 1 -94 65.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">If your design has more than one </text><text transform="matrix(1 0 0 1 -94 68.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">shape, make sure to ungroup</text><rect x="-50" y="58" fill="#000000" width="35" height="32.5"/><text transform="matrix(1 0 0 1 -50 60.1572)" fill="#000000" font-family="'Helvetica-Bold'" font-size="3">Save as</text><text transform="matrix(1 0 0 1 -50 65.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">Save as .SVG and make sure </text><text transform="matrix(1 0 0 1 -50 68.1572)" fill="#000000" font-family="'Helvetica'" font-size="2.4">“Use Artboards” is checked</text><text transform="matrix(1.0074 0 0 1 -125.542 30.5938)" fill="#000000" font-family="'Helvetica'" font-size="2.5731">100px</text><text transform="matrix(1.0074 0 0 1 -41 39)" fill="#000000" font-family="'Helvetica-Bold'" font-size="5.1462">.SVG</text><rect x="-126.514" y="34.815" fill="#000000" width="10.261" height="10.185"/><rect x="-126.477" y="31.766" fill="#000000" width="0.522" height="2.337"/><rect x="-116.812" y="31.766" fill="#000000" width="0.523" height="2.337"/><rect x="-127" y="32.337" fill="#000000" width="11.233" height="0.572"/><rect x="-83.805" y="33.844" fill="#000000" width="10.305" height="10.156"/><rect x="-76.809" y="28.707" fill="#000000" width="3.308" height="3.261"/><rect x="-178.5" y="22.5" fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" width="30" height="30"/><rect x="-136.5" y="22.5" fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" width="30" height="30"/><rect x="-93.5" y="22.5" fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" width="30" height="30"/><rect x="-49.5" y="22.5" fill="#000000" stroke="#FFFFFF" stroke-miterlimit="10" width="30" height="30"/><g><path fill="#000000" d="M87.36,6.107c4.863,0,8.819,3.957,8.819,8.821c0,11.454-15.394,19.01-19.649,20.879 c-4.188-1.865-19.172-9.348-19.172-20.879c0-4.864,3.957-8.821,8.82-8.821c3.371,0,6.401,1.879,7.906,4.904l2.688,5.404 l2.684-5.406C80.959,7.985,83.987,6.107,87.36,6.107 M87.36,3.107c-4.643,0-8.657,2.675-10.59,6.567 c-1.937-3.892-5.948-6.567-10.592-6.567c-6.526,0-11.82,5.292-11.82,11.821c0,15.597,22.165,24.134,22.165,24.134 S99.18,30.417,99.18,14.928C99.18,8.399,93.888,3.107,87.36,3.107L87.36,3.107z"/></g><g><path fill="#000000" d="M23.413,58.468l18.041,18.041L23.413,94.55L5.372,76.509L23.413,58.468 M23.413,54.225L1.129,76.509 l22.284,22.284l22.283-22.284L23.413,54.225L23.413,54.225z"/></g><path fill="#000000" d="M87.38,67.258c-0.165,0-0.331,0.004-0.494,0.012c0.39-1.112,0.605-2.306,0.605-3.549 c0-5.92-4.8-10.722-10.721-10.722c-5.922,0-10.722,4.802-10.722,10.722c0,1.243,0.214,2.437,0.604,3.549 c-0.163-0.008-0.328-0.012-0.493-0.012c-5.922,0-10.721,4.8-10.721,10.719c0,5.922,4.799,10.721,10.721,10.721 c3.492,0,6.588-1.673,8.545-4.257c-1.17,4.533-2.725,9.256-4.409,10.779h6.425h0.097h6.426c-1.682-1.523-3.235-6.239-4.407-10.771 c1.958,2.579,5.056,4.248,8.544,4.248c5.919,0,10.72-4.799,10.72-10.721C98.1,72.058,93.299,67.258,87.38,67.258z M77.263,74.428 c-0.016,0.05-0.093,0.002-0.093,0.002C77.201,74.43,77.232,74.43,77.263,74.428z"/><path fill="#000000" d="M23.659,0.82c0,0-22.631,8.637-22.631,24.106c0,6.522,5.287,11.808,11.808,11.808 c3.163,0,6.034-1.248,8.152-3.272c-1.104,4.008-2.492,7.883-3.978,9.229h6.354h0.095h6.354c-1.485-1.346-2.873-5.221-3.978-9.229 c2.118,2.025,4.989,3.272,8.154,3.272c6.52,0,11.806-5.286,11.806-11.808C45.797,9.348,23.659,0.82,23.659,0.82z"/></svg></a><p class="lbl">Department</p>
</div>
<div class="col-md-2 society categ"><a href="#society">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><g display="inline"><path fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" d="M73,89c0,2.2-1.8,4-4,4H31c-2.2,0-4-1.8-4-4l0,0 c0-2.2,1.8-4,4-4h38C71.2,85,73,86.8,73,89L73,89z"/></g><path display="inline" fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" d="M63,85c0-13-4-8-4-52H41 c0,44-4,39-4,52H63z"/><g display="inline"><path fill="#000000" d="M63,36c0,1.65-1.35,3-3,3H40c-1.65,0-3-1.35-3-3l0,0c0-1.65,1.35-3,3-3h20C61.65,33,63,34.35,63,36L63,36z "/><path fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" d="M63,36c0,1.65-1.35,3-3,3H40c-1.65,0-3-1.35-3-3 l0,0c0-1.65,1.35-3,3-3h20C61.65,33,63,34.35,63,36L63,36z"/></g><g display="inline"><path fill="#000000" d="M68,82c0,1.65-1.35,3-3,3H35c-1.65,0-3-1.35-3-3l0,0c0-1.65,1.35-3,3-3h30C66.65,79,68,80.35,68,82L68,82z "/><path fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" d="M68,82c0,1.65-1.35,3-3,3H35c-1.65,0-3-1.35-3-3 l0,0c0-1.65,1.35-3,3-3h30C66.65,79,68,80.35,68,82L68,82z"/></g><polyline display="inline" fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" points="34,15 41,33 59,33 66,15 "/><path display="inline" fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" d="M36,20c0-1.657,6.268-3,14-3 s14,1.343,14,3"/><circle display="inline" fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" cx="50" cy="13" r="4"/><line display="inline" fill="#000000" stroke="#E00C02" stroke-width="4" stroke-miterlimit="10" x1="37" y1="23" x2="63" y2="23"/></g><g><path d="M69.878,83.072C69.954,82.726,70,82.369,70,82c0-2.757-2.243-5-5-5h-0.701c-0.146-0.783-0.308-1.559-0.48-2.377 c-1.07-5.061-2.495-11.818-2.771-33.738C63.303,40.402,65,38.397,65,36c0-2.125-1.338-3.932-3.211-4.655l6.075-15.62l-3.729-1.45 l-0.981,2.523c-2.042-0.88-4.895-1.338-7.588-1.571C55.844,14.538,56,13.787,56,13c0-3.309-2.691-6-6-6s-6,2.691-6,6 c0,0.787,0.156,1.538,0.434,2.227c-2.693,0.232-5.546,0.691-7.588,1.571l-0.981-2.523l-3.729,1.45l6.075,15.62 C36.338,32.068,35,33.875,35,36c0,2.397,1.697,4.402,3.952,4.885c-0.275,21.92-1.7,28.677-2.771,33.738 c-0.173,0.818-0.334,1.594-0.48,2.377H35c-2.757,0-5,2.243-5,5c0,0.369,0.046,0.726,0.122,1.072C27.229,83.499,25,85.99,25,89 c0,3.309,2.691,6,6,6h38c3.309,0,6-2.691,6-6C75,85.99,72.771,83.499,69.878,83.072z M40,37c-0.542,0-1-0.458-1-1s0.458-1,1-1h20 c0.542,0,1,0.458,1,1s-0.458,1-1,1H40z M42.368,31l-2.333-6h19.93l-2.333,6H42.368z M48,13c0-1.103,0.897-2,2-2s2,0.897,2,2 s-0.897,2-2,2S48,14.103,48,13z M50,19c6.18,0,10.222,0.844,11.723,1.48L61.521,21H38.479l-0.202-0.52 C39.778,19.844,43.82,19,50,19z M40.096,75.451C41.198,70.234,42.667,63.267,42.95,41h14.1c0.283,22.267,1.752,29.234,2.854,34.451 c0.114,0.54,0.22,1.046,0.32,1.549H39.775C39.876,76.497,39.981,75.99,40.096,75.451z M35,81h30c0.542,0,1,0.458,1,1s-0.458,1-1,1 H35c-0.542,0-1-0.458-1-1S34.458,81,35,81z M69,91H31c-1.103,0-2-0.897-2-2s0.897-2,2-2h38c1.103,0,2,0.897,2,2S70.103,91,69,91z"/></g></svg></a><p class="lbl">Society</p>
</div>
<div class="col-md-2 hall categ"><a href="#hall">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M92.8,93.1L53.2,14l3.6-7.1c0.5-1,0.1-2.2-0.9-2.7c-1-0.5-2.2-0.1-2.7,0.9L51,9.5l-2.2-4.4c-0.5-1-1.7-1.4-2.7-0.9 c-1,0.5-1.4,1.7-0.9,2.7l3.6,7.1L9.2,93.1c-0.3,0.6-0.3,1.4,0.1,1.9c0.4,0.6,1,0.9,1.7,0.9h24h32h24c0.7,0,1.3-0.4,1.7-0.9 C93.1,94.5,93.1,93.7,92.8,93.1z M38.2,92L51,66.5L63.8,92H38.2z M68.2,92L52.8,61.1c-0.3-0.7-1-1.1-1.8-1.1s-1.5,0.4-1.8,1.1 L33.8,92H14.2L51,18.5L87.8,92H68.2z"/></svg></a><p class="lbl">Hall of Residence</p>
</div>
<div class="col-md-2 year categ"><a href="#year">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect display="inline" fill="#000000" width="100" height="100"/></g><g display="none"><g display="inline"><path d="M39.3,33.2l-1-2.8c0.6-0.2,14.6-5.3,28.6,0l-1.1,2.8C52.8,28.2,39.4,33.1,39.3,33.2z"/></g><g display="inline"><path d="M81.2,86.1H63.9v-7.6c-7.7,1.7-16.2,1.7-23.9,0v7.6H22.6V70.7c-3.8-2.9-6.9-6.4-8.9-10.2H1.5V38.2h12.2 c2.2-4.1,5.5-7.8,9.8-10.9l-1.2-15.4l13,9.6c2.8-0.9,5.6-1.6,8.6-2c1.1-3.8,4.5-6.4,8.6-6.4c4.1,0,7.6,2.8,8.6,6.6 c14.7,2.5,26.3,10.8,30.3,21.6c0.3,0,0.5-0.1,0.8-0.1c3.7,0,6.7,3.7,6.7,8.2c0,4.5-3,8.2-6.7,8.2c-0.3,0-0.6,0-0.9-0.1 c-1.8,4.9-5.3,9.4-10.2,13.1V86.1z M66.9,83.1h11.3v-14l0.6-0.4c5.1-3.7,8.6-8.3,10.2-13.4l0.5-1.7l1.6,0.7 c0.4,0.2,0.8,0.3,1.2,0.3c2,0,3.7-2.4,3.7-5.2s-1.7-5.2-3.7-5.2c-0.4,0-0.8,0.1-1.1,0.3l-1.6,0.7l-0.5-1.7 C85.9,33,74.4,24.7,59.7,22.5l-1.1-0.2l-0.1-1.1C58,18.3,55.5,16,52.5,16c-2.9,0-5.4,2.1-5.9,5l-0.2,1.1l-1.1,0.1 c-3.4,0.4-6.7,1.2-9.8,2.3l-0.7,0.3l-9-6.6l0.8,10.6l-0.7,0.5c-4.5,3-7.9,6.8-9.9,11l-0.4,0.8H4.5v16.3h11.1l0.4,0.8 c1.9,3.9,5,7.4,9,10.3l0.6,0.4v13.9h11.3v-8.5l1.9,0.5c8.4,2.2,17.8,2.2,26.2,0l1.9-0.5V83.1z"/></g><circle display="inline" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="52.5" cy="19.2" r="9.3"/></g><g display="none"><g display="inline"><path d="M48.4,98.8l-2.8-3.6l-7-1.6l-4.3-1.5l-0.6,1.6h-6.5l-2.8-1.8l0.5-4.5l1-4.5l4.2-6.6l-3.3-0.6l-1.9-1.9h-5.5l-3.2-5.6 l0.7-3.5l-1.7-3.2l1.3-3.5l-1.9-3.8V50l1.5-4.8l-2-6.6h4.6l2.7-1.5l1.4-4.1l-1.3-2.5l2.5-2.5l0.5-4.7l-1.8-1.9l2.6-5.1l3.9,0.1 l3.5-0.7l1.9,4.4c0,0,0,0,0,0c0.3-0.9,0.7-2.4,1.6-5.1l0.3-1.1H38l-1.3-2.5l0.7-2.3l-1.7-6.8h9l2.6,4l0.9,1.6l2.4-0.1l6.4,3.2 l-2.5,2.2l1.9,0.3l1.9-2.6l4.1-0.7l5.7-2.8l3.2,3.3l3,0.6l0.9,3.2l3.4,2l2.1,7.1L79,26.9l3.9,3.6l-0.8,2.1l0.8,1V39l1.8,3.2 l1.2,4.1l-1.6,6.6l-4.1-2.1L79,52.5l-3.4,1.4l-1.7,2.5l-7.1,2.7l-2.2,0.6l1,1.6l1.5,3.5l0.3,2.8l3.3,2.2l7.8,6.3v3.3L76,80.8 l-2.1,2.7l-2.8,2.8l1.4,7.4l-6.9-0.9l-2.4,0.9l-6.9,2.4l-3.5-0.9h-1.8L48.4,98.8z M39.5,90.8l7.8,1.8l1,1.4l1.3-1.6l3.8,0l2.8,0.7 l6-2.1l3-1.2l3.5,0.5l-0.9-4.9l3.8-3.8l2.3-3l1.6-0.8L69,72.3l-4.3-2.8l-0.4-3.8l-1.3-3L59.9,58l6.1-1.7l6-2.3l1.7-2.5l3.5-1.4 l2.2-3.2l3,1.6l0.5-2.2l-0.9-3.1l-2-3.4v-5.1l-1.1-1.6l0.6-1.7l-4.1-3.8l2.4-4.6l-1.4-4.8l-3.5-2L72,13.6l-2.2-0.4l-2.3-2.4 l-4.1,2l-3.3,0.5L58,16.4l-5.1-0.7l-2.4-3.2l1.3-1.1l-1.7-0.8l-3.5,0.1l-1.7-3.1l-1.7-2.5h-3.6l1,3.9l-0.6,2l2.9,5.8h-4.1 c-0.7,2.2-1.3,4.3-1.4,4.7C37.3,22,37,23,35.3,23c-0.8,0-1.8-0.2-1.9-0.2l-0.8-0.1L31,19l-1.5,0.3l-2.3-0.1l-0.8,1.5l1.3,1.4 L27,29.2L25.2,31l0.9,1.7l-2.2,6.4l-4.4,2.5h-1.3l1.1,3.6l-1.6,5.2v3.1l2.2,4.3l-1.3,3.4l1.6,3l-0.7,3.4l1.8,3.1h5l2.1,2.1 l3.7,0.6l1.7,2.7l-5,7.8l-0.9,3.9l-0.3,2.4l0.5,0.3h3.5l0.9-2.4L39.5,90.8z"/></g><circle display="inline" cx="38.5" cy="33.3" r="2"/><circle display="inline" cx="48.1" cy="23.8" r="2.9"/><circle display="inline" cx="54.2" cy="27" r="1.7"/><circle display="inline" cx="68.2" cy="31.3" r="3.5"/><rect x="71.7" y="35.3" display="inline" width="0" height="0"/><circle display="inline" cx="63.7" cy="35.3" r="1"/><circle display="inline" cx="68.2" cy="38.3" r="2"/><circle display="inline" cx="53.7" cy="42.5" r="1.5"/><circle display="inline" cx="28.3" cy="53.2" r="1.5"/><circle display="inline" cx="59" cy="85.2" r="1.5"/><circle display="inline" cx="37.7" cy="57.8" r="3.2"/><circle display="inline" cx="33" cy="47.5" r="2.5"/><circle display="inline" cx="63.7" cy="48.8" r="1.6"/><circle display="inline" cx="70.2" cy="47.2" r="1.6"/><circle display="inline" cx="47.8" cy="50.5" r="1.3"/><circle display="inline" cx="45.7" cy="80" r="3.2"/><circle display="inline" cx="52.5" cy="75.8" r="1.2"/><circle display="inline" cx="68.2" cy="76.8" r="1.3"/><circle display="inline" cx="57.2" cy="62.5" r="1.8"/><circle display="inline" cx="36.5" cy="68.2" r="2.8"/><circle display="inline" cx="38.5" cy="83.7" r="0.8"/><circle display="inline" cx="47.8" cy="63.5" r="1.7"/><circle display="inline" cx="29.8" cy="37.3" r="1.5"/><circle display="inline" cx="25" cy="63.5" r="1.8"/><circle display="inline" cx="46.7" cy="14" r="1.2"/><circle display="inline" cx="40.5" cy="25.3" r="1.2"/></g><g display="none"><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="79.4,39.6 85.6,43.6 85.6,94 14.4,94 14.4,43.6 20.3,39.3 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="57.3,71 79.4,49.6 79.7,6 20.3,6 20.3,49.3 42.7,71 "/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="14.4" y1="43.6" x2="42.7" y2="71"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="85.6" y1="43.6" x2="57.3" y2="71"/><polygon display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="16.6,94 83.4,94 50,64.5 "/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="28.6" y1="17.3" x2="58.2" y2="17.3"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="28.6" y1="23.2" x2="58.2" y2="23.2"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="28.6" y1="29" x2="58.2" y2="29"/><text transform="matrix(1 0 0 1 35.6616 53.3208)" display="inline" font-family="'Gotham-Black'" font-size="23.5224">$</text></g><g display="none"><rect x="23.7" y="13.5" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="51.1" height="68.9"/><circle display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" cx="49.3" cy="88.9" r="2.7"/><g display="inline"><circle fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" cx="40.7" cy="37.1" r="9.8"/><polyline fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="50.5,35.1 40.7,37.1 43,27.5 "/></g><line display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="54" y1="39.6" x2="64.8" y2="39.6"/><line display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="54" y1="43.7" x2="66.7" y2="43.7"/><polyline display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="60.3,74.1 32.9,74.1 32.9,55.9 "/><rect x="37" y="65.6" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="3.8" height="8.5"/><rect x="43.8" y="60.4" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="3.8" height="13.8"/><rect x="50.6" y="63.1" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="3.8" height="11.1"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M73.8,95.5H24.7 c-4.2,0-7.7-3.5-7.7-7.7V11.6c0-4.2,3.5-7.7,7.7-7.7h49.1c4.2,0,7.7,3.5,7.7,7.7v76.2C81.5,92,78,95.5,73.8,95.5z"/></g><g display="none"><g display="inline"><path d="M62.6,95H38.3c-5.8,0-10.5-4.7-10.5-10.5V15.6C27.8,9.8,32.5,5,38.3,5h24.3c5.8,0,10.5,4.7,10.5,10.5v68.9 C73.1,90.2,68.4,95,62.6,95z M38.3,6.8c-4.8,0-8.7,3.9-8.7,8.7v68.9c0,4.8,3.9,8.7,8.7,8.7h24.3c4.8,0,8.7-3.9,8.7-8.7V15.6 c0-4.8-3.9-8.7-8.7-8.7H38.3z"/></g><g display="inline"><rect x="28.7" y="21.4" width="43.6" height="1.8"/></g><g display="inline"><rect x="28.7" y="76.8" width="43.6" height="1.8"/></g><g display="inline"><path d="M50.4,90.6c-2.5,0-4.5-2-4.5-4.5c0-2.5,2-4.5,4.5-4.5s4.5,2,4.5,4.5C55,88.6,52.9,90.6,50.4,90.6z M50.4,83.4 c-1.5,0-2.7,1.2-2.7,2.7c0,1.5,1.2,2.7,2.7,2.7s2.7-1.2,2.7-2.7C53.2,84.6,51.9,83.4,50.4,83.4z"/></g><g display="inline"><path d="M57.4,19.7H43.5c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h13.9c1.4,0,2.5,1.1,2.5,2.5S58.8,19.7,57.4,19.7z M43.5,16.5 c-0.4,0-0.7,0.3-0.7,0.7c0,0.4,0.3,0.7,0.7,0.7h13.9c0.4,0,0.7-0.3,0.7-0.7c0-0.4-0.3-0.7-0.7-0.7H43.5z"/></g></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3.0969" stroke-miterlimit="10" d="M62.9,94.2H37.4 c-5.4,0-9.8-4.4-9.8-9.8v-69c0-5.4,4.4-9.8,9.8-9.8h25.5c5.4,0,9.8,4.4,9.8,9.8v69C72.7,89.8,68.3,94.2,62.9,94.2z"/><line display="inline" fill="none" stroke="#000000" stroke-width="3.0969" stroke-miterlimit="10" x1="27.7" y1="79.7" x2="72.7" y2="79.7"/><line display="inline" fill="none" stroke="#000000" stroke-width="3.0969" stroke-miterlimit="10" x1="27.7" y1="21" x2="72.7" y2="21"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M59.1,15.9H40.9 c-0.8,0-1.4-0.6-1.4-1.4v-0.3c0-0.8,0.6-1.4,1.4-1.4h18.2c0.8,0,1.4,0.6,1.4,1.4v0.3C60.5,15.3,59.9,15.9,59.1,15.9z"/><circle display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" cx="50.2" cy="86.2" r="2.8"/></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M34,77.8l-18.8,0c0,0,0-20.2,0-40 S31.1,4.7,50.8,4.7s35.6,13.4,35.6,33.2c0,15.4,0,40,0,40l-18.8,0 M67.7,77.8C74,70.9,78,60.3,78,48.3c0-20.8-12.2-37.6-27.2-37.6 M34,77.8c4.6,5.1,10.5,8.1,16.9,8.1c6.4,0,12.2-3,16.9-8.1 M50.8,10.7c-15,0-27.2,16.8-27.2,37.6c0,12,4,22.6,10.4,29.5 M78,48.3 c-16.3,0-39.5-20.1-39.5-20.1s-4.1,9.4-13.8,9.4 M67.8,92.5c9.7,0,7.6-27.2,7.6-27.2s6.7-1.7,6.7-7.7s-5.4-5.9-5.4-5.9 M24.4,51.8 c0,0-5.4,0-5.4,5.9s7.6,7.8,7.6,7.8 M61.3,88.6c-3.6,0-6.6,1.8-6.6,3.9s2.9,3.9,6.6,3.9s6.6-1.8,6.6-3.9S64.9,88.6,61.3,88.6z"/></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M72.9,84.1h-1.6 c0-0.3,0.1-0.6,0.1-0.9V12.5c0-4.2-3.4-7.7-7.7-7.7h-37c-4.2,0-7.7,3.4-7.7,7.7v70.7c0,0.3,0,0.6,0.1,0.9h-1.6 c-1.9,0-3.4,1.5-3.4,3.4v5.8c0,1.1,0.9,1.9,1.9,1.9h58.4c1.1,0,1.9-0.9,1.9-1.9v-5.8C76.3,85.6,74.7,84.1,72.9,84.1z"/><rect x="28.4" y="15.9" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="33.5" height="20.8"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M71.3,46.5h4.3 c2,0,3.7,1.7,3.7,3.7v19c0,2,1.7,3.7,3.7,3.7h1.8c2,0,3.7-1.7,3.7-3.7V46.5V38"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M87.3,39.5 c0.6-0.7,1.3-1.1,1.3-1.9l0.1-19.4c0-0.9-0.7-1.6-1.6-1.7h0c-1,0-1.9,0.8-2,1.9l-0.7,9.8c0,0.5-0.3,1-0.6,1.3l-2.3,2.2 c-1.7,1.6-1.8,5.5-0.8,7.4C82.8,42.9,87.3,39.5,87.3,39.5z"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="19.1" y1="84.1" x2="71.3" y2="84.1"/><ellipse display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" cx="39.9" cy="23" rx="4" ry="2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M43.9,28.6c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M43.9,26.7c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M43.9,24.8c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M43.9,23.2v7.3c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1 v-7.3"/><ellipse display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" cx="50.9" cy="26.7" rx="4" ry="2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M54.9,28.6c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1"/><path display="inline" fill="none" stroke="#000000" stroke-miterlimit="10" d="M54.9,26.9v3.6c0,1.2-1.8,2.1-4,2.1s-4-0.9-4-2.1 v-3.6"/></g><g display="none"><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="8.1" y1="71.5" x2="2.4" y2="71.5"/><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M8.1,21v50.6H14c0-4.2,3.4-7.5,7.5-7.5 s7.5,3.4,7.5,7.5h33.2V21H8.1z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M14,71.5c0,4.2,3.4,7.5,7.5,7.5s7.5-3.4,7.5-7.5"/></g><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M85.6,47.9l-3.9-11.3H62.2v34.9H69 c0-4.2,3.4-7.5,7.5-7.5c4.2,0,7.5,3.4,7.5,7.5h1.5h7.2v-18L85.6,47.9z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M69,71.5c0,4.2,3.4,7.5,7.5,7.5 c4.2,0,7.5-3.4,7.5-7.5"/></g><polygon display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="79.1,49.9 68,49.9 68,42.6 77.1,42.6 "/></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M83.7,74.8H16.3 c-4.3,0-7.7-3.5-7.7-7.7V32.9c0-4.3,3.5-7.7,7.7-7.7h67.4c4.3,0,7.7,3.5,7.7,7.7v34.2C91.4,71.4,88,74.8,83.7,74.8z"/><line display="inline" fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" x1="8.6" y1="62.7" x2="91.4" y2="62.7"/><text transform="matrix(1 0 0 1 73.5703 46.6069)" display="inline" font-family="'Gotham-Black'" font-size="17.7672">$</text></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M74.1,88.6h-5.4V6.5H21.8v82.1 h-5.4c-0.7,0-1.2,0.6-1.2,1.2V94h60.1v-4.1C75.3,89.2,74.8,88.6,74.1,88.6z"/><rect x="29.1" y="13.3" display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" width="32.2" height="23.6"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M68.7,68.2h3.5 c1.7,0,3.1,1.4,3.1,3.1v6.6c0,1.7,1.4,3.1,3.1,3.1h3.4c1.7,0,3.1-1.4,3.1-3.1V42.8l-3.2-10.7l-5.7-7.3"/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="82.1,33.7 76.8,37.9 79.5,45.2 84.8,45.9 "/><ellipse display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" cx="38.9" cy="20.7" rx="4.6" ry="2.5"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M56.2,23.9c0,1.4-2,2.7-4.5,2.7 s-4.6-1.4-4.6-2.7s2.1-2.2,4.6-2.2S56.2,22.5,56.2,23.9z"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M43.4,26.8c0,1.4-2,2.5-4.6,2.5 s-4.6-1.1-4.6-2.5"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M43.4,23.9c0,1.4-2,2.5-4.6,2.5 s-4.6-1.1-4.6-2.5"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M56.2,27c0,1.4-2,2.5-4.6,2.5 s-4.6-1.1-4.6-2.5"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M43.4,20.7v9.2 c0,1.4-2,2.5-4.6,2.5s-4.6-1.1-4.6-2.5v-9.2"/><path display="inline" fill="none" stroke="#000000" stroke-width="1.5" stroke-miterlimit="10" d="M56.2,23.9v6 c0,1.4-2,2.5-4.6,2.5s-4.6-1.1-4.6-2.5v-5.9"/><g display="inline"><path d="M30,50.8v4.7c0,0,7.2-8.6,25.9-6.3c0,0-4.8-1.8-10.9-1.7C36.4,47.5,30,50.8,30,50.8z"/><path d="M60.5,62.7v-3.5c0,0-7.4,7.2-26,5.2c0,0,5,1.8,11,1.7C54.1,66,60.5,62.7,60.5,62.7z"/><polygon points="43,52.7 40.2,61.3 46.9,61.3 47.6,59.2 43.5,59.2 43.9,58 47.3,58 48,55.9 44.6,55.9 44.9,54.9 48.8,54.8 49.6,52.7 "/><polygon points="50.2,52.7 49.6,54.9 51.1,54.9 49,61.3 51.8,61.3 53.9,54.9 57,54.9 57.7,52.7 "/><path d="M33.6,59.1L33,61.3l1.9,0.2c0,0,2.3,0.1,2.9-0.4c0.7-0.5,1.4-1.6,1.7-2.3s2-6,2-6h-2.7l-1.6,4.9c0,0-0.3,1.6-1.7,1.6 L33.6,59.1z"/></g></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M76.1,89.6h-5.4V7.5H23.9v82.1 h-5.4c-0.7,0-1.2,0.6-1.2,1.2V95h60.1v-4.1C77.4,90.2,76.8,89.6,76.1,89.6z"/><rect x="31.2" y="14.3" display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" width="32.2" height="23.6"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M70.8,69.2h3.5 c1.7,0,3.1,1.4,3.1,3.1v6.6c0,1.7,1.4,3.1,3.1,3.1h3.4c1.7,0,3.1-1.4,3.1-3.1V43.8l-3.2-10.7l-5.7-7.3"/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="84.1,34.7 78.8,38.9 81.5,46.2 86.9,46.9 "/><circle display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" cx="46.8" cy="24.8" r="6"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M52.9,24.8c0-3.3-2.7-6-6-6 c-3.3,0-6,2.7-6,6c0,0.5,0.1,0.9,0.2,1.4c-0.1,0.4-0.2,0.9-0.2,1.4c0,3.3,2.7,6,6,6c3.3,0,6-2.7,6-6c0-0.5-0.1-0.9-0.2-1.4 C52.8,25.7,52.9,25.2,52.9,24.8z"/><line display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="40.8" y1="24.8" x2="40.8" y2="27.5"/><line display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="52.9" y1="24.8" x2="52.9" y2="27.5"/></g><g><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M33,81.9c4.6,5.1,10.5,8.1,16.9,8.1 c6.4,0,12.2-3,16.9-8.1 M66.7,81.9C73,75,77.1,64.3,77.1,52.4c0-2.5-0.9-2.3-0.9-2.3c-21.8,0-40.4-14.1-40.4-14.1 s-2.7,9.4-12.6,9.4c0,0-0.6,2.9-0.6,7c0,12,4,22.6,10.4,29.5 M23.5,55.8c0,0-5.4,0-5.4,5.9s7.5,7.5,7.5,7.5 M74.3,68.8 c0,0,7.3-1.1,7.3-7.1s-5.4-5.9-5.4-5.9"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M19.9,57.1c0,0-9.5-47.4,30-47.1 s29.6,46.8,29.6,46.8"/></g><g display="none"><rect x="29.7" y="6.3" display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" width="40.6" height="71.4"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M38.3,93.7h23.5 c2.4,0,4.3-1.9,4.3-4.3V77.7H34v11.7C34,91.8,35.9,93.7,38.3,93.7z"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="44.4" y1="93.7" x2="44.4" y2="77.7"/><rect x="36.2" y="14.7" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="27.7" height="19.2"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M41.3,45.2h-4 c-0.6,0-1.1-0.5-1.1-1.1v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C42.3,44.7,41.9,45.2,41.3,45.2z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M52,45.2h-4 c-0.6,0-1.1-0.5-1.1-1.1v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C53,44.7,52.5,45.2,52,45.2z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M62.8,45.2h-4 c-0.6,0-1.1-0.5-1.1-1.1v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C63.8,44.7,63.4,45.2,62.8,45.2z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M41.3,55h-4 c-0.6,0-1.1-0.5-1.1-1.1v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C42.3,54.5,41.9,55,41.3,55z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M52,55h-4c-0.6,0-1.1-0.5-1.1-1.1 v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C53,54.5,52.5,55,52,55z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M62.8,55h-4 c-0.6,0-1.1-0.5-1.1-1.1v-2.8c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C63.8,54.5,63.4,55,62.8,55z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M41.3,64.9h-4 c-0.6,0-1.1-0.5-1.1-1.1V61c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C42.3,64.4,41.9,64.9,41.3,64.9z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M52,64.9h-4 c-0.6,0-1.1-0.5-1.1-1.1V61c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C53,64.4,52.5,64.9,52,64.9z"/><path display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" d="M62.8,64.9h-4 c-0.6,0-1.1-0.5-1.1-1.1V61c0-0.6,0.5-1.1,1.1-1.1h4c0.6,0,1.1,0.5,1.1,1.1v2.8C63.8,64.4,63.4,64.9,62.8,64.9z"/><text transform="matrix(1 0 0 1 45.1343 29.2274)" display="inline" font-family="'Gotham-Black'" font-size="14.5828">$</text><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="29.7,77.7 29.7,83.3 34,83.3 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="66,83.3 70.3,83.3 70.3,77.7 "/></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M84.7,68.7H18.1 c-2.1,0-3.8-1.7-3.8-3.8V22c0-2.1,1.7-3.8,3.8-3.8h66.6c2.1,0,3.8,1.7,3.8,3.8v42.9C88.5,67,86.8,68.7,84.7,68.7z"/><rect x="45" y="68.7" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="12.5" height="8.8"/><rect x="29.4" y="77.5" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="43.7" height="5.2"/><line display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="14.3" y1="61.9" x2="88.5" y2="61.9"/><rect x="28.8" y="37.4" display="inline" fill="none" width="49.6" height="9.2"/><text transform="matrix(1 0 0 1 28.7498 46.1764)" display="inline" font-family="'Gotham-Black'" font-size="12">MS </text></g><g display="none"><path display="inline" d="M2.8,23.6V38c0,0,22.1-26.4,79-19.4c0,0-14.8-5.5-33.3-5.3C22.2,13.6,2.8,23.6,2.8,23.6z"/><path display="inline" d="M95.8,59.8V49.2c0,0-22.5,21.9-79.4,15.9c0,0,15.2,5.5,33.7,5.3C76.3,70.1,95.8,59.8,95.8,59.8z"/><polygon display="inline" points="42.2,29.5 33.8,55.7 54.3,55.7 56.4,49.2 44,49.2 45.1,45.6 55.4,45.5 57.7,39.2 47.4,39.2 48.3,36 60.1,35.9 62.4,29.5 "/><polygon display="inline" points="64.4,29.5 62.4,36 67.2,36 60.5,55.7 69.2,55.7 75.7,36.1 85.2,36.1 87.3,29.5 "/><path display="inline" d="M13.8,49l-2,6.5l5.8,0.7c0,0,7,0.2,9-1.2c2-1.5,4.2-4.8,5.1-7.2c1-2.4,6-18.2,6-18.2h-8.3l-4.8,15 c0,0-1,5-5.3,4.9L13.8,49z"/></g><g display="none"><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="31.3" y1="20.6" x2="58.1" y2="20.6"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="31.3" y1="26" x2="58.1" y2="26"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="31.3" y1="31.3" x2="58.1" y2="31.3"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="31.3" y1="36.7" x2="58.1" y2="36.7"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="31.3" y1="42.1" x2="58.1" y2="42.1"/><text transform="matrix(1 0 0 1 32.3223 66.2191)" display="inline" font-family="'Gotham-Black'" font-size="21.199">$</text><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="51.5,84 24.7,84 24.7,9 66.1,9 76.2,19.9 76.2,84 73.5,84 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="76.2,19.9 66.1,19.9 66.1,9 "/><g display="inline"><polyline fill="none" stroke="#000000" stroke-width="4" stroke-miterlimit="10" points="70.9,78.5 63,86.4 55.1,78.5 "/><line fill="none" stroke="#000000" stroke-width="4" stroke-miterlimit="10" x1="63" y1="86.4" x2="63" y2="69.2"/></g></g><g display="none"><text transform="matrix(1 0 0 1 30.5599 53.2783)" display="inline" font-family="'Gotham-Black'" font-size="17.4452">$</text><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="51.5,84 24.7,84 24.7,9 66.1,9 76.2,19.9 76.2,84 73.5,84 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="76.2,19.9 66.1,19.9 66.1,9 "/><g display="inline"><polyline fill="none" stroke="#000000" stroke-width="4" stroke-miterlimit="10" points="70.9,78.5 63,86.4 55.1,78.5 "/><line fill="none" stroke="#000000" stroke-width="4" stroke-miterlimit="10" x1="63" y1="86.4" x2="63" y2="69.2"/></g><rect x="30.6" y="25" display="inline" fill="none" width="35.5" height="22.8"/><text transform="matrix(1 0 0 1 30.5598 33.7598)" display="inline" font-family="'Gotham-Black'" font-size="12">PDF</text></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M80,33H13.5 c-0.9,0-1.7-0.8-1.7-1.7V19.7c0-0.9,0.8-1.7,1.7-1.7H80c0.9,0,1.7,0.8,1.7,1.7v11.6C81.7,32.2,80.9,33,80,33z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M80,56.3H13.5 c-0.9,0-1.7-0.8-1.7-1.7V43c0-0.9,0.8-1.7,1.7-1.7H80c0.9,0,1.7,0.8,1.7,1.7v11.6C81.7,55.5,80.9,56.3,80,56.3z"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="17.7" y1="33" x2="17.7" y2="41.3"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="17.7" y1="56.3" x2="17.7" y2="64.6"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="75.8" y1="33" x2="75.8" y2="41.3"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="75.8" y1="56.3" x2="75.8" y2="64.6"/><circle display="inline" cx="75.8" cy="25.5" r="1.6"/><circle display="inline" cx="75.8" cy="48.8" r="1.6"/><rect x="61" y="72.1" display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" width="29.6" height="14.3"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M81.7,71.3v-4.7c0-1.1-0.9-2-2-2 H13.8c-1.1,0-2,0.9-2,2v10.9c0,1.1,0.9,2,2,2h46.9"/><rect x="67.1" y="75.7" display="inline" fill="none" width="32.9" height="17.2"/><text transform="matrix(1 0 0 1 67.1251 82.6077)" display="inline" font-family="'Gotham-Black'" font-size="9.4773">pdf</text></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" d="M77.6,82.5H25.4 c-2.4,0-4.4-2-4.4-4.4V43.4c0-2.4,2-4.4,4.4-4.4h52.2c2.4,0,4.4,2,4.4,4.4v34.7C82,80.5,80,82.5,77.6,82.5z"/><path display="inline" fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" d="M37,39v-9.1 c0-6,4.8-10.8,10.8-10.8h7.4c6,0,10.8,4.8,10.8,10.8V39"/><polyline display="inline" fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" points="43.7,61.8 50,68.1 64.7,53.4 "/></g><g display="none"><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M72.1,44.6v-8.8c0-2.8-2.3-5.1-5.1-5.1H22.5 c-2.8,0-5.1,2.3-5.1,5.1v19.6h10.5"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M27.9,55.5H17.4v2.9c0,2.8,2.3,5.1,5.1,5.1h5.4"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M27.9,72.3c0,2.8,2.3,5.1,5.1,5.1h44.5 c2.8,0,5.1-2.3,5.1-5.1v-2.9H27.9V72.3z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M77.5,44.6h-5.4v10.9v2.9c0,2.8-2.3,5.1-5.1,5.1 H27.9v5.8h54.7V49.7C82.6,46.9,80.3,44.6,77.5,44.6z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M67,63.5c2.8,0,5.1-2.3,5.1-5.1v-2.9H27.9"/><line fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="72.1" y1="55.5" x2="72.1" y2="44.6"/></g><path display="inline" d="M32.4,38.3v3.8c0,0,5.9-7,21-5.2c0,0-3.9-1.5-8.9-1.4C37.6,35.6,32.4,38.3,32.4,38.3z"/><path display="inline" d="M57.1,47.9v-2.8c0,0-6,5.8-21.1,4.2c0,0,4.1,1.5,9,1.4C51.9,50.6,57.1,47.9,57.1,47.9z"/><polygon display="inline" points="42.9,39.8 40.6,46.8 46.1,46.8 46.6,45.1 43.4,45.1 43.6,44.1 46.4,44.1 47,42.4 44.3,42.4 44.5,41.6 47.6,41.5 48.2,39.8 "/><polygon display="inline" points="48.8,39.8 48.2,41.6 49.5,41.6 47.8,46.8 50.1,46.8 51.8,41.6 54.3,41.6 54.9,39.8 "/><path display="inline" d="M35.3,45l-0.5,1.7l1.6,0.2c0,0,1.9,0.1,2.4-0.3c0.5-0.4,1.1-1.3,1.4-1.9c0.3-0.6,1.6-4.9,1.6-4.9h-2.2 l-1.3,4c0,0-0.3,1.3-1.4,1.3L35.3,45z"/></g><g display="none"><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="24.9" y1="43.9" x2="21.2" y2="43.9"/><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M24.9,11.8v32.2h3.8c0-2.6,2.1-4.8,4.8-4.8 s4.8,2.1,4.8,4.8h21.1V11.8H24.9z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M28.6,43.9c0,2.6,2.1,4.8,4.8,4.8s4.8-2.1,4.8-4.8 "/></g><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M74.2,28.9l-2.5-7.2H59.3v22.2h4.3 c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8h1h4.6V32.5L74.2,28.9z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M63.7,43.9c0,2.6,2.1,4.8,4.8,4.8 c2.6,0,4.8-2.1,4.8-4.8"/></g><polygon display="inline" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="70.1,30.2 63,30.2 63,25.5 68.8,25.5 "/><g display="inline"><polygon fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="58.8,68.3 46.9,68.3 46.9,63.6 55.2,63.6 "/><polygon fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="43.9,68.3 37.1,68.3 39.3,63.6 43.9,63.6 "/><circle fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="35" cy="80" r="4.8"/><circle fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="67.3" cy="80" r="4.8"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M64.9,68.5l-7.4-9.3H36.4l-4.8,9.1h-6.8l0,11.7 h5.4c0-2.6,2.1-4.8,4.8-4.8c2.6,0,4.8,2.1,4.8,4.8h22.7c0,2.6,2.1,4.8,4.8,4.8c2.6,0,4.8-2.1,4.8-4.8H77v-9.2L64.9,68.5z"/></g></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M60.5,34.9 c0,10.4-5.8,18.9-14.2,18.9s-14.2-8.5-14.2-18.9s5.8-16.4,14.2-16.4S60.5,24.5,60.5,34.9z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M46.3,86.9h23 c0-16.7-5.1-31.2-12.6-38.3c2.9-3.4,3.8-8.3,3.8-13.7c0-10.4-5.8-16.4-14.2-16.4s-14.2,6-14.2,16.4c0,5.4,0.8,10.3,3.8,13.7 c-7.5,7.1-12.6,21.6-12.6,38.3H46.3"/><g display="inline"><line fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" x1="76.3" y1="41" x2="76.3" y2="57"/><line fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" x1="84.3" y1="49" x2="68.3" y2="49"/></g></g><g display="none"><ellipse display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="32.1" cy="37" rx="12.8" ry="7"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M80.7,45.8 c0,3.9-5.7,7.7-12.8,7.7s-12.9-3.8-12.9-7.7s5.8-6.3,12.9-6.3S80.7,42,80.7,45.8z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M44.9,54.1c0,3.9-5.7,7-12.8,7 s-12.8-3.1-12.8-7"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M44.9,45.8c0,3.9-5.7,7-12.8,7 s-12.8-3.1-12.8-7"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M80.7,54.8c0,3.9-5.7,7-12.8,7 s-12.8-3.1-12.8-7"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M44.9,37l0,26c0,3.9-5.7,7-12.8,7 s-12.8-3.1-12.8-7V37"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M80.7,46.1l0,17 c0,3.9-5.7,7-12.8,7s-12.8-3.1-12.8-7l0-16.7"/></g><g display="none"><g display="inline"><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M53.2,38.3v-5.9c0-4.2-3.4-7.6-7.6-7.6H17.8v54.4 h21.9"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M69.6,64.7V43c0-2.6-2.1-4.7-4.7-4.7H53.2v33.4 c0,3.7-2.6,6.8-6.1,7.4v9.2h18c2.6,0,4.7-2.1,4.7-4.7"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M45.6,79.2h-5.9v4.4c0,2.6,2.1,4.7,4.7,4.7H47 v-9.2C46.6,79.2,46.1,79.2,45.6,79.2z"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M47,79.1c3.5-0.7,6.1-3.7,6.1-7.4V38.3"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M39.7,79.2h5.9c0.5,0,1,0,1.4-0.1"/></g><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="59.3" y1="24.8" x2="59.3" y2="32.5"/><line display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" x1="65.8" y1="24.8" x2="65.8" y2="32.5"/><polyline display="inline" fill="none" stroke="#000000" stroke-width="5" stroke-miterlimit="10" points="60.2,70.7 66.6,77 81.2,62.3 "/></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M34.9,37.8c0,7.2-4,13-9.8,13 s-9.8-5.8-9.8-13s4-11.3,9.8-11.3S34.9,30.6,34.9,37.8z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M25.1,73.6H41 c0-11.5-3.5-21.5-8.7-26.3c2-2.4,2.6-5.7,2.6-9.5c0-7.2-4-11.3-9.8-11.3s-9.8,4.1-9.8,11.3c0,3.7,0.6,7.1,2.6,9.5 c-5.1,4.9-8.7,14.8-8.7,26.3H25.1"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M75.6,37.8c0,7.2-4,13-9.8,13 c-5.8,0-9.8-5.8-9.8-13s4-11.3,9.8-11.3C71.6,26.4,75.6,30.6,75.6,37.8z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M78.7,53.9 c-0.9-2.3-2.2-4.7-5.7-6.7c2-2.4,2.6-5.7,2.6-9.5c0-7.2-4-11.3-9.8-11.3c-5.8,0-9.8,4.1-9.8,11.3c0,3.7,0.6,7.1,2.6,9.5 C53.5,52.1,50,62.1,50,73.6h15.8"/><path display="inline" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M65.8,73.6h15.8 c0-2.8-0.3-6.1-0.7-8.7"/><g display="inline"><polygon fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" points="72.3,64 71,68 75,66.7 89,52.7 86.3,50 "/><line fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" x1="72.4" y1="63.8" x2="75.1" y2="66.5"/></g></g><g display="none"><path display="inline" fill="none" stroke="#000000" stroke-width="3.3892" stroke-miterlimit="10" d="M66,31 c0,11.8-6.5,21.4-16,21.4S34,42.8,34,31s6.5-18.6,16-18.6S66,19.2,66,31z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3.3892" stroke-miterlimit="10" d="M50,89.8h26 c0-18.9-5.8-35.2-14.2-43.2C65.1,42.7,66,37.2,66,31c0-11.8-6.5-18.6-16-18.6S34,19.2,34,31c0,6.1,0.9,11.6,4.2,15.5 C29.8,54.6,24,70.9,24,89.8H50"/><path display="inline" fill="none" stroke="#000000" stroke-width="3.3892" stroke-miterlimit="10" d="M61.8,46.6 C65.1,42.7,66,37.2,66,31c0,0,0,0,0,0l0,0v0c0-0.7,0-1.5-0.1-2.2c-0.1-0.7-0.1-1.4-0.2-2c-0.2-1.3-0.5-2.5-0.9-3.7 c-2.3-6.9-7.7-10.7-14.8-10.7c-3,0-5.7,0.7-8,2c-2.3-1.3-5-2-8-2c-0.6,0-1.2,0-1.7,0.1C23.7,13.3,18,20,18,31 c0,6.1,0.9,11.6,4.2,15.5C13.8,54.6,8,70.9,8,89.8h16h10h16h10h16C76,70.9,70.2,54.6,61.8,46.6z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3.3892" stroke-miterlimit="10" d="M38.2,46.6 C34.9,42.7,34,37.2,34,31c0,0,0,0,0,0l0,0v0c0-0.7,0-1.5,0.1-2.2c0.1-0.7,0.1-1.4,0.2-2c0.2-1.3,0.5-2.5,0.9-3.7 c2.3-6.9,7.7-10.7,14.8-10.7c3,0,5.7,0.7,8,2c2.3-1.3,5-2,8-2c0.6,0,1.2,0,1.7,0.1C76.3,13.3,82,20,82,31c0,6.1-0.9,11.6-4.2,15.5 c8.4,8,14.2,24.3,14.2,43.2H76H66H50H40H24C24,70.9,29.8,54.6,38.2,46.6z"/><path display="inline" fill="none" stroke="#000000" stroke-width="3.3892" stroke-miterlimit="10" d="M22.2,46.6"/><path display="inline" d="M36,64v4.3c0,0,6.6-7.9,23.7-5.8c0,0-4.5-1.7-10-1.6C41.9,61,36,64,36,64z"/><path display="inline" d="M64,74.9v-3.2c0,0-6.8,6.6-23.9,4.8c0,0,4.6,1.7,10.1,1.6C58.1,78,64,74.9,64,74.9z"/><polygon display="inline" points="47.9,65.7 45.3,73.6 51.5,73.6 52.1,71.7 48.4,71.7 48.7,70.6 51.9,70.6 52.5,68.7 49.4,68.7 49.7,67.7 53.3,67.7 53.9,65.7 "/><polygon display="inline" points="54.5,65.7 53.9,67.7 55.4,67.7 53.4,73.6 56,73.6 57.9,67.7 60.8,67.7 61.4,65.7 "/><path display="inline" d="M39.3,71.6l-0.6,2l1.8,0.2c0,0,2.1,0.1,2.7-0.4c0.6-0.4,1.3-1.4,1.5-2.2s1.8-5.5,1.8-5.5H44l-1.5,4.5 c0,0-0.3,1.5-1.6,1.5L39.3,71.6z"/></g><g display="none"><polygon display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" points="27.3,38.8 22.2,30 11.8,30 11.8,35.5 11.8,85.7 88.2,85.7 88.2,38.8 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" points="16.9,30 16.9,18 75,18 84,26.9 84,38.8 "/><polyline display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" points="84,26.9 75.1,26.9 75.1,18 "/><line display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" x1="68" y1="26.9" x2="68" y2="38.8"/><line display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" x1="60.8" y1="26.9" x2="60.8" y2="38.8"/><line display="inline" fill="none" stroke="#000000" stroke-width="3.1162" stroke-miterlimit="10" x1="53.6" y1="26.9" x2="53.6" y2="38.8"/></g><g display="none"><g display="inline"><polygon fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="62.5,45.1 43.7,45.1 43.7,37.7 56.8,37.7 "/><polygon fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" points="38.9,45.1 28,45.1 31.6,37.7 38.9,37.7 "/><circle fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="24.7" cy="63.7" r="7.6"/><circle fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" cx="76" cy="63.7" r="7.6"/><path fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" d="M72.2,45.5L60.5,30.7H27l-7.6,14.4H8.6l0,18.5h8.5 c0-4.2,3.4-7.6,7.6-7.6c4.2,0,7.6,3.4,7.6,7.6h36c0,4.2,3.4,7.6,7.6,7.6c4.2,0,7.6-3.4,7.6-7.6h7.8V49L72.2,45.5z"/></g></g></svg></a>
<p class="lbl">Year of Study</p>
</div>
<div class="col-md-2 gen categ" style="border-right:2px solid black"><a href="#gen">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 128 160" enable-background="new 0 0 128 128" xml:space="preserve"><g><g><path fill="#000000" d="M65,89.7c-8,0-15.9-2.6-22.3-7.3c-0.5-0.4-0.8-1-0.8-1.6c0-5.8,2.2-11.4,6.1-15.7c0.4-0.4,0.9-0.6,1.5-0.6 c0,0,0,0,0,0c0.6,0,1.1,0.2,1.5,0.6c3.6,3.9,8.8,6.1,14.1,6.1c4.6,0,9-1.6,12.5-4.6c3.9-3.3,6.3-8,6.7-13.2 c0.4-5.1-1.2-10.1-4.6-14c-3.7-4.3-9-6.7-14.7-6.7c-4.6,0-9,1.6-12.5,4.6c-4.3,3.7-6.8,9.2-6.7,14.9c0,0.6-0.3,1.2-0.8,1.6 c-4.7,3.5-8.4,8.2-10.7,13.6c-0.3,0.7-1,1.2-1.8,1.2c0,0,0,0,0,0c-0.8,0-1.5-0.5-1.8-1.2c-6.8-15.2-2.7-33.4,9.9-44.2 c6.8-5.8,15.5-9.1,24.5-9.1c8.6,0,17,2.9,23.6,8.3l8.6-7.4l-5.6-0.4c-0.5,0-1-0.3-1.4-0.7c-0.3-0.4-0.5-0.9-0.5-1.5l0.8-10.1 c0.1-1.1,1.1-1.9,2.1-1.8l27.7,2.2c1.1,0.1,1.9,1,1.8,2.1l-2.2,27.7c-0.1,1.1-1,1.9-2.1,1.8l-10.1-0.8c-0.5,0-1-0.3-1.4-0.7 c-0.3-0.4-0.5-0.9-0.5-1.5l0.4-5.6l-8.6,7.4c8.9,15.6,5.5,35.7-8.2,47.5C82.7,86.5,74,89.7,65,89.7z M45.9,79.8 c5.6,3.8,12.3,5.9,19.1,5.9c8,0,15.8-2.9,21.9-8.1c12.7-10.9,15.5-29.7,6.6-43.8c-0.5-0.8-0.4-1.9,0.4-2.6l13.6-11.6 c0.6-0.5,1.5-0.6,2.2-0.3c0.7,0.4,1.2,1.1,1.1,1.9l-0.7,8.4l6.1,0.5l1.8-23.7L94.4,4.6l-0.5,6.1l8.4,0.7c0.8,0.1,1.5,0.6,1.7,1.4 c0.3,0.8,0,1.6-0.6,2.1L89.9,26.6c-0.8,0.6-1.9,0.6-2.6,0c-6.1-5.4-14.1-8.4-22.3-8.4c-8,0-15.8,2.9-21.9,8.1 C32.9,35,28.9,49,32.6,61.6c2.4-4,5.4-7.5,9.1-10.4c0.2-6.6,3.1-12.7,8.1-17c4.2-3.6,9.6-5.6,15.1-5.6c6.8,0,13.3,3,17.7,8.1 c4,4.7,6,10.7,5.5,16.9c-0.5,6.2-3.3,11.9-8.1,15.9c-4.2,3.6-9.6,5.6-15.1,5.6c-5.7,0-11.2-2.1-15.4-5.8 C47.4,72.4,46.1,76,45.9,79.8z"/></g><g><path fill="#000000" d="M25.7,127.5c-0.1,0-0.3,0-0.4,0c-0.5-0.1-1-0.4-1.3-0.9l-4.6-6.9l-5,3.3c-0.4,0.3-1,0.4-1.5,0.3 c-0.5-0.1-1-0.4-1.3-0.9l-5.6-8.4c-0.6-0.9-0.4-2.2,0.6-2.8l5-3.3l-4.6-6.9c-0.6-0.9-0.4-2.2,0.6-2.8l8.4-5.6 c0.4-0.3,1-0.4,1.5-0.3c0.5,0.1,1,0.4,1.3,0.9l4.6,6.9l6.9-4.6c-7-16.5-1.2-36.1,13.9-46.1c6.2-4.1,13.4-6.3,20.9-6.3 c8,0,15.9,2.6,22.4,7.3c0.5,0.4,0.8,1,0.8,1.6c0,5.8-2.2,11.4-6.1,15.7c-0.4,0.4-0.9,0.6-1.5,0.6c0,0,0,0,0,0 c-0.6,0-1.1-0.2-1.5-0.6c-3.6-3.9-8.8-6.1-14.1-6.1c-3.8,0-7.5,1.1-10.6,3.2c-8.9,5.9-11.3,17.9-5.4,26.7 c3.6,5.4,9.6,8.6,16.1,8.6c3.8,0,7.5-1.1,10.7-3.2c5.5-3.6,8.7-9.7,8.6-16.3c0-0.6,0.3-1.2,0.8-1.6c0.6-0.4,1.2-0.9,1.8-1.4 c3.9-3.3,6.9-7.4,9-12.2c0.3-0.7,1-1.2,1.8-1.2c0.8,0,1.5,0.5,1.8,1.2c7.6,16.9,1.9,36.6-13.5,46.9c-6.2,4.1-13.4,6.3-20.9,6.3 c0,0,0,0,0,0c-10.2,0-20-4.1-27-11.3l-6.9,4.6l4.6,6.9c0.3,0.4,0.4,1,0.3,1.5c-0.1,0.5-0.4,1-0.9,1.3l-8.4,5.6 C26.5,127.4,26.1,127.5,25.7,127.5z M20.1,115c0.6,0,1.3,0.3,1.7,0.9l4.6,6.9l5.1-3.4l-4.6-6.9c-0.3-0.4-0.4-1-0.3-1.5 c0.1-0.5,0.4-1,0.9-1.3l9.9-6.6c0.8-0.6,1.9-0.4,2.6,0.3c6.4,7.2,15.6,11.3,25.2,11.3c6.7,0,13.1-2,18.7-5.6 c12.6-8.4,17.9-23.7,13.7-37.8c-2.1,3.6-4.8,6.7-7.9,9.5c-0.4,0.3-0.8,0.7-1.2,1c-0.2,7.6-4.1,14.5-10.4,18.7 c-3.8,2.5-8.3,3.9-12.9,3.9c-7.8,0-15.1-3.9-19.4-10.4c-7.1-10.7-4.2-25.2,6.5-32.3c3.8-2.5,8.3-3.9,12.8-3.9 c5.7,0,11.2,2.1,15.4,5.8c2.2-3,3.5-6.6,3.7-10.4c-5.6-3.8-12.3-5.9-19.1-5.9c-6.7,0-13.1,2-18.7,5.6c-13.9,9.3-19,27.6-11.8,42.7 c0.4,0.9,0.1,2-0.7,2.5l-9.9,6.6c-0.4,0.3-1,0.4-1.5,0.3c-0.5-0.1-1-0.4-1.3-0.9l-4.6-6.9l-5.1,3.4l4.6,6.9 c0.6,0.9,0.4,2.2-0.6,2.8l-5,3.3l3.4,5.1l5-3.3C19.3,115.1,19.7,115,20.1,115z"/></g></g></svg></a><p class="lbl">Gender</p>
</div>
<div class="categ relationship col-md-2"><a href="#relationship"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 640" enable-background="new 0 0 512 512" xml:space="preserve"><path d="M349.6,64c-36.4,0-70.718,16.742-93.6,43.947C233.117,80.742,198.8,64,162.4,64C97.918,64,48,114.221,48,179.095 c0,79.516,70.718,143.348,177.836,241.694L256,448l30.164-27.211C393.281,322.442,464,258.61,464,179.095 C464,114.221,414.082,64,349.6,64z M268.836,393.257l-4.219,3.873L256,404.903l-8.616-7.772l-4.214-3.869 c-50.418-46.282-93.961-86.254-122.746-121.994C92.467,236.555,80,208.128,80,179.095c0-22.865,8.422-43.931,23.715-59.316 C118.957,104.445,139.798,96,162.4,96c26.134,0,51.97,12.167,69.11,32.545L256,157.661l24.489-29.116 C297.63,108.167,323.465,96,349.6,96c22.603,0,43.443,8.445,58.686,23.778C423.578,135.164,432,156.229,432,179.095 c0,29.033-12.467,57.459-40.422,92.171C362.794,307.006,319.253,346.975,268.836,393.257z"/></svg></a>
<p class="lbl">Relationship</p>
</div>
<div class="categ friendship col-md-2"><a href="#friendship"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M99.284,53.229L90,27.704c-0.104-0.399-0.369-0.738-0.73-0.936c-0.362-0.198-0.791-0.237-1.183-0.111l-17.101,6.717 c-2.899-1.623-13.879-7.679-17.322-8.252c-0.569-0.095-1.18-0.143-1.814-0.143c-2.993,0-5.866,1.06-6.628,1.363 c-1.768,0.208-11.123,1.425-17.421,4.574c-5.487-2.828-9.85-6.082-9.895-6.115c-0.332-0.248-0.752-0.351-1.158-0.277 c-0.408,0.071-0.768,0.308-0.995,0.653L0.747,47.983c-0.443,0.673-0.275,1.576,0.381,2.045l18.934,13.523 c-0.654,1.523-0.688,3.053-0.079,4.438c1.046,2.381,3.656,3.726,5.039,4.293c1.061,4.283,3.776,4.951,5.363,4.951 c0.532,0,1.03-0.074,1.464-0.176c1.515,3.354,3.603,4.107,5.172,4.106c0,0,0,0,0.001,0c0.807,0,1.527-0.204,2.1-0.448 c0.935,1.046,2.598,2.436,5.017,2.738c0.253,0.032,0.492,0.046,0.715,0.046c1.465,0,2.37-0.62,2.871-1.141 c0.683-0.71,0.971-1.587,1.091-2.255l3.341,2.343l0.09,0.058c0.294,0.177,2.397,1.39,4.634,1.39c0.67,0,1.353-0.108,2.001-0.388 c0.782-0.336,1.75-1.027,2.38-2.45c1.275,0.065,3.223-0.069,4.866-1.211c1.248-0.866,2.098-2.126,2.534-3.753 c1.269-0.11,3.175-0.52,4.672-1.887c1.113-1.017,1.807-2.357,2.071-3.999c1.336-0.02,3.221-0.317,4.658-1.613 c1.373-1.237,2.017-3.054,1.937-5.39l16.505-8.253C99.139,54.634,99.464,53.915,99.284,53.229z M22.727,66.777 c-0.29-0.663-0.244-1.355,0.145-2.178c0.937-1.983,2.057-3.168,2.997-3.168c0.564,0,1.247,0.414,1.976,1.176 c-1.148,1.428-2.618,3.688-3.012,6.229C23.967,68.323,23.098,67.627,22.727,66.777z M27.794,70.9l-0.001-0.009 c-0.406-2.232,0.978-4.573,2.13-6.074l1.028-0.971c0.656-0.619,2.065-1.601,3.055-1.601c0.859,0,1.315,1.138,1.561,2.304 c-1.279,1.521-4.335,5.582-4.371,9.577c-0.245,0.06-0.522,0.106-0.812,0.106C29.889,74.233,28.382,74.233,27.794,70.9z M37.021,78.164c-1.346,0.001-2.245-1.69-2.786-3.217l0.01-0.002c-0.542-2.979,2.458-7.148,3.86-8.747 c0.235-0.105,0.713-0.282,1.273-0.282c0.902,0,1.688,0.502,2.354,1.473c-0.644,0.329-1.235,0.808-1.756,1.432 c-1.745,2.092-2.546,5.694-2.1,9.156C37.616,78.079,37.323,78.164,37.021,78.164z M46,79.201c0,0.236-0.126,0.811-0.394,1.084 c-0.053,0.053-0.238,0.215-0.729,0.215c-0.107,0-0.234-0.008-0.355-0.022c-2.03-0.254-3.264-1.832-3.594-2.311 c-0.502-2.759,0.065-5.881,1.354-7.425c0.494-0.593,1.03-0.881,1.641-0.882c0.201,0.009,1.765,0.162,2.56,2.835l-0.525,6.328 L46,79.121V79.201z M78.062,66.358c-0.86,0.78-2.26,0.889-3.15,0.844l-11.433-10.37c-0.612-0.554-1.562-0.51-2.119,0.104 c-0.557,0.613-0.51,1.563,0.104,2.119l11.03,10.006c-0.076,1.269-0.456,2.261-1.171,2.919c-0.95,0.875-2.28,1.09-3.078,1.137 L57.505,62.859c-0.6-0.571-1.548-0.55-2.121,0.049c-0.572,0.6-0.55,1.549,0.049,2.121l10.396,9.93 c-0.229,1.102-0.679,1.908-1.4,2.414c-0.707,0.495-1.562,0.653-2.291,0.688c-0.039-0.048-0.059-0.105-0.104-0.148l-9.352-8.872 c-0.6-0.569-1.55-0.546-2.121,0.056c-0.57,0.601-0.545,1.55,0.056,2.12l8.168,7.749l-0.028,0.129 c-0.295,1.326-0.867,1.574-1.056,1.655c-1.17,0.51-3.195-0.404-3.871-0.793l-4.697-3.293l0.385-4.234l-0.067-0.256 c-0.887-3.354-2.908-4.74-4.482-5.162c-1.709-3.541-4.2-4.095-5.59-4.095c-0.397,0-0.771,0.042-1.11,0.107 c-0.996-3.242-3.03-3.777-4.263-3.777c-1.47,0-2.89,0.751-3.865,1.422c-1.376-1.485-2.809-2.236-4.271-2.236 c-1.584,0-3.037,0.872-4.29,2.518L4.046,48.426L17.4,28.128c1.846,1.286,5.476,3.685,9.738,5.815 c0.439,0.22,0.958,0.211,1.389-0.025c3.252-1.774,7.764-2.949,11.365-3.672c-0.918,0.847-1.964,1.867-3.164,3.119 c-4.901,5.116-2.766,8.218-2.454,8.619c1.205,1.398,2.855,2.137,4.772,2.136c4.205,0,8.849-3.568,10.189-4.676l3.631-0.403 c2.471,8.528,12.086,12.189,14.149,12.883l11.749,11.748c0.068,0.068,0.155,0.103,0.232,0.154 C78.958,64.965,78.652,65.821,78.062,66.358z M80.123,60.787l-11.24-11.239c-0.176-0.176-0.392-0.305-0.63-0.376 c-0.111-0.034-11.147-3.439-12.76-12.044c-0.135-0.716-0.76-1.224-1.474-1.224c-0.055,0-0.11,0.003-0.167,0.009l-5.402,0.6 c-0.307,0.034-0.597,0.163-0.829,0.367c-1.335,1.179-5.479,4.24-8.575,4.24c-1.015,0-1.786-0.318-2.415-1 c-0.105-0.265-0.516-1.78,2.263-4.68c5.07-5.291,7.218-6.224,7.213-6.224c0.033-0.011,0.065-0.024,0.097-0.038 c0.028-0.012,2.836-1.201,5.644-1.201c0.47,0,0.914,0.034,1.321,0.102c2.449,0.408,11.457,5.145,16.914,8.229 c0.365,0.208,0.802,0.251,1.2,0.122L87.5,30l8.573,22.813L80.123,60.787z"/></svg></a><p class="lbl">Friendship</p></div>
<div class="categ addictions col-md-2"><a href="#addictions"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M86.547,97.711c0,0-11.271,1.141-18.314-0.102c-7.045-1.238-18.269-6.416-18.269-6.416s12.312-1.348,19.447-0.09 C76.549,92.363,86.547,97.711,86.547,97.711z"/><path d="M97.15,70.277c0,0-12.092,10.074-21.166,14.115c-9.076,4.041-26.018,6.799-26.018,6.799s13.127-11.113,22.323-15.207 C81.484,71.889,97.15,70.277,97.15,70.277z"/><path d="M89.117,31.125c0,0-6.469,20.878-13.982,32.451C67.621,75.146,49.97,91.178,49.97,91.178s6.885-22.877,14.5-34.602 C72.086,44.852,89.117,31.125,89.117,31.125z"/><path d="M50.117,1.59c0,0,7.436,26.292,7.436,43.537c0,17.246-7.588,46.066-7.588,46.066s-8.356-28.668-8.356-46.144 S50.117,1.59,50.117,1.59z"/><path d="M11.026,31.002c0,0,16.444,14.4,23.958,25.971c7.514,11.572,14.979,34.215,14.979,34.215s-18.096-15.594-25.71-27.32 C16.639,52.143,11.026,31.002,11.026,31.002z"/><path d="M2.849,70.123c0,0,15.577,2.25,24.652,6.289c9.075,4.041,22.463,14.787,22.463,14.787s-17.043-2.32-26.238-6.416 C14.529,80.689,2.849,70.123,2.849,70.123z"/><path d="M13.365,97.582c0,0,10.202-4.93,17.246-6.172c7.044-1.242,19.361-0.217,19.361-0.217s-11.107,5.475-18.244,6.734 C24.59,99.188,13.365,97.582,13.365,97.582z"/></svg></a><p class="lbl">Addictions</p></div>
<div class="categ col-md-2 peace"><a href="#peace"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 96 120" enable-background="new 0 0 96 96" xml:space="preserve"><path d="M48,0C21.532,0,0,21.532,0,48s21.532,48,48,48s48-21.532,48-48S74.468,0,48,0z M4,48C4,30.28,14.552,15.016,29.68,8.048 C25.548,12.508,23,18.456,23,25c0,13.784,11.216,25,25,25c11.58,0,21,9.42,21,21s-9.42,21-21,21C23.74,92,4,72.256,4,48z M48,32 c-4.412,0-8-3.584-8-8s3.588-8,8-8c4.416,0,8,3.584,8,8S52.416,32,48,32z M48,80c-4.412,0-8-3.584-8-8s3.588-8,8-8 c4.416,0,8,3.584,8,8S52.416,80,48,80z"/></svg></a><p class="lbl">Peace of Mind</p></div>
<div class="categ native col-md-2"><a href="#native"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 32 40" enable-background="new 0 0 32 32" xml:space="preserve"><g><g><path fill="#000000" d="M16,31.2c-0.2,0-0.5-0.1-0.6-0.3C15,30.4,5.1,17.5,5.1,11.7C5.1,5.6,10,0.7,16,0.7s10.9,4.9,10.9,10.9 c0,5.8-9.9,18.7-10.3,19.3C16.5,31.1,16.2,31.2,16,31.2z M16,2.2c-5.2,0-9.4,4.2-9.4,9.4c0,4.5,7.3,14.7,9.4,17.6 c2.2-2.9,9.4-13.1,9.4-17.6C25.4,6.5,21.2,2.2,16,2.2z"/></g><g><path fill="#000000" d="M16,19c-4,0-7.3-3.3-7.3-7.3c0-4,3.3-7.3,7.3-7.3s7.3,3.3,7.3,7.3C23.3,15.7,20,19,16,19z M16,5.8 c-3.2,0-5.8,2.6-5.8,5.8c0,3.2,2.6,5.8,5.8,5.8s5.8-2.6,5.8-5.8C21.8,8.4,19.2,5.8,16,5.8z"/></g></g></svg></a><p class="lbl">Native Place</p></div>
<div class="categ fun col-md-2" style="border-right:2px solid black"><a href="#fun"><svg xmlns:x="http://ns.adobe.com/Extensibility/1.0/" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" xmlns:graph="http://ns.adobe.com/Graphs/1.0/" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" version="1.1" x="0px" y="0px" viewBox="0 0 100 125" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M50.501,3.5c-25.915,0-47,21.085-47,47s21.085,47,47,47c16.572,0,32.1-8.914,40.522-23.266l1.401-2.388l-2.731-0.447 c-4.017-0.658-7.977,0.235-12.112,2.746c-4.369,2.658-9.218,2.654-13.587-0.001c-6.451-3.922-13.367-3.926-19.825,0 c-2.026,1.233-4.521,1.885-7.214,1.886c-2.689,0-5.344-0.685-7.283-1.88c-4.061-2.499-6.684-6.009-6.684-8.94 c0-3.053,2.465-3.29,3.221-3.29c0.577,0,1.141,0.128,1.508,0.343c2.627,1.537,5.945,2.383,9.345,2.383 c3.362,0,6.503-0.83,9.081-2.399c5.322-3.236,10.193-3.239,15.521,0c2.75,1.672,5.814,2.556,8.863,2.556 c3.087,0,6.066-0.859,8.854-2.556c2.108-1.281,5.008-2.046,7.756-2.046c2.5,0,4.698,0.62,6.187,1.747l2.351,1.779l0.647-2.877 c0.783-3.473,1.18-6.955,1.18-10.35C97.501,24.585,76.416,3.5,50.501,3.5z M93.11,57.497c-1.743-0.722-3.765-1.095-5.974-1.095 c-3.465,0-7.011,0.946-9.729,2.599c-4.376,2.661-9.405,2.653-13.771,0c-6.459-3.928-13.012-3.926-19.468,0 c-1.984,1.208-4.441,1.846-7.107,1.846c-2.695,0-5.403-0.679-7.427-1.862c-0.951-0.557-2.167-0.862-3.426-0.862 c-3.381,0-7.02,2.218-7.02,7.088c0,4.286,3.254,8.951,8.49,12.175c2.56,1.576,5.853,2.444,9.275,2.444 c3.39-0.001,6.566-0.845,9.188-2.439c5.253-3.194,10.635-3.188,15.879,0c5.579,3.391,11.961,3.393,17.533,0.001 c2.239-1.359,4.358-2.132,6.444-2.341C77.97,86.63,64.648,93.702,50.501,93.702C26.68,93.702,7.299,74.321,7.299,50.5 S26.68,7.298,50.501,7.298S93.703,26.679,93.703,50.5C93.703,52.797,93.505,55.141,93.11,57.497z"/><path d="M33.885,27.949c-7.199,0-13.056,5.856-13.056,13.056s5.856,13.056,13.056,13.056S46.94,48.204,46.94,41.005 S41.084,27.949,33.885,27.949z M33.885,51.687c-5.89,0-10.682-4.792-10.682-10.682s4.792-10.682,10.682-10.682 s10.682,4.792,10.682,10.682S39.774,51.687,33.885,51.687z"/><path d="M33.885,32.697c-4.581,0-8.308,3.727-8.308,8.308c0,4.582,3.727,8.309,8.308,8.309c4.582,0,8.309-3.727,8.309-8.309 C42.193,36.424,38.467,32.697,33.885,32.697z M33.885,46.939c-3.272,0-5.935-2.662-5.935-5.935s2.662-5.935,5.935-5.935 s5.935,2.662,5.935,5.935S37.157,46.939,33.885,46.939z"/><path d="M33.885,37.444c-1.963,0-3.561,1.598-3.561,3.561s1.598,3.561,3.561,3.561s3.561-1.598,3.561-3.561 S35.848,37.444,33.885,37.444z M33.885,42.192c-0.654,0-1.187-0.532-1.187-1.188c0-0.654,0.532-1.187,1.187-1.187 s1.187,0.532,1.187,1.187C35.071,41.66,34.539,42.192,33.885,42.192z"/><path d="M67.117,20.828c-8.508,0-15.43,6.922-15.43,15.43c0,8.507,6.922,15.429,15.43,15.429s15.43-6.922,15.43-15.429 C82.547,27.75,75.625,20.828,67.117,20.828z M67.117,49.313c-7.199,0-13.056-5.856-13.056-13.056s5.856-13.056,13.056-13.056 s13.056,5.856,13.056,13.056S74.316,49.313,67.117,49.313z"/><path d="M67.117,25.576c-5.89,0-10.682,4.792-10.682,10.682s4.792,10.682,10.682,10.682s10.682-4.792,10.682-10.682 S73.007,25.576,67.117,25.576z M67.117,44.565c-4.582,0-8.309-3.727-8.309-8.308c0-4.582,3.727-8.309,8.309-8.309 c4.581,0,8.308,3.727,8.308,8.309C75.425,40.839,71.698,44.565,67.117,44.565z"/><path d="M67.117,30.323c-3.272,0-5.935,2.662-5.935,5.935s2.662,5.935,5.935,5.935s5.935-2.662,5.935-5.935 S70.39,30.323,67.117,30.323z M67.117,39.818c-1.963,0-3.561-1.598-3.561-3.561s1.598-3.561,3.561-3.561s3.561,1.598,3.561,3.561 S69.08,39.818,67.117,39.818z"/></svg></a><p class="lbl">Just for Fun</p></div>
<br><br>
</div>
<div class="maincontent cathead col-md-12" id="cgpa">
<a href="#step2" style="color:#ddd">CGPA</a>
</div>
<div class="catdescr col-md-12">
<ul><li>One of the strongest indicators of satisfaction.</li>
<li>Effect more prominent on lower end of CGPA Scale.</li>
<li>Corelates with even social and personal parameters including academic satisfaction.</li>
</ul>
</div>
<div class="col-md-12">
<div class="catind">Happiness Index Profile</div>
<div class="cghpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<h5 style="text-align:center">The numbers on the bars represent Percentage Satisfaction. 100 implies Complete Satisfaction.</h5>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle;margin-top:30px">
<div class="arena">
</div>
<div class="labella" onmouseover="this.innerHTML='5<=CG<6';"
onmouseout="this.innerHTML='Panji';">Panji</div>
<div class="labella" onmouseover="this.innerHTML='6<=CG<7';"
onmouseout="this.innerHTML='Chaggi';">Chaggi</div>
<div class="labella" onmouseover="this.innerHTML='7<=CG<8';"
onmouseout="this.innerHTML='Satti';">Satti</div>
<div class="labella" onmouseover="this.innerHTML='8<=CG<9';"
onmouseout="this.innerHTML='Atthi';">Atthi</div>
<div class="labella" onmouseover="this.innerHTML='9<=CG<10';"
onmouseout="this.innerHTML='Nehli';">Nehli</div>
</div>
<div class="cghpbtn" style="text-align:center;vertical-align:middle;margin-top:30px">
<button class="btn arenap" >Next</button>
</div>
<!--GRAPH CHANGE>-->
<div class="catind col-md-12">Agreement Profile</div>
<div class="catbigtxt agrindtxt">
</div>
<div class="arenaagr col-md-12" style="text-align:center;vertical-align:middle">
</div>
<div class="agrlabelscontainer col-md-12">
<div class="lblagr">Strongly Disagree</div>
<div class="lblagr">Disagree</div>
<div class="lblagr">Neutral</div>
<div class="lblagr">Agree</div>
<div class="lblagr">Strongly Agree</div>
</div>
<div class="agrbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn agr" >Next</button>
</div>
<div class="catind col-md-12">Placement</div>
<div class="catbigtxt payindtxt">
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle;margin-top:30px">
<div class="arenapay" style="text-align:center;vertical-align:middle">
</div>
<div class="labella" onmouseover="this.innerHTML='5<=CG<6';"
onmouseout="this.innerHTML='Panji';">Panji</div>
<div class="labella" onmouseover="this.innerHTML='6<=CG<7';"
onmouseout="this.innerHTML='Chaggi';">Chaggi</div>
<div class="labella" onmouseover="this.innerHTML='7<=CG<8';"
onmouseout="this.innerHTML='Satti';">Satti</div>
<div class="labella" onmouseover="this.innerHTML='8<=CG<9';"
onmouseout="this.innerHTML='Atthi';">Atthi</div>
<div class="labella" onmouseover="this.innerHTML='9<=CG<10';"
onmouseout="this.innerHTML='Nehli';">Nehli</div>
<br>Values indicate percentage of students from each subgroup.
</div>
<div class="paybtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn payy" >Next</button>
</div>
<div class="maincontent cathead col-md-12" id="dep">
<a href="#step2" style="color:#ddd">Department</a>
</div>
<div class="catdescr col-md-12">
<ul><li>Subtle variations in constrast with the stark CGPA variations.</li>
<li>The Happiest Departments (HS,CH,ME,MA) aren't necessarily the most Satisfied ones (CSE,ECE).</li>
<li>Desire to stay in the core field is almost independent of satisfaction with Department.</li>
</ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="dephpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="dephpar">
</div>
<div class="dephbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn depnxt" >Next</button>
<button class="btn depsort" id="dso">Sort</button>
</div>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Agreement Index Profile</div>
<div class="depgrindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="depgrar">
</div>
<div class="dephbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn depgrnxt" >Next</button>
<button class="btn depgrsort" id="dsog">Sort</button>
</div>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Placement</div>
<div class="paydeptxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="paydeparea">
</div>
<div class="dephbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn paydepnxt" >Next</button>
<button class="btn paydepsrt" id="dsogp">Sort</button>
</div>
<!--Society-->
<div class="maincontent cathead col-md-12" id="society">
<a href="#step2" style="color:#ddd">Society</a>
</div>
<div class="catdescr col-md-12">
<ul><li>61% of the campus is involved in no society.</li>
<li>Students involved in no societies lie almost in the center of the overall distribution of satisfaction levels.</li>
<li>To the question <b><em>Do societies help in making friends?</em></b>, 69% students said YES, 29% said that there is NO CORRELATION and 2% students said that Societies make people LONELIER.</li></ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="sochpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="sochpar">
</div>
<div class="sochbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn socnxt" >Next</button>
<button class="btn socsort" id="sso">Sort</button>
</div>
</div>
<!--HALL-->
<div class="maincontent cathead col-md-12" id="hall">
<a href="#step2" style="color:#ddd">Hall of Residence</a>
</div>
<div class="catdescr col-md-12">
<ul><li>The Happiest Halls (RP,LBS) also have the highest satisfaction levels in terms of Friend Circle and Social Life.</li>
<li>Satisfaction with IIT is loosely proportional to the Hall's proximity to the main building.</li>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="hallhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="hallhpar">
</div>
<div class="hallhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn hallnxt" >Next</button>
<button class="btn hallsort" id="hso">Sort</button>
</div>
</div>
<!--YEAR-->
<div class="maincontent cathead col-md-12" id="year">
<a href="#step2" style="color:#ddd">Year of Study</a>
</div>
<div class="catdescr col-md-12">
<ul><li>Most parameters spike at Fifth Year like satisfaction with CGPA, Body Image, IIT and Hall.</li>
<li>Satisfaction with Social Life decreases with Year.</li>
<li>Fifth and Second Years are the happiest of all batches. However, Fifth years are satisfied with most parameters whereas Second Years aren't.</li></ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="yrhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="yrhpar">
</div>
<div class="yrhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn yrnxt" >Next</button>
<button class="btn yrsort" id="yso">Sort</button>
</div>
</div>
<!--GENDER-->
<div class="maincontent cathead col-md-12" id="gen">
<a href="#step2" style="color:#ddd"><span style="color:#e40303">G</span><span style="color:#ff8c00">e</span><span style="color:#ffed00">n</span><span style="color:#008026">d</span><span style="color:#004dff">e</span><span style="color:#750787">r</span></a>
</div>
<div class="catdescr col-md-12">
<ul><li><b>What do 'Queer' and 'Questioning' mean? Click <a href="http://ok2bme.ca/resources/kids-teens/what-does-lgbtq-mean/">here</a> to know.</b></li>
<li>(M,F) = (Male,Female) | Gay = Homosexual Male | Lesbian = Homosexual Female | Straight = Heterosexual</li>
<li>In spite of the decent satisfaction levels, LGBTQ students have low happiness scores compared to their straight counterparts.</li>
<li>Question: <b>How strongly do you agree with 'I am not as happy as I was in my first year'?</b> 0 implying Neutral, -100 being Strongly Disagree and +100 being Strongly Agree; the average score for <ul><li>Straight Females: -17</li><li>Straight Males: -8</li><li>Gays: +15</li><li>Bisexual Males: +23</li><li>Queer Male: -32</li><li>Queer Female: -13</li><li>Questioning Male:-3</li></ul></li>
<li>While the majority of straight students reported to have tackled depression successfully (78% in straight males and 81% in straight females), only a fraction of the students of the LGBT community have overcome depression. (33% in Bisexual Males, 50% in Homosexual Males and Homosexual Females.)
<li>We urge the student community to be more sensitive of our gender diversity to make the campus a more open place for everybody. Our insensitivity could push a closeted friend into depression.
<li>If you wish to stand up for a more gender diverse campus, you can reach the Campus' LGBTQ Support group <a href="https://www.facebook.com/ambar.iitkgp">here</a>. If you are a closested student, we understand it can be tough, but remember that <a href="https://www.youtube.com/watch?v=QUQsqBqxoR4&list=PLkaz5799aQgo2YTvem83zSIhaadoiOBfg">it gets better.</a></li>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="gdrhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="gdrhpar">
</div>
<div class="gdrhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn gdrnxt" >Next</button>
<button class="btn gdrsort" id="gso">Sort</button>
</div>
</div>
<!--REL-->
<div class="maincontent cathead col-md-12" id="relationship">
<a href="#step2" style="color:#ddd">Relationships</a>
</div>
<div class="catdescr col-md-12">
<ul><li>Analogous to Friend Circle, Relationships follow a linear variation with Happiness Levels.</li>
<li>Students who have had three or more relationships show high satisfaction levels in almost all parameters except for CGPA.</li>
</ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="relhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="relhpar">
</div>
<div class="relhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn relnxt" >Next</button>
<button class="btn relsort" id="rso">Sort</button>
</div>
</div>
<!--FRIENDSHIPS-->
<div class="maincontent cathead col-md-12" id="friendship">
<a href="#step2" style="color:#ddd">Friendships</a>
</div>
<div class="catdescr col-md-12">
<ul>
<li>Friendship Level is the only indicator other than CGPA that strongly correlates with the Happiness Index.</li><li>Students with more number of close friends and those who believe their friends will stay with them even after IIT have the highest happiness levels in all aspects.</li>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="frhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="frhpar">
</div>
<div class="frhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn frnxt" >Next</button>
<button class="btn frsort" id="fso">Sort</button>
</div>
</div>
<!--ADDICTIONS-->
<div class="maincontent cathead col-md-12" id="addictions">
<a href="#step2" style="color:#ddd">Addictions</a>
</div>
<div class="catdescr col-md-12">
<ul><li>46% of the campus has never consumed cigarette, weed, alcohol or any other drug.</li>
<li>In terms of frequency of use, Alcohol>Cigarette>Weed.</li>
<li>When asked for the reason why the students used the substance they mentioned, in the decreasing order,<ul><li>
46% said they wanted to experiment.</li>
<li>33% used the substances to socialize with friends.</li>
<li>29% students said they really don't have a reason.</li>
<li>12% students used the substances because they were stressed.</li>
<li>9% students thought that using the substances was cool.</li>
</ul>
</li>
<li>When asked how the substances have affected their lives, in the decreasing order,<ul>
<li>67% people said their lives weren't affected in any matter.</li>
<li>17% students had their friend circle grown after using the substances.</li>
<li>16% students reported to have lower stress levels</li>
<li>11% students said their health had gone worse.</li>
</ul>
</li>
<li>Question: <b>How strongly do you agree with 'I am not as happy as I was in my first year'?</b> 0 implying Neutral, -100 being Strongly Disagree and +100 being Strongly Agree; the average score for <ul><li>No Addiction: -5</li><li>Occasional Weed Users: -8</li><li>Frequent Weed Users: +11</li><li>Occasional Cigarette Smokers: +6</li><li>Frequent Cigarette Smokers: +4</li><li>Occasional Alcohol Consumers: -3</li><li>Frequent Alcohol Consumers:-6</li></ul></li>
</ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="adhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="adhpar">
</div>
<div class="adhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn adnxt" >Next</button>
<button class="btn adsort" id="aso">Sort</button>
</div>
</div>
<!--NATIVE-->
<div class="maincontent cathead col-md-12" id="native">
<a href="#step2" style="color:#ddd">Native Place</a>
</div>
<div class="catdescr col-md-12">
<ul><li>The North Privilege: North Indian students apparently are the most satisfied of all regional demographics.</li>
<li>When asked how diverse the friend circle is, with the exception of Tamil Nadu (37%), AP (49%), Haryana (52%), Kerala (55%) and Odisha (57%), Almost 80% of all students from other states reported having a diverse friend circle.</li>
<li>Loosely, students with diverse friend circles report higher satisfaction scores in all parameters.</li>
</ul>
</div>
<div class="col-md-12" style="text-align:center;vertical-align:middle">
<div class="catind">Happiness Index Profile</div>
<div class="nvhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="nvhpar">
</div>
<div class="nvhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn nvnxt" >Next</button>
<button class="btn nvsort" id="nso">Sort</button>
</div>
</div>
<!--PEACE-->
<div class="maincontent cathead col-md-12" id="peace">
<a href="#step2" style="color:#ddd">Peace of Mind</a>
</div>
<div class="catdescr col-md-12">
<ul>
<li>When asked for the ways in which the campus deals with stress, you had a lot to offer. In the descending order,<ul><li>63% students said they spend time with their friends when stressed</li><li>61% listen to music</li><li>49% watch TV Series/Movies</li><li>44% use narcotics/weed</li><li>38% spend time alone</li><li> 27% watch Porn</li><li>26% play Sports</li><li>24% Eat</li><li>22% don't do anything consciously</li><li>13% play music</li><li>9% Meditate</li><li>3.4% visit the Counselling Centre.</li></ul></li>
<li>When asked which factors do the students think are important for being happy in the campus, you had equally diverse answers. In descending order<ul><li>81% believed having a nice Friend Circle is important</li><li>72% agreed on CGPA</li><li>43% think internships matter</li><li>33% think being rich matters</li><li>30.5% students say that being in a relationship is important</li><li>26% value extroversion</li><li>22% think that it is participation in Hall Activities that counts</li><li>18% prioritize PORs</li><li>and 4% think being popular on Facebook helps</li></ul></li></ul>
</div>
<div class="pchpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="pchpar">
</div>
<div class="pchbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn pcnxt" >Next</button>
</div>
<div class="col-md-2"></div>
<div class="col-md-8" style="margin-top:35px">
<table class="table table-bordered tblthis">
<thead>
<tr>
<th>Answer</th>
<th><button class="btn">Mean <span style="font-family:Times;">π</span> Index</button></th>
<th><button class="btn">Variance</button></th>
<th><button class="btn">Percentage</button></th>
</tr>
</thead>
<tbody id="entbody">
</tbody>
</table>
</div>
<div class="col-md-2"></div>
</div>
<script type="text/javascript">
var coo=-1;
var starray=["How frequently have you faced depression?","Do you think your friends will stay with you for life?","Do you have friends not from your homestate?","Are you friends with opposite gender?","How often do you exercize?","How many close friends do you have?","Do you play sports?","Are you satisfied on a spiritual level?"]
$('.pchpindtxt').text("Click Next to Begin");
$('.pcnxt').click(function(){
$("#entbody").empty();
$(".tblthis").tablesorter();
$("#entbody").empty();
coo++;
$('.pchpindtxt').text(starray[coo%8]);
var deef={"0":[{"ans":"Frequently","pi":5.15,"var":1.63,"per":22.7},{"ans":"Occasionally","pi":6.95,"var":1.08,"per":30.6},{"ans":"Rarely","pi":7.84,"var":0.86,"per":35.54},{"ans":"Never","pi":8.67,"var":0.66,"per":11.14}],"1":[{"ans":"Yes","pi":7.45,"var":1.78,"per":63.04},{"ans":"No","pi":5.98,"var":2.86,"per":9.44},{"ans":"I don't know","pi":6.54,"var":2.5,"per":23.97},{"ans":"I don't care","pi":6.08,"var":3.97,"per":3.38}],"2":[{"ans":"Yes","pi":7.29,"var":2.05,"per":70.38},{"ans":"Only some","pi":6.51,"var":2.88,"per":21.57},{"ans":"No","pi":6.47,"var":2.82,"per":7.75}],"3":[{"ans":"Yes","pi":7.25,"var":2.1,"per":62.48},{"ans":"No","pi":6.73,"var":2.72,"per":37.51}],"4":[{"ans":"Never","pi":6.96,"var":2.5,"per":45.69},{"ans":"Rarely","pi":6.9,"var":2.5,"per":17.48},{"ans":"Occasionally","pi":7.2,"var":1.91,"per":18.75},{"ans":"Often","pi":6.94,"var":3.07,"per":8.18},{"ans":"Regularly","pi":7.5,"var":2.14,"per":9.73}],"5":[{"ans":"No Friends","pi":5.69,"var":1.8,"per":5.21},{"ans":"One Friend","pi":5.09,"var":3.04,"per":3.8},{"ans":"Two Friends","pi":6.71,"var":2.16,"per":8.18},{"ans":"Three Friends","pi":6.81,"var":2.11,"per":12.55},{"ans":"Four Friends","pi":7.12,"var":2.45,"per":13.25},{"ans":"Five Friends","pi":7.37,"var":1.84,"per":20.02},{"ans":"Six Friends","pi":7.46,"var":1.33,"per":6.62},{"ans":"Seven Friends","pi":7.31,"var":3.23,"per":2.53},{"ans":"Eight Friends","pi":7.38,"var":1.44,"per":3.52},{"ans":"Nine Friends","pi":7.74,"var":1.17,"per":1.26},{"ans":"Ten or More","pi":7.66,"var":1.62,"per":9.3}],"6":[{"ans":"No","pi":7,"var":2.47,"per":48.09},{"ans":"Yes","pi":7.09,"var":2.37,"per":51.9}],"7":[{"ans":"Yes","pi":8.09,"var":1.23,"per":35.54},{"ans":"No","pi":4.7,"var":2.07,"per":9.59},{"ans":"Somewhat","pi":6.78,"var":1.53,"per":54.3}]};
var tago=(coo%8).toString();
var jsson=deef[tago];
for (var i = 0; i < jsson.length; i++) {
if(i==0){
var contentt=" ";
}
contentt += '<tr>';
contentt += '<td>' + jsson[i].ans + '</td>';
contentt += '<td>' + jsson[i].pi + '</td>';
contentt += '<td>' + jsson[i].var + '</td>';
contentt += '<td>' + jsson[i].per + '</td>';
contentt += '</tr>';
}
$("#entbody").empty();
$("#entbody").html(contentt);
console.log(contentt);
$(".tblthis").trigger("update");
var sortingg = [[2,0],[1,0],[3,0]];
$(".tblthis").trigger("sorton",[sortingg]);
});
</script>
<!--FUN-->
<div class="maincontent cathead col-md-12" id="fun">
<a href="#step2" style="color:#ddd">Just for Fun</a>
</div>
<div class="catdescr col-md-12">
Some stats just because.
</div>
<div class="fnhpindtxt catbigtxt" style="text-align:center;vertical-align:middle">
</div>
<div class="fnhpar">
</div>
<div class="fnhbtn" style="text-align:center;vertical-align:middle;margin-top:25px">
<button class="btn fnnxt" >Next</button>
</div>
<div class="col-md-2"></div>
<div class="col-md-8" style="margin-top:35px">
<table class="table table-bordered tblthish">
<thead>
<tr>
<th>Category</th>
<th><button class="btn">Mean CGPA</th>
<th><button class="btn">Variance</button></th>
</tr>
</thead>
<tbody id="entabody">
</tbody>
</table>
</div>
<div class="col-md-2"></div>
</div>
<script type="text/javascript">
var coo=-1;
var starrayz=["Department vs CGPA","Hall vs CGPA","Society vs CGPA","Year vs CGPA","Region vs CGPA","Relationships vs CGPA","Addictions vs CGPA"]
$('.fnhpindtxt').text("Click Next to Begin");
$('.fnnxt').click(function(){
$("#entabody").empty();
$(".tblthish").tablesorter();
$("#entabody").empty();
coo++;
$('.fnhpindtxt').text(starrayz[coo%7]);
var beef={"0":[{"cat":"AE","cg":7.46,"var":0.67},{"cat":"AG","cg":7.46,"var":0.7},{"cat":"AR","cg":7.26,"var":0.75},{"cat":"BT","cg":7.9,"var":0.68},{"cat":"CE","cg":7.73,"var":0.65},{"cat":"CH","cg":7.86,"var":0.84},{"cat":"CSE","cg":8.17,"var":1.31},{"cat":"ECE","cg":8.22,"var":1.26},{"cat":"EE","cg":7.75,"var":0.88},{"cat":"GG","cg":7.23,"var":0.56},{"cat":"HS","cg":7.37,"var":1.05},{"cat":"IM","cg":7.63,"var":0.9},{"cat":"MA","cg":7.53,"var":0.92},{"cat":"ME","cg":7.82,"var":1.1},{"cat":"MI","cg":7.34,"var":1.03},{"cat":"MT","cg":7.84,"var":0.87},{"cat":"NA","cg":7.3,"var":0.71},{"cat":"PH","cg":7.53,"var":0.91}],"1":[{"cat":"Azad","cg":7.61,"var":0.8},{"cat":"HJB | JCB","cg":7.95,"var":1.36},{"cat":"LBS","cg":7.66,"var":1.2},{"cat":"LLR","cg":7.52,"var":1.04},{"cat":"MS","cg":7.91,"var":1.12},{"cat":"MT","cg":7.85,"var":0.68},{"cat":"Nehru","cg":7.55,"var":0.99},{"cat":"Patel","cg":7.46,"var":0.88},{"cat":"RK","cg":7.7,"var":0.89},{"cat":"RP","cg":7.88,"var":0.91},{"cat":"SN","cg":7.77,"var":0.77}],"2":[{"cat":"No Society","cg":7.7,"var":0.84},{"cat":"Encore","cg":8.06,"var":0.67},{"cat":"Pravaah","cg":7.45,"var":0.57},{"cat":"Druheen","cg":7.75,"var":0.78},{"cat":"Prasthanam","cg":7.5,"var":0.57},{"cat":"Communique","cg":7.2,"var":1.12},{"cat":"AIESEC","cg":7.53,"var":0.62},{"cat":"KRSSG","cg":8.07,"var":1},{"cat":"TFPS","cg":7.76,"var":0.87},{"cat":"TAdS","cg":7.25,"var":0.5},{"cat":"Spectra","cg":7.6,"var":0.76},{"cat":"Quiz Club","cg":7.8,"var":0.85},{"cat":"Bclub","cg":8.07,"var":0.57},{"cat":"Ecell","cg":7.96,"var":0.65},{"cat":"DebSoc","cg":7.87,"var":0.67},{"cat":"TDS","cg":7.38,"var":0.36},{"cat":"ETMS","cg":7.16,"var":1},{"cat":"WTMS","cg":7.25,"var":1.07},{"cat":"Awaaz","cg":7.5,"var":1},{"cat":"TSA","cg":7.66,"var":1.6},{"cat":"GYWS","cg":7.44,"var":1.18},{"cat":"KDAG","cg":8.1,"var":0.29},{"cat":"TRS","cg":8.25,"var":1.35}],"3":[{"cat":"Second Year","cg":7.87,"var":0.93},{"cat":"Third Year","cg":7.57,"var":0.98},{"cat":"Fourth Year","cg":7.61,"var":1.05},{"cat":"Fifth Year","cg":7.76,"var":0.87}],"4":[{"cat":"AP","cg":7.4,"var":1.05},{"cat":"Bihar","cg":7.82,"var":1.07},{"cat":"Delhi","cg":8.07,"var":1.03},{"cat":"Gujarat","cg":7.85,"var":1.01},{"cat":"Haryana","cg":7.87,"var":0.78},{"cat":"Karnataka","cg":8.1,"var":1.25},{"cat":"Kerala","cg":7.91,"var":0.62},{"cat":"MH","cg":7.7,"var":0.68},{"cat":"MP","cg":7.38,"var":0.67},{"cat":"Odisha","cg":7.87,"var":0.88},{"cat":"Punjab","cg":7.5,"var":0.66},{"cat":"Rajasthan","cg":7.28,"var":0.86},{"cat":"TN","cg":7.94,"var":0.77},{"cat":"UP","cg":7.77,"var":0.99},{"cat":"WB","cg":8.14,"var":1.03}],"5":[{"cat":"No Relationship","cg":7.71,"var":1.01},{"cat":"One","cg":7.79,"var":0.94},{"cat":"Two","cg":7.53,"var":0.91},{"cat":"Three or More","cg":7.5,"var":0.66}],"6":[{"cat":"No Addiction","cg":7.78,"var":1.11},{"cat":"Occasional Weed","cg":7.55,"var":1.06},{"cat":"Frequent Weed","cg":7.32,"var":0.43},{"cat":"Occasional Alcohol","cg":7.64,"var":0.87},{"cat":"Frequent Alcohol","cg":7.71,"var":0.79},{"cat":"Occasional Smoke","cg":7.42,"var":0.75},{"cat":"Frequent Smoke","cg":7.42,"var":0.97}]};
var tagoz=(coo%7).toString();
var jsson=beef[tagoz];
for (var i = 0; i < jsson.length; i++) {
if(i==0){
var contentt=" ";
}
contentt += '<tr>';
contentt += '<td>' + jsson[i].cat + '</td>';
contentt += '<td>' + jsson[i].cg + '</td>';
contentt += '<td>' + jsson[i].var + '</td>';
contentt += '</tr>';
}
$("#entabody").empty();
$("#entabody").html(contentt);
console.log(contentt);
$(".tblthish").trigger("update");
var sortingg = [[2,0],[1,0]];
$(".tblthish").trigger("sorton",[sortingg]);
});
</script>
<!--END-->
<div class="maincontent cathead col-md-12" id="end">
<a href="#step2" style="color:#ddd">Conclusion</a>
</div>
<div class="catdescr col-md-12">
<ul>
<li>The bottomline of the whole study boils down to two most important factors: CGPA and Friend Circle. No other parameter seem to influence (or be influenced) by Happiness Levels as strongly as Academic and Social Satisfaction do.</li>
<li>This goes on to validate the <a href="https://www.ted.com/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness?language=en">Harvard Study</a> that claims Social Relationships to be the only parameter influencing long term Happiness.</li>
<li>The number of students experiencing Depression is alarming. While it is partly because of dissatisfaction from Academics, the students reporting highest levels of depression also claimed that they felt they had very few friends and that they wouldn't stay with them for life.</li>
<li>Unexpectedly, societies have very less control on one's happiness. Students in societies are not any more happier than students not in societies.</li>
<li>North Indians report highest satisfaction among all regional demographics. Similarly, Heterosexual Females bag the highest satisfaction levels in almost all satisfaction parameters. </li>
<li>Our campus is still not accommodating of its gender diversity. The clear disparity in the mental satisfaction levels among our LGBTQ students indicates that we have a long way to go to be a liberal open campus.</li>
<li>What we inferred was that Satisfaction and Happiness are loosely related, but are still very independent of each other. The most satisfied and the happiest categories weren't always the same.</li></ul>
The study left us with many questions and thoughts. Is a happier life a 'better' life? Why do we want to be happy? <br>If ignorance is a bliss and happiness is only a function of perception, what is the material incentive in life to work for? <br>Do achievements make us happy or do happier people achieve stuff? <br><br>There probably is no answer and that is the beauty of life. Life is not an equation to be solved, it is a canvas to be painted. <br> We wish you take with you pointers from The Happiness Project to mould your life in a way that makes the years you spend at IIT worth it. <br>Ciao.<br><br>The Scholars' Avenue<br>
<br>
<br>
<div class="fb-like" data-href="http://thescholarsavenue.github.io/Happiness/" data-width="30" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>
<br>Like our work? Give <b>The Happiness Project</b> a thumbs up!
</div>
<div style="height:40px;width=100%"></div>
<hr>
<div class="col-md-12" style="clear:both;text-align:center;margin-bottom:50px"><span style="text-align:center;font-size:0.8em;color:#bbb">Created By Ashris With <strike>Love</strike> Code.</span></div>
</div>
</body>
<script type="text/javascript" src="d3.min.js"></script>
<script type="text/javascript" src="underscore.js"></script>
<script type="text/javascript" src="bootstrap.js"></script>
<script type="text/javascript" src="responsif.js"></script>
<script type="text/javascript" src="sortgr.js"></script>
<script type="text/javascript" src="agrsort.js"></script>
<script type="text/javascript" src="d3.stretched.chord.js"></script>
<script src="d3.layout.chord.sort.js"></script>
<script type="text/javascript" src="scriptflow.js"></script>
<script type="text/javascript" src="agreement.js"></script>
<!-- <script type="text/javascript" src="scriptradar.js"></script>
<script type="text/javascript" src="RadarChart.js"></script>-->
<script src="jquery.ba-bbq.js"></script>
<script src="jquery.smooth-scroll.js"></script>
<script type="text/javascript" src="roller.js"></script>
<script type="text/javascript">
var rollsr=["Strongly Disagree","Disagree","Neutral","Agree","Strongly Agree"];
function picompu(){
var pi_c1_lib=[0,3.25,7.5,11.25,15];
var pi_c45_lib=[0,5,10,15,20];
var pi_c1=parseFloat(pi_c1_lib[$('input[name=rangeInput1]').val()-1]);
var pi_c2=parseFloat(1.5*$('input[name=rangeInput7]').val());
var pi_cg=$('input#imp1').is(':checked')?1:0;
var pi_so=$('input#imp2').is(':checked')?1:0;
var pi_fr=$('input#imp3').is(':checked')?1:0;
var pi_full=70+10*(pi_cg+pi_so+pi_fr);
var pi_c3=pi_fr*parseInt($('input[name=rangeInput6]').val())+pi_so*parseInt($('input[name=rangeInput5]').val())+pi_cg*parseInt($('input[name=rangeInput4]').val());
var pi_c4=parseInt(pi_c45_lib[$('input[name=rangeInput2]').val()-1]);
var pi_c5=parseInt(pi_c45_lib[$('input[name=rangeInput3]').val()-1]);
var pi_score=pi_c1+pi_c2+pi_c3+pi_c4+pi_c5;
var piper=pi_score*10/pi_full;
var pi_ind=parseInt(piper*100)/100;
$('#pidisplay').text("π"+"="+pi_ind);
var allpi=[7.05,6.88,9.50,4.78,5.33,7.81,6.10,6.69,8.56,5.71,8.69,2.96,8.86,5.69,4.78,9.28,9.28,3.61,4.83,8.53,8.55,4.90,3.11,7.91,7.97,7.44,7.91,7.68,4.93,8.19,6.56,6.17,6.28,6.97,8.31,7.58,9.28,7.33,8.39,7.42,8.44,3.95,6.72,8.19,7.95,6.42,9.03,6.36,7.53,6.83,7.42,6.25,6.56,4.88,4.61,7.65,5.41,8.00,7.05,8.14,8.28,7.53,6.93,8.09,6.53,4.46,6.16,9.44,6.70,7.97,6.75,3.56,5.00,5.67,6.89,8.90,8.31,8.03,7.25,8.89,6.50,8.14,6.34,4.14,7.81,6.60,7.33,5.30,6.89,6.22,3.44,5.13,6.88,8.69,6.75,7.06,9.03,8.00,6.83,6.18,3.38,4.60,5.69,4.93,4.64,8.40,5.53,5.95,6.04,9.55,7.14,5.36,7.72,8.60,9.63,6.72,4.83,4.88,8.89,7.44,8.14,5.53,5.00,9.33,4.44,9.13,7.42,7.81,7.64,3.11,6.34,8.48,7.25,7.09,9.00,7.85,3.44,6.06,8.40,8.44,6.81,4.19,8.18,8.44,7.72,7.53,8.56,8.91,5.69,6.75,7.64,8.53,5.67,9.05,5.19,6.91,7.97,4.22,3.80,6.59,4.31,4.11,5.67,2.75,7.64,4.36,6.36,8.33,7.95,8.69,7.00,8.34,6.78,8.56,6.13,6.75,4.67,5.44,5.22,8.03,6.56,3.84,4.38,10.00,7.78,4.83,8.90,9.42,9.33,8.55,7.75,7.39,8.45,8.56,4.25,6.28,8.70,6.78,8.06,8.55,5.86,6.78,7.09,7.15,6.92,6.58,7.90,9.34,9.25,8.00,5.94,9.42,7.97,7.81,8.17,7.72,4.28,7.81,7.89,7.39,8.94,4.33,5.98,9.28,6.70,8.14,4.41,6.46,5.29,9.00,7.56,5.88,6.50,7.42,4.00,8.53,6.00,3.11,6.56,8.44,8.53,6.58,5.17,7.25,7.23,7.81,4.50,5.19,6.72,8.88,8.40,7.38,6.85,10.00,5.61,7.69,4.00,7.42,5.95,8.47,6.92,4.85,7.17,8.19,7.97,8.11,6.83,7.91,8.36,7.13,8.91,9.44,7.06,7.42,9.50,7.67,7.81,10.00,8.53,7.72,5.61,8.33,9.17,7.30,7.45,8.72,6.06,9.44,6.19,9.44,8.19,8.53,10.00,8.20,5.19,2.29,7.28,8.75,8.14,8.94,5.69,7.00,5.38,6.67,8.91,7.97,5.36,7.06,5.80,8.61,8.18,6.31,9.28,7.25,9.28,8.83,7.44,8.39,7.13,8.14,7.83,7.75,4.13,8.38,3.79,6.89,4.11,5.86,7.97,6.25,4.53,7.22,6.45,8.86,8.60,9.06,7.90,7.00,3.19,6.09,6.95,8.44,7.17,7.78,7.44,9.38,8.39,8.70,5.29,5.34,9.17,7.97,7.61,5.08,7.88,6.57,8.45,8.28,6.06,8.06,6.28,6.85,8.70,9.05,7.95,7.28,5.33,8.33,7.44,6.75,8.98,2.44,7.90,6.97,4.60,6.80,6.25,6.60,5.53,8.98,6.85,7.67,6.25,8.06,8.50,7.95,6.60,6.34,9.00,9.28,7.43,8.69,7.06,7.81,7.17,8.78,7.08,7.97,7.88,5.86,7.80,7.06,5.50,9.58,6.58,3.80,9.83,7.88,6.67,5.53,4.89,6.56,9.44,9.11,8.61,7.00,8.44,6.69,6.21,7.00,7.16,9.00,7.28,6.44,7.68,7.08,8.56,7.25,6.22,5.05,8.11,6.28,7.72,9.81,9.34,7.23,5.39,5.00,6.75,6.42,8.59,7.34,8.03,4.07,7.16,7.89,8.35,5.00,9.03,7.25,8.72,9.44,3.80,7.43,4.75,7.00,7.91,7.31,7.61,6.40,6.50,8.61,7.58,6.69,7.42,8.44,7.50,6.44,3.36,7.28,6.10,8.14,6.67,9.13,8.33,7.58,7.86,7.17,7.68,6.78,3.28,8.33,6.75,8.03,7.97,8.03,5.35,6.92,6.33,8.53,5.33,5.83,9.13,7.44,8.30,7.39,7.89,6.00,5.88,8.06,7.90,5.80,8.13,5.56,8.83,4.78,10.00,6.40,7.50,8.38,6.75,6.36,4.66,5.29,5.50,7.08,5.25,7.50,5.53,5.53,6.33,8.00,10.00,5.65,7.15,8.19,8.44,7.42,5.28,2.25,2.25,7.09,6.89,7.39,7.97,8.11,7.91,6.44,8.06,6.09,4.11,8.06,8.88,8.05,6.88,2.86,5.67,8.20,6.75,3.82,8.22,5.07,7.65,3.11,6.83,6.36,7.00,6.48,7.17,2.25,8.69,5.47,6.19,4.21,8.10,6.83,5.14,6.93,5.00,1.14,6.00,8.03,7.25,6.00,8.28,4.31,6.67,8.04,6.31,7.15,8.81,6.14,5.91,7.83,7.31,6.40,7.20,5.94,8.44,9.19,8.56,7.80,8.30,5.53,8.22,6.58,6.53,7.64,6.40,4.86,8.45,7.89,9.18,7.38,8.38,7.20,8.56,5.91,8.00,6.13,5.83,8.18,6.38,7.33,8.68,8.86,5.15,7.65,4.25,7.72,7.89,8.68,6.19,5.36,8.83,3.95,8.36,5.11,8.53,7.72,7.56,6.13,7.97,7.50,6.63,6.39,7.88,5.82,6.33,8.08,6.42,8.83,8.34,8.56,7.50,6.89,10.00,7.23,8.06,8.25,6.61,7.91,7.85,6.03,7.56,6.53,7.17,4.50,4.53,7.08,7.31,6.34,7.85,7.09,9.63,7.64,7.53,8.14,7.45,5.33,8.18,8.34,7.38,5.56,6.91,7.28,6.85,6.75,8.95,7.64,4.83,9.11,4.96,6.00,9.83,6.64,6.58,7.28,5.50,6.45,8.53,7.91,7.91,6.69,6.56,8.44,7.81,8.86,7.28,7.44,8.63,9.17,7.42,7.78,5.69,5.14,8.89,7.53,7.68];
allpi.push(pi_ind);
allpi.sort(function(a,b){return a-b});
var indofpiind=allpi.indexOf(pi_ind);
var percenti=parseInt(indofpiind*10000/(allpi.length))/100;
$('#pipercentile').text(percenti+"% of all respondents had their Pi Index lower than yours.");
};
</script>
</html>