aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-06-25 17:52:58 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-06-25 17:52:58 +0100
commite3743a23276e1c2c5d1ec0304810ccd92812a129 (patch)
tree1e31ec07a7016dac84b2d23c5d593afc16034495
parent93abbffa6dd80caf004cfbe7a4a7eac21b5a552a (diff)
downloadperlweeklychallenge-club-e3743a23276e1c2c5d1ec0304810ccd92812a129.tar.gz
perlweeklychallenge-club-e3743a23276e1c2c5d1ec0304810ccd92812a129.tar.bz2
perlweeklychallenge-club-e3743a23276e1c2c5d1ec0304810ccd92812a129.zip
- Added solutions by Duane Powell.
-rw-r--r--challenge-014/duane-powell/README1
-rw-r--r--challenge-014/duane-powell/perl5/ch-1.pl45
-rw-r--r--challenge-014/duane-powell/perl5/ch-2.pl52
-rw-r--r--members.json1
-rw-r--r--stats/pwc-current.json221
-rw-r--r--stats/pwc-language-breakdown-summary.json46
-rw-r--r--stats/pwc-language-breakdown.json158
-rw-r--r--stats/pwc-leaders.json832
-rw-r--r--stats/pwc-summary-1-30.json52
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json60
-rw-r--r--stats/pwc-summary-91-120.json74
-rw-r--r--stats/pwc-summary.json246
13 files changed, 1009 insertions, 887 deletions
diff --git a/challenge-014/duane-powell/README b/challenge-014/duane-powell/README
new file mode 100644
index 0000000000..3445422743
--- /dev/null
+++ b/challenge-014/duane-powell/README
@@ -0,0 +1 @@
+Solutions by Duane Powell.
diff --git a/challenge-014/duane-powell/perl5/ch-1.pl b/challenge-014/duane-powell/perl5/ch-1.pl
new file mode 100644
index 0000000000..310a23c8d4
--- /dev/null
+++ b/challenge-014/duane-powell/perl5/ch-1.pl
@@ -0,0 +1,45 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+#https://perlweeklychallenge.org/blog/perl-weekly-challenge-014/
+#Write a script to generate Van Eck’s sequence starts with 0. For more information,
+#please check out wikipedia page. https://en.wikipedia.org/wiki/Van_Eck%27s_sequence
+#This challenge was proposed by team member Andrezgz.
+
+my $max;
+my $valid_input = 0;
+while (not $valid_input) {
+ print qq[Van_Eck iterations? ];
+ chomp ($max = <STDIN>);
+ next unless ($max =~ /^[0-9]*$/);
+ $valid_input = 1;
+}
+
+my @Van_Eck_seq = (0);
+my $i = 0;
+for (my $n=0; $n <= $max; $n++) {
+ $Van_Eck_seq[++$i] = 0; #set next in seq to 0 unless we find a previous m = n
+ #were looking for the largest m, so search backwards from m=n-1 to 0
+ for (my $m=$n-1; $m >=0; $m--) {
+ if ($Van_Eck_seq[$n] == $Van_Eck_seq[$m]) {
+ $Van_Eck_seq[$i] = $n-$m;
+ last;
+ }
+ }
+}
+
+print "$_, " foreach @Van_Eck_seq;
+
+__END__
+
+In recreational mathematics van Eck's sequence is an Van_Eck_seqeger sequence defined recursively as follows.
+Let a0 = 0. Then, for n ≥ 0, if there exists an m < n such that am = an, take the largest such m and set an+1 = n − m; otherwise an+1 = 0.
+Thus the first occurrence of an Van_Eck_seqeger in the sequence is followed by a 0, and the second and subsequent occurrences are followed
+by the size of the gap between the two most recent occurrences.
+
+./ch1.pl
+Van_Eck iterations? 17
+0, 0, 1, 0, 2, 0, 2, 2, 1, 6, 0, 5, 0, 2, 6, 5, 4, 0, 5,
+
+
diff --git a/challenge-014/duane-powell/perl5/ch-2.pl b/challenge-014/duane-powell/perl5/ch-2.pl
new file mode 100644
index 0000000000..2252ff08a9
--- /dev/null
+++ b/challenge-014/duane-powell/perl5/ch-2.pl
@@ -0,0 +1,52 @@
+#!/usr/bin/env perl
+use Modern::Perl;
+
+#https://perlweeklychallenge.org/blog/perl-weekly-challenge-014/
+#Using only the official postal (2-letter) abbreviations for the 50 U.S. states, write a script to find the longest
+#English word you can spell? Here is the list of U.S. states abbreviations as per wikipedia page.
+#This challenge was proposed by team member Neil Bowers.
+
+my @state_abbv = qw(AL AK AZ AR CA CO CT DE FL GA HI ID IL IN IA KS KY LA ME MD MA MI MN MS MO MT NE NV NH NJ NM NY NC ND OH OK OR PA RI SC SD TN TX UT VT VA WA WV WI WY);
+my %states = map {$_ => 1} @state_abbv; #create lookup table of state abbv
+
+#words.txt is all English words, thanks to JoeChen2 https://github.com/dwyl/english-words/blob/master/words.txt
+open(my $fh, "<", "words.txt") or die "Can't open < words.txt: $!";
+
+my $longest_word = "";
+while (my $word = <$fh>) {
+ chomp $word;
+ next if (length($word) % 2 == 1); #must be even length word
+ $word = uc($word); #convert to upper case, same case as state abbreviations
+ my @char_pairs = ( $word =~ m/(..)/g ); #split into array by every 2 chars
+
+ my $all_match = 0; #if we match all 2 char pairs with a state abbv the word is a candidate for longest
+ foreach my $abbv (@char_pairs) {
+ $all_match = $states{$abbv};
+ last unless ($all_match);
+ }
+ if ($all_match) {
+ $longest_word = $word if (length($word) >= length($longest_word)); #if there is tie for longest the last word wins
+ say "$word, $longest_word";
+
+ }
+}
+
+__END__
+
+./ch2.pl
+AK, AK
+AKAL, AKAL
+AKAZGA, AKAZGA
+...
+ALKY, ALCAVALA
+ALKYLAMINE, ALKYLAMINE
+ALKYNE, ALKYLAMINE
+ALLA, ALKYLAMINE
+ALLAIN, ALKYLAMINE
+...
+WINY, CACOGALACTIA
+WISC, CACOGALACTIA
+WISD, CACOGALACTIA
+WIWI, CACOGALACTIA
+WV, CACOGALACTIA
+
diff --git a/members.json b/members.json
index 00c32f6e38..d8a69db085 100644
--- a/members.json
+++ b/members.json
@@ -24,6 +24,7 @@
"denis-yurashku" : "Denis Yurashku",
"doug-schrag" : "Doug Schrag",
"donald-hunter" : "Donald Hunter",
+ "duane-powell" : "Duane Powell",
"duncan-c-white" : "Duncan C. White",
"e-choroba" : "E. Choroba",
"eddy-hs" : "Eddy HS",
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index d8cd2b8e4d..e230ba1737 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,15 +1,6 @@
{
"subtitle" : {
- "text" : "[Champions: 12] Last updated at 2019-06-25 15:51:39 GMT"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
+ "text" : "[Champions: 13] Last updated at 2019-06-25 16:49:40 GMT"
},
"xAxis" : {
"type" : "category"
@@ -17,100 +8,35 @@
"title" : {
"text" : "Perl Weekly Challenge - 014"
},
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 014",
- "data" : [
- {
- "drilldown" : "Aaron Sherman",
- "name" : "Aaron Sherman",
- "y" : 2
- },
- {
- "drilldown" : "Andrezgz",
- "name" : "Andrezgz",
- "y" : 2
- },
- {
- "y" : 4,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
- },
- {
- "name" : "Donald Hunter",
- "drilldown" : "Donald Hunter",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba"
- },
- {
- "y" : 2,
- "name" : "Gustavo Chaves",
- "drilldown" : "Gustavo Chaves"
- },
- {
- "y" : 2,
- "drilldown" : "Kevin Colyer",
- "name" : "Kevin Colyer"
- },
- {
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch",
- "y" : 3
- },
- {
- "y" : 3,
- "name" : "Robert Van Dam",
- "drilldown" : "Robert Van Dam"
- },
- {
- "name" : "Roger Bell West",
- "drilldown" : "Roger Bell West",
- "y" : 2
- },
- {
- "drilldown" : "Simon Proctor",
- "name" : "Simon Proctor",
- "y" : 1
- },
- {
- "name" : "Steven Wilson",
- "drilldown" : "Steven Wilson",
- "y" : 1
- }
- ]
- }
- ],
"tooltip" : {
"headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "chart" : {
+ "type" : "column"
},
"drilldown" : {
"series" : [
{
"id" : "Aaron Sherman",
+ "name" : "Aaron Sherman",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Aaron Sherman"
+ ]
},
{
- "id" : "Andrezgz",
+ "name" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Andrezgz"
+ "id" : "Andrezgz"
},
{
"id" : "Dave Jacoby",
@@ -131,7 +57,6 @@
"name" : "Dave Jacoby"
},
{
- "id" : "Donald Hunter",
"data" : [
[
"Perl 6",
@@ -142,11 +67,12 @@
1
]
],
- "name" : "Donald Hunter"
+ "name" : "Donald Hunter",
+ "id" : "Donald Hunter"
},
{
- "name" : "E. Choroba",
- "id" : "E. Choroba",
+ "id" : "Duane Powell",
+ "name" : "Duane Powell",
"data" : [
[
"Perl 5",
@@ -155,23 +81,33 @@
]
},
{
- "name" : "Gustavo Chaves",
+ "name" : "E. Choroba",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Gustavo Chaves"
+ "id" : "E. Choroba"
},
{
+ "id" : "Gustavo Chaves",
+ "name" : "Gustavo Chaves",
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "Kevin Colyer",
"data" : [
[
"Perl 6",
2
]
],
- "id" : "Kevin Colyer",
"name" : "Kevin Colyer"
},
{
@@ -181,37 +117,37 @@
3
]
],
- "id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch"
},
{
- "name" : "Robert Van Dam",
"id" : "Robert Van Dam",
"data" : [
[
"Perl 5",
3
]
- ]
+ ],
+ "name" : "Robert Van Dam"
},
{
"id" : "Roger Bell West",
+ "name" : "Roger Bell West",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Roger Bell West"
+ ]
},
{
- "name" : "Simon Proctor",
"data" : [
[
"Perl 6",
1
]
],
+ "name" : "Simon Proctor",
"id" : "Simon Proctor"
},
{
@@ -221,20 +157,99 @@
1
]
],
- "id" : "Steven Wilson",
- "name" : "Steven Wilson"
+ "name" : "Steven Wilson",
+ "id" : "Steven Wilson"
}
]
},
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "Aaron Sherman",
+ "y" : 2,
+ "name" : "Aaron Sherman"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Andrezgz",
+ "name" : "Andrezgz"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby",
+ "y" : 4
+ },
+ {
+ "name" : "Donald Hunter",
+ "drilldown" : "Donald Hunter",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Duane Powell",
+ "name" : "Duane Powell"
+ },
+ {
+ "drilldown" : "E. Choroba",
+ "y" : 2,
+ "name" : "E. Choroba"
+ },
+ {
+ "name" : "Gustavo Chaves",
+ "drilldown" : "Gustavo Chaves",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Kevin Colyer",
+ "name" : "Kevin Colyer"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
+ "y" : 3
+ },
+ {
+ "name" : "Robert Van Dam",
+ "y" : 3,
+ "drilldown" : "Robert Van Dam"
+ },
+ {
+ "drilldown" : "Roger Bell West",
+ "y" : 2,
+ "name" : "Roger Bell West"
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "y" : 1,
+ "name" : "Simon Proctor"
+ },
+ {
+ "name" : "Steven Wilson",
+ "y" : 1,
+ "drilldown" : "Steven Wilson"
+ }
+ ],
+ "name" : "Perl Weekly Challenge - 014",
+ "colorByPoint" : 1
+ }
+ ],
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "chart" : {
- "type" : "column"
- },
"legend" : {
"enabled" : 0
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 8b0b7d6859..996d9f9403 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -2,6 +2,21 @@
"title" : {
"text" : "Perl Weekly Challenge Contributions - 2019"
},
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ },
+ "type" : "category"
+ },
"series" : [
{
"name" : "Contributions",
@@ -12,7 +27,7 @@
],
[
"Perl 5",
- 547
+ 549
],
[
"Perl 6",
@@ -20,44 +35,29 @@
]
],
"dataLabels" : {
- "y" : 10,
"format" : "{point.y:.0f}",
- "rotation" : -90,
"enabled" : "true",
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
},
+ "align" : "right",
"color" : "#FFFFFF",
- "align" : "right"
+ "rotation" : -90,
+ "y" : 10
}
}
],
- "chart" : {
- "type" : "column"
- },
"subtitle" : {
- "text" : "Last updated at 2019-06-25 15:51:48 GMT"
+ "text" : "Last updated at 2019-06-25 16:49:51 GMT"
},
- "legend" : {
- "enabled" : "false"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"yAxis" : {
+ "min" : 0,
"title" : {
"text" : null
- },
- "min" : 0
- },
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
}
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 25d3a0937b..9671523f97 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,49 +1,41 @@
{
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-25 15:51:48 GMT"
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
- "name" : "Perl Weekly Challenge Languages",
- "colorByPoint" : "true",
"data" : [
{
- "y" : 123,
+ "name" : "#001",
"drilldown" : "001",
- "name" : "#001"
+ "y" : 123
},
{
- "name" : "#002",
+ "drilldown" : "002",
"y" : 104,
- "drilldown" : "002"
+ "name" : "#002"
},
{
- "name" : "#003",
+ "drilldown" : "003",
"y" : 66,
- "drilldown" : "003"
+ "name" : "#003"
},
{
"name" : "#004",
- "drilldown" : "004",
- "y" : 84
+ "y" : 84,
+ "drilldown" : "004"
},
{
- "y" : 66,
"drilldown" : "005",
+ "y" : 66,
"name" : "#005"
},
{
"name" : "#006",
- "drilldown" : "006",
- "y" : 47
+ "y" : 47,
+ "drilldown" : "006"
},
{
- "drilldown" : "007",
+ "name" : "#007",
"y" : 54,
- "name" : "#007"
+ "drilldown" : "007"
},
{
"drilldown" : "008",
@@ -52,23 +44,23 @@
},
{
"name" : "#009",
- "drilldown" : "009",
- "y" : 62
+ "y" : 62,
+ "drilldown" : "009"
},
{
- "name" : "#010",
"y" : 58,
- "drilldown" : "010"
+ "drilldown" : "010",
+ "name" : "#010"
},
{
- "name" : "#011",
+ "y" : 75,
"drilldown" : "011",
- "y" : 75
+ "name" : "#011"
},
{
+ "name" : "#012",
"y" : 80,
- "drilldown" : "012",
- "name" : "#012"
+ "drilldown" : "012"
},
{
"drilldown" : "013",
@@ -76,28 +68,34 @@
"name" : "#013"
},
{
- "y" : 26,
+ "y" : 28,
"drilldown" : "014",
"name" : "#014"
}
- ]
+ ],
+ "colorByPoint" : "true",
+ "name" : "Perl Weekly Challenge Languages"
}
],
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "type" : "category"
},
"tooltip" : {
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
"pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
"followPointer" : "true"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-25 16:49:51 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
+ "legend" : {
+ "enabled" : "false"
},
"drilldown" : {
"series" : [
@@ -116,8 +114,8 @@
10
]
],
- "name" : "001",
- "id" : "001"
+ "id" : "001",
+ "name" : "001"
},
{
"id" : "002",
@@ -138,8 +136,6 @@
]
},
{
- "id" : "003",
- "name" : "003",
"data" : [
[
"Perl 5",
@@ -153,9 +149,13 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "003",
+ "id" : "003"
},
{
+ "name" : "004",
+ "id" : "004",
"data" : [
[
"Perl 5",
@@ -169,11 +169,11 @@
"Blog",
9
]
- ],
- "name" : "004",
- "id" : "004"
+ ]
},
{
+ "id" : "005",
+ "name" : "005",
"data" : [
[
"Perl 5",
@@ -187,11 +187,11 @@
"Blog",
11
]
- ],
- "id" : "005",
- "name" : "005"
+ ]
},
{
+ "name" : "006",
+ "id" : "006",
"data" : [
[
"Perl 5",
@@ -205,13 +205,9 @@
"Blog",
6
]
- ],
- "id" : "006",
- "name" : "006"
+ ]
},
{
- "id" : "007",
- "name" : "007",
"data" : [
[
"Perl 5",
@@ -225,11 +221,13 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "007",
+ "id" : "007"
},
{
- "id" : "008",
"name" : "008",
+ "id" : "008",
"data" : [
[
"Perl 5",
@@ -246,6 +244,8 @@
]
},
{
+ "id" : "009",
+ "name" : "009",
"data" : [
[
"Perl 5",
@@ -259,9 +259,7 @@
"Blog",
11
]
- ],
- "name" : "009",
- "id" : "009"
+ ]
},
{
"data" : [
@@ -282,8 +280,6 @@
"id" : "010"
},
{
- "id" : "011",
- "name" : "011",
"data" : [
[
"Perl 5",
@@ -297,11 +293,11 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "011",
+ "id" : "011"
},
{
- "id" : "012",
- "name" : "012",
"data" : [
[
"Perl 5",
@@ -315,7 +311,9 @@
"Blog",
9
]
- ]
+ ],
+ "id" : "012",
+ "name" : "012"
},
{
"data" : [
@@ -336,10 +334,12 @@
"name" : "013"
},
{
+ "name" : "014",
+ "id" : "014",
"data" : [
[
"Perl 5",
- 17
+ 19
],
[
"Perl 6",
@@ -349,22 +349,22 @@
"Blog",
2
]
- ],
- "name" : "014",
- "id" : "014"
+ ]
}
]
},
- "xAxis" : {
- "type" : "category"
- },
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
}
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index fafd8d79fe..866b5485df 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,365 +1,97 @@
{
- "chart" : {
- "type" : "column"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Score"
- }
+ "legend" : {
+ "enabled" : "false"
},
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
}
},
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-25 15:51:45 GMT"
- },
- "series" : [
- {
- "colorByPoint" : "true",
- "name" : "Perl Weekly Challenge Leaders",
- "data" : [
- {
- "drilldown" : "Joelle Maslak",
- "y" : 136,
- "name" : "#1: Joelle Maslak"
- },
- {
- "name" : "#2: Laurent Rosenfeld",
- "y" : 132,
- "drilldown" : "Laurent Rosenfeld"
- },
- {
- "name" : "#3: Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas",
- "y" : 106
- },
- {
- "name" : "#4: Ruben Westerberg",
- "y" : 92,
- "drilldown" : "Ruben Westerberg"
- },
- {
- "name" : "#5: Adam Russell",
- "y" : 78,
- "drilldown" : "Adam Russell"
- },
- {
- "drilldown" : "Arne Sommer",
- "y" : 70,
- "name" : "#6: Arne Sommer"
- },
- {
- "name" : "#7: Kian-Meng Ang",
- "y" : 68,
- "drilldown" : "Kian-Meng Ang"
- },
- {
- "drilldown" : "Simon Proctor",
- "y" : 68,
- "name" : "#8: Simon Proctor"
- },
- {
- "drilldown" : "Athanasius",
- "y" : 66,
- "name" : "#9: Athanasius"
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 58,
- "name" : "#10: Dave Jacoby"
- },
- {
- "name" : "#11: E. Choroba",
- "drilldown" : "E. Choroba",
- "y" : 58
- },
- {
- "name" : "#12: Gustavo Chaves",
- "drilldown" : "Gustavo Chaves",
- "y" : 58
- },
- {
- "name" : "#13: Andrezgz",
- "y" : 54,
- "drilldown" : "Andrezgz"
- },
- {
- "y" : 54,
- "drilldown" : "Francis Whittle",
- "name" : "#14: Francis Whittle"
- },
- {
- "drilldown" : "Jo Christian Oterhals",
- "y" : 48,
- "name" : "#15: Jo Christian Oterhals"
- },
- {
- "name" : "#16: Dr James A. Smith",
- "drilldown" : "Dr James A. Smith",
- "y" : 44
- },
- {
- "name" : "#17: Daniel Mantovani",
- "y" : 40,
- "drilldown" : "Daniel Mantovani"
- },
- {
- "drilldown" : "Duncan C. White",
- "y" : 40,
- "name" : "#18: Duncan C. White"
- },
- {
- "name" : "#19: Steven Wilson",
- "y" : 34,
- "drilldown" : "Steven Wilson"
- },
- {
- "y" : 34,
- "drilldown" : "Yozen Hernandez",
- "name" : "#20: Yozen Hernandez"
- },
- {
- "drilldown" : "Mark Senn",
- "y" : 32,
- "name" : "#21: Mark Senn"
- },
- {
- "y" : 32,
- "drilldown" : "Nick Logan",
- "name" : "#22: Nick Logan"
- },
- {
- "name" : "#23: Lars Balker",
- "drilldown" : "Lars Balker",
- "y" : 28
- },
- {
- "y" : 26,
- "drilldown" : "Ozzy",
- "name" : "#24: Ozzy"
- },
- {
- "drilldown" : "Guillermo Ramos",
- "y" : 24,
- "name" : "#25: Guillermo Ramos"
- },
- {
- "name" : "#26: Maxim Nechaev",
- "drilldown" : "Maxim Nechaev",
- "y" : 24
- },
- {
- "name" : "#27: Alicia Bielsa",