forked from andrebradshaw/Tool-Merge-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalpha_1.js
More file actions
1127 lines (1040 loc) · 125 KB
/
Copy pathalpha_1.js
File metadata and controls
1127 lines (1040 loc) · 125 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
989
990
991
992
993
994
995
996
997
998
999
1000
var YOURwebAppURL = 'REPLACE THIS with your GOOGLE APPS WEB APP URL';
function replaceAll(rx,vl,str){ for(i=0; i<vl.length; i++){ str.replace(rx[i], vl[i]); } return str;}
function grouped(e, n){ if(e != null){ return e[n].toString(); }else{ return ""; }}
function quickliNow(){
var groupArr = [{
"v": "c# net",
"c": [40717,40949,54723,46954,1774385,128972,1211647,1681947,2513131,2615616,6626464,7037632,8393015,6660700,8450726,3987849,3794800,8674841,7050624,5187683,43315,7040660,1787744,4029226,3797705,40571,4000998,1455127,3466892,1932594,1042277,3440764,4004011,1420257,2381463,2281587,4111348,2311182,2281574,1786925,2937378,59198,1826047,1774748,3706809,675347,3749126,3168562,2006103,3717447,2281579,3679821,1774879,2000528,2190089,88744,3907311,3712129,1986822,4455053,132626,1924418,77233,1868427,2281591,4035379,1837948,3280740,1221037,1362317,1520317,91484,1978012,6732857,35456,4722635,2171660,111535,4486837,3023054,2959207,1770889,3725625,134338,8135329,3674984,3984482,3023582,3354375,2507015,3457396,3925520,2501179,4855122,2200254,8494867,8528136,4142135,1237317,86853,8159002,3199448,4275959,1552447,979647,1319917,8187199,99453,3839843,3026937,40060,1787149,2810171,1844814,2752018,2988139,121338,3413681,135366,3804529,10312209,7035649,2467809,5188965,3879499,1915338,63930,1901419,2787346,1772623,1722977,4125225,3800952,2607657,2877478,126150,3737202,2325444,4232527,3421463,3832332,44139,4864445,4133363,6682034,1882189,12036641,4429638,3355943,4031121,667117,3730952,3970811,1721407,1952676,2156579,2219917,4890056,4357976,5125382,1046037,1849179,2003504,2553319,2806779,4041908,1809419,6957127,4385114,4971849,163874,8586620,147167,1883501,2347131,4750608,110723,114719,2966344,3829691,4283183,1520387,1897593,4307257,1774611,1762877,4680190,6587478,3898953,2062575,12083286,3751749,3824275,3297808,4128499,1401787,2333308,2733314,4887637,2827907,4845003,6756736,2605403,1807203,2037057,89751,1790413,7422480,1200517,39321,3622481,8468620,1779534,4177807,3233812,3557776,3871023,8292153,8203944,3684467,1688997,2596587,8475523,4242557,2569342,5114078,4489574,3940446,3725202,2643739,2409076,4018742,6925027,6714743,2157608,8573101,1794801,2726301,1943705,6717710,4523365,4108938,4267683,3562150,3659786,4633957,135561,4666926,4662090,13536070,4620130,1815161,3877475,4449704,723117,4371964,3805514,3736558,3872704,3800686,4837267,6585827,5146055,7488119,4520125,4209089,4472703,3880034,6776576,8224740,8336548,4166552,3768117,2606000,8130634,4571907,4316291,4055586,4221198,5175283,3846270,3858812,5150068,4515860,60758,5176598,4114996,2764493,3141726,8224586,4307458,4025204,2555640,1162927,3838903,3897686,10345717,4677750,3285990,3684768,3105582,3875813,3836472,8300446,4679665,3675448,3844691,3903521,12021353,6703410,2211125,8445122,4711408,3827910,3937695,3802217,6951456,3957907,2905105,5142681,4462203,131642,3185528,2464762,2054608,3838400,787297,3823750,2285709,1600027,3278150,3723849,69429,6794790,99894,4349714,85746,2066905,10306674,4971812,68734,4147931,3427378,3527428,855167,1945729,5127739,833637,4617448,3782385,3435277,117519,3266178,3304503,4616137,3970811,5130306,8621951,7051965,8277070,1925989,10320079,5098209,7038689]
},{
"v": "java",
"c": [8444948, 10318692, 148127, 8491835, 4656692, 8460004, 6792239, 4971854, 8660205, 2513270, 1107677, 7018767, 2752289, 6731624, 6608681, 8272476, 10307956, 8667046, 7050539, 3067985, 52152, 10308230, 99500, 2512858, 4264094, 4226744, 1681947, 4612783, 3078301, 70526, 54723, 2066905, 118012, 3983267, 43888, 52795, 143130, 6732383, 10341564, 5139793, 7043853, 8608766, 3770786, 7050624, 13567636, 10348293, 79177, 3679348]
},
{
"v": "javascript",
"c": [4729265, 121615, 2066905, 4192947, 4314060, 10308230, 6665791, 6610234, 2395407, 7039829, 10318692, 6660700, 7043853, 8608766, 1912478, 4012002, 3321309, 1145317, 4004011, 8142012, 1788338, 4421054, 3374022, 2950776, 4458145, 4407562, 6732857, 8469801, 7059654, 3951532, 4455053, 10307901, 1953193, 8364186, 2075616, 3898699, 10307947, 10312209, 3757752, 4836446, 2042172, 3983203, 4769230, 5101226, 4965580, 3874473, 10313350, 2008070, 2193375, 8417782, 8580039, 10310155, 7400230, 6729207, 3165057, 4707473, 8281650, 8282921, 10307509, 7028217, 8614121, 4850984, 157423, 6545717, 4056632, 10345717, 8205737, 8485278, 4158928, 5103311]
},
{
"v": "react",
"c": [6519652, 8364861, 7073403, 8561475, 7465439, 4004011, 8658227, 8469837, 8270264, 6989502, 3156407, 4771127, 3830895, 6549381, 8246896, 7070666, 8468157, 8196528, 10345717, 8516483, 5107445, 8443841, 8440343]
}, {
"v": "angular",
"c": [4896676, 6744403, 8434339, 4314060, 7053365, 5056087, 8393015, 10333109, 8272346, 8606340, 7043853, 8267511, 2123321, 8123017, 10312467, 7013984, 6732857, 4822504, 7442742, 5162891, 7491340, 8252892, 6806248, 8528220, 8133228, 8435781, 8511376, 8282876, 8559641, 8571393, 8328139, 8196528, 8453903, 8485278, 8255105, 7053656, 6611280, 8237617, 8250898]
}, {
"v": "typescript",
"c": [7053365, 4671277, 6636954, 10312209, 7053656]
}, {
"v": "mongodb",
"c": [2340731, 4314060, 6507637, 10310531, 7019238, 6994205, 7060016, 4916144, 4916171, 4773314, 4766229, 8123017, 6671798, 7044387, 7427162, 4222094, 3973740, 8516483, 7042771, 4677371, 3018007, 4845083, 7467060, 3268610, 5183011, 4100451, 3932794, 4731560]
}, {
"v": "nosql",
"c": [2085042, 4314060, 7018876, 2992384, 3749398, 2390941, 4526635, 4147754, 4148993, 4100408, 6603689, 4222094, 8131324, 4179931, 4276144, 4629535, 2984309, 3836653, 2991253, 10306991, 8341366, 8486305, 6722098, 3807876, 4320784, 4166598, 51443, 137774, 86080, 153940, 1333047, 74566, 2151868, 2005072, 2258953, 74766, 10308230, 2064830, 1488717, 2320891, 6626464, 7018876, 6731624, 8393015, 4843954, 10310183, 10310531, 6660700, 7489499, 944787, 8297847, 7043853, 2761073, 8455272, 1810026, 1778334, 40572, 1890173, 68736, 146455, 2718875, 4000414, 1945724, 4214700, 90015, 3130063, 2794259, 1932594, 1777753, 4142258, 2065320, 2782903, 2904068, 86698, 4293597, 4325019, 35403, 3549434, 92475, 1943618, 2719094, 3903681, 2356513, 3206126, 2434772, 2154434, 3754774, 2085711, 3975525, 2233144, 4078806, 3726582, 4217688, 2506662, 4426701, 2806621, 3278150, 2931685, 833637, 2326930, 2065333, 113747, 3961904, 3032059, 948387, 2136151, 4032499, 130498, 12025064, 3222604, 7044387, 1065667, 4428653, 8344583, 1789566, 3023054, 4043303, 3972051, 123976, 2000572, 2096387, 1467097, 12055332, 142082, 3208652, 2789043, 3992763, 8528136, 1861662, 3259671, 2034949, 1852648, 1749887, 2332199, 2351805, 1800923, 3882120, 2528639, 3033621, 1959678, 4119965, 3219421, 1992105, 1893703, 7470470, 2825448, 2595225, 6970228, 4156335, 3668898, 3884962, 6776536, 4292050, 1088987, 4008776, 3446276, 135365, 1923683, 2703933, 4403578, 4366191, 4153765, 2109564, 2910745, 4151246, 3937831, 3752147, 6504038, 2576450, 3753389, 4802379, 2303025, 2065339, 4846324, 73960, 53435, 68912, 3811586, 3177793, 2122077, 4836866, 4266457, 10306510, 4738673, 2480689, 8183714, 2180331, 2674537, 10306991, 4463585, 2558602, 8535426, 4266000, 4680808, 810577, 3081331, 3525867, 145491, 1103537, 4293570, 13518896, 4902288, 123073, 10319790, 6790081, 8486305, 1842173, 83136, 4834734, 3762103, 10310155, 8239517, 1557837, 4684651, 8350511, 8445693, 6611911, 3822796, 1572247, 3691958, 3723998, 3671590, 4614631, 6759595, 12015718, 4888084, 4837267, 2158137, 1829373, 8158505, 154526, 6704850, 6564799, 4361990, 3928753, 4322789, 1903686, 4233937, 6950048, 6568925, 2431113, 4972003, 1443167, 136692, 4962303, 3945269, 4525746, 3883580, 4283069, 2052531, 4259165, 3299645, 2938132, 4320288, 7436039, 4324872, 4749673, 2610086, 8315648, 2878913, 4061160, 3285992, 8493592, 6503357, 3868733, 3809944, 4871168]
}, {
"v": "node js",
"c": [2906459, 4314060, 6610234, 5149260, 3769732, 7019238, 3208061, 3939308, 8123017, 5118570, 5056560, 3985230, 4642120, 8518618, 3931271, 6796704, 4126139, 8250677, 8328139, 7072180, 6718973, 8469049, 4044787, 3344647, 8516483]
}, {
"v": "vue js",
"c": [8384105, 8658122, 10324122, 13502932, 8585351, 12012750, 12053065, 8619319, 10338329, 10341545, 13572370]
}, {
"v": "mern stack",
"c": [8516483]
}, {
"v": "mean stack",
"c": [5070069, 8123017, 4713594, 6713052, 8552353, 8196528, 8176320, 10329867, 10325136, 10329760, 8118144, 8540438, 10311462, 7019238, 5070069, 1833456, 8123017, 3077486, 4630234, 4398757, 6713052, 8180545, 4713594, 8478882, 8552353, 6984366, 2265335, 4073979, 8196528, 3964891, 1869081, 6799201]
}, {
"v": "python",
"c": [25827, 2066905, 1846027, 101591, 10308230, 3674163, 2326082, 8313392, 801927, 7018767, 6608681, 2044685, 10307956, 6986570, 12049975, 8460004, 12057217, 142554, 8365068, 6794610, 3082625, 10341564, 10309698, 13520250, 7060016, 7043853, 8608766, 8199467, 4388870, 4004011, 2688378, 3636595, 3604777, 3968111, 6955587, 8288265, 1469727, 3147347, 6563555, 2739093, 4576040, 1840965, 4010006, 2428849, 6671798, 104084, 2925347, 8159002, 40749, 7020965, 5162891, 830317, 7022425, 38433, 4727845, 6771762, 8316506, 962187, 2457410, 4746723, 3954713, 8475057, 8658227, 7436441, 6543218, 4751462, 4807908, 2139393, 3865694, 4166703, 3914873, 5015554, 6511985, 4799212, 2035595, 8403015, 10307351, 4972273, 2836102, 5176614, 145905, 2572957, 1914721, 1082307, 4499535, 8136408, 10310155, 4010004, 3790186, 4944546, 4197937, 8536525, 7424122, 4685758, 1800509, 6592926, 4259850, 6921888, 3854881, 12019159, 4707397, 5120461, 8462172, 4488273, 1912482, 4613465, 5079388, 5105323, 2809233, 5076586, 4075057, 6736129, 6953799, 3984711]
}, {
"v": "pyspark",
"c": [10369097, 7403611, 4244719, 12024092, 8308088, 6994205, 7060016, 2390941, 6670659, 13545176, 1815249, 4289198, 101607, 6505488, 6524593, 5163876, 2128648, 8344258, 6594729, 2082712, 8318681, 7040036, 3725819, 4486761, 8521295, 5057624, 8405568, 8449154, 4357234, 8403015, 8341366, 8549013, 8271760, 8440533, 4020102, 3713926, 8410119, 8215146, 7049942, 6623938, 7480032, 7051077, 8410260, 2389194, 3846484, 3882192, 8408531, 6941513, 8488696, 4327244, 8486928, 6777760, 10326193]
}, {
"v": "hadoop",
"c": [988957, 1824590, 1787637, 2067201, 2258445, 6570127, 4472815, 2008094, 4244719, 6665738, 4635755, 7018876, 7434866, 3749398, 8308088, 10309641, 7051362, 8545245, 7060016, 10324446, 2390941, 6531814, 3853401, 4185360, 4047138, 6565220, 4231627, 13545176, 2333070, 4325443, 4388443, 3727628, 6671798, 4361541, 5163002, 2020195, 4268632, 4132384, 4550786, 5083810, 4381809, 5161354, 3787966, 3702003, 6603689, 4396914, 4838165, 3173071, 7040036, 4087821, 3920076, 5127708, 8158013, 4832340, 10309922, 4569500, 7041367, 4453208, 4492683, 3770545, 8264305, 4468740, 6707728, 4981203, 6738536, 6784876, 2640310, 4383296, 10306991, 4506011, 4856681, 8104492, 5028839, 1849146, 8403015, 7428125, 6968679, 3096030, 4547204, 4077331, 4568065, 4162115, 4999563, 6606032, 6700544, 4395227, 7020473, 4905865, 5156561, 5173122, 4720546, 5067265, 6982153, 4421524, 4780634, 4941547, 6555005, 4888084, 7049942, 5167729, 4783713, 6736697, 6600733, 3349152, 8198264, 6773140, 10322004, 5079543, 4776436, 3603149, 5083868, 4701565, 4782834, 4861844, 4959295, 5077374, 6605604, 3833011, 8382873, 8277464, 4858027, 6777760, 4900650, 4160980, 10326193, 8477342]
}, {
"v": "aws",
"c": [4387417, 6585254, 4658452, 3748455, 5122002, 8490251, 7485161, 10318988, 7403992, 12101129, 10312404, 8498117, 6558049, 8658432, 3676869, 2390941, 3758254, 13545176, 6671798, 8453825, 4274176, 4860981, 8409018, 10324642, 8225525, 4455543, 4439331, 4554002, 4617660, 1916192, 6540981, 813517, 3821686, 4700057, 8262916, 8243976, 6705840, 6629427, 6645376, 10339329, 3693012, 7488176, 3986067, 4861008, 3785818, 8223813, 7044332, 3758251, 4632528, 7060366, 7028217, 7020473, 7056549, 6966895, 8473067, 6707728, 5061069, 7012478, 4817291, 6720425, 10348065, 5074877, 6519097, 3575365, 10326563, 3864264, 10306115, 8635047, 10327747]
}, {
"v": "firebase",
"c": [6972104, 8324258, 10308049, 8490853]
}, {
"v": "adwords",
"c": [37724, 2780579, 5087819, 95911, 3072129, 67683, 2356724, 758157, 3420765, 3164884, 4279815, 1797322, 3086422, 7477303, 4446798, 8443043, 4775373, 1901215, 10313811, 2028911, 3748560, 4528338, 4718609, 2356573, 3900748, 2245900, 8562382, 4575785, 3921924, 6633288, 7495360, 7056386, 4781033, 6631990, 3900037, 8125787, 7419747, 4239290, 4652916]
}, {
"v": "ad tech",
"c": [154454, 10386653, 1887819, 13532566, 6719963, 4655161, 8617300, 7403859, 12017923, 7061964, 12032428, 8530242, 8313469, 7065271, 4375697, 4675861]
}, {
"v": "ad ops",
"c": [154454, 8161362, 4913219, 3252486, 4187309, 3198345, 4446142, 5085680, 4977271, 8639359, 8154337, 8364040, 4806198, 7492091, 6539664, 3837306, 4031316, 12013430, 6984508, 4458343, 8551763, 4538186, 8128825]
}, {
"v": "mysql",
"c": [2195403, 60715, 6731624, 3924129, 10310531, 4115406, 1958013, 3399598, 50812, 78638, 4995473, 145892, 49894, 2647201, 120323, 3901219, 2855862, 2605719, 2320439, 7044387, 143305, 4242111, 1447497, 3759551, 6603689, 4224491, 3973740, 2648386, 3683269, 3714498, 2684002, 6731006, 8132219, 10306991, 3766471, 3807876, 3735539, 94123, 1627237, 4771475, 4510296, 3299645, 51443, 137774, 86080, 153940, 1333047, 74566, 2151868, 2005072, 2258953, 74766, 10308230, 2064830, 1488717, 2320891, 6626464, 7018876, 6731624, 8393015, 4843954, 10310183, 10310531, 6660700, 7489499, 944787, 8297847, 7043853, 2761073, 8455272, 1810026, 1778334, 40572, 1890173, 68736, 146455, 2718875, 4000414, 1945724, 4214700, 90015, 3130063, 2794259, 1932594, 1777753, 4142258, 2065320, 2782903, 2904068, 86698, 4293597, 4325019, 35403, 3549434, 92475, 1943618, 2719094, 3903681, 2356513, 3206126, 2434772, 2154434, 3754774, 2085711, 3975525, 2233144, 4078806, 3726582, 4217688, 2506662, 4426701, 2806621, 3278150, 2931685, 833637, 2326930, 2065333, 113747, 3961904, 3032059, 948387, 2136151, 4032499, 130498, 12025064, 3222604, 7044387, 1065667, 4428653, 8344583, 1789566, 3023054, 4043303, 3972051, 123976, 2000572, 2096387, 1467097, 12055332, 142082, 3208652, 2789043, 3992763, 8528136, 1861662, 3259671, 2034949, 1852648, 1749887, 2332199, 2351805, 1800923, 3882120, 2528639, 3033621, 1959678, 4119965, 3219421, 1992105, 1893703, 7470470, 2825448, 2595225, 6970228, 4156335, 3668898, 3884962, 6776536, 4292050, 1088987, 4008776, 3446276, 135365, 1923683, 2703933, 4403578, 4366191, 4153765, 2109564, 2910745, 4151246, 3937831, 3752147, 6504038, 2576450, 3753389, 4802379, 2303025, 2065339, 4846324, 73960, 53435, 68912, 3811586, 3177793, 2122077, 4836866, 4266457, 10306510, 4738673, 2480689, 8183714, 2180331, 2674537, 10306991, 4463585, 2558602, 8535426, 4266000, 4680808, 810577, 3081331, 3525867, 145491, 1103537, 4293570, 13518896, 4902288, 123073, 10319790, 6790081, 8486305, 1842173, 83136, 4834734, 3762103, 10310155, 8239517, 1557837, 4684651, 8350511, 8445693, 6611911, 3822796, 1572247, 3691958, 3723998, 3671590, 4614631, 6759595, 12015718, 4888084, 4837267, 2158137, 1829373, 8158505, 154526, 6704850, 6564799, 4361990, 3928753, 4322789, 1903686, 4233937, 6950048, 6568925, 2431113, 4972003, 1443167, 136692, 4962303, 3945269, 4525746, 3883580, 4283069, 2052531, 4259165, 3299645, 2938132, 4320288, 7436039, 4324872, 4749673, 2610086, 8315648, 2878913, 4061160, 3285992, 8493592, 6503357, 3868733, 3809944, 4871168]
}, {
"v": "ruby rails",
"c": [22413, 62218, 2809657, 2175930, 109785, 2573352, 2488892, 160865, 3347261, 1821848, 2077146, 146650, 110032, 4010032, 52687, 5162891, 6794564, 3898762, 2207110, 2239918, 1317137, 3437246, 157447, 3731853, 4023020, 8212033, 4059588, 4203902, 1256077, 5023364, 2787432, 4616328, 2737598, 6734357, 6591485, 4723329, 4033037, 4120276, 3873389, 6501213, 4771040, 5054819, 3252020, 4875417, 2120486, 4484730, 6603689]
}, {
"v": "php",
"c": [54723, 2066905, 42140, 40870, 78637, 2195403, 4419933, 10308230, 7018767, 6731624, 6608681, 10307956, 1202577, 10318692, 8460004, 3728291, 7043853, 8608766, 7050624, 13567636, 4115406, 87251, 40895, 24405, 1958013, 1254647, 2798247, 3399598, 50812, 4012002, 831407, 3193941, 112564, 1145317, 89754, 4004011, 2407326, 145892, 3791826, 987597, 4078471, 1170327, 2127885, 120323, 4135453, 3901219, 2535085, 3234700, 1755787, 60159, 43478, 2903144, 2792529, 2317865, 3829106, 4416011, 4259653, 2752162, 4166088, 1808119, 1808804, 4228050, 3765670, 3783528, 118982, 4262664, 4210234, 2320439, 101201, 1833081, 4193390, 4035681, 738347, 4349699, 37232, 24403, 1769398, 110439, 2703933, 2086003, 3647237, 2260295, 2605280, 8159002, 4242111, 3331366, 4859945, 3951835, 2564005, 1927147, 10337828, 1266367, 3739012, 1149857, 10312209, 4205671, 1840542, 3269786, 1771978, 3267765, 6700725, 2185118, 3801163, 3264918, 2340919, 3890248, 3247005, 4836446, 3339945, 3389725, 1983840, 4224491, 3674984, 8407987, 3889175, 2439531, 4372582, 2128244, 8472295, 3943169, 3879612, 3040031, 2648386, 1958038, 8198597, 4151603, 4978593, 3883800, 2549326, 2478313, 3768132, 3854291, 2174719, 3842518, 1908404, 4264736, 8225665, 3878513, 831337, 5066932, 1936596, 3659786, 13535615, 7400230, 4993869, 4466559, 2936569, 8135371, 88786, 8566838, 3317969, 116151, 3897594, 3420762, 2180331, 6987707, 13586940, 3817270, 4743274, 975837, 3949881, 1944548, 764657, 4512072, 2634783, 3711373, 8468620, 4083057, 8199612, 6703717, 3872249, 151396, 7002268, 1950429, 3495280, 3307766, 1974578, 4348284, 4771176, 10310155, 1797137, 2010280, 3851062, 6729254, 4632370, 4550098, 3780032, 3952975, 2567466, 4735044, 6581692, 4010060, 91485, 6722098, 10318691, 1713747, 8220282, 4077799, 12010079, 2890923, 6800612, 4293154, 3248754, 8594167, 6703824, 4835761, 4472703, 4453376, 4259850, 6624194, 3676469, 7420841, 2524389, 1954642, 2628465, 4396309, 3936523, 4501421, 4234474, 3937548, 3944748, 6613528, 3068125, 754577, 4734542, 4352807, 1035687, 1631707, 8175994, 7429829, 12021353, 6717496, 4059216, 4706755, 8493592, 6703455, 8145610, 4780281, 8255105, 3806699, 4033294]
}, {
"v": "android",
"c": [76373, 54723, 2013391, 86481, 3753461, 1515777, 2703652, 139664, 6666650, 7043467, 6731624, 10307956, 10309060, 10310735, 13590820, 8608766, 7050624, 13567636, 3432740, 3737456, 88206, 3277587, 2055512, 136638, 1933035, 1915306, 919827, 1777491, 2708983, 2128015, 3066064, 3330138, 2512724, 2055495, 2691802, 3557312, 3113909, 3785030, 3973247, 4349703, 4320763, 3071538, 3213951, 3914509, 4231988, 4057700, 2577820, 6695950, 2202674, 3756381, 1916426, 3965291, 1390067, 2692131, 1890978, 3000707, 4229209, 3760504, 2917898, 1030897, 4926298, 3771575, 3500402, 3904340, 4513146, 10325624, 4352162, 3826581, 1806048, 4102852, 2261025, 3406101, 3992605, 4076149, 1925405, 5162915, 6955587, 907377, 4371153, 4171990, 6683762, 4252825, 2170258, 3840515, 2386481, 8511583, 6732842, 3990980, 4276586, 4126588, 4041444, 4350401, 4337336, 4197283, 3182063, 3738931, 2787427, 4308349, 4512299, 3693731, 1952399, 3914121, 3766400, 4267625, 6693935, 1994713, 1926893, 4615383, 8420486, 7033269, 3928589, 8364136, 3088845, 4512117, 3890666, 4110759, 7447865, 3784157, 10310194, 2534153, 3194069, 3870302, 10312814, 3903579, 4401312, 5187633, 2006960, 134483, 3761915, 3069427, 3917273, 3674984, 3823636, 3942725, 3899206, 3780551, 4036363, 3801565, 2129044, 3389369, 6750823, 5083769, 4476573, 7033732, 2971137, 3755963, 4702722, 3784108, 1964175, 3440475, 2951437, 6970916, 3079271, 3870819, 7041319, 4862953, 2892344, 3701744, 7485234, 2714251, 4105101, 6647183, 4102569, 3847011, 4321297, 4993869, 2946156, 4675758, 4347830, 4479719, 4165690, 6748054, 4258394, 8263723, 4724859, 2846224, 4332971, 4039004, 4092821, 12083286, 4146256, 6759525, 8553483, 4241517, 6987707, 5061578, 4887637, 4588059, 12088384, 3562954, 1944548, 3738546, 4161916, 3859752, 4409903, 5149115, 4905510, 4021975, 4630354, 8199612, 4946546, 4933579, 4015180, 4231356, 7002268, 5021285, 2008570, 4190232, 7028217, 10310155, 2673114, 3669069, 4347945, 8521300, 4822930, 7045359, 7401882, 3782206, 5167019, 4621343, 7032449, 2067504, 4726984, 2514387, 3786231, 8205263, 4864152, 4347948, 4027905, 2844647, 969617, 3534, 2008901, 5160966, 6613956, 3671398, 4260433, 5016876, 3984573, 5171732, 4046734, 8451688, 5064364, 8426315, 4118329, 6743038, 6613985, 4521920, 4055109, 3819940, 4772206, 4088714, 4016359, 4398220, 4584800, 6730127, 4352096, 4152866, 4977486, 4382132, 8614121, 4749612, 4202959, 6711565, 4811879, 2229579, 6568926, 4128812, 4710972, 3848691, 6533915, 6769411, 4990682, 8547464, 5068627, 5181314, 4083841, 6552128, 2640952, 4374794, 6572675, 4631217, 8349683, 12021353, 4757894, 4133179, 4572146, 4352129, 4900337, 8271600, 4656969, 4125345, 8255105, 6635705, 4447810, 3764120, 5036564, 4900650, 4484908, 5150818, 2411016]
},{
"v": "ios",
"c": [54723, 121874, 2043501, 73521, 2703652, 6773450, 139664, 6666650, 7043467, 6731624, 10307956, 10309060, 10310189, 8608766, 13567636, 10307956, 10309060, 10310189, 8608766, 13567636, 712237, 1641217, 4007217, 4287325, 3914509, 3795423, 8121430, 3851278, 4007303, 1890978, 6789041, 4426222, 4065549, 3832837, 10325624, 4012123, 3854672, 3865420, 3881508, 1925405, 5162915, 3881721, 143496, 3130191, 4805114, 4007324, 1798655, 2072436, 6732842, 3041844, 3897444, 4041444, 3724464, 764857, 4352162, 164026, 3920960, 7033269, 4380088, 4028056, 4512117, 10310194, 4045413, 10312814, 4183167, 6771285, 4311400, 3942686, 1526177, 8364622, 3766400, 8334113, 6750823, 5083769, 4476573, 7495391, 3041873, 3041868, 7033923, 3820987, 4007243, 4462010, 3890666, 6657530, 3450236, 7048997, 8546040, 6647183, 4102569, 3883514, 4993869, 3883488, 3918357, 4479719, 8263723, 2846224, 12083286, 6780710, 2370726, 4887637, 3905501, 12088384, 4119158, 1944548, 4085105, 4249728, 4658438, 8199612, 4946546, 4249073, 4656856, 7002268, 4189658, 2008570, 6536293, 3985711, 7028217, 4688841, 3989349, 8521300, 3713046, 7401882, 7032449, 4726984, 4675758, 3976094, 3535487, 8195116, 4864152, 3786594, 8442242, 3857818, 10306020, 4241517, 8120521, 6750107, 6613956, 4374342, 4260433, 4582597, 8469650, 5171732, 13500455, 3041852, 5064364, 8426315, 4447486, 6613985, 4887414, 4398220, 4565592, 4241921, 6730127, 4719442, 6638566, 4977486, 4865345, 4112591, 5178915, 8614121, 6620250, 4871758, 4623080, 6711565, 8276576, 6631611, 3586657, 4703383, 3041863, 5134803, 4710972, 6769411, 4665461, 8547464, 10349104, 5181314, 6552128, 6553534, 3929582, 3589364, 4676913, 4305822, 8349683, 4772206, 12021353, 4757894, 4133179, 4572146, 4900337, 4540326, 8271600, 3041854, 5036564, 4900650, 4484908]
},{
"v": "objective c",
"c": [10308230, 6773450, 6608681, 7043853, 162305, 4007217, 4007303, 5162915, 4007324, 3041844, 4007243, 10310155, 7048997, 3786835]
},{
"v": "big data",
"c": [35222,152247,4298680,54257,1824590,1895501,85005,4488721,4211928,5096075,4737538,4520344,8535151,3063585,7495000,6985688,1807351,7434866,4382914,8259937,8245997,7049613,7464520,8466901,7010492,8673209,3913390,12049975,6523893,7002422,7051362,8583632,8513363,8586496,12043442,8650354,4409817,13536539,12025995,7065111,6707800,8573953,7060016,8494069,13537407,13534225,8547570,6976267,8651725,13531062,8362897,4388870,135952,4505921,5074372,7483515,2328634,6671798,4233300,1031347,1814769,3907415,2083836,6963403,4789346,4989914,8486523,6667320,4893595,6958717,6663054,6781274,8572213,12065053,7048485,7041266,4093846,3702279,8613673,4806082,6932763,7422633,2564200,8297512,5170769,6539543,10311441,7433473,132504,4775749,6781245,8264413,5083419,8364140,6609581,6752130,3865219,10343926,8543946,8464980,8338455,8339825,5157049,8403015,8496352,6690296,8663153,3843902,13564524,8311608,2626580,8404266,12110140,6813177,4988925,7073339,8382445,8134972,5172106,8437222,8432776,10351018,4615592,8633896,8467091,7011381,8285389,7488183,6712823,7492543,12032845,2481383,8495348,7057288,8475710,6939812,7049942,8582070,8435322,10329368,8509051,8302105,7011365,7049635,7044428,6747486,12024851,8549065,8255696,6748189,12011113,8578917,12009852,4470238,8295496,4698467,8473257,8343502,4955871,6968679,6980490,7413980,8251787,8534523,35222,152247,4298680,54257,1824590,1895501,85005,4488721,4211928,5096075,4737538,4520344,8535151,3063585,7495000,6985688,1807351,7434866,948567,4382914,8259937,8245997,7049613,7464520,8466901,7010492,8673209,3913390,7033821,12049975,6523893,7002422,7051362,8583632,8513363,8586496,12043442,8650354,8430596,4409817,13536539,12025995,7065111,6707800,8573953,7060016,8494069,13537407,13534225,8547570,12059701,6976267,8651725,13531062,8362897,4059252,4388870,135952,6744146,4505921,5074372,7483515,2328634,6671798,4233300,1031347,1814769,3907415,2757261,2083836,6963403,4789346,4989914,8486523,6667320,4893595,6958717,6663054,6613571,6781274,8572213,12065053,7048485,7041266,4093846,3702279,8613673,4806082,8577942,6932763,7422633,2564200,8297512,5170769,6539543,10311441,7433473,132504,8497363,4775749,6781245,8264413,5083419,8364140,6609581,6752130,3865219,10343926,8513184,8543946,8464980,8338455,8339825,5157049,8403015,8496352,6690296,8663153,8549013,3843902,13564524,8311608,2626580,8404266,12110140,6813177,4988925,7073339,6975177,8382445,8134972,5172106,8437222,8432776,10351018,4615592,8633896,8467091,8463506,7011381,8285389,7488183,6712823,7492543,12032845,2481383,8495348,7057288,7457013,8475710,6939812,7049942,8582070,8435322,10329368,8509051,8302105,7011365,8580823,7049635,7044428,6747486,12024851,8549065,8255696,6748189,5004691,12011113,8578917,12009852,4283929,4470238,8295496,4698467,8473257,8343502,4955871,6968679,6980490,7413980,8251787,8534523,6798838,6716522,8348649,5158711,8544847,8679171,1210167,2717104,4154485,7051965,3699110,6559308,6650542,8518634,6582809]
},{
"v": "data science",
"c": [35222,152247,4298680,54257,1824590,1895501,85005,4488721,4211928,5096075,4737538,4520344,8535151,3063585,7495000,6985688,1807351,7434866,4382914,8259937,8245997,7049613,7464520,8466901,7010492,8673209,3913390,12049975,6523893,7002422,7051362,8583632,8513363,8586496,12043442,8650354,4409817,13536539,12025995,7065111,6707800,8573953,7060016,8494069,13537407,13534225,8547570,6976267,8651725,13531062,8362897,4388870,135952,4505921,5074372,7483515,2328634,6671798,4233300,1031347,1814769,3907415,2083836,6963403,4789346,4989914,8486523,6667320,4893595,6958717,6663054,6781274,8572213,12065053,7048485,7041266,4093846,3702279,8613673,4806082,6932763,7422633,2564200,8297512,5170769,6539543,10311441,7433473,132504,4775749,6781245,8264413,5083419,8364140,6609581,6752130,3865219,10343926,8543946,8464980,8338455,8339825,5157049,8403015,8496352,6690296,8663153,3843902,13564524,8311608,2626580,8404266,12110140,6813177,4988925,7073339,8382445,8134972,5172106,8437222,8432776,10351018,4615592,8633896,8467091,7011381,8285389,7488183,6712823,7492543,12032845,2481383,8495348,7057288,8475710,6939812,7049942,8582070,8435322,10329368,8509051,8302105,7011365,7049635,7044428,6747486,12024851,8549065,8255696,6748189,12011113,8578917,12009852,4470238,8295496,4698467,8473257,8343502,4955871,6968679,6980490,7413980,8251787,8534523,948567,7033821,8430596,12059701,4059252,6744146,2757261,6613571,8577942,8497363,8513184,8549013,6975177,8463506,7457013,8580823,5004691,4283929,6798838,6716522,8348649,5158711,8544847,8679171,1210167,2717104,4154485,7051965,3699110,6559308,6650542,8518634,6582809.1920463,3110443,1906826,3815052,2707514,98713,4005475,1031227,146272,71992,2089059,4550837,4031033,5052809,6757418,4248279,5073525,3174730,2552968,1848520,8659061,4818441,4955240,4099521,1850887,7497403,4802324]
},{
"v": "solidworks",
"c": [82201, 4341725, 6530171, 4681662, 118184, 124947, 2630131, 2250260, 61812, 4141468, 3147889, 4961405, 2594464, 77896, 4121829, 3920001, 4653946, 1786338, 2226478, 3754008, 2103360, 114468, 2670428, 2710742, 2476645, 7497957, 3069452, 2003588, 12094211, 2411001, 8157623, 3778693, 2392812, 1967898, 3535097, 4328635, 4165935, 8363820, 4987565, 4534306, 3840670, 1811152, 1985614, 3736319, 3209363, 3087078, 3243432, 1833107, 4063889, 3822211, 4678876, 8492486, 6604909, 8475854, 5018024, 3118521, 6538397, 2470616, 6692262, 1800245, 5090428, 2506595, 6524077, 4935951, 8263288, 6647241, 8220909, 4113897, 4340875]
},{
"v": "cad",
"c": [49679, 100277, 1785947, 139337, 125991, 13522865, 4878699, 2667581, 1952538, 1567587, 2710627, 2240795, 124544, 1942609, 730357, 134670, 2710785, 145414, 137723, 2710779, 2143491, 3079640, 4141468, 3818100, 2786625, 1817899, 4091023, 1912837, 1932465, 4674075, 3988478, 2305187, 3821100, 2974178, 3382906, 1176927, 4502777, 4201257, 2710749, 2086515, 2710741, 2643232, 12002055, 1779473, 2395313, 2682228, 4701894, 4099650, 2342292, 2524322, 4531573, 3712105, 8480444, 8555111, 2710774, 4172056, 3312750, 4358541, 3688699, 3678091, 1770600, 4188342, 2710742, 2710765, 4372590, 117409, 2419194, 4454990, 4252136, 7456925, 2311463, 4285555, 4574598, 6788981, 4914766, 1939067, 4289011, 4312706, 12001927, 2710760, 2547228, 2157308, 2710753, 2710762, 4842964, 2710717, 3878507, 3865514, 8451413, 4346897, 730407, 4629912, 3765169, 4445364, 1936179, 4404798, 8346743, 2345519, 7402658, 4851609, 4379178, 5018599, 8263408, 4354447, 6669100, 4184863, 8456871, 3868445, 3944447, 3042272, 6933558, 11900198, 2710755, 4940760, 3598529, 4787313, 8540228, 8557730, 5085310, 4654935, 8273089, 7001553, 4274397, 8406134, 4733555, 8293012, 4356370, 2408950, 3727214, 6647241, 4443082, 3780191, 8264217]
},{
"v": "creo",
"c": [1542977, 3905277, 124946, 1893643, 2374461, 4325696, 6701242, 4037356, 3752615, 4018992, 4277301, 1533807, 8449134, 4654935, 10324474]
},{
"v": "clinical informatics",
"c": [2717236,3274206,3467628,152296,981187,4957257,6624387,7427299,8610012,3257144,4128103]
},{
"v": "machine learning",
"c": [4298680, 961087, 54257, 70219, 4211928, 85005, 45655, 1807351, 137863, 5096075, 1906826, 1834672, 4543555, 8288685, 8604621, 2164457, 8439041, 8259937, 2668462, 1829749, 4059252, 7434866, 8466901, 8404705, 8667046, 8487743, 4065881, 12087068, 1783783, 8458347, 10321162, 7051362, 8513363, 8451012, 8551393, 8592758, 13537875, 8447827, 10383373, 12025995, 13588704, 8583632, 13529560, 4388870, 2328634, 1940519, 70952, 1876896, 4938634, 6671798, 4233300, 6400776, 1575617, 3154702, 2777233, 2333070, 4520519, 2083836, 7473010, 4122785, 8110621, 4893595, 8540447, 6613571, 8404064, 4623444, 4783230, 4252877, 10360142, 8428351, 3668055, 8447258, 12025762, 4872123, 3824966, 8209881, 8341101, 12047633, 8255906, 5189119, 6609581, 6737655, 8421238, 2823433, 5005330, 12072993, 6932013, 7062330, 8341366, 8663153, 4631755, 13517460, 2620499, 6748189, 6813177, 10338933, 8382445, 6400288, 8543946, 5011323, 8343502, 6538990, 8403015, 4468542, 13525485, 8525926, 7049942, 12061193, 8495348, 8475218, 5164201, 6771988, 12013139, 4297709, 4319610, 8631212]
},{
"v": "predictive analytics",
"c": [1849479, 4377095, 5096075, 1005097, 4062654, 1308227, 3994428, 10383373, 2177095, 65647, 7421823, 3221084, 3890298, 5163002, 8426331, 5083419, 5053737, 4644849, 4615592, 5109809, 6502310, 4981203, 5186587, 4855116, 8136126, 4683812, 4868366, 6725675, 4349744, 4486065]
},{
"v": "tableau",
"c": [118463, 2940737, 2492125, 8197127, 2359047, 3123954, 4886139, 12100674, 4959864, 3332374, 7469668, 6946639, 10318143, 5183389, 8194316, 6524624, 12072551, 13528960, 6989365, 6707800, 7493694, 10344985, 4880388, 3416851, 2613271, 3667787, 5064140, 7493892, 2511838, 8110062, 6583763, 10306704, 10309044, 6535521, 4366953, 8285962, 6635112, 6520793, 4603021, 4209292, 3401733, 5179739, 7043630, 3316849, 5053539, 5143502, 4674356, 4350865, 4520499, 10325116, 6804647, 3826042, 8195247, 7018539, 4558522, 6797935, 4294747, 8467337, 10309751, 4665179, 8506048, 3858800, 3342704, 5063046, 4260233, 4919023, 8430183, 3028431, 4510966, 7464972, 3897057, 4052294, 7410941, 8128180, 3911680, 13539068, 4713069, 3176301, 8301858, 7049300, 3990862, 7019236, 6946161, 4335193, 7484178, 8196496, 7493834, 8595007, 8369654, 5108400, 8155127, 6644693, 5040238, 6953799, 8604500]
},{
"v": "saas",
"c": [45151,122612,1962058,3663573,8118346,681087,122748,8630631,4361934,8658432,1435957,77554,80048,3823270,44288,4717528,78846,2055647,8276748,5173820,4377376,3707925,2390582,813517,139116,4749876,2504514,2094399,7499207,4494930,2047872,2326662,2009761,1832274,2208495,3800047,2707082,2288359,2328055,3710861,3220707,4316202,2956070,4628740,2796704,4712009,8595010,8482513,7413547,62857,8362618,6943527,3838259,8156930,6676548,2056644,1831530,4712188,2677625,5173777,2214641,4270049,2107223,8513060,8483614,4445376,8225199,2317659,2105096,2005826,4278269,2069124,4120736,4173068,4116902,13502156,8278867,8415549,3098362,3083726,8468314,2822210,8488996,4451586,8351870,8457097,2667286,6969871,4297725,3968769,3666348,2064178,8245567,8651012,4553748,151072]
},{
"v": "pcb",
"c": [1821753, 2155931, 127720, 3376623, 3736231, 1965864, 2573276, 4584018, 4440291, 2573240, 2071701, 660397, 2767575, 2767572, 1966564, 3752269, 951657, 2086133, 8387132, 993227, 8329036, 134843, 2573253, 2767580, 740467, 6745478, 2395313, 2328370, 4129856, 4454086, 3410120, 3736225, 3334301, 7054773, 4068213, 13400091, 2408205, 2910497, 2193126, 3725710, 6539965, 4417037, 6716211, 6651098, 2989650, 8263408, 4783812, 2406476, 1928388, 7413954, 4469364, 4535950, 4013929, 2863975, 3963086, 3862490, 4132009, 6716261, 2963537, 5010059, 7425478, 5157690]
},{
"v": "matlab",
"c": [134533, 68980, 109866, 1843503, 2484796, 1940519, 3427378, 1010277, 4051154, 3773595, 3772562, 7495803, 1840411, 6769205, 2750043, 4727845, 4307860, 5020557, 2162833, 3128153, 6981077, 6837216, 4551769, 2162883, 2804357, 6723937, 6664849, 6726055, 8323324, 4593513, 4297709]
},{
"v": "scada",
"c": [69124, 4379585, 4412366, 3452357, 4467427, 6674965, 7060098, 4165055, 2105314, 8469319, 7467997, 4436314, 1954767, 3507688, 3893009, 4390068, 3877248, 2812066, 6514517, 3961140, 8280597, 4906738, 4035656, 4931539, 3695287, 8408299, 3950359, 8281890, 4560651, 4351239, 5131903, 3754263, 4482455, 8127180, 4191888, 3925379, 4249769, 4798678]
},{
"v": "epic",
"c": [12031710, 4163564, 3928693, 3024968, 4706019, 8269572, 8636318, 12045457, 2555352, 8665185, 3001883, 1788039, 144831, 2077593, 3001826, 3001857, 1900086, 116614, 130173, 8152171, 4391651, 4437252, 3001868, 4097114, 1966591, 8409173, 4555516, 148315, 4650984, 4055349, 2735176, 3730960, 4925463, 3690145, 4391721, 4507221, 3682274, 3848165, 4171717, 4181533, 3896897, 2820901, 3140966, 1451297, 5016624, 4294809, 8505919, 6569751, 4240228, 3752771, 1854269, 5100270, 3918765, 3001841, 12009222, 1780809, 2916817, 4524961, 7063412, 7040933, 6713603, 4941702, 4909394, 4929604, 4652371, 7026417, 4714521, 8439407, 6507952, 4820430, 5091807, 4500415, 4681290, 8239966, 4272678, 3784679, 3542725, 8505506, 4292451, 5137910, 3742339, 2350774, 4507543, 6755145, 4085403, 4879584, 12013519, 6596165, 4792415, 3933506, 4790224, 4755623, 3413474, 3785718, 3716265, 4181930, 4469435, 4213521]
},{
"v": "hyperion essbase",
"c": [2851403,2905269,1844584,2184775,1853208,2810691,3608515,4332568,8524020,8424740,6786005,6578792,4114519,6552112,5102568,59052,144765,51255,7016899,65483,2192010,89732,3351533,3351542,3282962,4554136,1884383,2978783,932867,3127051,1037167,2749156,1834504,161642,2327359,2133809,3782940,3351560,2072235,65838,4018161,1817459,3809619,4288494,4753532,3975536,3945978,3445088,1859445,3351591,1862821,4383218,2461097,154774,6784040,1800036,3016805,6812352,3787180,3735761,1842946,2567572,1072287,3782305,4783799]
},{
"v": "oracle erp",
"c": [87360,1250847,102815,8616115,741357,2060681,1858476,4162556,2354934,4212375,4144220,2190045,2506192,3772922,1014777,1537267,3723526,3444590,8420463,1056837,4438296,4194478,3784226,4437848,3009132,2616471,3972616]
},{
"v": "graph databases",
"c": [3110443,2552968,1848520,8659061,4818441,4955240,4099521,1850887,7497403,4802324]
},{
"v": "devOps",
"c": [6821178,8611922,8451196,8527046,13589118,10365002,8248806,8652459,13535854,13536033,13525059,10358133,8591579,6585254,6538078,3765470,6781435,13578221,7035008,6740106,6639929,6969255,8413762,6795647,8223813,8469426,7019646,7460188,8409964,10323399,6753631,8438304,6745041,8190645,6618529,7052962,8533601,8141508,6583017,12010552,6723802,12002766,2251895,4121303,61720,2739587,4023355,4361416,1916272,1963650,4152538,2954767,7068108,5085202,4198460,4267588,5023210,3803039,2139262,1111687,6617032,73937,83267,52997,2409724,2419956,4393863,83048,61422,1807528,5100962,4185123,47901,1373887,4435242,1522017,2649947,1927552,2418451,3792547,3732032,2825397,3732005,81065,4200099,3726537,8553150,4504649,7018876,3823995,6727934,8602420,8480655,10321043,12100284,10321162,6961870,13588915,12058465,13589408,12097727,13528625,13509806,8613096,6954964,4879308,2390941,2965738,39951,4776477,4865747,4963563,104499,4455543,3483632,4296687,4331889,4708771,8456323,7473045,7499558,3855263,4727247,8453065,6644263,4576220,5065342,8335211,5099918,5140697,3686453,8513340,8127993,4793904,8350534,6951439,7041295,4743526,4665648,5118866,4109603,6735336,7059691,13539166,1879508,7455797,8138819,8556566,4627807,6708672,10339329,8548984,8241920,6711331,8293324,8145470,4750507,6718236,13532603,2283974,4804649,10349009,7464083,8496352,6922168,13555462,8121342,8468620,3703787,13509040,4405217,6652052,5099457,782147,12024440,7414869,8317725,8406180,4736135,4661929,5085927,8587947,7016782,8274927,6640208,6974191,8130410,8584210,6924260,3254361,8523180,8491572,4520846,4795264,7443337,8426767,8510307,8410737,8266354,7437568,7038044,13566171,8345244,4848124,4156654,6605604,8490251,1913990,10326563,1459277,674227,1916623,8635111,10327747,10358621,8491885,3768419,1493,4882713,6618681,4247713,4546080,4463587,1850215,3400541,7037271,5053383,4249830,4648083,6821201,8210873,2732713,13555080,13501613,12048104,4486925,8287266,3026603]
},{
"v": "real estate",
"c": [121300,35901,48222,2132134,2134471,118487,25454,134657,59,47380,694987,1793554,52908,100904,2118276,1837335,45570,97046,1971627,2335322,4571432,110036,1845003,79765,2132148,2766211,1836254,3282429,125984,1825737,141458,2194829,3438016,2646671,1804746,2141955,7457728,2134496,3242068,2635853,2088661,130454,125634,68240,58856,137743,4161853,2174728,3665399,86105,3874842,3698257,2874736,6785715,1863997,1809076,1690637,4084291,6800569,4347748,2532349,1920371,1405057,8142166,2091354,2753783,2088959,4531187,2235773,6540665,1860964,7493896,3797653,6515213,4760558,13588446,1165817,4057136,3909994,3972927,12096839,2889071,6944536,6667797,7016112,3404009,4380023,6783170,7466761,4531833,7489765,6985260,4532022,5010831,2836783,13536519,2238471,7061879,7498564,8455579,5075638,8543190,1868486,8621639,6670302,4498516,10309673,13569022,3492004,8150345,8506518,4713633,5078159,13518271,8524412,8411592,6795563,8213800,12100527,8305512,7400370,13554704,13525837,3804079,1843020,93874,4311914,1061097,4259508,1313797,4156625,3955440,1956954,3141045,3141290,1937533,2169649,5100741,6732763,3049907,6728810,3761793,8256419,4939749,3822273,763697,3919412,6718054,4069887,6639170,5158226,4107980,8239892,7419737,1828185,4055327,2206242,1406267,1806041,5062956,42337,102525,141223,58171,3306535,2888779,4568317,1778022,2421987,2527409,3561270,2911988,1924331,1690347,3616252,2233518,3383049,3392037,4501889,1462837,3773100,1037447,4529271,2219198,2833860,112005,2939794,99659,3110852,2155342,3725689,4401637,3759325,6943933,2982909,2561790,4341134,1225187,3733311,3689704,3795122,4483730,4069022,4102816,4283908,3917089,144986]
}];
var geoLocalArr = [{"v":"Anniston, Alabama","c":["us%3A45","33.7358","-85.7933"]},{"v":"Athens, Georgia","c":["us%3A50","33.9321","-83.3525"]},{"v":"Lewiston Auburn, Maine","c":["us%3A424","44.0985","-70.1916"]},{"v":"Auburn, Alabama","c":["us%3A58","32.6024","-85.4873"]},{"v":"Birmingham, Alabama","c":["us%3A100","33.4816","-86.859"]},{"v":"Decatur, Alabama","c":["us%3A203","34.5896","-86.9887"]},{"v":"Decatur, Illinois","c":["us%3A204","39.8395","-88.9465"]},{"v":"Dothan, Alabama","c":["us%3A218","31.1481","-85.3718"]},{"v":"Florence, Alabama","c":["us%3A265","34.8305","-87.656"]},{"v":"Florence, South Carolina","c":["us%3A266","34.1838","-79.7728"]},{"v":"Gadsden, Alabama","c":["us%3A288","34.048","-85.9246"]},{"v":"Greenville, South Carolina","c":["us%3A316","34.8472","-82.406"]},{"v":"Greenville, North Carolina","c":["us%3A315","35.5885","-77.3531"]},{"v":"Huntsville, Alabama","c":["us%3A344","34.734","-86.5229"]},{"v":"Mobile, Alabama","c":["us%3A516","30.6888","-88.0453"]},{"v":"Montgomery, Alabama","c":["us%3A524","32.373","-86.3081"]},{"v":"Tuscaloosa, Alabama","c":["us%3A860","33.1969","-87.5627"]},{"v":"Anchorage, Alaska","c":["us%3A38","62.2804","-149.7152"]},{"v":"Flagstaff, Arizona","c":["us%3A262","35.1859","-111.662"]},{"v":"Phoenix, Arizona","c":["us%3A620","33.4511","-112.0774"]},{"v":"Tucson, Arizona","c":["us%3A852","32.2139","-110.9694"]},{"v":"Yuma, Arizona","c":["us%3A936","32.7015","-114.6424"]},{"v":"Benton Harbor, Michigan","c":["us%3A87","42.1086","-86.4234"]},{"v":"Fayetteville, Arkansas","c":["us%3A258","36.052","-94.1534"]},{"v":"Fayetteville, North Carolina","c":["us%3A256","35.0743","-78.8836"]},{"v":"Fort Smith, Arkansas","c":["us%3A272","35.3653","-94.411"]},{"v":"Jacksonville, Florida","c":["us%3A359","30.3375","-81.7686"]},{"v":"Jacksonville, North Carolina","c":["us%3A360","34.7375","-77.4628"]},{"v":"Jonesboro, Arkansas","c":["us%3A370","35.833","-90.6965"]},{"v":"Little Rock, Arkansas","c":["us%3A440","34.7483","-92.2819"]},{"v":"Pine Bluff, Arkansas","c":["us%3A624","34.209","-91.9859"]},{"v":"Bakersfield, California","c":["us%3A68","35.3855","-118.986"]},{"v":"Chico, California","c":["us%3A162","39.7224","-121.8113"]},{"v":"Fresno, California","c":["us%3A284","36.8411","-119.801"]},{"v":"Lancaster, Pennsylvania","c":["us%3A400","40.0766","-76.3107"]},{"v":"Los Angeles","c":["us%3A49","34.0333","-118.2447"]},{"v":"Merced, California","c":["us%3A494","37.2983","-120.4649"]},{"v":"Modesto, California","c":["us%3A517","37.6746","-121.0113"]},{"v":"Orange County, California","c":["us%3A51","33.7877","-117.8423"]},{"v":"Redding, California","c":["us%3A669","40.5605","-122.4116"]},{"v":"Richmond, Virginia","c":["us%3A676","37.5463","-77.4378"]},{"v":"Sacramento, California","c":["us%3A82","38.3774","-121.4444"]},{"v":"Salinas, California","c":["us%3A712","36.6677","-121.6596"]},{"v":"San Diego","c":["us%3A732","32.7185","-117.1593"]},{"v":"San Francisco Bay","c":["us%3A84","37.7195","-122.4411"]},{"v":"San Luis Obispo, California","c":["us%3A746","35.2635","-120.6509"]},{"v":"Santa Barbara, California","c":["us%3A748","34.4197","-119.7078"]},{"v":"Stockton, California","c":["us%3A812","37.9606","-121.2871"]},{"v":"Visalia, California","c":["us%3A878","36.3114","-119.3065"]},{"v":"Yuba City, California","c":["us%3A934","39.1051","-121.6202"]},{"v":"Colorado Springs, Colorado","c":["us%3A172","38.852","-104.7735"]},{"v":"Denver","c":["us%3A34","39.759","-104.9661"]},{"v":"Fort Collins, Colorado","c":["us%3A267","40.5813","-105.1039"]},{"v":"Grand Junction, Colorado","c":["us%3A298","39.0783","-108.5457"]},{"v":"Pueblo, Colorado","c":["us%3A656","38.2879","-104.5848"]},{"v":"Hartford, Connecticut","c":["us%3A327","41.7801","-72.6771"]},{"v":"Mansfield, Ohio","c":["us%3A480","40.7559","-82.5123"]},{"v":"New London Norwich, Connecticut","c":["us%3A552","41.3507","-72.1062"]},{"v":"New London Norwich, Connecticut","c":["us%3A552","41.3507","-72.1062"]},{"v":"Dover, Delaware","c":["us%3A219","39.1564","-75.4955"]},{"v":"Wilmington, North Carolina","c":["us%3A920","34.2726","-77.9633"]},{"v":"Daytona Beach, Florida","c":["us%3A202","29.2012","-81.0371"]},{"v":"Miami Fort Lauderdale","c":["us%3A56","25.8001","-80.281"]},{"v":"Fort Myers, Florida","c":["us%3A270","26.6204","-81.8725"]},{"v":"Fort Pierce, Florida","c":["us%3A271","27.4382","-80.444"]},{"v":"Destin Fort Walton Beach, Florida","c":["us%3A275","30.4487","-86.6254"]},{"v":"Gainesville, Florida","c":["us%3A290","29.6489","-82.325"]},{"v":"Salt Lake City","c":["us%3A716","40.7372","-111.8581"]},{"v":"Lakeland, Florida","c":["us%3A398","28.0381","-81.9392"]},{"v":"Melbourne, Florida","c":["us%3A490","28.3067","-80.6862"]},{"v":"Miami Fort Lauderdale","c":["us%3A56","25.8001","-80.281"]},{"v":"Naples, Florida","c":["us%3A534","25.8555","-81.3872"]},{"v":"Ocala, Florida","c":["us%3A579","29.1989","-82.0874"]},{"v":"Orlando, Florida","c":["us%3A596","28.5559","-81.3535"]},{"v":"West Palm Beach, Florida","c":["us%3A896","26.7165","-80.0679"]},{"v":"Panama City, Florida","c":["us%3A601","30.1606","-85.6494"]},{"v":"Pensacola, Florida","c":["us%3A608","30.4223","-87.2248"]},{"v":"Sarasota, Florida","c":["us%3A751","27.2666","-82.5163"]},{"v":"Tallahassee, Florida","c":["us%3A824","30.4286","-84.2593"]},{"v":"Tampa St. Petersburg, Florida","c":["us%3A828","27.9614","-82.4597"]},{"v":"West Palm Beach, Florida","c":["us%3A896","26.7165","-80.0679"]},{"v":"Albany, New York","c":["us%3A16","42.6149","-73.9708"]},{"v":"Albany, Georgia","c":["us%3A12","31.5464","-84.0783"]},{"v":"Atlanta","c":["us%3A52","33.7498","-84.3168"]},{"v":"Augusta, Georgia","c":["us%3A60","33.0988","-81.2068"]},{"v":"Columbus, Ohio","c":["us%3A184","39.9426","-82.9748"]},{"v":"Columbus, Georgia","c":["us%3A180","32.4245","-84.9481"]},{"v":"Macon, Georgia","c":["us%3A468","32.8095","-83.6168"]},{"v":"Savannah, Georgia","c":["us%3A752","32.0749","-81.0883"]},{"v":"Spokane, Washington","c":["us%3A784","47.6665","-117.4365"]},{"v":"Richland Kennewick Pasco, Washington","c":["us%3A674","46.2492","-119.1044"]},{"v":"Bellingham, Washington","c":["us%3A86","48.7974","-122.4448"]},{"v":"Yakima, Washington","c":["us%3A926","46.6932","-120.4153"]},{"v":"Boise, Idaho","c":["us%3A108","43.5741","-116.2941"]},{"v":"Lewiston Auburn, Maine","c":["us%3A424","44.0985","-70.1916"]},{"v":"Pocatello, Idaho","c":["us%3A634","42.9357","-112.4679"]},{"v":"Chicago","c":["us%3A14","41.9464","-87.7042"]},{"v":"Danville, Virginia","c":["us%3A195","36.6218","-79.4124"]},{"v":"Beaumont Port Arthur, Texas","c":["us%3A83","30.14","-94.1604"]},{"v":"Bloomington, Indiana","c":["us%3A102","39.195","-86.5757"]},{"v":"Bloomington Normal, Illinois","c":["us%3A104","40.4705","-88.9433"]},{"v":"Canton, Ohio","c":["us%3A132","40.7598","-81.35"]},{"v":"Urbana-Champaign, Illinois","c":["us%3A140","40.0746","-88.1691"]},{"v":"Charleston, South Carolina","c":["us%3A144","32.7993","-80.006"]},{"v":"Charleston, West Virginia","c":["us%3A148","38.349","-81.5993"]},{"v":"Harrisburg, Pennsylvania","c":["us%3A324","40.2618","-76.8831"]},{"v":"Lincoln, Nebraska","c":["us%3A436","40.7893","-96.6938"]},{"v":"Bloomington Normal, Illinois","c":["us%3A104","40.4705","-88.9433"]},{"v":"Eugene, Oregon","c":["us%3A240","44.0682","-123.0819"]},{"v":"Medford, Oregon","c":["us%3A489","42.2818","-122.9054"]},{"v":"Corvallis, Oregon","c":["us%3A189","44.5638","-123.2779"]},{"v":"Peoria, Illinois","c":["us%3A612","40.6833","-89.6049"]},{"v":"Tampa St. Petersburg, Florida","c":["us%3A828","27.9614","-82.4597"]},{"v":"Rockford, Illinois","c":["us%3A688","42.2922","-89.1161"]},{"v":"Greensboro Winston-Salem, North Carolina","c":["us%3A312","36.0697","-79.7682"]},{"v":"Springfield, Massachusetts","c":["us%3A800","42.1029","-72.5887"]},{"v":"Springfield, Missouri","c":["us%3A792","37.0169","-93.2022"]},{"v":"Springfield, Illinois","c":["us%3A788","39.8","-89.6495"]},{"v":"Urbana-Champaign, Illinois","c":["us%3A140","40.0746","-88.1691"]},{"v":"Elkhart, Indiana","c":["us%3A233","41.7101","-85.9729"]},{"v":"Evansville, Indiana","c":["us%3A244","37.9718","-87.572"]},{"v":"Fort Wayne, Indiana","c":["us%3A276","41.0707","-85.1543"]},{"v":"Huntington, West Virginia","c":["us%3A340","38.4097","-82.4423"]},{"v":"Indianapolis, Indiana","c":["us%3A348","39.775","-86.1093"]},{"v":"Kokomo, Indiana","c":["us%3A385","40.4988","-86.1453"]},{"v":"Lafayette, Louisiana","c":["us%3A388","30.2361","-92.0083"]},{"v":"Lafayette, Indiana","c":["us%3A392","40.4177","-86.8884"]},{"v":"Madison, Wisconsin","c":["us%3A472","43.0775","-89.3831"]},{"v":"Muncie, Indiana","c":["us%3A528","40.1684","-85.3807"]},{"v":"Nashville, TN","c":["us%3A536","36.1657","-86.7781"]},{"v":"Albany, New York","c":["us%3A16","42.6149","-73.9708"]},{"v":"South Bend, Indiana","c":["us%3A780","41.6727","-86.2535"]},{"v":"Terre Haute, Indiana","c":["us%3A832","39.407","-87.402"]},{"v":"Burlington, Vermont","c":["us%3A130","44.484","-73.2199"]},{"v":"Cedar Rapids, Iowa","c":["us%3A136","41.9804","-91.7098"]},{"v":"Davenport, Iowa","c":["us%3A196","41.5164","-90.6141"]},{"v":"Des Moines, Iowa","c":["us%3A212","41.6727","-93.5722"]},{"v":"Dubuque, Iowa","c":["us%3A220","42.515","-90.6819"]},{"v":"Iowa City, Iowa","c":["us%3A350","41.6649","-91.5151"]},{"v":"Sioux City, Iowa","c":["us%3A772","42.4972","-96.4029"]},{"v":"Sioux City, Iowa","c":["us%3A772","42.4972","-96.4029"]},{"v":"Waterloo, Iowa","c":["us%3A892","42.4778","-92.3661"]},{"v":"Abilene, Texas","c":["us%3A4","32.4682","-99.7182"]},{"v":"Kansas City, Missouri","c":["us%3A376","39.1024","-94.5986"]},{"v":"Lawrence, Kansas","c":["us%3A415","38.959","-95.2499"]},{"v":"Pittsburgh","c":["us%3A628","40.4752","-79.9528"]},{"v":"Salinas, California","c":["us%3A712","36.6677","-121.6596"]},{"v":"Topeka, Kansas","c":["us%3A844","39.0553","-95.6802"]},{"v":"Wichita, Kansas","c":["us%3A904","37.6899","-97.3355"]},{"v":"Wichita Falls, Texas","c":["us%3A908","33.9053","-98.4976"]},{"v":"Bowling Green, KY","c":["us%3A9434","37.0942","-86.1432"]},{"v":"Lexington, Kentucky","c":["us%3A428","38.0174","-84.4854"]},{"v":"Louisville, Kentucky","c":["us%3A452","38.2507","-85.7476"]},{"v":"Owensboro, Kentucky","c":["us%3A599","37.7513","-87.1554"]},{"v":"Alexandria, Louisiana","c":["us%3A22","31.3048","-92.5089"]},{"v":"Baton Rouge, Louisiana","c":["us%3A76","30.5052","-91.1181"]},{"v":"Houma, Louisiana","c":["us%3A335","29.5943","-90.7548"]},{"v":"Lake Charles, Louisiana","c":["us%3A396","30.2642","-93.3265"]},{"v":"Monroe, Louisiana","c":["us%3A520","32.5286","-92.1061"]},{"v":"New Orleans","c":["us%3A556","29.9605","-90.0753"]},{"v":"Shreveport, Louisiana","c":["us%3A768","32.5037","-93.7487"]},{"v":"Bangor, Maine","c":["us%3A73","44.8242","-68.7918"]},{"v":"Portland, Oregon","c":["us%3A79","45.5143","-122.599"]},{"v":"Portland, Maine","c":["us%3A640","43.6606","-70.2589"]},{"v":"New York City","c":["us%3A70","40.7685","-73.9588"]},{"v":"Rochester, New York","c":["us%3A684","43.1616","-77.6068"]},{"v":"Albany, New York","c":["us%3A16","42.6149","-73.9708"]},{"v":"Buffalo Niagara, New York","c":["us%3A128","42.8614","-78.8206"]},{"v":"Syracuse, New York","c":["us%3A816","43.041","-76.1489"]},{"v":"Ithaca, New York","c":["us%3A96","42.0811","-75.8977"]},{"v":"York, Pennsylvania","c":["us%3A928","39.9635","-76.7269"]},{"v":"Utica, New York","c":["us%3A868","43.0871","-75.2315"]},{"v":"Glens Falls, New York","c":["us%3A292","43.3115","-73.6448"]},{"v":"Baltimore, Maryland","c":["us%3A7416","39.2946","-76.6252"]},{"v":"Columbia, South Carolina","c":["us%3A176","33.9903","-80.9997"]},{"v":"Columbia, Missouri","c":["us%3A174","38.9348","-92.3639"]},{"v":"Cumberland, Maryland","c":["us%3A190","39.5992","-78.8444"]},{"v":"Barnstable Yarmouth, Massachusetts","c":["us%3A74","41.6983","-70.3001"]},{"v":"Boston","c":["us%3A7","42.3231","-71.0846"]},{"v":"Medford, Oregon","c":["us%3A489","42.2818","-122.9054"]},{"v":"Pittsfield, Massachusetts","c":["us%3A632","42.3929","-73.2285"]},{"v":"Benton Harbor, Michigan","c":["us%3A87","42.1086","-86.4234"]},{"v":"Detroit","c":["us%3A35","42.3773","-82.9513"]},{"v":"Grand Rapids, Michigan","c":["us%3A300","42.9659","-85.6527"]},{"v":"Jacksonville, Florida","c":["us%3A359","30.3375","-81.7686"]},{"v":"Jackson, Mississippi","c":["us%3A356","32.2935","-90.1867"]},{"v":"Jackson, Tennessee","c":["us%3A358","35.6102","-88.814"]},{"v":"Jacksonville, North Carolina","c":["us%3A360","34.7375","-77.4628"]},{"v":"Jackson, Michigan","c":["us%3A352","42.2545","-84.3875"]},{"v":"Kalamazoo, Michigan","c":["us%3A372","42.2736","-85.5457"]},{"v":"Lansing, Michigan","c":["us%3A404","42.7635","-84.558"]},{"v":"Odessa Midland, Texas","c":["us%3A580","31.9896","-102.0626"]},{"v":"Saginaw, Michigan","c":["us%3A696","43.3485","-84.0326"]},{"v":"Austin, Texas","c":["us%3A64","30.3085","-97.6849"]},{"v":"Duluth, Minnesota","c":["us%3A224","46.7685","-92.0865"]},{"v":"Minneapolis-St. Paul","c":["us%3A512","44.9835","-93.2683"]},{"v":"Rochester, New York","c":["us%3A684","43.1616","-77.6068"]},{"v":"Rochester, Minnesota","c":["us%3A682","44.0496","-92.4896"]},{"v":"Richmond, Virginia","c":["us%3A676","37.5463","-77.4378"]},{"v":"Roanoke, Virginia","c":["us%3A680","37.2742","-79.9579"]},{"v":"Charlottesville, Virginia","c":["us%3A154","38.0401","-78.4851"]},{"v":"Huntington, West Virginia","c":["us%3A340","38.4097","-82.4423"]},{"v":"Charleston, West Virginia","c":["us%3A148","38.349","-81.5993"]},{"v":"Lynchburg, Virginia","c":["us%3A464","37.353","-79.1557"]},{"v":"Biloxi, Mississippi","c":["us%3A92","30.511","-88.9681"]},{"v":"Hattiesburg, Mississippi","c":["us%3A328","31.3146","-89.3065"]},{"v":"Philadelphia","c":["us%3A77","39.8893","-75.1782"]},{"v":"Billings, Montana","c":["us%3A88","45.7745","-108.5005"]},{"v":"Great Falls, Montana","c":["us%3A304","47.5098","-111.2734"]},{"v":"Joplin, Missouri","c":["us%3A371","37.0969","-94.5051"]},{"v":"Albuquerque, New Mexico","c":["us%3A20","35.1787","-106.5102"]},{"v":"Missoula, Montana","c":["us%3A514","46.8563","-114.0252"]},{"v":"Norfolk, Virginia","c":["us%3A572","36.8546","-76.2143"]},{"v":"Omaha","c":["us%3A592","41.259","-95.9409"]},{"v":"Las Vegas, Nevada","c":["us%3A412","36.1721","-115.1224"]},{"v":"Reno, Nevada","c":["us%3A672","39.5268","-119.8113"]},{"v":"Raleigh-Durham, North Carolina","c":["us%3A664","35.7076","-78.6563"]},{"v":"Fort Wayne, Indiana","c":["us%3A276","41.0707","-85.1543"]},{"v":"Las Cruces, New Mexico","c":["us%3A410","32.2901","-106.7539"]},{"v":"Santa Fe, New Mexico","c":["us%3A749","35.6975","-105.9821"]},{"v":"Buffalo Niagara, New York","c":["us%3A128","42.8614","-78.8206"]},{"v":"Elmira, New York","c":["us%3A234","42.1008","-76.812"]},{"v":"Glens Falls, New York","c":["us%3A292","43.3115","-73.6448"]},{"v":"Ithaca, New York","c":["us%3A96","42.0811","-75.8977"]},{"v":"Jamestown, New York","c":["us%3A361","42.0928","-79.244"]},{"v":"Johnstown, Pennsylvania","c":["us%3A368","40.326","-78.9141"]},{"v":"New York City","c":["us%3A70","40.7685","-73.9588"]},{"v":"Syracuse, New York","c":["us%3A816","43.041","-76.1489"]},{"v":"Utica, New York","c":["us%3A868","43.0871","-75.2315"]},{"v":"Asheville, North Carolina","c":["us%3A48","35.6004","-82.4918"]},{"v":"Goldsboro, North Carolina","c":["us%3A294","35.3683","-78.0929"]},{"v":"Greensboro Winston-Salem, North Carolina","c":["us%3A312","36.0697","-79.7682"]},{"v":"Hickory Lenoir, North Carolina","c":["us%3A329","35.7576","-81.3289"]},{"v":"Raleigh-Durham, North Carolina","c":["us%3A664","35.7076","-78.6563"]},{"v":"Rocky Mount, North Carolina","c":["us%3A689","35.9426","-77.7608"]},{"v":"Greensboro Winston-Salem, North Carolina","c":["us%3A312","36.0697","-79.7682"]},{"v":"Bismarck, North Dakota","c":["us%3A101","46.7231","-100.678"]},{"v":"Fargo, North Dakota","c":["us%3A252","46.9209","-96.8318"]},{"v":"Grand Forks, North Dakota","c":["us%3A296","47.901","-97.0446"]},{"v":"Cleveland Akron, Ohio","c":["us%3A28","41.4946","-81.667"]},{"v":"Cincinnati, KY","c":["us%3A21","39.1432","-84.5217"]},{"v":"Cleveland Akron, Ohio","c":["us%3A28","41.4946","-81.667"]},{"v":"Dayton, Ohio","c":["us%3A200","39.7563","-84.1895"]},{"v":"Daytona Beach, Florida","c":["us%3A202","29.2012","-81.0371"]},{"v":"Lexington, Kentucky","c":["us%3A428","38.0174","-84.4854"]},{"v":"Owensboro, Kentucky","c":["us%3A599","37.7513","-87.1554"]},{"v":"Lima, Ohio","c":["us%3A432","40.7399","-84.1459"]},{"v":"Steubenville, Ohio","c":["us%3A808","40.398","-80.6617"]},{"v":"Toledo, Ohio","c":["us%3A840","41.7207","-83.5694"]},{"v":"Youngstown, Ohio","c":["us%3A932","41.0774","-80.6409"]},{"v":"Enid, Oklahoma","c":["us%3A235","36.4028","-97.8623"]},{"v":"Lawton, Oklahoma","c":["us%3A420","34.5915","-98.3698"]},{"v":"Oklahoma City, Oklahoma","c":["us%3A588","35.4726","-97.5199"]},{"v":"Tulsa, Oklahoma","c":["us%3A856","36.1539","-95.9954"]},{"v":"South Bend, Indiana","c":["us%3A780","41.6727","-86.2535"]},{"v":"Corvallis, Oregon","c":["us%3A189","44.5638","-123.2779"]},{"v":"Eugene, Oregon","c":["us%3A240","44.0682","-123.0819"]},{"v":"Allentown, Pennsylvania","c":["us%3A24","40.7177","-75.5335"]},{"v":"Altoona, Pennsylvania","c":["us%3A27","40.5052","-78.3905"]},{"v":"Erie, Pennsylvania","c":["us%3A236","42.126","-80.086"]},{"v":"Fort Wayne, Indiana","c":["us%3A276","41.0707","-85.1543"]},{"v":"Evansville, Indiana","c":["us%3A244","37.9718","-87.572"]},{"v":"South Bend, Indiana","c":["us%3A780","41.6727","-86.2535"]},{"v":"Lafayette, Indiana","c":["us%3A392","40.4177","-86.8884"]},{"v":"Bloomington, Indiana","c":["us%3A102","39.195","-86.5757"]},{"v":"Terre Haute, Indiana","c":["us%3A832","39.407","-87.402"]},{"v":"Elkhart, Indiana","c":["us%3A233","41.7101","-85.9729"]},{"v":"Muncie, Indiana","c":["us%3A528","40.1684","-85.3807"]},{"v":"Kokomo, Indiana","c":["us%3A385","40.4988","-86.1453"]},{"v":"Pittsburgh","c":["us%3A628","40.4752","-79.9528"]},{"v":"Reading, Pennsylvania","c":["us%3A668","40.3306","-75.9192"]},{"v":"Scranton, Pennsylvania","c":["us%3A756","41.4019","-75.6376"]},{"v":"Sharon, Pennsylvania","c":["us%3A761","41.2316","-80.4993"]},{"v":"State College, Pennsylvania","c":["us%3A805","40.7925","-77.8523"]},{"v":"Williamsport, Pennsylvania","c":["us%3A914","41.2667","-76.9583"]},{"v":"Providence, Rhode Island","c":["us%3A648","41.82","-71.4158"]},{"v":"Myrtle Beach, South Carolina","c":["us%3A533","33.7587","-78.8044"]},{"v":"Sumter, South Carolina","c":["us%3A814","33.9137","-80.3542"]},{"v":"Rapid City, South Dakota","c":["us%3A666","44.1415","-103.2052"]},{"v":"Sioux Falls, South Dakota","c":["us%3A776","43.5374","-96.6864"]},{"v":"Chattanooga, Tennessee","c":["us%3A156","34.9981","-85.331"]},{"v":"Clarksville, Tennessee","c":["us%3A166","36.5853","-87.4186"]},{"v":"Johnson City, Tennessee","c":["us%3A366","36.3339","-82.3408"]},{"v":"Knoxville, Tennessee","c":["us%3A384","35.9625","-83.9209"]},{"v":"Memphis","c":["us%3A492","35.144","-90.048"]},{"v":"Amarillo, Texas","c":["us%3A32","35.1697","-101.9266"]},{"v":"Brownsville, Texas","c":["us%3A124","25.9221","-97.4612"]},{"v":"Bryan College Station, Texas","c":["us%3A126","30.6913","-96.3714"]},{"v":"Bryan College Station, Texas","c":["us%3A126","30.6913","-96.3714"]},{"v":"Corpus Christi, Texas","c":["us%3A188","27.8262","-97.3857"]},{"v":"Dallas Fort Worth","c":["us%3A31","32.7673","-96.7776"]},{"v":"Sherman Denison, Texas","c":["us%3A764","33.6435","-96.6075"]},{"v":"El Paso, Texas","c":["us%3A232","31.7584","-106.4783"]},{"v":"Dallas Fort Worth","c":["us%3A31","32.7673","-96.7776"]},{"v":"Houston, Texas","c":["us%3A42","29.9067","-95.3334"]},{"v":"Killeen Temple, Texas","c":["us%3A381","31.1164","-97.7278"]},{"v":"Laredo, Texas","c":["us%3A408","27.5155","-99.4986"]},{"v":"Longview, Texas","c":["us%3A442","32.5178","-94.7303"]},{"v":"Lubbock, Texas","c":["us%3A460","33.5865","-101.8606"]},{"v":"Tyler, Texas","c":["us%3A864","32.3254","-95.2922"]},{"v":"Victoria, Texas","c":["us%3A875","28.809","-96.9993"]},{"v":"Waco, Texas","c":["us%3A880","31.5525","-97.1396"]},{"v":"McAllen, Texas","c":["us%3A488","26.2154","-98.2359"]},{"v":"Odessa Midland, Texas","c":["us%3A580","31.9896","-102.0626"]},{"v":"Beaumont Port Arthur, Texas","c":["us%3A83","30.14","-94.1604"]},{"v":"San Angelo, Texas","c":["us%3A720","31.4782","-100.4818"]},{"v":"San Antonio, Texas","c":["us%3A724","29.4711","-98.5356"]},{"v":"Sherman Denison, Texas","c":["us%3A764","33.6435","-96.6075"]},{"v":"Killeen Temple, Texas","c":["us%3A381","31.1164","-97.7278"]},{"v":"Texarkana, Texas","c":["us%3A836","33.4669","-94.0774"]},{"v":"Wichita Falls, Texas","c":["us%3A908","33.9053","-98.4976"]},{"v":"Logan, KY","c":["us%3A9432","36.8453","-86.8823"]},{"v":"Provo, Utah","c":["us%3A652","40.2319","-111.6755"]},{"v":"Salt Lake City","c":["us%3A716","40.7372","-111.8581"]},{"v":"Charlottesville, Virginia","c":["us%3A154","38.0401","-78.4851"]},{"v":"Lynchburg, Virginia","c":["us%3A464","37.353","-79.1557"]},{"v":"Roanoke, Virginia","c":["us%3A680","37.2742","-79.9579"]},{"v":"Bellingham, Washington","c":["us%3A86","48.7974","-122.4448"]},{"v":"Richland Kennewick Pasco, Washington","c":["us%3A674","46.2492","-119.1044"]},{"v":"Richland Kennewick Pasco, Washington","c":["us%3A674","46.2492","-119.1044"]},{"v":"Richland Kennewick Pasco, Washington","c":["us%3A674","46.2492","-119.1044"]},{"v":"Seattle","c":["us%3A91","47.6339","-122.3476"]},{"v":"Spokane, Washington","c":["us%3A784","47.6665","-117.4365"]},{"v":"Yakima, Washington","c":["us%3A926","46.6932","-120.4153"]},{"v":"Parkersburg, West Virginia","c":["us%3A602","39.2644","-81.5354"]},{"v":"Charleston, South Carolina","c":["us%3A144","32.7993","-80.006"]},{"v":"Wheeling, West Virginia","c":["us%3A900","40.1027","-80.6476"]},{"v":"Janesville Beloit, Wisconsin","c":["us%3A362","42.7355","-89.0405"]},{"v":"Eau Claire, Wisconsin","c":["us%3A229","44.784","-91.4877"]},{"v":"Green Bay, Wisconsin","c":["us%3A308","44.482","-88.0205"]},{"v":"Janesville Beloit, Wisconsin","c":["us%3A362","42.7355","-89.0405"]},{"v":"La Crosse, Wisconsin","c":["us%3A387","43.7989","-91.2175"]},{"v":"Milwaukee","c":["us%3A63","42.9959","-87.9944"]},{"v":"Oshkosh, Wisconsin","c":["us%3A46","43.9946","-88.526"]},{"v":"Sheboygan, Wisconsin","c":["us%3A762","43.741","-87.7247"]},{"v":"Wausau, Wisconsin","c":["us%3A894","44.9654","-89.7066"]},{"v":"Casper, Wyoming","c":["us%3A135","42.8406","-106.2806"]},{"v":"Cheyenne, Wyoming","c":["us%3A158","41.2191","-104.6612"]},{"v":"Ottawa, Canada","c":["%3A4884","45.5375","-76.0485"]},{"v":"British Columbia, Canada","c":["ca%3A4873","50.5402","-116.0019"]},{"v":"Halifax, Canada","c":["ca%3A4874","44.6523","-63.9997"]},{"v":"Rotterdam, Netherlands","c":["nl%3A5908","51.826","4.4766"]},{"v":"The Hague, Netherlands","c":["nl%3A5688","51.9017","4.1625"]},{"v":"Utrecht, Netherlands","c":["nl%3A5690","52.0283","5.1681"]},{"v":"Nijmegen, Netherlands","c":["nl%3A5681","51.7767","5.9361"]},{"v":"Eindhoven, Netherlands","c":["nl%3A5668","51.47","5.5528"]},{"v":"Apeldoorn, Netherlands","c":["nl%3A5665","52.3475","5.9833"]},{"v":"Groninge, Netherlands","c":["nl%3A5673","53.2533","6.6681"]},{"v":"Almere Stad, Netherlands","c":["nl%3A5663","52.7033","5.2917"]},{"v":"Enschede, Netherlands","c":["nl%3A5669","52.26","6.7111"]},{"v":"Tilburg, Netherlands","c":["nl%3A5907","51.6242","5.1778"]},{"v":"Breda, Netherlands","c":["nl%3A5906","51.5983","4.7125"]},{"v":"Maastricht, Netherlands","c":["nl%3A7417","50.9058","5.8833"]},{"v":"Delft, Netherlands","c":["nl%3A5667","52.20136","5.4619117"]},{"v":"De Velden, Netherlands","c":["nl%3A5661","52.20136","5.4619117"]},{"v":"Bergen op Zoom, Netherlands","c":["nl%3A5666","52.20136","5.4619117"]},{"v":"Alkmaar, Netherlands","c":["nl%3A5662","52.20136","5.4619117"]},{"v":"Friesland, Netherlands","c":["nl%3A5670","52.20136","5.4619117"]},{"v":"Frankfurt Am Main, Germany","c":["de%3A4966","50.0773","8.6143"]},{"v":"Munich, Germany","c":["de%3A5000","48.2043","11.5585"]},{"v":"Berlin, Germany","c":["de%3A4944","52.4924","13.3908"]},{"v":"Hamburg, Germany","c":["de%3A4977","53.6108","10.0131"]},{"v":"Stuttgart, Germany","c":["de%3A5026","48.7667","9.1833"]},{"v":"Nurnberg, Germany","c":["de%3A5007","49.483","11.004"]},{"v":"Hannover, Germany","c":["de%3A4980","52.2619","9.7663"]},{"v":"Mannheim, Germany","c":["de%3A4998","49.3465","8.149"]},{"v":"Bielefeld, Germany","c":["de%3A4945","52.0118","8.5202"]},{"v":"Bremen, Germany","c":["de%3A4950","53.0543","8.7457"]},{"v":"Freiburg, Germany","c":["de%3A4968","47.9333","7.95"]},{"v":"Leipzig, Germany","c":["de%3A4995","51.2172","12.3144"]},{"v":"Essen, Germany","c":["de%3A4964","51.7287","7.1666"]},{"v":"Saarbrucken, Germany","c":["de%3A5021","49.5167","7.1"]},{"v":"Dresden, Germany","c":["de%3A4958","51.0967","13.736"]},{"v":"Ulm, Germany","c":["de%3A5029","48.2667","10.0"]},{"v":"Dortmund, Germany","c":["de%3A4957","51.598","7.7694"]},{"v":"Kassel, Germany","c":["de%3A4985","51.1277","9.541"]},{"v":"Lyon, France","c":["fr%3A5210","45.7259","4.8071"]},{"v":"Marseille, France","c":["fr%3A5211","43.5283","5.4497"]},{"v":"Lille, France","c":["fr%3A5205","50.4146","3.054"]},{"v":"Toulouse, France","c":["fr%3A5249","43.6043","1.4437"]},{"v":"Nice, France","c":["fr%3A5221","43.7921","7.0403"]},{"v":"Bordeaux, France","c":["fr%3A5174","44.9067","-0.4742"]},{"v":"Nantes, France","c":["fr%3A5220","47.2077","-1.5033"]},{"v":"Montpellier, France","c":["fr%3A5216","43.729","3.8136"]},{"v":"Strasbourg, France","c":["fr%3A5246","48.5617","7.5001"]},{"v":"Metz, France","c":["fr%3A5213","48.9866","6.2178"]},{"v":"Rennes, France","c":["fr%3A5237","48.357","-1.7149"]},{"v":"Grenoble, France","c":["fr%3A5199","45.2333","5.8"]},{"v":"Rouen, France","c":["fr%3A5239","49.3136","1.2046"]},{"v":"Le Havre, France","c":["fr%3A5203","49.2782","0.1105"]},{"v":"Chambery, France","c":["fr%3A5186","45.8799","6.1775"]},{"v":"Dijon, France","c":["fr%3A5196","47.2319","5.0621"]},{"v":"Orleans, France","c":["fr%3A5226","47.9029","1.9039"]},{"v":"Angers, France","c":["fr%3A5166","47.4988","-0.4302"]},{"v":"Birmingham, United Kingdom","c":["gb%3A4544","52.45","-1.883"]},{"v":"Manchester, United Kingdom","c":["gb%3A4608","53.483","-2.267"]},{"v":"Reading, United Kingdom","c":["gb%3A4625","51.3891","-1.1049"]},{"v":"Glasgow, United Kingdom","c":["gb%3A4579","55.8663","-4.2734"]},{"v":"Edinburgh, United Kingdom","c":["gb%3A4574","55.867","-3.15"]},{"v":"Bristol, United Kingdom","c":["gb%3A4552","51.42","-2.65"]},{"v":"Guildford, United Kingdom","c":["gb%3A4582","51.267","-0.733"]},{"v":"Nottingham, United Kingdom","c":["gb%3A4613","53.0148","-0.9562"]},{"v":"Belfast, United Kingdom","c":["gb%3A4553","54.56","-6.35"]},{"v":"Leeds, United Kingdom","c":["gb%3A4606","53.82","-1.57"]},{"v":"Newcastle upon Tyne, United Kingdom","c":["gb%3A4612","55.05","-1.65"]},{"v":"Sheffield, United Kingdom","c":["gb%3A4628","53.36","-1.45"]},{"v":"Brighton, United Kingdom","c":["gb%3A4550","50.83","-0.14"]},{"v":"Coventry, United Kingdom","c":["gb%3A4562","52.3501","-1.502"]},{"v":"Leicester, United Kingdom","c":["gb%3A4603","52.63","-1.13"]},{"v":"Oxford, United Kingdom","c":["gb%3A4618","51.7668","-1.2082"]},{"v":"London, United Kingdom","c":["gb%3A4573","51.51","-0.11"]},{"v":"London, Canada","c":["ca%3A4869","43.3572","-81.1442"]},{"v":"Montreal, Canada","c":["ca%3A4863","45.0826","-73.1493"]},{"v":"Ontario, Canada","c":["ca%3A4864","45.4231","-75.1156"]},{"v":"Vancouver, Canada","c":["ca%3A4880","49.4007","-123.3189"]},{"v":"Calgary, Canada","c":["ca%3A4882","50.974","-113.7611"]},{"v":"Quebec, Canada","c":["ca%3A4875","46.8524","-72.0259"]},{"v":"Edmonton, Canada","c":["ca%3A4872","53.9385","-113.3568"]},{"v":"Kitchener, Canada","c":["ca%3A4865","43.138","-80.703"]},{"v":"Alberta, Canada","c":["ca%3A4871","54.1975","-113.0385"]},{"v":"Ciudad Nezahualcoyotl, Mexico","c":["mx%3A5916","19.2178","-98.9881"]},{"v":"Puebla de Zaragoza, Mexico","c":["mx%3A5925","19.0675","-97.9659"]},{"v":"Guadalajara, Mexico","c":["mx%3A5947","20.2995","-103.2555"]},{"v":"Ecatepec, Mexico","c":["mx%3A5915","20.6482","-99.139"]},{"v":"Monterrey, Mexico","c":["mx%3A5944","25.9012","-99.363"]},{"v":"Querétaro, Mexico","c":["mx%3A5924","20.7026","-100.2647"]},{"v":"Toluca, Mexico","c":["mx%3A5958","18.8585","-99.9661"]},{"v":"Ciudad Lopez Mateos, Mexico","c":["mx%3A5938","19.8236","-99.2889"]},{"v":"Zapopan, Mexico","c":["mx%3A5939","20.6691","-104.0011"]},{"v":"Merida, Mexico","c":["mx%3A5917","20.4963","-89.5891"]},{"v":"Veracruz, Mexico","c":["mx%3A5923","19.0298","-96.5021"]},{"v":"Leon, Mexico","c":["mx%3A5937","20.924","-100.8956"]},{"v":"Chihuahua, Mexico","c":["mx%3A5956","18.9639","-103.8306"]},{"v":"Guadalupe, Mexico","c":["mx%3A5943","25.5185","-99.7659"]},{"v":"Naucalpan de Juarez, Mexico","c":["mx%3A5955","19.4158","-99.4775"]},{"v":"Oaxaca de Juarez, Mexico","c":["mx%3A5927","16.7544","-96.8192"]},{"v":"Acapulco de Juarez, Mexico","c":["mx%3A5935","17.205","-99.4969"]},{"v":"Aguascalientes, Mexico","c":["mx%3A5910","22.1657","-102.5578"]},{"v":"Zaragoza Area, Spain","c":["es%3A5160","41.6561","-0.8773"]},{"v":"Zaragoza, Spain","c":["es%3A5161","41.3818","-1.5926"]},{"v":"Barcelona, Spain","c":["es%3A5064","41.5965","2.0982"]},{"v":"Valencia, Spain","c":["es%3A5152","39.4","-0.4167"]},{"v":"Sevilla, Spain","c":["es%3A5142","37.3222","-6.0586"]},{"v":"Murcia, Spain","c":["es%3A5118","38.0333","-1.0167"]},{"v":"Bilbao, Spain","c":["es%3A5065","43.0348","-3.0721"]},{"v":"Malaga, Spain","c":["es%3A5119","36.9536","-4.4418"]},{"v":"Santiago De Compostela, Spain","c":["es%3A5139","42.95","-9.1833"]},{"v":"Vigo, Spain","c":["es%3A5156","42.3413","-8.4529"]},{"v":"Pamplona, Spain","c":["es%3A5096","42.8169","-1.6432"]},{"v":"Granada, Spain","c":["es%3A5086","37.2763","-3.5726"]},{"v":"Palma, Spain","c":["es%3A5127","39.6201","2.836"]},{"v":"Gijon, Spain","c":["es%3A5084","43.3084","-5.7141"]},{"v":"A Coruna, Spain","c":["es%3A5046","43.3139","-8.1778"]},{"v":"Valladolid, Spain","c":["es%3A5154","41.5815","-4.7233"]},{"v":"Santa Cruz De Tenerife, Spain","c":["es%3A5136","28.3613","-16.492"]},{"v":"Tarragona, Spain","c":["es%3A5145","41.3485","0.9567"]},{"v":"Cordoba, Spain","c":["es%3A5079","37.9426","-4.6757"]},{"v":"Almeria, Spain","c":["es%3A5054","37.0686","-2.3234"]},{"v":"Santa Cruz De Tenerife Area, Spain","c":["es%3A5137","28.4924","-17.8453"]},{"v":"Porto, Portugal","c":["pt%3A7397","41.1546","-8.5134"]},{"v":"Braga, Portugal","c":["pt%3A7404","41.5731","-8.3993"]},{"v":"Coimbra, Portugal","c":["pt%3A7412","40.2105","-8.3853"]},{"v":"Aveiro, Portugal","c":["pt%3A7406","40.6176","-8.6223"]},{"v":"Faro, Portugal","c":["pt%3A7394","37.0596","-7.9277"]},{"v":"Leiria, Portugal","c":["pt%3A7407","39.7434","-8.8421"]},{"v":"Portimão, Portugal","c":["pt%3A7398","37.1386","-8.5476"]},{"v":"Monsanto, Portugal","c":["pt%3A7409","39.4503","-8.68"]},{"v":"Madeira, Portugal","c":["pt%3A7415","32.7932","-16.872"]},{"v":"Azores, Portugal","c":["pt%3A7414","38.6848","-27.2367"]},{"v":"Viseu, Portugal","c":["pt%3A7399","40.6493","-7.9413"]},{"v":"Caldas da Rainha, Portugal","c":["pt%3A7413","39.3501","-9.1794"]},{"v":"Evora, Portugal","c":["pt%3A7408","38.5771","-7.927"]},{"v":"Santarem, Portugal","c":["pt%3A7410","39.2343","-8.7173"]},{"v":"Castelo Branco, Portugal","c":["pt%3A7400","39.8281","-7.5149"]},{"v":"Ponte do Lima, Portugal","c":["pt%3A7402","41.9072","-8.57"]},{"v":"Sequeira, Portugal","c":["pt%3A7411","40.5279","-7.2573"]},{"v":"Braganca, Portugal","c":["pt%3A7401","41.7803","-6.7766"]},{"v":"Lesser Poland District, Limanowa County, Poland","c":["pl%3A8453","49.6429","20.5035"]},{"v":"Cracow, Lesser Poland District, Poland","c":["pl%3A8447","50.031","19.9429"]},{"v":"Wroclaw, Lower Silesian District, Poland","c":["pl%3A8404","51.1017","17.0599"]},{"v":"Poznan, Greater Poland District, Poland","c":["pl%3A8355","52.4136","16.8374"]},{"v":"Gdansk, Pomeranian District, Poland","c":["pl%3A8320","54.3376","18.7197"]},{"v":"Lodz, Lodz District, Poland","c":["pl%3A8274","51.763","19.4611"]},{"v":"Gdynia, Pomeranian District, Poland","c":["pl%3A8332","54.3488","18.6541"]},{"v":"Katowice, Silesian District, Poland","c":["pl%3A8216","50.2133","19.007"]},{"v":"Szczecin, West Pomeranian District, Poland","c":["pl%3A8302","53.3861","14.6544"]},{"v":"Masovian District, Piaseczno County, Poland","c":["pl%3A8154","51.9813","20.8329"]},{"v":"Lublin, Lublin District, Poland","c":["pl%3A8244","51.2368","22.62"]},{"v":"Masovian District, Pruszkow County, Poland","c":["pl%3A8146","52.1557","20.9221"]},{"v":"Greater Poland District, Poznan County, Poland","c":["pl%3A8342","52.5411","16.9447"]},{"v":"Bydgoszcz, Kuyavian-Pomeranian District, Poland","c":["pl%3A8237","53.1302","18.0382"]},{"v":"Gliwice, Silesian District, Poland","c":["pl%3A8218","50.2795","18.6993"]},{"v":"Bialystok, Podlaskie District, Poland","c":["pl%3A8136","53.1128","23.1899"]},{"v":"Torun, Kuyavian-Pomeranian District, Poland","c":["pl%3A8238","53.0138","18.6016"]},{"v":"Masovian District, Wolomin County, Poland","c":["pl%3A8170","52.9674","21.2492"]},{"v":"Masovian District, Warsaw West County, Poland","c":["pl%3A8167","52.2596","20.8341"]},{"v":"Rome, Italy","c":["it%3A5636","41.9347","12.9903"]},{"v":"Turin, Italy","c":["it%3A5652","45.2088","7.6463"]},{"v":"Naples, Italy","c":["it%3A5619","40.7839","14.3708"]},{"v":"Bologna, Italy","c":["it%3A5587","44.4756","11.2749"]},{"v":"Florence, Italy","c":["it%3A5599","43.8113","11.2954"]},{"v":"Bari, Italy","c":["it%3A5583","40.897","16.8433"]},{"v":"Venice, Italy","c":["it%3A5657","45.6206","12.5418"]},{"v":"Genoa, Italy","c":["it%3A5602","44.4751","8.8868"]},{"v":"Varese, Italy","c":["it%3A5655","45.778","8.7941"]},{"v":"Verona, Italy","c":["it%3A5658","45.5046","10.8421"]},{"v":"Palermo, Italy","c":["it%3A5623","38.0512","13.5304"]},{"v":"Brescia, Italy","c":["it%3A5589","45.5848","10.2795"]},{"v":"Padova, Italy","c":["it%3A5622","45.3362","11.7361"]},{"v":"Treviso, Italy","c":["it%3A5650","45.7532","12.1717"]},{"v":"Modena, Italy","c":["it%3A5617","44.531","10.8689"]},{"v":"Bergamo, Italy","c":["it%3A5586","45.696","9.735"]},{"v":"Salerno, Italy","c":["it%3A5645","40.5285","15.1051"]},{"v":"Catania, Italy","c":["it%3A5593","37.6154","15.078"]},{"v":"Helsinki, Finland","c":["fi%3A9355","60.1969","24.2647"]},{"v":"Luxembourg, Belgium","c":["be%3A4924","49.8667","5.3833"]},{"v":"Antwerp, Belgium","c":["be%3A4918","51.0","4.75"]},{"v":"Liege, Belgium","c":["be%3A4923","50.6167","5.5333"]},{"v":"Gent, Belgium","c":["be%3A4922","50.9667","3.7833"]},{"v":"Bruges, Belgium","c":["be%3A4919","50.9833","3.0833"]},{"v":"Namur, Belgium","c":["be%3A4925","50.2833","4.85"]},{"v":"Charleroi, Belgium","c":["be%3A4921","50.4541","3.9523"]},{"v":"Geneva, Switzerland","c":["ch%3A4930","undefined","7.4698"]},{"v":"Bern, Switzerland","c":["ch%3A4929","46.6934","7.2262"]},{"v":"Ticino, Switzerland","c":["ch%3A4935","46.1389","8.9483"]},{"v":"Winterthur, Switzerland","c":["ch%3A4937","47.3787","9.4277"]},{"v":"Lausanne, Switzerland","c":["ch%3A4932","46.3706","6.9869"]},{"v":"Sankt Gallen, Switzerland","c":["ch%3A4934","46.9756","9.4931"]},{"v":"Valais, Switzerland","c":["ch%3A4936","undefined","9.6571"]},{"v":"Lucerne, Switzerland","c":["ch%3A4933","46.4922","8.4714"]},{"v":"Arhus, Denmark","c":["dk%3A5045","56.151","10.204"]},{"v":"Odense, Denmark","c":["dk%3A5041","55.4","10.383"]},{"v":"Alborg, Denmark","c":["dk%3A5044","57.05","9.933"]},{"v":"Esbjerg, Denmark","c":["dk%3A5039","55.467","8.45"]},{"v":"County Dublin, Ireland","c":["ie%3A10161","53.3408","-6.25533"]},{"v":"Stavanger, Norway","c":["no%3A5717","59.0976","5.6969"]},{"v":"Bergen, Norway","c":["no%3A5697","60.393","5.3242"]},{"v":"Trondheim, Norway","c":["no%3A5721","63.4305","10.3951"]},{"v":"Drammen, Norway","c":["no%3A5700","59.5113","9.8271"]},{"v":"More og Romsdal County, Norway","c":["no%3A5707","62.5225","7.1285"]},{"v":"Kristiansand, Norway","c":["no%3A5706","58.2694","7.9741"]},{"v":"Nordland County, Norway","c":["no%3A5709","67.2764","14.3698"]},{"v":"Telemark County, Norway","c":["no%3A5718","59.2838","9.2646"]},{"v":"Hedmark County, Norway","c":["no%3A5702","60.8819","11.5623"]},{"v":"Oppland County, Norway","c":["no%3A5711","61.2","10.15"]},{"v":"Tromso, Norway","c":["no%3A5720","69.6489","18.9551"]},{"v":"Sogn og Fjordane County, Norway","c":["no%3A5715","61.4211","6.3771"]},{"v":"Nord-Trondelag County, Norway","c":["no%3A5708","64.2224","11.2214"]},{"v":"Aust-Agder County, Norway","c":["no%3A5696","58.6333","8.8833"]},{"v":"Ostfold County, Norway","c":["no%3A5710","59.19","11.3387"]},{"v":"Finnmark County, Norway","c":["no%3A5701","70.3183","25.5475"]},{"v":"Troms County, Norway","c":["no%3A5719","69.2296","17.9811"]},{"v":"Hordaland County, Norway","c":["no%3A5704","60.2035","6.1132"]},{"v":"Stockholm County, Sweden","c":["se%3A8039","59.4333","18.05"]},{"v":"Gothenburg, Sweden","c":["se%3A8111","57.7072","11.9668"]},{"v":"Vastra Gotaland County, Sweden","c":["se%3A8052","58.2997","12.4"]},{"v":"Malmo, Sweden","c":["se%3A8077","55.6428","13.2064"]},{"v":"Skane County, Sweden","c":["se%3A8044","55.9","13.3833"]},{"v":"Uppsala, Sweden","c":["se%3A8100","59.8585","17.6454"]},{"v":"Lund, Sweden","c":["se%3A8083","undefined","15.6167"]},{"v":"Helsingborg, Sweden","c":["se%3A8078","56.1","12.7333"]},{"v":"Vasteras, Sweden","c":["se%3A8056","59.6162","16.5528"]},{"v":"Umea, Sweden","c":["se%3A8066","63.8284","20.2597"]},{"v":"Orebro, Sweden","c":["se%3A8118","59.3833","15.2333"]},{"v":"Jonkoping, Sweden","c":["se%3A8068","57.7815","14.1562"]},{"v":"Norrkoping, Sweden","c":["se%3A8120","58.5942","16.1826"]},{"v":"Boras, Sweden","c":["se%3A8112","57.7","13.0167"]},{"v":"Karlstad, Sweden","c":["se%3A8059","59.3232","13.4655"]},{"v":"Vaxjo, Sweden","c":["se%3A8075","56.8777","14.8091"]},{"v":"Sundsvall, Sweden","c":["se%3A8072","62.3913","17.3063"]},{"v":"Volyn Region, Ukraine","c":["ua%3A10175","51.2057","24.713"]},{"v":"Luhansk Region, Ukraine","c":["ua%3A10176","48.4758","38.7876"]},{"v":"Dnipropetrovsk Region, Ukraine","c":["ua%3A10177","48.1151","33.2033"]},{"v":"Zhytomyr Region, Ukraine","c":["ua%3A10178","47.4589","37.6544"]},{"v":"Donetsk Region, Ukraine","c":["ua%3A10179","50.2714","28.5489"]},{"v":"Zakarpattia Region, Ukraine","c":["ua%3A10180","48.3403","22.7692"]},{"v":"Zaporizhia Region, Ukraine","c":["ua%3A10181","47.7973","35.0592"]},{"v":"Ivano-Frankivsk Region, Ukraine","c":["ua%3A10182","48.8078","24.541"]},{"v":"Kiev Region, Ukraine","c":["ua%3A10183","50.3246","30.5631"]},{"v":"Kirovohrad Region, Ukraine","c":["ua%3A10184","48.5389","32.5347"]},{"v":"Lviv Region, Ukraine","c":["ua%3A10186","49.2854","23.4197"]},{"v":"Mykolaiv Region, Ukraine","c":["ua%3A10187","47.4099","32.4412"]},{"v":"Odessa Region, Ukraine","c":["ua%3A10188","45.3687","28.787"]},{"v":"Poltava Region, Ukraine","c":["ua%3A10189","49.4558","35.1402"]},{"v":"Rivne Region, Ukraine","c":["ua%3A10190","50.9991","26.7419"]},{"v":"Sumy Region, Ukraine","c":["ua%3A10191","51.6786","33.9114"]},{"v":"Ternopil Region, Ukraine","c":["ua%3A10192","49.4439","24.9361"]},{"v":"Kharkiv Region, Ukraine","c":["ua%3A10193","49.9058","36.0642"]},{"v":"Cluj County, Romania","c":["ro%3A7529","46.7101","23.7816"]},{"v":"Timis County, Romania","c":["ro%3A7533","45.7369","21.4964"]},{"v":"Iasi County, Romania","c":["ro%3A7552","46.9961","27.244"]},{"v":"Constantza County, Romania","c":["ro%3A7548","44.3318","28.1593"]},{"v":"Brasov County, Romania","c":["ro%3A7543","45.7","25.45"]},{"v":"Prahova County, Romania","c":["ro%3A7526","45.087","25.942"]},{"v":"Galati County, Romania","c":["ro%3A7544","45.5341","27.7073"]},{"v":"Sibiu County, Romania","c":["ro%3A7538","45.9","24.35"]},{"v":"Bacau County, Romania","c":["ro%3A7550","46.5169","26.593"]},{"v":"Bihor County, Romania","c":["ro%3A7527","46.865","22.251"]},{"v":"Arges County, Romania","c":["ro%3A7524","45.0567","24.9954"]},{"v":"Ilfov County, Romania","c":["ro%3A7537","44.7333","25.9833"]},{"v":"Mures County, Romania","c":["ro%3A7542","46.4797","24.6332"]},{"v":"Dolj County, Romania","c":["ro%3A7519","44.455","23.887"]},{"v":"Suceava County, Romania","c":["ro%3A7551","47.25","25.75"]},{"v":"Hunedoara County, Romania","c":["ro%3A7535","45.4623","23.4663"]},{"v":"Arad County, Romania","c":["ro%3A7534","46.2667","21.6333"]},{"v":"Alba County, Romania","c":["ro%3A7539","46.15","23.7333"]},{"v":"Istanbul, Turkey","c":["tr%3A7585","39.8453","33.5064"]},{"v":"Ankara, Turkey","c":["tr%3A7569","40.6295","30.6428"]},{"v":"Izmir, Turkey","c":["tr%3A7613","40.4833","32.3667"]},{"v":"Bursa, Turkey","c":["tr%3A7578","39.8453","33.5064"]},{"v":"Antalya, Turkey","c":["tr%3A7591","39.1596","29.1715"]},{"v":"Kocaeli, Turkey","c":["tr%3A7583","41.35","34.7833"]},{"v":"Adana, Turkey","c":["tr%3A7595","38.82","36.08"]},{"v":"Konya, Turkey","c":["tr%3A7566","38.6","32.7"]},{"v":"Mugla, Turkey","c":["tr%3A7614","39.0809","31.5325"]},{"v":"Eskisehir, Turkey","c":["tr%3A7572","39.8466","33.1957"]},{"v":"Sakarya, Turkey","c":["tr%3A7588","39.8453","33.5064"]},{"v":"Gaziantep, Turkey","c":["tr%3A7557","38.5847","35.3339"]},{"v":"Balikesir, Turkey","c":["tr%3A7584","39.7199","31.6241"]},{"v":"Manisa, Turkey","c":["tr%3A7611","40.0267","32.9084"]},{"v":"Tekirdag, Turkey","c":["tr%3A7586","40.5837","41.1354"]},{"v":"Denizli, Turkey","c":["tr%3A7617","39.75","38.75"]},{"v":"Aydin, Turkey","c":["tr%3A7618","37.9675","40.6072"]},{"v":"Kayseri, Turkey","c":["tr%3A7567","38.6","35.7667"]},{"v":"Samsun, Turkey","c":["tr%3A7634","40.3796","35.887"]},{"v":"Moscow Region, Russian Federation","c":["ru%3A7481","55.5814","37.9058"]},{"v":"Krasnoyarsk Territory, Russian Federation","c":["ru%3A7490","55.2481","91.1814"]},{"v":"Saint Petersburg, Russian Federation","c":["ru%3A7463","59.9321","30.1968"]},{"v":"Sverdlovsk Region, Russian Federation","c":["ru%3A7469","56.8575","60.6125"]},{"v":"Rostov Region, Russian Federation","c":["ru%3A7492","49.9294","41.2461"]},{"v":"Chelyabinsk Region, Russian Federation","c":["ru%3A7471","55.1711","58.7814"]},{"v":"Republic of Bashkortostan, Russian Federation","c":["ru%3A7436","54.9333","53.7667"]},{"v":"Perm Territory, Russian Federation","c":["ru%3A7430","60.4078","53.6558"]},{"v":"Republic of Tatarstan, Russian Federation","c":["ru%3A7431","54.7739","48.2342"]},{"v":"Stavropol Territory, Russian Federation","c":["ru%3A7494","45.4306","43.4472"]},{"v":"Leningrad Region, Russian Federation","c":["ru%3A7458","60.7489","33.715"]},{"v":"Nizhny Novgorod Region, Russian Federation","c":["ru%3A7432","55.3667","44.3"]},{"v":"Tyumen Region, Russian Federation","c":["ru%3A7468","56.8667","66.6167"]},{"v":"Kemerovo Region, Russian Federation","c":["ru%3A7448","53.9899","86.6624"]},{"v":"Kaliningrad Region, Russian Federation","c":["ru%3A7461","54.3858","21.6656"]},{"v":"Khanty-Mansi Autonomous - Yugra, Russian Federation","c":["ru%3A7504","61.0833","72.7"]},{"v":"Khabarovsk Territory, Russian Federation","c":["ru%3A7457","53.2275","140.3233"]},{"v":"Sakhalin Region, Russian Federation","c":["ru%3A7450","50.8456","142.655"]},{"v":"Moscow, Russian Federation","c":["ru%3A7487","55.4656","51.2614"]},{"v":"Puerto Rico area","c":["pr%3A9349","18.1653","-66.7226"]},{"v":"Rio de Janeiro, Brazil","c":["br%3A6034","-22.8042","-43.3314"]},{"v":"Belo Horizonte, Brazil","c":["br%3A6156","-19.899","-43.9768"]},{"v":"Porto Alegre, Brazil","c":["br%3A6467","-29.93","-51.1461"]},{"v":"Curitiba, Brazil","c":["br%3A6399","-25.4681","-49.2675"]},{"v":"Campinas, Brazil","c":["br%3A6104","-22.8193","-47.0868"]},{"v":"Salvador, Brazil","c":["br%3A6378","-12.895","-38.4873"]},{"v":"Santiago, Brazil","c":["br%3A6292","-29.1731","-54.8558"]},{"v":"Brasília, Brazil","c":["br%3A6394","-15.8251","-47.9586"]},{"v":"Recife, Brazil","c":["br%3A6286","-8.0159","-34.9682"]},{"v":"Fortaleza, Brazil","c":["br%3A6392","-3.8236","-38.5969"]},{"v":"Buenos Aires, Argentina","c":["ar%3A9439","-34.1","-59.03333"]},{"v":"Melbourne, Australia","c":["au%3A4900","-37.85","145.0333"]},{"v":"Brisbane, Australia","c":["au%3A4909","-27.5","153.0167"]},{"v":"Perth, Australia","c":["au%3A4905","-31.9919","115.8645"]},{"v":"Adelaide, Australia","c":["au%3A4886","-34.9202","138.6543"]},{"v":"New South Wales, Australia","c":["au%3A4901","-32.4","149.4833"]},{"v":"Queensland, Australia","c":["au%3A4906","-25.4868","149.6225"]},{"v":"Canberra, Australia","c":["au%3A4893","-35.3172","149.1753"]},{"v":"Newcastle, Australia","c":["au%3A4902","-32.7833","151.6333"]},{"v":"Victoria, Australia","c":["au%3A4914","-37.0266","145.1392"]},{"v":"Western Australia, Australia","c":["au%3A4916","-30.0362","117.9778"]},{"v":"Tasmania, Australia","c":["au%3A4911","-42.5333","147.3667"]},{"v":"Cairns, Australia","c":["au%3A4892","-17.2836","145.6165"]},{"v":"Townsville, Australia","c":["au%3A4913","-19.3068","146.8139"]},{"v":"Albury, Australia","c":["au%3A4887","-36.0997","146.802"]},{"v":"Darwin, Australia","c":["au%3A4895","-12.4611","130.8418"]},{"v":"Toowoomba, Australia","c":["au%3A4912","-27.4756","151.8141"]},{"v":"South Australia, Australia","c":["au%3A4908","-33.8486","138.4893"]},{"v":"Mackay, Australia","c":["au%3A4898","-21.1167","148.8167"]},{"v":"Wellington and Wairarapa, New Zealand","c":["nz%3A9204","-41.34","174.75"]},{"v":"Canterbury and West Coast, New Zealand","c":["nz%3A9196","-43.8","171.86"]},{"v":"Waikato, New Zealand","c":["nz%3A9203","-38.01","175.42"]},{"v":"Otago and Southland, New Zealand","c":["nz%3A9200","-45.22","170.26"]},{"v":"Taranaki, Wanganui and Manawatu, New Zealand","c":["nz%3A9202","-40.36","175.71"]},{"v":"Bay of Plenty, New Zealand","c":["nz%3A9195","-37.81","176.03"]},{"v":"Gisborne and Hawkes Bay, New Zealand","c":["nz%3A9197","-39.51","176.87"]},{"v":"Nelson, Marlborough and Tasman, New Zealand","c":["nz%3A9198","-41.22","172.99"]},{"v":"Northland, New Zealand","c":["nz%3A9199","-35.74","174.31"]},{"v":"Beijing City, China","c":["cn%3A8911","39.8566","116.414"]},{"v":"Shenzhen, Guangdong, China","c":["cn%3A8910","22.5443","114.072"]},{"v":"Guangzhou, Guangdong, China","c":["cn%3A8919","23.8919","112.341"]},{"v":"Rest of Zhejiang, China","c":["cn%3A8876","27.5536","119.45"]},{"v":"Rest of Jiangsu, China","c":["cn%3A8891","34.4331","117.31"]},{"v":"Rest of Guangdong, China","c":["cn%3A8901","23.8919","112.341"]},{"v":"Nanjing, Jiangsu, China","c":["cn%3A8939","32.2299","119.123"]},{"v":"Suzhou, Jiangsu, China","c":["cn%3A8944","31.4379","120.559"]},{"v":"Hangzhou, Zhejiang, China","c":["cn%3A8931","30.316","120.218"]},{"v":"Wuhan, Hubei, China","c":["cn%3A8979","30.2425","113.876"]},{"v":"Rest of Shandong, China","c":["cn%3A8884","36.6657","117.025"]},{"v":"Chengdu, Sichuan, China","c":["cn%3A8963","30.7639","104.119"]},{"v":"Tianjin City, China","c":["cn%3A8907","39.1249","117.204"]},{"v":"Xiamen, Fujian, China","c":["cn%3A8913","24.6079","117.996"]},{"v":"Rest of Henan, China","c":["cn%3A8895","35.9215","114.357"]},{"v":"Dalian, Liaoning, China","c":["cn%3A9018","38.8111","121.265"]},{"v":"Sapporo, Hokkaido, Japan","c":["jp%3A7692","undefined","undefined"]},{"v":"Saitama, Saitama, Japan","c":["jp%3A7691","undefined","undefined"]},{"v":"Seocho-gu, Seoul, Korea","c":["kr%3A7713","37.4976","127.0004"]},{"v":"Jung-gu, Seoul, Korea","c":["kr%3A7699","37.5679","127.0072"]},{"v":"Yeongdeungpo-gu, Seoul, Korea","c":["kr%3A7705","37.5113","126.9185"]},{"v":"Jongro-gu, Seoul, Korea","c":["kr%3A7697","37.5973","126.9682"]},{"v":"Seongnam, Gyeonggi-do, Korea","c":["kr%3A7843","37.3962","127.1312"]},{"v":"Songpa-gu, Seoul, Korea","c":["kr%3A7696","37.5016","127.1453"]},{"v":"Mapo-gu, Seoul, Korea","c":["kr%3A7701","37.5385","126.9501"]},{"v":"Yuseong-gu, Daejeon, Korea","c":["kr%3A7814","36.4038","127.4054"]},{"v":"Yongsan-gu, Seoul, Korea","c":["kr%3A7716","37.5298","127.0058"]},{"v":"Gwanak-gu, Seoul, Korea","c":["kr%3A7709","37.4819","126.9071"]},{"v":"Guro-gu, Seoul, Korea","c":["kr%3A7714","37.4933","126.8809"]},{"v":"Seodaemun-gu, Seoul, Korea","c":["kr%3A7717","37.5934","126.9467"]},{"v":"Seongbuk-gu, Seoul, Korea","c":["kr%3A7712","37.584","127.0233"]},{"v":"Suwon, Gyeonggi-do, Korea","c":["kr%3A7845","37.2697","127.0541"]},{"v":"Geumcheon-gu, Seoul, Korea","c":["kr%3A7707","37.4766","126.9081"]},{"v":"Gangseo-gu, Seoul, Korea","c":["kr%3A7718","37.5523","126.8708"]},{"v":"Seongdong-gu, Seoul, Korea","c":["kr%3A7708","37.5676","127.0414"]},{"v":"Dongjak-gu, Seoul, Korea","c":["kr%3A7719","37.5016","126.9501"]},{"v":"Region IVA - Calabarzon, Philippines","c":["ph%3A9237","13.89","121.14"]},{"v":"Region VII - Central Visayas, Philippines","c":["ph%3A9242","9.23","123.56"]},{"v":"Region III - Central Luzon, Philippines","c":["ph%3A9236","15.31","120.0"]},{"v":"Region VI - Western Visayas, Philippines","c":["ph%3A9241","11.51","122.53"]},{"v":"Region XI - Davao, Philippines","c":["ph%3A9245","6.26","125.67"]},{"v":"Region X - Northern Mindanao, Philippines","c":["ph%3A9244","8.29","124.95"]},{"v":"Region V - Bicol, Philippines","c":["ph%3A9240","13.71","123.74"]},{"v":"Region I - Ilocos, Philippines","c":["ph%3A9234","17.68","120.37"]},{"v":"CAR - Cordillera Administrative Region, Philippines","c":["ph%3A9232","16.32","120.55"]},{"v":"Region VIII - Eastern Visayas, Philippines","c":["ph%3A9243","10.91","124.54"]},{"v":"Region XII - Soccsksargen, Philippines","c":["ph%3A9246","7.21","124.3"]},{"v":"Region IX - Zamboanga Peninsula, Philippines","c":["ph%3A9239","8.02","123.46"]},{"v":"Region II - Cagayan Valley, Philippines","c":["ph%3A9235","16.3","120.87"]},{"v":"Region XIII - Caraga, Philippines","c":["ph%3A9247","9.66","125.53"]},{"v":"Region IVB - Mimaropa, Philippines","c":["ph%3A9238","13.45","121.83"]},{"v":"ARMM - Autonomous Region in Muslim Mindanao, Philippines","c":["ph%3A9231","8.0","124.2"]},{"v":"Kuala Lumpur, Malaysia","c":["my%3A7960","3.139","101.6869"]},{"v":"Johor, Malaysia","c":["my%3A7952","2.0491","103.1443"]},{"v":"Penang, Malaysia","c":["my%3A7959","5.4195","100.3278"]},{"v":"Sarawak, Malaysia","c":["my%3A7955","1.5568","110.3522"]},{"v":"Perak, Malaysia","c":["my%3A7956","4.6118","101.1135"]},{"v":"Sabah, Malaysia","c":["my%3A7950","5.9765","116.1158"]},{"v":"Kedah, Malaysia","c":["my%3A7953","6.1194","100.3677"]},{"v":"Negeri Sembilan, Malaysia","c":["my%3A7948","2.6945","102.5264"]},{"v":"Malacca, Malaysia","c":["my%3A7954","2.2057","102.2562"]},{"v":"Pahang, Malaysia","c":["my%3A7957","4.4301","101.4165"]},{"v":"Terengganu, Malaysia","c":["my%3A7951","5.8201","102.5377"]},{"v":"Kelantan, Malaysia","c":["my%3A7958","6.122","102.2523"]},{"v":"Putra Jaya, Malaysia","c":["my%3A7949","2.9264","101.6964"]},{"v":"Labuan, Malaysia","c":["my%3A7946","5.2913","115.2459"]},{"v":"Perlis, Malaysia","c":["my%3A7947","6.4455","100.2002"]},{"v":"North East, Singapore","c":["sg%3A10136","1.31421","103.85822"]},{"v":"North West, Singapore","c":["sg%3A10137","1.29868","103.81986"]},{"v":"South East, Singapore","c":["sg%3A10138","1.30683","103.88698"]},{"v":"South West, Singapore","c":["sg%3A10139","1.31464","103.83007"]},{"v":"Rest of Inner Mongolia, China","c":["cn%3A8892","49.2117","119.766"]},{"v":"Baotou, Inner Mongolia, China","c":["cn%3A8959","40.6345","109.984"]},{"v":"Chifeng, Inner Mongolia, China","c":["cn%3A8962","42.4812","117.984"]},{"v":"Mumbai, India","c":["in%3A7150","19.0695","72.9975"]},{"v":"Bengaluru, India","c":["in%3A7127","13.0499","77.1594"]},{"v":"Hyderabad, India","c":["in%3A6508","16.7024","78.1036"]},{"v":"Chennai, India","c":["in%3A6891","13.0408","80.1078"]},{"v":"Pune, India","c":["in%3A7350","18.5031","73.9008"]},{"v":"Kolkata, India","c":["in%3A7003","22.621","88.3377"]},{"v":"Noida, India","c":["in%3A7392","28.5263","77.4814"]},{"v":"Indianapolis, Indiana","c":["us%3A348","39.775","-86.1093"]},{"v":"Ahmedabad, India","c":["in%3A7065","23.0043","72.6908"]},{"v":"Cape Town, South Africa","c":["za%3A5852","-33.917","18.417"]},{"v":"Durban, South Africa","c":["za%3A5855","-29.617","30.383"]},{"v":"Port Elizabeth, South Africa","c":["za%3A5883","-33.967","25.583"]},{"v":"Bloemfontein, South Africa","c":["za%3A5847","-29.75","25.317"]},{"v":"Witbank, South Africa","c":["za%3A5904","-25.867","29.233"]},{"v":"Polokwane, South Africa","c":["za%3A5882","-23.617","29.358"]},{"v":"Nelspruit, South Africa","c":["za%3A5873","-24.917","31.15"]},{"v":"Bisho, South Africa","c":["za%3A5846","-32.033","27.8"]},{"v":"Richards Bay, South Africa","c":["za%3A5888","-28.883","31.467"]},{"v":"Pretoria, South Africa","c":["za%3A5886","-25.365","28.219"]},{"v":"Kimberley, South Africa","c":["za%3A5863","-28.883","21.983"]},{"v":"Noorder-Paarl, South Africa","c":["za%3A5875","-33.353","19.19"]},{"v":"George, South Africa","c":["za%3A5858","-33.483","21.267"]},{"v":"Louis Trichardt, South Africa","c":["za%3A5868","-22.95","30.467"]},{"v":"Newcastle, South Africa","c":["za%3A5874","-28.253","29.993"]},{"v":"Phalaborwa, South Africa","c":["za%3A5878","-23.317","30.717"]},{"v":"Welkom, South Africa","c":["za%3A5903","-27.983","26.733"]},{"v":"Pietermaritzburg, South Africa","c":["za%3A5881","-30.55","29.417"]},{"v":"Slovak Republic","c":["sk%3A9352","48.148","17.1067"]}];
var comms_edu = '["18475","162195","18290","18993","17971","18570","18461","18720","19054","18068","19128","151018","354077","19179","31964","150040","163061","176010","162160","18962","18993","19107","17723","18220","18908","18836","18321","19675","18007","18124","19383","19318","18439","19276","18946","19443","17897","17939","17959","3154333","18506","19689","19615","19348","19328","17926","18058","18024","18959","18874","18064","17816","18253","18677","18526","19499","18031","18822","19479","17838","19312"]';
var biz_edu = '["19329","18153","18943","19921","18043","18994","18803","18495","17940","18291","18634","19233","19541","17951","18315","18484","17927","18947","19605","18840"]';
var eng_edu = '["18936","18158","18494","19318","17939","18946","19518","18633","17926","18321","18357","17950","19491","19689","18495","18483","18290","19328","18943","10861","19657","10890","13497","13496","13500","17114","18786","17927","10802","19232","19005","18560","17954","13501","10875","13499","18314","17940","12691","17816","12716","18043","12879","18867","12598","19940","12671","17113","10245","10233","17098","17091","19091","11969","11398","10234","18539","15445","11287","18159","12881","19472","12682","10242","19968","12665","11319","17811","13378","18360","11109","10238","14687","12662","12002","11405","11924","12721","15446","14630","12878","10410","13843","10617","12717","11469","11947","17994","10918","14365","14724","15518","11938","12874","10917","12398","14382","11146","10237","11996","17472","16630","13844","14638","19210","12261","10204","15344","14600","14144","19061","17083","20463","21180","17860","14704","21119","21043","15337","15343","14670","11471","14352","14689","156077","162245","151022","43530","224913","379008","14391","180001","3154254","3155240","376016","378008","37937","42229","43259"]';
function returnGroupIds(vl) {
for (i = 0; i < groupArr.length; i++) {
var rxv = new RegExp('\\b' + vl + '\\b', 'gi');
if (rxv.test(groupArr[i].v) === true) {
var outgroup = '["' + groupArr[i].c.toString().replace(/,/g, '","') + '"]';
}
}
return outgroup;
}
function getMatchedGroups(inputval) {
var rxv = new RegExp(inputval, 'gi');
var arr = [];
for (i = 0; i < groupArr.length; i++) {
if (rxv.test(groupArr[i].v) === true) {
var mtchlcl = groupArr[i].v;
arr.push(mtchlcl)
}
}
return arr;
}
function curGroupVal() {
var inp = document.getElementById("group_txt").value;
if (inp.length > 1) {
var matches = getMatchedGroups(inp);
var ex = new Promise(function(resolve, reject) {
resolve(clearDivs());
});
ex.then(expandGroups(matches));
}
}
function clearDivs() {
var myNode = document.getElementById("groupCont");
myNode.innerHTML = '';
}
function getMatchedCities(inputval) {
var rxv = new RegExp(inputval, 'gi');
var arr = [];
for (i = 0; i < geoLocalArr.length; i++) {
if (rxv.test(geoLocalArr[i].v) === true) {
var mtchlcl = geoLocalArr[i].v;
arr.push(mtchlcl)
}
}
return arr;
}
function dist(lat1, lng1, lat2, lng2) {
var p = 0.017453292519943295;
var c = Math.cos;
var a = 0.5 - c((lat2 - lat1) * p) / 2 +
c(lat1 * p) * c(lat2 * p) *
(1 - c((lng2 - lng1) * p)) / 2;
return 0.621371 * (12742 * Math.asin(Math.sqrt(a)));
}
function getLatLng_one(local) {
var arr;
for (i = 0; i < geoLocalArr.length; i++) {
var rxv = new RegExp(local, 'i');
if (rxv.test(geoLocalArr[i].v) === true) {
arr = geoLocalArr[i].c;
}
}
return arr;
}
function getcodelatlngArr(v) {
var arr = [];
for (i = 0; i < geoLocalArr.length; i++) {
var rxv = new RegExp(v, 'gi');
if (rxv.test(geoLocalArr[i].v) === true) {
arr.push(geoLocalArr[i].c);
}
}
return arr;
}
function returnAllMatchesInDistance(vl, miles) {
for (i = 0; i < geoLocalArr.length; i++) {
var rxv = new RegExp(vl, 'gi');
if (rxv.test(geoLocalArr[i].v) === true) {
var arr = geoLocalArr[i].c;
}
}
var mi2km = miles;
var lat_v = arr[1];
var lng_v = arr[2];
var codeArr = [arr[0]];
for (i = 0; i < geoLocalArr.length; i++) {
var range = dist(lat_v, lng_v, geoLocalArr[i].c[1], geoLocalArr[i].c[2]);
if (range < mi2km) {
codeArr.push(geoLocalArr[i].c[0]);
}
}
return '%5B"' + codeArr.toString().replace(/,/g, '"%2C"') + '"%5D';
}
function dragElement(elmnt) {
var pos1 = 0,
pos2 = 0,
pos3 = 0,
pos4 = 0;
if (document.getElementById(elmnt.id + "header")) {
document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
} else {
elmnt.onmousedown = dragMouseDown;
}
function dragMouseDown(e) {
e = e || window.event;
pos3 = e.clientX;
pos4 = e.clientY;
document.onmouseup = closeDragElement;
document.onmousemove = elementDrag;
}
function elementDrag(e) {
e = e || window.event;
pos1 = pos3 - e.clientX;
pos2 = pos4 - e.clientY;
pos3 = e.clientX;
pos4 = e.clientY;
elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
elmnt.style.opacity = "0.85";
elmnt.style.background = "DarkSlateGrey";
elmnt.style.transition = "opacity 1300ms"
}
function closeDragElement() {
document.onmouseup = null;
document.onmousemove = null;
elmnt.style.opacity = "1";
elmnt.style.background = "DarkSlateGrey";
}
}
function close() {
document.body.removeChild(document.getElementById("popup_win"));
}
var createDiv = document.createElement("div");
createDiv.setAttribute("id", "popup_win");
document.body.appendChild(createDiv);
createDiv.style.display = "inline-block";
createDiv.style.position = "fixed";
createDiv.style.top = "200px";
createDiv.style.textAlign = "left";
createDiv.style.left = "43%";
createDiv.style.width = "23%";
createDiv.style.height = "65%";
createDiv.style.border = "1px solid DarkSlateGrey ";
createDiv.style.background = "DarkSlateGrey";
createDiv.style.borderRadius = "1em";
createDiv.style.padding = "3px";
createDiv.style.zIndex = "10000";
var closebtn = document.createElement("button");
document.getElementById("popup_win").appendChild(closebtn);
closebtn.setAttribute("id", "btn_close");
document.getElementById("btn_close").innerText = "+";
closebtn.style.position = "absolute";
closebtn.style.background = "transparent";
closebtn.style.display = "inline-block";
closebtn.style.transform = "scale(2.9, 2.9) rotate(-45deg)";
closebtn.style.borderRadius = "1em";
closebtn.style.padding = "1px";
closebtn.style.boxShadow = "1px";
closebtn.style.border = "1px";
closebtn.style.userSelect = "none";
closebtn.style.color = "Crimson";
var qckl = document.createElement("div");
document.getElementById("popup_win").appendChild(qckl);
qckl.style.color = "white";
qckl.style.padding = "6px";
qckl.innerText = "Quick LinkedIn Search";
qckl.style.transform = "translate(20px, 1px)";
for (ii = 1; ii < 6; ii++) {
switch (ii) {
case 1:
type = "First Name";
break;
case 2:
type = "Last Name";
break;
case 3:
type = "Current Company";
break;
case 4:
type = "Current Title";
break;
case 5:
type = "Keywords";
break;
}
var createModElm = document.createElement("input");
document.getElementById("popup_win").appendChild(createModElm);
createModElm.setAttribute("id", "box" + ii);
createModElm.setAttribute("placeholder", type);
createModElm.style.width = "100%";
createModElm.style.height = "32px";
createModElm.style.padding = "6px";
createModElm.style.border = "1px solid DarkSlateGrey";
createModElm.style.background = "white";
createModElm.style.borderRadius = "1em";
}
for (ee = 1; ee < 4; ee++) {
switch (ee) {
case 1:
named = "Top Business Schools";
break;
case 2:
named = "Top Engineering Schools";
break;
case 3:
named = "Top Journalism/Comms Schools";
break;
}
var edu_r = document.createElement("div");
document.getElementById("popup_win").appendChild(edu_r);
edu_r.setAttribute("id", "radio_" + ee);
edu_r.setAttribute("value", ee);
edu_r.setAttribute("class", "radiosio");
edu_r.style.display = "block";
edu_r.style.padding = "6px";
edu_r.style.transform = "translate(3px, 1px)";
edu_r.innerText = named;
edu_r.style.padding = "6px";
edu_r.style.color = "white";
edu_r.style.width = "97%";
edu_r.style.borderRadius = "2em";
edu_r.style.cursor = "pointer";
edu_r.style.border = "3px";
edu_r.style.borderColor = "white";
document.getElementById("radio_" + ee).addEventListener("mouseover", hoverRadioIn);
document.getElementById("radio_" + ee).addEventListener("mouseout", hoverRadioOut);
document.getElementById("radio_" + ee).addEventListener("click", radioSelect1);
}
for (se = 1; se < 8; se++) {
switch (se) {
case 1:
nam = "Intern";
break;
case 2:
nam = "Jr Lvl";
break;
case 3:
nam = "Mid Lvl";
break;
case 4:
nam = "Sr Lvl";
break;
case 5:
nam = "Mgr";
break;
case 6:
nam = "Dir";
break;
case 7:
nam = "VP";
break;
}
var senior = document.createElement("div");
document.getElementById("popup_win").appendChild(senior);
senior.setAttribute("id", "senior_radID_" + se);
senior.setAttribute("value", se);
senior.setAttribute("class", "senior_radio");
senior.style.display = "inline-block";
senior.style.padding = "6px";
senior.style.transform = "translate(3px, 1px)";
senior.innerText = nam;
senior.style.padding = "6px";
senior.style.color = "white";
senior.style.width = "30%";
senior.style.borderRadius = "2em";
senior.style.cursor = "pointer";
senior.style.border = "3px";
senior.style.borderColor = "white";
document.getElementById("senior_radID_" + se).addEventListener("mouseover", hoverRadioIn);
document.getElementById("senior_radID_" + se).addEventListener("mouseout", hoverRadioOut);
document.getElementById("senior_radID_" + se).addEventListener("click", radioSelect1);
}
function hoverRadioOut() {
if (this.style.color != "black") {
this.style.background = "transparent";
} else {
this.style.background = "DarkCyan";
}
}
function hoverRadioIn() {
this.style.background = "CadetBlue";
}
function radioSelect1() {
setTimeout(() => {
if (this.style.color != "black") {
if (this.style.background = "CadetBlue") {
this.style.borderStyle = "solid";
this.style.color = "black";
this.style.textAlign = "center";
this.style.transition = "border 333ms";
this.style.background = "DarkCyan";
}
} else {
this.style.color = "white";
this.style.borderStyle = "none";
this.style.textAlign = "left";
this.style.transition = "border 333ms";
this.style.background = "transparent";
}
}, 81);
}
var createGroupElm = document.createElement("input");
document.getElementById("popup_win").appendChild(createGroupElm);
createGroupElm.setAttribute("id", "group_txt");
createGroupElm.setAttribute("placeholder", "Groups (select from autocomplete)");
createGroupElm.style.width = "100%";
createGroupElm.style.height = "32px";
createGroupElm.style.padding = "6px";
createGroupElm.style.border = "1px solid DarkSlateGrey";
createGroupElm.style.background = "white";
createGroupElm.style.borderRadius = "1em";
var groupContainer = document.createElement("div");
document.getElementById("popup_win").appendChild(groupContainer);
groupContainer.setAttribute("id", "groupCont");
function expandGroups(arr) {
var cls = document.getElementsByClassName("grps");
var inp = document.getElementById("group_txt").value;
for (g = 0; g < arr.length; g++) {
function hoverE() {
this.style.color = "DarkSlateGrey";
}
function hoverO() {
this.style.color = "DarkCyan";
}
function clickE() {
document.getElementById("group_txt").value = this.innerText;
this.style.display = "none";
clearDivs();
}
var autoGroup = document.createElement("div");
document.getElementById("groupCont").appendChild(autoGroup);
autoGroup.setAttribute("class", "grps");
autoGroup.setAttribute("id", "grps_" + g);
autoGroup.style.width = "85%";
autoGroup.style.height = "29px";
autoGroup.style.padding = "6px";
autoGroup.style.border = "1px solid DarkSlateGrey";
autoGroup.style.color = "DarkCyan";
autoGroup.style.background = "white";
autoGroup.style.borderRadius = "1em";
autoGroup.style.cursor = "pointer";
document.getElementById("grps_" + g).innerText = arr[g];
document.getElementById("grps_" + g).addEventListener("mouseover", hoverE);
document.getElementById("grps_" + g).addEventListener("mouseout", hoverO);
document.getElementById("grps_" + g).addEventListener("click", clickE);
}
}
var localdiv = document.createElement("div");
var createLocalElm = document.createElement("input");
document.getElementById("popup_win").appendChild(createLocalElm);
createLocalElm.setAttribute("id", "local_txt");
createLocalElm.setAttribute("placeholder", "Nearest City (select from autocomplete)");
createLocalElm.style.width = "100%";
createLocalElm.style.height = "32px";
createLocalElm.style.padding = "6px";
createLocalElm.style.border = "1px solid DarkSlateGrey";
createLocalElm.style.background = "white";
createLocalElm.style.borderRadius = "1em";
var localvalue = document.getElementById("local_txt").value;
var autoContainer = document.createElement("div");
document.getElementById("popup_win").appendChild(autoContainer);
autoContainer.setAttribute("id", "autoCont");
var milage = document.createElement("input");
document.getElementById("popup_win").appendChild(milage);
milage.setAttribute("placeholder", "add mile radius");
milage.setAttribute("id", "miles");
milage.style.width = "100%";
milage.style.height = "32px";
milage.style.padding = "6px";
milage.style.border = "1px solid DarkSlateGrey";
milage.style.background = "white";
milage.style.borderRadius = "1em";
milage.maxLength = "4";
var createbtn = document.createElement("button");
document.getElementById("popup_win").appendChild(createbtn);
createbtn.setAttribute("id", "btn_box");
document.getElementById("btn_box").innerText = "Search";
createbtn.style.background = "DarkCyan";
createbtn.style.border = "1px solid DarkSlateGrey";
createbtn.style.width = "100%";
createbtn.style.height = "33px";
createbtn.style.borderRadius = "1em";
createbtn.style.color = "white";
var showgroups = document.createElement("div");
document.getElementById("popup_win").appendChild(showgroups);
showgroups.setAttribute("id", "grouplist");
showgroups.style.width = "43%";
showgroups.style.height = "32px";
showgroups.style.padding = "4px";
showgroups.style.color = "DarkSlateGrey";
showgroups.style.background = "FloralWhite";
showgroups.style.border = "DarkCyan";
showgroups.style.borderRadius = "2em";
showgroups.style.fontSize = ".9em";
showgroups.innerText = "show group list";
showgroups.style.cursor = "pointer";
function expandG_list() {
if (showgroups.style.height == "32px") {
showgroups.style.transition = "height 1466ms";
showgroups.style.width = "100%";
showgroups.style.height = "245px";
showgroups.style.padding = "4px";
showgroups.style.color = "DarkSlateGrey";
showgroups.style.background = "FloralWhite";
showgroups.style.border = "DarkCyan";
showgroups.style.borderRadius = "2em";
showgroups.style.fontSize = ".76em";
showgroups.innerText = "show group list";
showgroups.style.cursor = "pointer";
showgroups.innerText = listGroups();
} else {
showgroups.style.width = "50%";
showgroups.style.height = "32px";
showgroups.style.padding = "4px";
showgroups.style.color = "DarkSlateGrey";
showgroups.style.background = "FloralWhite";
showgroups.style.border = "DarkCyan";
showgroups.style.borderRadius = "2em";
showgroups.style.fontSize = ".9em";
showgroups.innerText = "show group list";
showgroups.style.cursor = "pointer";
}
}
function expandLocals(arr) {
var cls = document.getElementsByClassName("geos");
var inp = document.getElementById("local_txt").value;
for (g = 0; g < arr.length; g++) {
function hoverE() {
this.style.color = "DarkSlateGrey";
}
function hoverO() {
this.style.color = "DarkCyan";
}
function clickE() {
document.getElementById("local_txt").value = this.innerText;
this.style.display = "none";
clearNullDivs();
}
var autoGeo = document.createElement("div");
document.getElementById("autoCont").appendChild(autoGeo);
autoGeo.setAttribute("class", "geos");
autoGeo.setAttribute("id", "geo_" + g);
autoGeo.style.width = "85%";
autoGeo.style.height = "29px";
autoGeo.style.padding = "6px";
autoGeo.style.border = "1px solid DarkSlateGrey";
autoGeo.style.color = "DarkCyan";
autoGeo.style.background = "white";
autoGeo.style.borderRadius = "1em";
autoGeo.style.cursor = "pointer";
document.getElementById("geo_" + g).innerText = arr[g];
document.getElementById("geo_" + g).addEventListener("mouseover", hoverE);
document.getElementById("geo_" + g).addEventListener("mouseout", hoverO);
document.getElementById("geo_" + g).addEventListener("click", clickE);
}
}
function clearNullDivs() {
var myNode = document.getElementById("autoCont");
myNode.innerHTML = '';
}
function curLocVal() {
var inp = document.getElementById("local_txt").value;
if (inp.length > 2) {
var matches = getMatchedCities(inp);
var ex = new Promise(function(resolve, reject) {
resolve(clearNullDivs());
});
ex.then(expandLocals(matches));
}
}
function keyUpExpander_main() {
setTimeout(function() {
if (document.getElementById("box5").value.length > 16 && document.getElementById("box5").value.length < 30) {
createDiv.style.width = "24%";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
if (document.getElementById("box5").value.length > 30 && document.getElementById("box5").value.length < 45) {
createDiv.style.width = "27%";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
if (document.getElementById("box5").value.length > 45 && document.getElementById("box5").value.length < 60) {
createDiv.style.width = "31%";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
if (document.getElementById("box5").value.length > 60 && document.getElementById("box5").value.length < 75) {
createDiv.style.width = "35%";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
if (document.getElementById("box5").value.length > 75 && document.getElementById("box5").value.length < 90) {
createDiv.style.width = "39%";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
if (document.getElementById("box5").value.length > 90) {
createDiv.style.width = "43%";
closebtn.style.transform = "scale(2.9, 2.9) rotate(-45deg)";
createDiv.style.transition = "width 1666ms";
closebtn.style.transition = "transform 1666ms";
}
}, 63);
}
function mouseoutShrink() {
setTimeout(function() {
createDiv.style.width = "20%";
closebtn.style.transform = "scale(2.3, 2.3) rotate(0deg)";
createDiv.style.transition = "width 1033ms";
closebtn.style.transition = "transform 1033ms";
}, 363);
}
function listGroups() {
var arr = [];
groupArr.forEach(item => {
arr.push(item.v);
});
return arr.toString().replace(/,/g, ', ');
}
document.getElementById("grouplist").addEventListener("click", expandG_list);
document.getElementById("popup_win").addEventListener("keydown", keyUpExpander_main);
document.getElementById("popup_win").addEventListener("mouseout", mouseoutShrink);
document.getElementById("btn_close").addEventListener("click", close);
document.getElementById("local_txt").addEventListener("keyup", curLocVal);
document.getElementById("group_txt").addEventListener("keyup", curGroupVal);
document.getElementById("btn_box").addEventListener("click", searchLI);
dragElement(document.getElementById("popup_win"));
function searchLI() {
var edus = '';
var srnty = '';
var senioritArr = [];
var local_val = document.getElementById("local_txt").value;
if (document.getElementById("box1").value != '') {
var fn = '&firstName=' + document.getElementById("box1").value;
} else {
var fn = '';
}
if (document.getElementById("box2").value != '') {
var ln = '&lastName=' + document.getElementById("box2").value;
} else {
var ln = '';
}
if (document.getElementById("box3").value != '') {
var co = '&company=' + document.getElementById("box3").value;
} else {
var co = '';
}
if (document.getElementById("box4").value != '') {
var tit = '&title=' + document.getElementById("box4").value;
} else {
var tit = '';
}
if (document.getElementById("box5").value != '') {
var kw = document.getElementById("box5").value;
} else {
var kw = '';
}
var e_biz = document.getElementById("radio_1").style.borderStyle;
var e_eng = document.getElementById("radio_2").style.borderStyle;
var e_com = document.getElementById("radio_3").style.borderStyle;
for (srl = 1; srl < 8; srl++) {
if (document.getElementById("senior_radID_" + srl).style.borderStyle == 'solid') {
senioritArr.push('"' + srl + '"');
}
}
if (senioritArr.length > 0) {
var srnty = '&facetSeniority=[' + senioritArr.toString() + ']';
}
var mil = document.getElementById("miles").value;
if (e_biz == "solid") {
var edus = '&facetSchool=' + biz_edu;
} else if (e_eng == "solid") {
var edus = '&facetSchool=' + eng_edu;
} else if (e_com == "solid") {
var edus = '&facetSchool=' + comms_edu;
} else {
var edus = '';
}
var locations = '';
if (document.getElementById("local_txt").value != '') {
if (miles != '') {
var locations = '&facetGeoRegion=' + returnAllMatchesInDistance(local_val, mil);
} else {
var locations = '';
}
} else {
var locations = '';
}
if (document.getElementById("group_txt").value != '') {
var groupvals = document.getElementById("group_txt").value;
if (returnGroupIds(groupvals) != undefined) {
var groupfacets = '&facetGroup=' + returnGroupIds(groupvals);
} else {
var groupfacets = '';
}
} else {
var groupfacets = '';
}
function checkSr(num) {
return parseInt(num.replace(/"/g, '')) < 5;
}
var tested = senioritArr.every(checkSr);
if(kw.length >0 && tested === true){
var kw = kw + "%20-Director%20-Manager%20-President%20-EVP%20-SVP%20-VP";
}
if(kw.length <1 && tested === true){
var kw = "-Director%20-Manager%20-President%20-EVP%20-SVP%20-VP";
}
window.open('https://www.linkedin.com/search/results/people/?keywords=' + kw + fn + ln + co + tit + locations + groupfacets + edus + srnty);
}
}
function dragElement(elmnt) {
var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
if (document.getElementById(elmnt.id + "header")) {
document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
} else {
elmnt.onmousedown = dragMouseDown;
}
function dragMouseDown(e) {
e = e || window.event;
pos3 = e.clientX;
pos4 = e.clientY;
document.onmouseup = closeDragElement;
document.onmousemove = elementDrag;
}
function elementDrag(e) {
e = e || window.event;
pos1 = pos3 - e.clientX;
pos2 = pos4 - e.clientY;
pos3 = e.clientX;
pos4 = e.clientY;
elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
elmnt.style.opacity = "0.85";
elmnt.style.background = "DarkSlateGrey";
elmnt.style.transition = "opacity 1300ms"
}
function closeDragElement() {
document.onmouseup = null;
document.onmousemove = null;
elmnt.style.opacity = "1";
elmnt.style.background = "DarkSlateGrey";
}
}
var cDiv = document.createElement("div");
cDiv.setAttribute("id", "pop_container");
document.body.appendChild(cDiv);
cDiv.style.display = "inline-block";
cDiv.style.position = "fixed";
cDiv.style.top = "20px";
cDiv.style.left = "2%";
cDiv.style.width = "26%";
cDiv.style.height = "12%";
cDiv.style.border = "1px solid DarkSlateGrey ";
cDiv.style.background = "DarkSlateGrey";
cDiv.style.borderRadius = "1em";
cDiv.style.padding = "3px";
cDiv.style.zIndex = "10000";
cDiv.style.opacity = ".9";
cDiv.style.fontFamily = '"Courier New", monospace';
var clsBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(clsBtn);
clsBtn.setAttribute("id", "note_btn_close");
document.getElementById("note_btn_close").innerText = "+";
clsBtn.style.position = "absolute";
clsBtn.style.background = "transparent";
clsBtn.style.display = "inline-block";
clsBtn.style.transform = "scale(3.8, 3.8) translate(-10%, -25%) rotate(45deg)";
clsBtn.style.borderRadius = "1em";
clsBtn.style.transition = "all 366ms";
clsBtn.style.transitionTimingFunction = "cubic-bezier(1,-1.12,.18,1.93)";
clsBtn.style.padding = "0px";
clsBtn.style.boxShadow = "0px";
clsBtn.style.border = "0px";
clsBtn.style.cursor = "pointer";
clsBtn.style.userSelect = "none";
clsBtn.style.fontFamily = '"Courier New", monospace';
clsBtn.style.fontWeight = "bold";
clsBtn.style.color = "Crimson";
var expndBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(expndBtn);
expndBtn.setAttribute("id", "btn_expnd");
document.getElementById("btn_expnd").innerText = ">";
expndBtn.style.position = "absolute";
expndBtn.style.background = "transparent";
expndBtn.style.display = "inline-block";
expndBtn.style.transform = "scale(3.5, 3.5) translate(250%, -25%) rotate(90deg)";
expndBtn.style.borderRadius = "1em";
expndBtn.style.padding = "0px";
expndBtn.style.boxShadow = "0px";
expndBtn.style.border = "0px";
expndBtn.style.cursor = "pointer";
expndBtn.style.userSelect = "none";
expndBtn.style.fontFamily = '"Courier New", monospace';
expndBtn.style.fontWeight = "bold";
expndBtn.style.color = "MediumSeaGreen";
var quickliBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(quickliBtn);
quickliBtn.setAttribute("id", "quickli_search");
document.getElementById("quickli_search").innerText = "Quickli";
quickliBtn.style.position = "absolute";
quickliBtn.style.background = "DarkCyan";
quickliBtn.style.border = "1px solid DarkSlateGrey";
quickliBtn.style.display = "inline-block";
quickliBtn.style.transform = "scale(1.1, 1.1) translate(380%, -80%)";
quickliBtn.style.borderRadius = "1em";
quickliBtn.style.cursor = "pointer";
quickliBtn.style.userSelect = "none";
quickliBtn.style.fontFamily = '"Courier New", monospace';
quickliBtn.style.fontWeight = "bold";
quickliBtn.style.color = "white";
var textbox_1 = document.createElement("TEXTAREA");
textbox_1.setAttribute("id", "textbox_code");
document.getElementById("pop_container").appendChild(textbox_1);
textbox_1.style.width = "99%";
textbox_1.style.height = "92%";
textbox_1.style.padding = "6px";
textbox_1.style.border = "1px solid DarkSlateGrey";
textbox_1.style.background = "FloralWhite";
textbox_1.style.borderRadius = "1em";
textbox_1.style.display = "block";
textbox_1.style.userSelect = "none";
textbox_1.style.transform = "translate(0px, 5%)";
textbox_1.style.fontSize = "1.1em";
textbox_1.style.fontFamily = '"Courier New", monospace';
var evalBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(evalBtn);
evalBtn.setAttribute("id", "evalbtn_box");
document.getElementById("evalbtn_box").innerText = "runScript";
evalBtn.style.background = "DarkCyan";
evalBtn.style.border = "1px solid DarkSlateGrey";
evalBtn.style.width = "30.5%";
evalBtn.style.height = "33px";
evalBtn.style.borderRadius = "1em";
evalBtn.style.cursor = "pointer";
evalBtn.style.color = "white";
evalBtn.style.transform = "translate(0px, 55%)";
evalBtn.style.fontFamily = '"Courier New", monospace';
var encodeBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(encodeBtn);
encodeBtn.setAttribute("id", "encodebtn_box");
document.getElementById("encodebtn_box").innerText = "bookmarklet";
encodeBtn.style.background = "DarkCyan";
encodeBtn.style.border = "1px solid DarkSlateGrey";
encodeBtn.style.width = "30.5%";
encodeBtn.style.height = "33px";
encodeBtn.style.borderRadius = "1em";
encodeBtn.style.cursor = "pointer";
encodeBtn.style.color = "white";
encodeBtn.style.transform = "translate(6%, 55%)";
encodeBtn.style.fontFamily = '"Courier New", monospace';
var saveBtn = document.createElement("button");
document.getElementById("pop_container").appendChild(saveBtn);
saveBtn.setAttribute("id", "savebtn_box");
document.getElementById("savebtn_box").innerText = "send2Sheets";
saveBtn.style.background = "DarkCyan";
saveBtn.style.border = "1px solid DarkSlateGrey";
saveBtn.style.width = "30.5%";
saveBtn.style.height = "33px";
saveBtn.style.borderRadius = "1em";
saveBtn.style.cursor = "pointer";
saveBtn.style.color = "white";
saveBtn.style.transform = "translate(12%, 55%)";
saveBtn.style.fontFamily = '"Courier New", monospace';
dragElement(document.getElementById(("pop_container")));
document.getElementById("evalbtn_box").addEventListener("click", execute);
document.getElementById("encodebtn_box").addEventListener("click", convertToBookmarklet);
document.getElementById("quickli_search").addEventListener("click", runQuickli);
document.getElementById("savebtn_box").addEventListener("click", saveTo);
document.getElementById("note_btn_close").addEventListener("click", close);
document.getElementById("btn_expnd").addEventListener("click", expand);
textbox_1.addEventListener('keyup', tabIs);
window.addEventListener('scroll', transparantElm);
window.addEventListener('keydown', typeOverElm);
function transparantElm(){
cDiv.style.opacity = ".7";
}
function typeOverElm(){