aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchallenge-131/pete-houston/perl/ch-1.pl29
-rwxr-xr-xchallenge-131/pete-houston/perl/ch-2.pl37
-rw-r--r--stats/pwc-current.json475
-rw-r--r--stats/pwc-language-breakdown-summary.json56
-rw-r--r--stats/pwc-language-breakdown.json786
-rw-r--r--stats/pwc-leaders.json726
-rw-r--r--stats/pwc-summary-1-30.json114
-rw-r--r--stats/pwc-summary-121-150.json102
-rw-r--r--stats/pwc-summary-151-180.json40
-rw-r--r--stats/pwc-summary-181-210.json32
-rw-r--r--stats/pwc-summary-211-240.json38
-rw-r--r--stats/pwc-summary-31-60.json102
-rw-r--r--stats/pwc-summary-61-90.json52
-rw-r--r--stats/pwc-summary-91-120.json108
-rw-r--r--stats/pwc-summary.json34
15 files changed, 1406 insertions, 1325 deletions
diff --git a/challenge-131/pete-houston/perl/ch-1.pl b/challenge-131/pete-houston/perl/ch-1.pl
new file mode 100755
index 0000000000..ef50068ed3
--- /dev/null
+++ b/challenge-131/pete-houston/perl/ch-1.pl
@@ -0,0 +1,29 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 13101.pl
+#
+# USAGE: ./13101.pl N [ N ... ]
+#
+# DESCRIPTION: Output the positive integers grouped as consecutive lists
+#
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 20/09/21
+#===============================================================================
+
+use strict;
+use warnings;
+
+my @out;
+print '(';
+for my $n (map { s/[^0-9]//; $_ } @ARGV) {
+ if ($#out == -1 || $n == $out[-1] + 1) {
+ push @out, $n;
+ } else {
+ print '[' . join (', ', @out) . '], ';
+ @out = $n;
+ }
+}
+print '[' . join (', ', @out) . "])\n";
diff --git a/challenge-131/pete-houston/perl/ch-2.pl b/challenge-131/pete-houston/perl/ch-2.pl
new file mode 100755
index 0000000000..d615d69902
--- /dev/null
+++ b/challenge-131/pete-houston/perl/ch-2.pl
@@ -0,0 +1,37 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 13102.pl
+#
+# USAGE: ./13102.pl PAIRS STRING
+#
+# DESCRIPTION: Print the opening pairs and closing pairs from the
+# string separately.
+#
+# REQUIREMENTS: Perl 5.10 or newer
+# BUGS: If you think any string eval is a bug ...
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 20/09/21
+#===============================================================================
+
+use strict;
+use warnings;
+use feature 'say';
+
+my ($open, $close);
+my $pairs = shift;
+for my $i (0 .. length ($pairs) - 1) {
+ my $c = substr ($pairs, $i, 1);
+ if ($i % 2) {
+ $close .= $c;
+ } else {
+ $open .= $c;
+ }
+}
+
+my $input = shift;
+for my $cleaner (map quotemeta, $open, $close) {
+ eval "say \$input =~ tr/$cleaner//cdr;";
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index cd76dc6f83..0120e0c59c 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,177 +1,7 @@
{
- "series" : [
- {
- "name" : "The Weekly Challenge - 131",
- "colorByPoint" : 1,
- "data" : [
- {
- "name" : "Abigail",
- "y" : 4,
- "drilldown" : "Abigail"
- },
- {
- "drilldown" : "Adam Russell",
- "name" : "Adam Russell",
- "y" : 1
- },
- {
- "name" : "Arne Sommer",
- "y" : 5,
- "drilldown" : "Arne Sommer"
- },
- {
- "y" : 4,
- "name" : "Athanasius",
- "drilldown" : "Athanasius"
- },
- {
- "drilldown" : "Ben Davies",
- "y" : 1,
- "name" : "Ben Davies"
- },
- {
- "y" : 3,
- "name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung"
- },
- {
- "name" : "Dave Jacoby",
- "y" : 3,
- "drilldown" : "Dave Jacoby"
- },
- {
- "y" : 2,
- "name" : "Duncan C. White",
- "drilldown" : "Duncan C. White"
- },
- {
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
- },
- {
- "y" : 6,
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti"
- },
- {
- "drilldown" : "Ian Goodnight",
- "name" : "Ian Goodnight",
- "y" : 4
- },
- {
- "name" : "Ivan Dimitrov",
- "y" : 2,
- "drilldown" : "Ivan Dimitrov"
- },
- {
- "drilldown" : "James Smith",
- "y" : 3,
- "name" : "James Smith"
- },
- {
- "name" : "Jan Krnavek",
- "y" : 2,
- "drilldown" : "Jan Krnavek"
- },
- {
- "drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey",
- "y" : 1
- },
- {
- "name" : "Laurent Rosenfeld",
- "y" : 3,
- "drilldown" : "Laurent Rosenfeld"
- },
- {
- "y" : 2,
- "name" : "Lubos Kolouch",
- "drilldown" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari",
- "y" : 4
- },
- {
- "name" : "Mark Anderson",
- "y" : 2,
- "drilldown" : "Mark Anderson"
- },
- {
- "y" : 2,
- "name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh"
- },
- {
- "drilldown" : "Mohammad S Anwar",
- "y" : 1,
- "name" : "Mohammad S Anwar"
- },
- {
- "name" : "Niels van Dijke",
- "y" : 2,
- "drilldown" : "Niels van Dijke"
- },
- {
- "drilldown" : "Olivier Delouya",
- "name" : "Olivier Delouya",
- "y" : 1
- },
- {
- "y" : 2,
- "name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
- },
- {
- "name" : "Rich Snyder",
- "y" : 2,
- "drilldown" : "Rich Snyder"
- },
- {
- "y" : 5,
- "name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West"
- },
- {
- "drilldown" : "Simon Green",
- "name" : "Simon Green",
- "y" : 3
- },
- {
- "drilldown" : "Simon Proctor",
- "y" : 1,
- "name" : "Simon Proctor"
- },
- {
- "y" : 4,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
- },
- {
- "y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
- },
- {
- "y" : 2,
- "name" : "Wanderdoc",
- "drilldown" : "Wanderdoc"
- }
- ]
- }
- ],
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 31] Last updated at 2021-09-27 01:44:36 GMT"
- },
"drilldown" : {
"series" : [
{
- "id" : "Abigail",
"name" : "Abigail",
"data" : [
[
@@ -182,17 +12,18 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Abigail"
},
{
- "id" : "Adam Russell",
- "name" : "Adam Russell",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "name" : "Adam Russell",
+ "id" : "Adam Russell"
},
{
"id" : "Arne Sommer",
@@ -213,6 +44,7 @@
"name" : "Arne Sommer"
},
{
+ "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -223,21 +55,19 @@
2
]
],
- "name" : "Athanasius",
"id" : "Athanasius"
},
{
- "name" : "Ben Davies",
"data" : [
[
"Raku",
1
]
],
+ "name" : "Ben Davies",
"id" : "Ben Davies"
},
{
- "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -248,10 +78,10 @@
1
]
],
- "name" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung"
},
{
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -262,6 +92,7 @@
1
]
],
+ "name" : "Dave Jacoby",
"id" : "Dave Jacoby"
},
{
@@ -275,17 +106,16 @@
]
},
{
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ "name" : "E. Choroba"
},
{
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -300,11 +130,10 @@
2
]
],
- "name" : "Flavio Poletti"
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti"
},
{
- "id" : "Ian Goodnight",
- "name" : "Ian Goodnight",
"data" : [
[
"Perl",
@@ -314,17 +143,19 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Ian Goodnight",
+ "id" : "Ian Goodnight"
},
{
+ "id" : "Ivan Dimitrov",
+ "name" : "Ivan Dimitrov",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Ivan Dimitrov",
- "id" : "Ivan Dimitrov"
+ ]
},
{
"id" : "James Smith",
@@ -341,28 +172,27 @@
"name" : "James Smith"
},
{
+ "id" : "Jan Krnavek",
"name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek"
+ ]
},
{
- "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
1
]
],
- "id" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey"
},
{
"id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -376,17 +206,18 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Laurent Rosenfeld"
},
{
- "id" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
],
- "name" : "Lubos Kolouch"
+ "id" : "Lubos Kolouch"
},
{
"name" : "Luca Ferrari",
@@ -404,22 +235,22 @@
},
{
"id" : "Mark Anderson",
- "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Mark Anderson"
},
{
- "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
+ "name" : "Matthew Neleigh",
"id" : "Matthew Neleigh"
},
{
@@ -434,33 +265,43 @@
},
{
"id" : "Niels van Dijke",
- "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Niels van Dijke"
},
{
- "name" : "Olivier Delouya",
"data" : [
[
"Perl",
1
]
],
+ "name" : "Olivier Delouya",
"id" : "Olivier Delouya"
},
{
+ "name" : "Pete Houston",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "id" : "Pete Houston"
+ },
+ {
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
2
]
],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ "name" : "Peter Campbell Smith"
},
{
"id" : "Rich Snyder",
@@ -473,6 +314,8 @@
"name" : "Rich Snyder"
},
{
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -486,12 +329,11 @@
"Blog",
1
]
- ],
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West"
+ ]
},
{
"id" : "Simon Green",
+ "name" : "Simon Green",
"data" : [
[
"Perl",
@@ -501,20 +343,20 @@
"Blog",
1
]
- ],
- "name" : "Simon Green"
+ ]
},
{
+ "id" : "Simon Proctor",
"name" : "Simon Proctor",
"data" : [
[
"Raku",
1
]
- ],
- "id" : "Simon Proctor"
+ ]
},
{
+ "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
"data" : [
[
@@ -525,10 +367,10 @@
"Raku",
2
]
- ],
- "id" : "Ulrich Rieke"
+ ]
},
{
+ "id" : "W. Luis Mochan",
"name" : "W. Luis Mochan",
"data" : [
[
@@ -539,47 +381,220 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan"
+ ]
},
{
- "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
],
- "name" : "Wanderdoc"
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc"
}
]
},
+ "title" : {
+ "text" : "The Weekly Challenge - 131"
+ },
"chart" : {
"type" : "column"
},
+ "subtitle" : {
+ "text" : "[Champions: 32] Last updated at 2021-09-27 02:12:03 GMT"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "series" : [
+ {
+ "name" : "The Weekly Challenge - 131",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "drilldown" : "Abigail",
+ "y" : 4,
+ "name" : "Abigail"
+ },
+ {
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "y" : 5,
+ "name" : "Arne Sommer"
+ },
+ {
+ "name" : "Athanasius",
+ "y" : 4,
+ "drilldown" : "Athanasius"
+ },
+ {
+ "y" : 1,
+ "name" : "Ben Davies",
+ "drilldown" : "Ben Davies"
+ },
+ {
+ "drilldown" : "Cheok-Yin Fung",
+ "name" : "Cheok-Yin Fung",
+ "y" : 3
+ },
+ {
+ "y" : 3,
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "y" : 2,
+ "name" : "Duncan C. White",
+ "drilldown" : "Duncan C. White"
+ },
+ {
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Flavio Poletti",
+ "y" : 6,
+ "name" : "Flavio Poletti"
+ },
+ {
+ "drilldown" : "Ian Goodnight",
+ "y" : 4,
+ "name" : "Ian Goodnight"
+ },
+ {
+ "y" : 2,
+ "name" : "Ivan Dimitrov",
+ "drilldown" : "Ivan Dimitrov"
+ },
+ {
+ "drilldown" : "James Smith",
+ "name" : "James Smith",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
+ "y" : 2
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "y" : 1,
+ "drilldown" : "Jorg Sommrey"
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "y" : 3
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "y" : 2,
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "name" : "Luca Ferrari",
+ "y" : 4,
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "y" : 2,
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
+ },
+ {
+ "drilldown" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Mohammad S Anwar",
+ "name" : "Mohammad S Anwar",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
+ "y" : 2
+ },
+ {
+ "name" : "Olivier Delouya",
+ "y" : 1,
+ "drilldown" : "Olivier Delouya"
+ },
+ {
+ "drilldown" : "Pete Houston",
+ "y" : 2,
+ "name" : "Pete Houston"
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "y" : 2,
+ "drilldown" : "Peter Campbell Smith"
+ },
+ {
+ "drilldown" : "Rich Snyder",
+ "name" : "Rich Snyder",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Simon Green",
+ "name" : "Simon Green",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "y" : 1,
+ "name" : "Simon Proctor"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "y" : 4,
+ "drilldown" : "Ulrich Rieke"
+ },
+ {
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
+ "y" : 3
+ },
+ {
+ "name" : "Wanderdoc",
+ "y" : 2,
+ "drilldown" : "Wanderdoc"
+ }
+ ]
+ }
+ ],
"tooltip" : {
+ "followPointer" : 1,
"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
- },
- "title" : {
- "text" : "The Weekly Challenge - 131"
- },
- "xAxis" : {
- "type" : "category"
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
},
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
}
+ },
+ "xAxis" : {
+ "type" : "category"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index b0d8957674..1199e78bde 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,12 +1,12 @@
{
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
+ "legend" : {
+ "enabled" : "false"
},
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
+ "subtitle" : {
+ "text" : "Last updated at 2021-09-27 02:12:03 GMT"
+ },
+ "chart" : {
+ "type" : "column"
},
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2021]"
@@ -20,12 +20,20 @@
}
}
},
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
- "name" : "Contributions",
+ "dataLabels" : {
+ "y" : 10,
+ "align" : "right",
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "rotation" : -90,
+ "format" : "{point.y:.0f}",
+ "enabled" : "true",
+ "color" : "#FFFFFF"
+ },
"data" : [
[
"Blog",
@@ -33,31 +41,23 @@
],
[
"Perl",
- 6258
+ 6260
],
[
"Raku",
3840
]
],
- "dataLabels" : {
- "rotation" : -90,
- "format" : "{point.y:.0f}",
- "enabled" : "true",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "align" : "right",
- "y" : 10,
- "color" : "#FFFFFF"
- }
+ "name" : "Contributions"
}
],
- "subtitle" : {
- "text" : "Last updated at 2021-09-27 01:44:36 GMT"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
- "chart" : {
- "type" : "column"
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 7e684de831..5f1f9df94e 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,6 +1,20 @@
{
- "legend" : {
- "enabled" : "false"
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "tooltip" : {
+ "followPointer" : "true",
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
},
"series" : [
{
@@ -21,13 +35,13 @@
"y" : 81
},
{
- "drilldown" : "004",
"name" : "#004",
- "y" : 99
+ "y" : 99,
+ "drilldown" : "004"
},
{
- "name" : "#005",
"y" : 78,
+ "name" : "#005",
"drilldown" : "005"
},
{
@@ -36,38 +50,38 @@
"name" : "#006"
},
{
- "y" : 64,
"name" : "#007",
+ "y" : 64,
"drilldown" : "007"
},
{
"drilldown" : "008",
- "y" : 78,
- "name" : "#008"
+ "name" : "#008",
+ "y" : 78
},
{
+ "drilldown" : "009",
"name" : "#009",
- "y" : 76,
- "drilldown" : "009"
+ "y" : 76
},
{
+ "drilldown" : "010",
"name" : "#010",
- "y" : 65,
- "drilldown" : "010"
+ "y" : 65
},
{
+ "drilldown" : "011",
"y" : 85,
- "name" : "#011",
- "drilldown" : "011"
+ "name" : "#011"
},
{
- "drilldown" : "012",
"y" : 89,
- "name" : "#012"
+ "name" : "#012",
+ "drilldown" : "012"
},
{
- "name" : "#013",
"y" : 85,
+ "name" : "#013",
"drilldown" : "013"
},
{
@@ -76,14 +90,14 @@
"y" : 101
},
{
- "drilldown" : "015",
"name" : "#015",
- "y" : 99
+ "y" : 99,
+ "drilldown" : "015"
},
{
- "drilldown" : "016",
"y" : 71,
- "name" : "#016"
+ "name" : "#016",
+ "drilldown" : "016"
},
{
"drilldown" : "017",
@@ -91,13 +105,13 @@
"name" : "#017"
},
{
- "drilldown" : "018",
"name" : "#018",
- "y" : 81
+ "y" : 81,
+ "drilldown" : "018"
},
{
- "name" : "#019",
"y" : 103,
+ "name" : "#019",
"drilldown" : "019"
},
{
@@ -111,8 +125,8 @@
"drilldown" : "021"
},
{
- "y" : 68,
"name" : "#022",
+ "y" : 68,
"drilldown" : "022"
},
{
@@ -121,29 +135,29 @@
"drilldown" : "023"
},
{
- "drilldown" : "024",
+ "y" : 75,
"name" : "#024",
- "y" : 75
+ "drilldown" : "024"
},
{
+ "drilldown" : "025",
"name" : "#025",
- "y" : 59,
- "drilldown" : "025"
+ "y" : 59
},
{
"drilldown" : "026",
- "y" : 74,
- "name" : "#026"
+ "name" : "#026",
+ "y" : 74
},
{
- "name" : "#027",
+ "drilldown" : "027",
"y" : 60,
- "drilldown" : "027"
+ "name" : "#027"
},
{
- "name" : "#028",
+ "drilldown" : "028",
"y" : 80,
- "drilldown" : "028"
+ "name" : "#028"
},
{
"name" : "#029",
@@ -151,9 +165,9 @@
"drilldown" : "029"
},
{
- "drilldown" : "030",
+ "y" : 117,
"name" : "#030",
- "y" : 117
+ "drilldown" : "030"
},
{
"drilldown" : "031",
@@ -161,9 +175,9 @@
"name" : "#031"
},
{
- "y" : 94,
+ "drilldown" : "032",
"name" : "#032",
- "drilldown" : "032"
+ "y" : 94
},
{
"y" : 110,
@@ -171,19 +185,19 @@