-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion7.html
More file actions
988 lines (964 loc) · 45.2 KB
/
question7.html
File metadata and controls
988 lines (964 loc) · 45.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>UBIquity</title>
<!-- Search Engine -->
<meta name="description" content="Description of your report here. 150 characters for SEO, 200 characters for Twitter and Facebook">
<meta name="image" content="thumbnail image of your work">
<!-- Schema.org for Google -->
<meta itemprop="name" content="Title of your work">
<meta itemprop="description" content="Description of your report here">
<meta itemprop="image" content="thumbnail image of your work">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Title of your work">
<meta name="twitter:description" content="Description of your report here">
<meta name="twitter:site" content="@densitydesign">
<meta name="twitter:creator" content="your twitter handles here, if any">
<meta name="twitter:image:src" content="thumbnail image of your work. Maximum dimension: 1024px x 512px; minimum dimension: 440px x 220px">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Title of your work">
<meta name="og:description" content="Description of your report here">
<meta name="og:image" content="thumbnail image of your work. Recommended dimension: 1200px x 630px; minimum dimension: 600px x 315px">
<meta name="og:url" content="url to this page">
<meta name="og:site_name" content="Title of your work">
<meta name="og:locale" content="en_US">
<meta name="og:type" content="website">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Karla:400,700" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<!-- timeline interattiva script -->
<script src="js/timeline_nero_layers.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous" />
<!-- Template CSS -->
<link rel="stylesheet" href="css/template-style.css" />
<!-- Your custom CSS -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body data-spy="scroll" data-target="#sidelist" data-offset="160">
<!-- Research question title and Menu button-->
<header>
<div class="container sans-font">
<div class="row">
<div class="col-md-10 col-lg-9 ml-auto question-box">
<div class="row arrows-container justify-content-end justify-content-md-between">
<div class="arrow-left mr-5 mr-md-0">
<h5>
<i class="fa fa-angle-left" aria-hidden="true"></i>
<a>prev</a>
</h5>
</div>
<div class="arrow-right mr-2 mr-sm-0">
<h5>
<a>next</a>
<i class="fa fa-angle-right" aria-hidden="true"></i>
</h5>
</div>
</div>
<h5 class="header-subtitle text-uppercase">research question</h5>
<h1 class="header-title serif-font"> 7. ?</h1>
</div>
</div>
</div>
<button class="menu-btn">
<svg xmlns="http://www.w3.org/2000/svg" class="menu-svg icon-visible" x="0px" y="0px" width="32" height="24" viewBox="0 0 32 24">
<path d="M30 2H2M30 12H2M30 22H2"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="menu-svg close-icon absolute scaled" x="0px" y="0px" width="32" height="24" viewBox="0 0 32 24">
<path d="M25.9 21.9L6.1 2.1M25.9 2.1L6.1 21.9"></path>
</svg>
</button>
</header>
<!-- Sidebar Menu - Don't change the existing URLs, just add new ones if you need more-->
<nav class="sidebar nav-closed">
<div class="sidebar-index sans-font">
<div class="sidebar-home">
<h4 class="sidebar-title">UBIquity</h4>
<a href="index.html">Introduction</a>
</div>
<div class="sidebar-list">
<h5 class="text-uppercase">Research questions</h5>
<ul>
<li>
<a href="question1.html">What are the roots of the current Basic Income debate?</a>
</li>
<li>
<a href="question2.html">How has the topic changed in the recent year?</a>
</li>
<li>
<a href="question3.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question4.html">How is the topic developing in Reddit activity? </a>
</li>
<li>
<a href="question5.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question6.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question7.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question8.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question9.html">How Basic Income is defined nowadays?</a>
</li>
<li>
<a href="question10.html">How Basic Income is defined nowadays?</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<main class="container-fluid" style="background-color: #F5F5F5; margin: 0; padding: 0;" >
<div class="viz-container" style="transform: translateX(10%); width:95%; margin: 0 auto;">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1146 702" style="enable-background:new 0 0 1146 702;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#CACACA;stroke-width:1.139;stroke-dasharray:2;}
.st1{fill:none;}
.st2{fill:#B0B0B0;}
.st3{font-family:'Karla';}
.st4{font-size:11.9442px;}
.st5{fill:#0A0A0A;}
.st6{fill:none;stroke:#CACACA;stroke-width:1.139;}
.st7{fill:#FFFFFF;stroke:#0A0A0A;stroke-miterlimit:10;}
.st8{fill:#0A0A0A;stroke:#0A0A0A;stroke-miterlimit:10;}
.st9{fill:#196FB8;stroke:#196FB8;stroke-miterlimit:10;}
.st10{fill:#FF4863;stroke:#FF4863;stroke-miterlimit:10;}
.st11{fill:#00B598;}
.st12{fill:#E5BE1C;stroke:#E5BE1C;stroke-miterlimit:10;}
.st13{display:none;}
.st14{display:inline;}
.st15{fill:none;stroke:#196FB8;stroke-miterlimit:10;}
.st16{fill:#FFFFFF;stroke:#196FB8;stroke-miterlimit:10;}
.st17{fill:#196FB8;}
.st18{font-family:'Karla'; font-weight: 700;}
.st19{font-size:10px;}
.st20{fill:none;stroke:#196FB8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st21{fill:#FFFFFF;}
.st22{fill:#FFFFFF;stroke:#FF4863;stroke-miterlimit:10;}
.st23{fill:#FF4863;}
.st24{fill:none;stroke:#FF4863;stroke-miterlimit:10;}
.st25{fill:#FFFFFF;stroke:#00B598;stroke-miterlimit:10;}
.st26{fill:none;stroke:#00B598;stroke-miterlimit:10;}
.st27{fill:none;stroke:#E5BE1C;stroke-miterlimit:10;}
.st28{fill:#E5BE1C;}
.st29{fill:#FFFFFF;stroke:#E5BE1C;stroke-miterlimit:10;}
</style>
<g id="bg">
<g id="XMLID_1735_">
<line id="XMLID_4673_" class="st0" x1="184.1" y1="551.2" x2="852.1" y2="551.2"/>
<line id="XMLID_4672_" class="st0" x1="184.1" y1="424.7" x2="852.1" y2="424.7"/>
<line id="XMLID_4671_" class="st0" x1="184.1" y1="298.1" x2="852.1" y2="298.1"/>
<line id="XMLID_4670_" class="st0" x1="184.1" y1="171.6" x2="852.1" y2="171.6"/>
<line id="XMLID_4669_" class="st0" x1="290.4" y1="639.8" x2="290.4" y2="83"/>
<line id="XMLID_4668_" class="st0" x1="442.2" y1="639.8" x2="442.2" y2="83"/>
<line id="XMLID_4667_" class="st0" x1="595" y1="639.8" x2="595" y2="83"/>
<line id="XMLID_4666_" class="st0" x1="745.8" y1="639.8" x2="745.8" y2="83"/>
<line id="XMLID_4665_" class="st0" x1="184.1" y1="614.4" x2="852.1" y2="614.4"/>
<line id="XMLID_4664_" class="st0" x1="184.1" y1="487.9" x2="852.1" y2="487.9"/>
<line id="XMLID_4663_" class="st0" x1="184.1" y1="361.4" x2="852.1" y2="361.4"/>
<line id="XMLID_4662_" class="st0" x1="184.1" y1="234.9" x2="852.1" y2="234.9"/>
<line id="XMLID_4661_" class="st0" x1="184.1" y1="108.3" x2="852.1" y2="108.3"/>
<line id="XMLID_4660_" class="st0" x1="214.4" y1="639.8" x2="214.4" y2="83"/>
<line id="XMLID_4659_" class="st0" x1="366.3" y1="639.8" x2="366.3" y2="83"/>
<line id="XMLID_4658_" class="st0" x1="518.1" y1="639.8" x2="518.1" y2="83"/>
<line id="XMLID_4657_" class="st0" x1="669.9" y1="639.8" x2="669.9" y2="83"/>
<line id="XMLID_4656_" class="st0" x1="821.7" y1="639.8" x2="821.7" y2="83"/>
<rect id="XMLID_3565_" x="184.1" y="83" class="st1" width="668" height="556.7"/>
<g id="XMLID_3547_">
<text transform="matrix(1 0 0 1 357.5027 654.1448)" class="st2 st3 st4">0.25</text>
</g>
<g id="XMLID_3546_">
<text transform="matrix(1 0 0 1 509.3123 654.1448)" class="st2 st3 st4">0.50</text>
</g>
<g id="XMLID_3545_">
<text transform="matrix(1 0 0 1 661.1223 654.1448)" class="st2 st3 st4">0.75</text>
</g>
<g id="XMLID_3544_">
<text transform="matrix(1 0 0 1 812.9329 654.1448)" class="st2 st3 st4">1.00</text>
</g>
<g id="XMLID_3543_">
<text transform="matrix(1 0 0 1 704.884 676.3689)" class="st5 st3 st4">% employees automation</text>
</g>
<g id="XMLID_2714_">
<text transform="matrix(0 -1 1 0 161.0244 206.4722)" class="st5 st3 st4">% wages automation</text>
</g>
</g>
<rect id="XMLID_2232_" x="184.1" y="83" class="st6" width="668" height="556.7"/>
<circle id="XMLID_863_" class="st7" cx="927.3" cy="418.2" r="5.2"/>
<circle id="XMLID_865_" class="st8" cx="927.3" cy="435.2" r="5.2"/>
<circle id="XMLID_866_" class="st9" cx="927.3" cy="465" r="5.2"/>
<circle id="XMLID_867_" class="st10" cx="927.3" cy="483" r="5.2"/>
<circle id="XMLID_868_" class="st11" cx="927.3" cy="501" r="5.2"/>
<circle id="XMLID_869_" class="st12" cx="927.3" cy="519" r="5.2"/>
<g id="XMLID_864_">
<text transform="matrix(1 0 0 1 946.4257 421.5548)" class="st5 st3 st4">country without pilot</text>
</g>
<g id="XMLID_871_">
<text transform="matrix(1 0 0 1 946.4257 438.5549)" class="st5 st3 st4">country with pilot</text>
</g>
</g>
<g id="Canadacluster">
<g id="canadalabel" class="st13">
<g id="XMLID_1566_" class="st14">
<line id="XMLID_1574_" class="st15" x1="457" y1="304.7" x2="552.3" y2="241.2"/>
<path id="XMLID_1570_" class="st16" d="M453,312.9h-62.1c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H453c2.2,0,4,1.8,4,4v9.8
C457,311.1,455.2,312.9,453,312.9z"/>
<g id="XMLID_1567_">
<text transform="matrix(1 0 0 1 394.3607 306.8325)" class="st17 st18 st19">Argentina</text>
</g>
</g>
<g id="XMLID_1555_" class="st14">
<line id="XMLID_1563_" class="st15" x1="442" y1="163.9" x2="563.3" y2="209.2"/>
<path id="XMLID_1559_" class="st16" d="M438,171.9h-58.4c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H438c2.2,0,4,1.8,4,4v9.8
C442,170.1,440.2,171.9,438,171.9z"/>
<g id="XMLID_1556_">
<text transform="matrix(1 0 0 1 382.3607 165.8325)" class="st17 st18 st19">australia</text>
</g>
</g>
<g id="XMLID_1544_" class="st14">
<line id="XMLID_1552_" class="st15" x1="368.5" y1="180.2" x2="380" y2="180"/>
<path id="XMLID_1548_" class="st16" d="M364.4,188.9h-72.3c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h72.3c2.2,0,4,1.8,4,4v9.8
C368.5,187.1,366.7,188.9,364.4,188.9z"/>
<g id="XMLID_1545_">
<text transform="matrix(1 0 0 1 294.6554 182.8674)" class="st17 st18 st19">switzerland</text>
</g>
</g>
<g id="XMLID_1533_" class="st14">
<line id="XMLID_1541_" class="st15" x1="431" y1="201.2" x2="442" y2="201.2"/>
<path id="XMLID_1537_" class="st16" d="M427,210.1h-75c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h75c2.2,0,4,1.8,4,4v9.8
C431,208.3,429.2,210.1,427,210.1z"/>
<g id="XMLID_1534_">
<text transform="matrix(1 0 0 1 355.5387 204.0275)" class="st17 st18 st19">netherlands</text>
</g>
</g>
<g id="XMLID_1522_" class="st14">
<path id="XMLID_1529_" class="st16" d="M554.1,270h-26.9c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h26.9c2.2,0,4,1.8,4,4v9.8
C558.1,268.2,556.3,270,554.1,270z"/>
<g id="XMLID_1526_">
<text transform="matrix(1 0 0 1 530.7542 263.9318)" class="st17 st18 st19">USA</text>
</g>
<line id="XMLID_1523_" class="st15" x1="558.1" y1="260" x2="589" y2="227.2"/>
</g>
<g id="XMLID_1511_" class="st14">
<line id="XMLID_1519_" class="st15" x1="436" y1="238.2" x2="516.3" y2="220.2"/>
<path id="XMLID_1515_" class="st16" d="M432,247.1h-44.9c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H432c2.2,0,4,1.8,4,4v9.8
C436,245.3,434.2,247.1,432,247.1z"/>
<g id="XMLID_1512_">
<text transform="matrix(1 0 0 1 387.9529 241.0275)" class="st17 st18 st19">norway</text>
</g>
</g>
<g id="XMLID_1500_" class="st14">
<line id="XMLID_1508_" class="st15" x1="430" y1="260" x2="487" y2="241"/>
<path id="XMLID_1504_" class="st16" d="M426,269h-91.4c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H426c2.2,0,4,1.8,4,4v9.8
C430,267.2,428.2,269,426,269z"/>
<g id="XMLID_1501_">
<text transform="matrix(1 0 0 1 338.1365 262.9425)" class="st17 st18 st19">United kingdom</text>
</g>
</g>
<g id="XMLID_1489_" class="st14">
<line id="XMLID_1497_" class="st15" x1="513.8" y1="198" x2="582.3" y2="218.2"/>
<path id="XMLID_1493_" class="st16" d="M510.7,206.9h-45.1c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h45.1c2.2,0,4,1.8,4,4v9.8
C514.8,205.1,513,206.9,510.7,206.9z"/>
<g id="XMLID_1490_">
<text transform="matrix(1 0 0 1 468.3607 200.8325)" class="st17 st18 st19">Nigeria</text>
</g>
</g>
<g id="XMLID_1467_" class="st14">
<line id="XMLID_1476_" class="st15" x1="497" y1="141.2" x2="513.3" y2="154.2"/>
<path id="XMLID_1472_" class="st16" d="M493,149.9h-43.7c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H493c2.2,0,4,1.8,4,4v9.8
C497,148.1,495.2,149.9,493,149.9z"/>
<g id="XMLID_1468_">
<text transform="matrix(1 0 0 1 451.585 143.8325)" class="st17 st18 st19">austria</text>
</g>
</g>
<g id="XMLID_1454_" class="st14">
<line id="XMLID_1464_" class="st15" x1="487" y1="118.2" x2="528.3" y2="162.2"/>
<path id="XMLID_1460_" class="st16" d="M483,126.9h-34.8c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H483c2.2,0,4,1.8,4,4v9.8
C487,125.1,485.2,126.9,483,126.9z"/>
<g id="XMLID_1455_">
<text transform="matrix(1 0 0 1 449.585 120.8325)" class="st17 st18 st19">qatar</text>
</g>
</g>
<g id="XMLID_1443_" class="st14">
<line id="XMLID_1451_" class="st20" x1="512" y1="96.2" x2="536.3" y2="150.2"/>
<path id="XMLID_1447_" class="st16" d="M508,104.9h-35c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h35c2.2,0,4,1.8,4,4v9.8
C512,103.1,510.2,104.9,508,104.9z"/>
<g id="XMLID_1444_">
<text transform="matrix(1 0 0 1 477.585 98.8325)" class="st17 st18 st19">italy</text>
</g>
</g>
<g id="XMLID_1432_" class="st14">
<path id="XMLID_1439_" class="st16" d="M540,318.9h-72.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H540c2.2,0,4,1.8,4,4v9.8
C544,317.1,542.2,318.9,540,318.9z"/>
<g id="XMLID_1436_">
<text transform="matrix(1 0 0 1 469.304 312.8325)" class="st17 st18 st19">south africa</text>
</g>
<line id="XMLID_1433_" class="st15" x1="544" y1="310" x2="569.3" y2="265.2"/>
</g>
<g id="XMLID_1421_" class="st14">
<line id="XMLID_1429_" class="st15" x1="468" y1="282" x2="491" y2="268"/>
<path id="XMLID_1425_" class="st16" d="M464,291h-41.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H464c2.2,0,4,1.8,4,4v9.8
C468,289.2,466.2,291,464,291z"/>
<g id="XMLID_1422_">
<text transform="matrix(1 0 0 1 424.3041 284.9425)" class="st17 st18 st19">kuwait</text>
</g>
</g>
<g id="XMLID_1410_" class="st14">
<line id="XMLID_1418_" class="st15" x1="576.7" y1="177.2" x2="577" y2="194.7"/>
<path id="XMLID_1414_" class="st16" d="M573,185.9h-39.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H573c2.2,0,4,1.8,4,4v9.8
C577,184.1,575.2,185.9,573,185.9z"/>
<g id="XMLID_1411_">
<text transform="matrix(1 0 0 1 535.585 179.8325)" class="st17 st18 st19">greece</text>
</g>
</g>
<g id="XMLID_1399_" class="st14">
<line id="XMLID_1407_" class="st15" x1="479.1" y1="218.2" x2="496.3" y2="216.2"/>
<path id="XMLID_1403_" class="st16" d="M475,227.1h-39.6c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H475c2.2,0,4,1.8,4,4v9.8
C479,225.3,477.2,227.1,475,227.1z"/>
<g id="XMLID_1400_">
<text transform="matrix(1 0 0 1 435.9529 221.0275)" class="st17 st18 st19">france</text>
</g>
</g>
<g id="XMLID_1387_" class="st14">
<g>
<g id="XMLID_229_">
<line id="XMLID_231_" class="st21" x1="590.6" y1="96" x2="596.3" y2="155.2"/>
<line id="XMLID_230_" class="st15" x1="590.6" y1="96" x2="596.3" y2="155.2"/>
</g>
<g id="XMLID_226_">
<path id="XMLID_228_" class="st21" d="M587,104.9h-49.3c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H587c2.2,0,4,1.8,4,4v9.8
C591,103.1,589.2,104.9,587,104.9z"/>
<path id="XMLID_227_" class="st15" d="M587,104.9h-49.3c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H587c2.2,0,4,1.8,4,4v9.8
C591,103.1,589.2,104.9,587,104.9z"/>
</g>
<g id="XMLID_225_">
<text transform="matrix(1 0 0 1 539.199 98.8325)" class="st17 st18 st19">germany</text>
</g>
</g>
</g>
<g id="XMLID_1376_" class="st14">
<line id="XMLID_1384_" class="st15" x1="581" y1="129.2" x2="597.3" y2="185.2"/>
<path id="XMLID_1380_" class="st16" d="M577,137.9h-67.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H577c2.2,0,4,1.8,4,4v9.8
C581,136.1,579.2,137.9,577,137.9z"/>
<g id="XMLID_1377_">
<text transform="matrix(1 0 0 1 509.7719 131.8325)" class="st17 st18 st19">saudi arabia</text>
</g>
</g>
</g>
<g id="canadabase">
<g id="cluster1">
<text transform="matrix(1 0 0 1 946.4257 468.3553)" class="st5 st3 st4">Cluster 1</text>
</g>
<g id="XMLID_1305_">
<circle id="XMLID_1373_" class="st17" cx="380.3" cy="180.2" r="5.2"/>
<circle id="XMLID_1369_" class="st16" cx="536.3" cy="150.2" r="5.2"/>
<circle id="XMLID_1365_" class="st16" cx="569.3" cy="265.2" r="5.2"/>
<circle id="XMLID_1362_" class="st17" cx="441.3" cy="201.2" r="5.2"/>
<circle id="XMLID_1358_" class="st16" cx="577.3" cy="192.2" r="5.2"/>
<circle id="XMLID_1354_" class="st16" cx="528.3" cy="162.2" r="5.2"/>
<circle id="XMLID_1350_" class="st16" cx="513.3" cy="154.2" r="5.2"/>
<circle id="XMLID_1346_" class="st16" cx="496.3" cy="216.2" r="5.2"/>
<circle id="XMLID_1342_" class="st16" cx="516.3" cy="220.2" r="5.2"/>
<circle id="XMLID_1338_" class="st16" cx="552.3" cy="241.2" r="5.2"/>
<circle id="XMLID_1334_" class="st16" cx="491.3" cy="241.2" r="5.2"/>
<circle id="XMLID_1330_" class="st16" cx="494.3" cy="268.2" r="5.2"/>
<circle id="XMLID_1326_" class="st16" cx="563.3" cy="209.2" r="5.2"/>
<circle id="XMLID_1322_" class="st9" cx="589.3" cy="227.2" r="5.2"/>
<circle id="XMLID_1318_" class="st16" cx="582.3" cy="218.2" r="5.2"/>
<circle id="XMLID_1314_" class="st16" cx="596.3" cy="153.2" r="5.2"/>
<circle id="XMLID_1310_" class="st16" cx="597.3" cy="183.2" r="5.2"/>
<circle id="XMLID_1306_" class="st9" cx="522.3" cy="188.2" r="5.2"/>
</g>
<g id="XMLID_1479_">
<path id="XMLID_1486_" class="st17" d="M497,185.9h-43.7c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H497c2.2,0,4,1.8,4,4v9.8
C501,184.1,499.2,185.9,497,185.9z"/>
<g id="XMLID_1483_">
<text transform="matrix(1 0 0 1 455.585 179.8325)" class="st21 st18 st19">Canada</text>
</g>
<line id="XMLID_1480_" class="st15" x1="500" y1="178" x2="522.3" y2="188.2"/>
</g>
</g>
</g>
<g id="Kenyacluster">
<g id="kenyalabel">
<g id="XMLID_20_">
<path id="XMLID_1674_" class="st22" d="M748.5,224.1H705c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h43.5c2.2,0,4,1.8,4,4v9.8
C752.6,222.3,750.8,224.1,748.5,224.1z"/>
<g id="XMLID_1660_">
<text transform="matrix(1 0 0 1 708.6479 218.0275)" class="st23 st18 st19">Poland</text>
</g>
<line id="XMLID_1656_" class="st24" x1="666.3" y1="213.2" x2="701.1" y2="215.2"/>
</g>
<g id="XMLID_1610_">
<path id="XMLID_1857_" class="st22" d="M754,91.1h-39c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h39c2.2,0,4,1.8,4,4v9.8
C758,89.3,756.2,91.1,754,91.1z"/>
<g id="XMLID_1835_">
<text transform="matrix(1 0 0 1 718.6479 85.0275)" class="st23 st18 st19">korea</text>
</g>
<line id="XMLID_1611_" class="st24" x1="695.5" y1="134.2" x2="711.1" y2="82.2"/>
</g>
<g id="XMLID_1624_">
<path id="XMLID_1812_" class="st22" d="M746.2,140.1H714c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h32.2c2.2,0,4,1.8,4,4v9.8
C750.3,138.3,748.5,140.1,746.2,140.1z"/>
<g id="XMLID_1634_">
<text transform="matrix(1 0 0 1 717.6479 134.0275)" class="st23 st18 st19">india</text>
</g>
<line id="XMLID_1626_" class="st24" x1="697.5" y1="169.2" x2="710.1" y2="131.2"/>
</g>
<g id="XMLID_1613_">
<path id="XMLID_1868_" class="st22" d="M804,105.1h-39c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h39c2.2,0,4,1.8,4,4v9.8
C808,103.3,806.2,105.1,804,105.1z"/>
<g id="XMLID_1859_">
<text transform="matrix(1 0 0 1 768.6479 99.0275)" class="st23 st18 st19">japan</text>
</g>
<line id="XMLID_1615_" class="st24" x1="751.5" y1="108.2" x2="761.1" y2="96.2"/>
</g>
<g id="XMLID_1837_">
<path id="XMLID_1877_" class="st22" d="M820.7,135.1H765c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h55.7c2.2,0,4,1.8,4,4v9.8
C824.8,133.3,823,135.1,820.7,135.1z"/>
<g id="XMLID_1863_">
<text transform="matrix(1 0 0 1 768.6479 129.0275)" class="st23 st18 st19">colombia</text>
</g>
<line id="XMLID_1846_" class="st24" x1="718.5" y1="174.2" x2="761.1" y2="126.2"/>
</g>
<g id="XMLID_2006_">
<path id="XMLID_2024_" class="st22" d="M923.4,189.1H836c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h87.4c2.2,0,4,1.8,4,4v9.8
C927.5,187.3,925.7,189.1,923.4,189.1z"/>
<g id="XMLID_2018_">
<text transform="matrix(1 0 0 1 839.6479 183.0275)" class="st23 st18 st19">czech republic</text>
</g>
<line id="XMLID_2010_" class="st24" x1="821.5" y1="180.2" x2="832.1" y2="180.2"/>
</g>
<g id="XMLID_21_">
<path id="XMLID_1814_" class="st22" d="M775.4,245.1H737c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h38.3c2.2,0,4,1.8,4,4v9.8
C779.4,243.3,777.6,245.1,775.4,245.1z"/>
<g id="XMLID_1802_">
<text transform="matrix(1 0 0 1 740.6479 239.0275)" class="st23 st18 st19">china</text>
</g>
<line id="XMLID_1756_" class="st24" x1="686.3" y1="223.2" x2="733.1" y2="236.2"/>
</g>
<g id="XMLID_1712_">
<path id="XMLID_1767_" class="st22" d="M868.9,255.1H806c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h62.9c2.2,0,4,1.8,4,4v9.8
C872.9,253.3,871.1,255.1,868.9,255.1z"/>
<g id="XMLID_1731_">
<text transform="matrix(1 0 0 1 809.6479 249.0275)" class="st23 st18 st19">costa rica</text>
</g>
<line id="XMLID_1727_" class="st24" x1="789.3" y1="243.2" x2="802.1" y2="246.2"/>
</g>
<g id="XMLID_1471_">
<path id="XMLID_1817_" class="st22" d="M821.2,207.1H763c13.8,0-4,0.9-4-4v-9.8c0-2.2,1.8-4,4-4h58.1c2.2,0,4,1.8,4,4v9.8
C825.2,205.3,823.4,207.1,821.2,207.1z"/>
<g id="XMLID_1787_">
<text transform="matrix(1 0 0 1 766.6479 201.0275)" class="st23 st18 st19">indonesia</text>
</g>
<line id="XMLID_1783_" class="st24" x1="697.3" y1="197.2" x2="759.1" y2="198.2"/>
</g>
<g id="XMLID_1803_">
<path id="XMLID_2009_" class="st22" d="M824.5,171.1H770c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h54.5c2.2,0,4,1.8,4,4v9.8
C828.6,169.3,826.7,171.1,824.5,171.1z"/>
<g id="XMLID_1881_">
<text transform="matrix(1 0 0 1 773.6479 165.0275)" class="st23 st18 st19">thailand</text>
</g>
<line id="XMLID_1805_" class="st24" x1="745.8" y1="183.2" x2="766.1" y2="162.2"/>
</g>
<g id="XMLID_1894_">
<path id="XMLID_2028_" class="st22" d="M749.5,162.1H695c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h54.5c2.2,0,4,1.8,4,4v9.8
C753.6,160.3,751.7,162.1,749.5,162.1z"/>
<g id="XMLID_2016_">
<text transform="matrix(1 0 0 1 698.6479 156.0275)" class="st23 st18 st19">malaysia</text>
</g>
<line id="XMLID_2012_" class="st24" x1="681.8" y1="188.1" x2="691.1" y2="153.2"/>
</g>
<g id="XMLID_1594_">
<path id="XMLID_1831_" class="st22" d="M713.5,120.1H670c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h43.5c2.2,0,4,1.8,4,4v9.8
C717.6,118.3,715.8,120.1,713.5,120.1z"/>
<g id="XMLID_1612_">
<text transform="matrix(1 0 0 1 673.6479 114.0275)" class="st23 st18 st19">russia</text>
</g>
<line id="XMLID_1609_" class="st24" x1="653.5" y1="160.5" x2="666.1" y2="111.2"/>
</g>
</g>
<g id="kenyabase">
<g>
<g id="cluster2">
<text transform="matrix(1 0 0 1 946.4257 486.3549)" class="st5 st3 st4">Cluster 2</text>
</g>
<g id="XMLID_1670_">
<path id="XMLID_1729_" class="st23" d="M718.4,254.1H680c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h38.3c2.2,0,4,1.8,4,4v9.8
C722.4,252.3,720.6,254.1,718.4,254.1z"/>
<g id="XMLID_1704_">
<text transform="matrix(1 0 0 1 683.6479 248.0275)" class="st21 st18 st19">kenya</text>
</g>
<line id="XMLID_1703_" class="st24" x1="661.3" y1="215.2" x2="678.1" y2="247.2"/>
</g>
<g id="XMLID_40_">
<circle id="XMLID_1701_" class="st22" cx="667.3" cy="213.2" r="5.2"/>
<circle id="XMLID_1843_" class="st22" cx="653.3" cy="160.2" r="5.2"/>
<circle id="XMLID_1862_" class="st22" cx="695.3" cy="134.2" r="5.2"/>
<circle id="XMLID_1875_" class="st22" cx="751.3" cy="108.2" r="5.2"/>
<circle id="XMLID_1886_" class="st22" cx="718.3" cy="174.2" r="5.2"/>
<circle id="XMLID_1627_" class="st22" cx="681.3" cy="188.2" r="5.2"/>
<circle id="XMLID_1629_" class="st22" cx="697.3" cy="197.2" r="5.2"/>
<circle id="XMLID_1635_" class="st22" cx="746.3" cy="184.2" r="5.2"/>
<circle id="XMLID_1647_" class="st22" cx="821.3" cy="180.2" r="5.2"/>
<circle id="XMLID_1840_" class="st22" cx="789.3" cy="243.2" r="5.2"/>
</g>
</g>
<g>
<circle id="XMLID_1716_" class="st10" cx="686.3" cy="223.2" r="5.2"/>
<circle id="XMLID_1860_" class="st10" cx="697.3" cy="169.2" r="5.2"/>
<circle id="XMLID_1700_" class="st10" cx="661.3" cy="215.2" r="5.2"/>
</g>
</g>
</g>
<g id="Brazilcluster">
<g id="brazillabel">
<g id="XMLID_1093_">
<path id="XMLID_1100_" class="st25" d="M563.2,346H445.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h117.6c2.2,0,4,1.8,4,4v9.8
C567.2,344.2,565.4,346,563.2,346z"/>
<g id="XMLID_1097_">
<text transform="matrix(1 0 0 1 449.1472 339.8949)" class="st11 st18 st19">united arab emirates</text>
</g>
<line id="XMLID_1094_" class="st26" x1="599.7" y1="233.1" x2="567.2" y2="337.4"/>
</g>
<g id="XMLID_1082_">
<path id="XMLID_1089_" class="st25" d="M580.4,369.1h-48.2c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h48.2c2.2,0,4,1.8,4,4v9.8
C584.4,367.3,582.6,369.1,580.4,369.1z"/>
<g id="XMLID_1086_">
<text transform="matrix(1 0 0 1 535.7551 363.0275)" class="st11 st18 st19">bahrain</text>
</g>
<line id="XMLID_1083_" class="st26" x1="605.9" y1="230.9" x2="584.4" y2="360.2"/>
</g>
<g id="XMLID_1071_">
<line id="XMLID_1079_" class="st26" x1="663.3" y1="239.2" x2="673.6" y2="337.1"/>
<path id="XMLID_1075_" class="st25" d="M669.6,346H633c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h36.6c2.2,0,4,1.8,4,4v9.8
C673.6,344.2,671.8,346,669.6,346z"/>
<g id="XMLID_1072_">
<text transform="matrix(1 0 0 1 636.6462 339.9688)" class="st11 st18 st19">egypt</text>
</g>
</g>
<g id="XMLID_1060_">
<line id="XMLID_1068_" class="st26" x1="666.3" y1="245.2" x2="682" y2="362.6"/>
<path id="XMLID_1064_" class="st25" d="M746.2,371.1H686c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h60.2c2.2,0,4,1.8,4,4v9.8
C750.3,369.3,748.5,371.1,746.2,371.1z"/>
<g id="XMLID_1061_">
<text transform="matrix(1 0 0 1 689.6479 365.0275)" class="st11 st18 st19">singapore</text>
</g>
</g>
<g id="XMLID_1049_">
<line id="XMLID_1057_" class="st26" x1="683.3" y1="262.2" x2="713" y2="339.9"/>
<path id="XMLID_1053_" class="st25" d="M761.8,348.1H717c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h44.7c2.2,0,4,1.8,4,4v9.8
C765.8,346.3,764,348.1,761.8,348.1z"/>
<g id="XMLID_1050_">
<text transform="matrix(1 0 0 1 720.6479 342.0275)" class="st11 st18 st19">mexico</text>
</g>
</g>
<g id="XMLID_1038_">
<path id="XMLID_1045_" class="st25" d="M769.2,326.1H734c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h35.2c2.2,0,4,1.8,4,4v9.8
C773.3,324.3,771.5,326.1,769.2,326.1z"/>
<g id="XMLID_1042_">
<text transform="matrix(1 0 0 1 737.6479 320.0275)" class="st11 st18 st19">peru</text>
</g>
<line id="XMLID_1039_" class="st26" x1="698.3" y1="267.2" x2="730" y2="318"/>
</g>
<g id="XMLID_1027_">
<line id="XMLID_1035_" class="st26" x1="624.3" y1="222.2" x2="621.1" y2="382.2"/>
<path id="XMLID_1031_" class="st25" d="M617,391.1h-63.4c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4H617c2.2,0,4,0.8,4,3v10.8
C621.1,389.3,619.3,391.1,617,391.1z"/>
<g id="XMLID_1028_">
<text transform="matrix(1 0 0 1 557.2051 385.0275)" class="st11 st18 st19">philippines</text>
</g>
</g>
<g id="XMLID_1016_">
<line id="XMLID_1024_" class="st26" x1="656.3" y1="210.2" x2="663.3" y2="312"/>
<path id="XMLID_1020_" class="st25" d="M659.3,320.9h-55.7c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h55.7c2.2,0,4,1.8,4,4v9.8
C663.3,319.1,661.5,320.9,659.3,320.9z"/>
<g id="XMLID_1017_">
<text transform="matrix(1 0 0 1 607.1522 314.8362)" class="st11 st18 st19">morocco</text>
</g>
</g>
<g id="XMLID_1004_">
<line id="XMLID_1013_" class="st26" x1="622.3" y1="180.2" x2="623.7" y2="53.2"/>
<g id="XMLID_1005_">
<path id="XMLID_1009_" class="st25" d="M665.7,61h-38.3c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h38.3c2.2,0,4,1.8,4,4V57
C669.7,59.2,667.9,61,665.7,61z"/>
<g id="XMLID_1006_">
<text transform="matrix(1 0 0 1 630.9651 54.9688)" class="st11 st18 st19">spain</text>
</g>
</g>
</g>
<g id="XMLID_993_">
<path id="XMLID_1000_" class="st25" d="M765.7,278.1h-34.9c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h34.9c2.2,0,4,1.8,4,4v9.8
C769.7,276.3,767.9,278.1,765.7,278.1z"/>
<g id="XMLID_997_">
<text transform="matrix(1 0 0 1 734.4489 272.0275)" class="st11 st18 st19">chile</text>
</g>
<line id="XMLID_994_" class="st26" x1="712.3" y1="269.2" x2="726.8" y2="269.2"/>
</g>
<g id="XMLID_982_">
<path id="XMLID_989_" class="st25" d="M807.8,304.1H749c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h58.8c2.2,0,4,1.8,4,4v9.8
C811.9,302.3,810.1,304.1,807.8,304.1z"/>
<g id="XMLID_986_">
<text transform="matrix(1 0 0 1 752.6479 298.0275)" class="st11 st18 st19">barbados</text>
</g>
<line id="XMLID_983_" class="st26" x1="732.3" y1="288.2" x2="745.1" y2="295.2"/>
</g>
<g id="XMLID_971_">
<line id="XMLID_979_" class="st26" x1="646.3" y1="183.2" x2="650.7" y2="86.7"/>
<path id="XMLID_975_" class="st25" d="M698.5,95.1h-43.7c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h43.7c2.2,0,4,1.8,4,4v9.8
C702.6,93.3,700.7,95.1,698.5,95.1z"/>
<g id="XMLID_972_">
<text transform="matrix(1 0 0 1 658.3903 89.0275)" class="st11 st18 st19">turkey</text>
</g>
</g>
<g id="XMLID_960_">
<line id="XMLID_968_" class="st26" x1="614.3" y1="190.2" x2="612.4" y2="137.9"/>
<path id="XMLID_964_" class="st25" d="M665.8,146.8h-49.3c-2.2,0-4-1.8-4-4V133c0-2.2,1.8-4,4-4h49.3c2.2,0,4,1.8,4,4v9.8
C669.8,145,668,146.8,665.8,146.8z"/>
<g id="XMLID_961_">
<text transform="matrix(1 0 0 1 620.0751 140.7737)" class="st11 st18 st19">sweden</text>
</g>
</g>
<g id="XMLID_949_">
<line id="XMLID_957_" class="st26" x1="634.3" y1="216.2" x2="634.7" y2="286.2"/>
<path id="XMLID_953_" class="st25" d="M631.1,295.2h-35.5c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h35.5c2.2,0,4,1.8,4,4v9.8
C635.1,293.4,633.3,295.2,631.1,295.2z"/>
<g id="XMLID_950_">
<text transform="matrix(1 0 0 1 599.1501 289.0862)" class="st11 st18 st19">Uman</text>
</g>
</g>
</g>
<g id="brazilbase">
<g id="cluster3">
<text transform="matrix(1 0 0 1 946.4257 504.3544)" class="st5 st3 st4">Cluster 3</text>
</g>
<g id="XMLID_888_">
<circle id="XMLID_945_" class="st11" cx="648.3" cy="218.2" r="5.2"/>
<circle id="XMLID_941_" class="st25" cx="599.3" cy="233.2" r="5.2"/>
<circle id="XMLID_937_" class="st25" cx="606.3" cy="231.2" r="5.2"/>
<circle id="XMLID_933_" class="st25" cx="624.3" cy="222.2" r="5.2"/>
<circle id="XMLID_929_" class="st25" cx="634.3" cy="216.2" r="5.2"/>
<circle id="XMLID_925_" class="st25" cx="656.3" cy="210.2" r="5.2"/>
<circle id="XMLID_921_" class="st25" cx="614.3" cy="190.2" r="5.2"/>
<circle id="XMLID_917_" class="st25" cx="622.3" cy="180.2" r="5.2"/>
<circle id="XMLID_913_" class="st25" cx="646.3" cy="183.2" r="5.2"/>
<circle id="XMLID_909_" class="st25" cx="663.3" cy="238.2" r="5.2"/>
<circle id="XMLID_905_" class="st25" cx="666.3" cy="245.2" r="5.2"/>
<circle id="XMLID_901_" class="st25" cx="683.3" cy="262.2" r="5.2"/>
<circle id="XMLID_897_" class="st25" cx="698.3" cy="267.2" r="5.2"/>
<circle id="XMLID_893_" class="st25" cx="711.3" cy="269.2" r="5.2"/>
<circle id="XMLID_889_" class="st25" cx="732.3" cy="287.2" r="5.2"/>
</g>
<g id="XMLID_875_">
<path id="XMLID_885_" class="st11" d="M646.5,261.9h-39.9c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h39.9c2.2,0,4,1.8,4,4v9.8
C650.5,260.1,648.7,261.9,646.5,261.9z"/>
<g id="XMLID_882_">
<text transform="matrix(1 0 0 1 610.1522 255.8325)" class="st21 st18 st19">brazil</text>
</g>
<line id="XMLID_879_" class="st26" x1="648.3" y1="219.2" x2="649.7" y2="254"/>
</g>
</g>
</g>
<g id="Namibiacluster">
<g id="namibialabel">
<g id="XMLID_1458_">
<g id="XMLID_70_">
<g>
<g id="XMLID_196_">
<path id="XMLID_197_" class="st27" d="M538.4,598.1H464c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h74.3c2.2,0,4,1.8,4,4v9.8
C542.4,596.3,540.6,598.1,538.4,598.1z"/>
</g>
<g id="XMLID_195_">
<text transform="matrix(1 0 0 1 467.6479 592.0275)" class="st28 st18 st19">cote d’ivoire</text>
</g>
<g id="XMLID_193_">
<line id="XMLID_194_" class="st27" x1="459.9" y1="589.2" x2="459.3" y2="614.5"/>
</g>
</g>
</g>
</g>
<g id="XMLID_2103_">
<g>
<g id="XMLID_190_">
<path id="XMLID_191_" class="st27" d="M702.6,535.1H653c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h49.6c2.2,0,4,1.8,4,4v9.8
C706.6,533.3,704.8,535.1,702.6,535.1z"/>
</g>
<g id="XMLID_189_">
<text transform="matrix(1 0 0 1 656.6479 529.0275)" class="st28 st18 st19">ethiopia</text>
</g>
<g id="XMLID_187_">
<line id="XMLID_188_" class="st27" x1="648.9" y1="526.2" x2="647.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2110_">
<g>
<g id="XMLID_184_">
<path id="XMLID_185_" class="st27" d="M740.4,558.1H666c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h74.3c2.2,0,4,1.8,4,4v9.8
C744.4,556.3,742.6,558.1,740.4,558.1z"/>
</g>
<g id="XMLID_183_">
<text transform="matrix(1 0 0 1 669.6479 552.0275)" class="st28 st18 st19">mozambique</text>
</g>
<g id="XMLID_181_">
<line id="XMLID_182_" class="st27" x1="661.9" y1="549.2" x2="660.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2112_">
<g>
<g id="XMLID_178_">
<path id="XMLID_179_" class="st27" d="M740,581.1h-55c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h55c2.2,0,4,1.8,4,4v9.8
C744.1,579.3,742.2,581.1,740,581.1z"/>
</g>
<g id="XMLID_177_">
<text transform="matrix(1 0 0 1 688.6479 575.0275)" class="st28 st18 st19">tanzania</text>
</g>
<g id="XMLID_175_">
<line id="XMLID_176_" class="st27" x1="680.9" y1="572.2" x2="678.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2122_">
<g>
<g id="XMLID_172_">
<path id="XMLID_173_" class="st27" d="M734.7,604.1H694c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h40.7c2.2,0,4,1.8,4,4v9.8
C738.8,602.3,737,604.1,734.7,604.1z"/>
</g>
<g id="XMLID_171_">
<text transform="matrix(1 0 0 1 697.6479 598.0275)" class="st28 st18 st19">ghana</text>
</g>
<g id="XMLID_169_">
<line id="XMLID_170_" class="st27" x1="689.9" y1="595.2" x2="688.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2128_">
<g>
<g id="XMLID_166_">
<path id="XMLID_167_" class="st27" d="M806.7,561.1H760c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h46.6c2.2,0,4,1.8,4,4v9.8
C810.7,559.3,808.9,561.1,806.7,561.1z"/>
</g>
<g id="XMLID_165_">
<text transform="matrix(1 0 0 1 763.6479 555.0275)" class="st28 st18 st19">taiwan</text>
</g>
<g id="XMLID_149_">
<line id="XMLID_164_" class="st27" x1="755.9" y1="552.2" x2="745.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2146_">
<g>
<g id="XMLID_141_">
<path id="XMLID_142_" class="st27" d="M821.9,584.1H771c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h50.9c2.2,0,4,1.8,4,4v9.8
C826,582.3,824.2,584.1,821.9,584.1z"/>
</g>
<g id="XMLID_140_">
<text transform="matrix(1 0 0 1 774.6479 578.0275)" class="st28 st18 st19">senegal</text>
</g>
<g id="XMLID_138_">
<line id="XMLID_139_" class="st27" x1="766.9" y1="575.2" x2="753.3" y2="614.2"/>
</g>
</g>
</g>
<g id="XMLID_2155_">
<g>
<g id="XMLID_135_">
<path id="XMLID_136_" class="st27" d="M845.4,607.1H791c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h54.4c2.2,0,4,1.8,4,4v9.8
C849.4,605.3,847.6,607.1,845.4,607.1z"/>
</g>
<g id="XMLID_134_">
<text transform="matrix(1 0 0 1 794.6479 601.0275)" class="st28 st18 st19">bermuda</text>
</g>
<g id="XMLID_132_">
<line id="XMLID_133_" class="st27" x1="786.9" y1="598.2" x2="778.3" y2="614.2"/>
</g>
</g>
</g>
</g>
<g id="namibiabase">
<g id="cluster4">
<text transform="matrix(1 0 0 1 946.4257 522.3539)" class="st5 st3 st4">Cluster 4</text>
</g>
<path id="XMLID_74_" class="st28" d="M281.3,441.1H234c-2.2,0-4-1.8-4-4v-9.8c0-2.2,1.8-4,4-4h47.3c2.2,0,4,1.8,4,4v9.8
C285.4,439.3,283.5,441.1,281.3,441.1z"/>
<g id="XMLID_68_">
<text transform="matrix(1 0 0 1 237.6479 435.0275)" class="st21 st18 st19">namibia</text>
</g>
<line id="XMLID_45_" class="st27" x1="231.9" y1="432.2" x2="214" y2="432.2"/>
<g id="puntini">
<circle id="XMLID_2096_" class="st28" cx="214.3" cy="432.2" r="5.2"/>
<g id="XMLID_35_">
<circle id="XMLID_2105_" class="st29" cx="459.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2138_" class="st29" cx="647.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2153_" class="st29" cx="660.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2175_" class="st29" cx="678.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2193_" class="st29" cx="688.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2215_" class="st29" cx="745.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2237_" class="st29" cx="753.3" cy="614.2" r="5.2"/>
<circle id="XMLID_2259_" class="st29" cx="778.3" cy="614.2" r="5.2"/>
</g>
</g>
</g>
</g>
</svg>
</div>
</main>
<article class="container">
<div class="row">
<!-- Side scrolling menu -->
<div id="sidelist" class="col-md-3 text-uppercase d-none d-md-block sans-font">
<div class="list-group sticky-top">
<a class="list-group-item list-group-item-action smooth-scroll" href="#description"><span>Description</span></a>
<a class="list-group-item list-group-item-action smooth-scroll" href="#protocol"><span>Protocol</span></a>
<a class="list-group-item list-group-item-action smooth-scroll" href="#data"><span>Data</span></a>
</div>
</div>
<!-- Text content -->
<div class="col-md-9 article-content serif-font">
<!-- Description -->
<div class="section-content" id="description">
<h3 class="sans-font"><span>Description</span></h3>
<p>
</p>
</div>
<!-- Protocol -->
<div class="section-content" id="protocol">
<h3 class="sans-font"><span>Protocol</span></h3>
<img class="protocol-diagram" src="assets/protocol-02.png"/>
<p>
</p>
</div>
<!-- Data -->
<div class="section-content" id="data">
<h3 class="sans-font"><span>Data</span></h3>
<h4 class="sans-font">Timestamp: 01/1/2004 - 15/11/2017</h4>
<h4 class="sans-font">Data source: <a href="https://tools.digitalmethods.net/beta/waybackNetworkPerYear/">Wayback network per year</a></h4>
<h4 class="data-link sans-font"><a href="/assets/datasets/waybackperYear.csv"><i class="fa fa-arrow-circle-o-down"></i> Download data (162kB)</a></h4>
<p>
</p>
</div>
</div>
</div>
</article>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-6 col-md-2 mt-3 mb-5 mb-md-0">
<a href="http://www.densitydesign.org/">
<img class="img-density" src="assets/other/logo_density.png">
</a>
</div>
<div class="col-6 col-md-2 mt-3 mb-5 mb-md-0">
<a href="http://www.dipartimentodesign.polimi.it/">
<img class="img-poli" src="assets/other/logo_poli.png">
</a>
</div>
<div class="col-6 col-sm-4 col-md-3 col-lg-2 ml-auto mb-5 mb-sm-0">
<h4>project by</h4>
<ul>
<li>Matteo Testa</li>
<li>Matteo Sacchi</li>
<li>Irina Kasatkina</li>
<li>Giorgio Falvo</li>
<li>Nicolas Attolico</li>
</ul>
</div>
<div class="col-6 col-sm-4 col-md-2 px-1 px-lg-3 mb-5 mb-sm-0">
<h4>Faculty</h4>
<ul>
<li>Paolo Ciuccarelli</li>
<li>Stefano Mandato</li>
<li>Michele Mauri</li>
<li>Simone Vantini</li>
<li>Salvatore Zingale</li>
</ul>
</div>
<div class="col-12 col-sm-4 col-md-3 px-1 px-lg-3 ml-2 ml-sm-0">
<h4>Teaching Assistants</h4>
<ul>
<li>Andrea Benedetti</li>
<li>Ángeles Briones</li>
<li>Gabriele Colombo</li>
<li>Jacopo Di Iorio</li>
<li>Tommaso Elli</li>
<li>Beatrice Gobbo</li>
<li>Michele Invernizzi</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<!-- Template Javascript -->
<script src="js/template-functions.js"></script>
<!-- Prev/Next Button Script -->
<script>
$(document).ready(function(){
//this variable controls the correct functioning of the next and previous button. Must be the same as the question number.
var number = 7;
//get the previous question html page
$(".arrow-left a").click(function() {
var newNumber = number - 1,
url = "question" + newNumber + ".html";
$(this).attr("href", url);
});
//get the next question html page
$(".arrow-right a").click(function() {
var newNumber = number + 1,
url = "question" + newNumber + ".html";
$(this).attr("href", url);
});
// Add smooth scrolling on all links inside the sidelist
$('.list-group a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - 74
}, 1000);
return false;
}
}
});
});
var offsetSidelist;
$( window ).on( "load", function() {
// Add smooth scrolling back to top
offsetSidelist = $('.list-group').offset().top - 64;
$(window).scroll(function() {
if ($(this).scrollTop() >= offsetSidelist) {
$('.list-group').addClass('sidelist-fixed');
} else {
$('.list-group').removeClass('sidelist-fixed');
}
});
});
$( window ).resize(function() {
offsetSidelist = $('.list-group').offset().top - 64;
});
</script>
<!-- Your custom Javascript -->
<script src="js/main.js"></script>
<script src="js/clusters.js"></script>
</body>
</html>