aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-06-08 13:56:41 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-06-08 13:56:41 +0100
commit14e4db4d669770384019246cd819e0842cc67a4e (patch)
treed37eb54ab0c54bfb26a43f6694285dc822a7f95f
parent551bfbbdae65eea1b691a2749695dec2ad72206c (diff)
downloadperlweeklychallenge-club-14e4db4d669770384019246cd819e0842cc67a4e.tar.gz
perlweeklychallenge-club-14e4db4d669770384019246cd819e0842cc67a4e.tar.bz2
perlweeklychallenge-club-14e4db4d669770384019246cd819e0842cc67a4e.zip
- Added solutions by Robbie Hatley.
- Added solutions by Luca Ferrari. - Added solutions by PokGoPun. - Added solutions by Roger Bell_West. - Added solutions by Jan Krnavek. - Added solutions by Jorg Sommrey. - Added solutions by Adam Russell. - Added solutions by Reinier Maliepaard.
-rw-r--r--challenge-272/reinier-maliepaard/blog.txt1
-rw-r--r--challenge-272/reinier-maliepaard/perl/ch-1.pl53
-rw-r--r--challenge-272/reinier-maliepaard/perl/ch-2.pl60
-rw-r--r--challenge-272/reinier-maliepaard/perl/ch-2a.pl16
-rw-r--r--stats/pwc-current.json326
-rw-r--r--stats/pwc-language-breakdown-summary.json72
-rw-r--r--stats/pwc-language-breakdown.json1910
-rw-r--r--stats/pwc-leaders.json496
-rw-r--r--stats/pwc-summary-1-30.json44
-rw-r--r--stats/pwc-summary-121-150.json112
-rw-r--r--stats/pwc-summary-151-180.json106
-rw-r--r--stats/pwc-summary-181-210.json48
-rw-r--r--stats/pwc-summary-211-240.json38
-rw-r--r--stats/pwc-summary-241-270.json48
-rw-r--r--stats/pwc-summary-271-300.json46
-rw-r--r--stats/pwc-summary-301-330.json44
-rw-r--r--stats/pwc-summary-31-60.json42
-rw-r--r--stats/pwc-summary-61-90.json36
-rw-r--r--stats/pwc-summary-91-120.json46
-rw-r--r--stats/pwc-summary.json76
20 files changed, 1932 insertions, 1688 deletions
diff --git a/challenge-272/reinier-maliepaard/blog.txt b/challenge-272/reinier-maliepaard/blog.txt
new file mode 100644
index 0000000000..7d54963077
--- /dev/null
+++ b/challenge-272/reinier-maliepaard/blog.txt
@@ -0,0 +1 @@
+https://reiniermaliepaard.nl/perl/pwc/index.php?id=pwc272
diff --git a/challenge-272/reinier-maliepaard/perl/ch-1.pl b/challenge-272/reinier-maliepaard/perl/ch-1.pl
new file mode 100644
index 0000000000..1c6542cc84
--- /dev/null
+++ b/challenge-272/reinier-maliepaard/perl/ch-1.pl
@@ -0,0 +1,53 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+=begin
+ Here my solution TASK #1 along with alternatives from Niels van Dijke and James Curtis-Smith.
+ I did some benchmark (https://metacpan.org/pod/Benchmark) with 'timethese':
+ James' join+split is the fastest solution, even when the validation in Niels' and my
+ solution is removed
+=cut
+
+use Data::Validate::IP qw(is_ipv4);
+
+sub defangIP {
+
+ if (is_ipv4($_[0])) {
+ $_[0] =~ s/\./[.]/g;
+ }
+ else {
+ print("No valid IP address!");
+ }
+
+# Inspired by Niels van Dijke's oneliner which uses the necessary /r switch
+# (Niels uses for validation another module Net::IP)
+# (is_ipv4($_[0])) ? $_[0] =~ s/\./[.]/gr : "No valid IP address!";
+
+# James Curtis-Smith solution:
+# join '[.]', split /\./, $_[0];
+}
+
+# TESTS
+my $ip;
+
+# Example 1
+$ip = "1.1.1.1";
+print(defangIP($ip), "\n"); # Output: 1[.]1[.]1[.]1
+
+# Example 2
+$ip = "255.101.1.0";
+print(defangIP($ip), "\n"); # Output: 255[.]101[.]1[.]0
+
+# Example 3
+$ip = "123.234.345.001";
+print(defangIP($ip), "\n"); # Output: "No valid IP address!
+
+# Example 4
+# From: https://metacpan.org/pod/Data::Validate::IP
+# There are security implications to this around certain oddly formed addresses.
+# Notably, an address like "010.0.0.1" is technically valid, but the operating
+# system will treat '010' as an octal number: '010.0.0.1' is interpreted as '8.0.0.1'
+# James' solution and Niels' original do not take that into account.
+$ip = "010.0.0.1";
+print(defangIP($ip), "\n"); # Output: "No valid IP address!
diff --git a/challenge-272/reinier-maliepaard/perl/ch-2.pl b/challenge-272/reinier-maliepaard/perl/ch-2.pl
new file mode 100644
index 0000000000..e67813f50c
--- /dev/null
+++ b/challenge-272/reinier-maliepaard/perl/ch-2.pl
@@ -0,0 +1,60 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+use Benchmark qw(:all);
+
+=begin
+ Here is my solution for TASK #2, along with alternatives from
+ Niels van Dijke and James Curtis-Smith. I shared the benchmark results,
+ which show some variability when run multiple times. Nonetheless, James's
+ solution is the fastest.
+=cut
+
+# Reinier Maliepaard: function to calculate total sum using split and for
+sub ascii_differences_sum_split_1 {
+ my @chars = split(//, $_[0]);
+ my $total_sum = 0;
+
+ for my $i (0 .. $#chars - 1) {
+ $total_sum += abs(ord($chars[$i]) - ord($chars[$i + 1]));
+ }
+
+ return($total_sum);
+}
+
+# James Curtis-Smith: function to calculate total sum using split and for
+sub ascii_differences_sum_split_2 {
+ my ($t, @l) = (0, split //, $_[0]);
+
+ my $f = ord shift @l;
+
+ ($t += abs($f - ord)), $f=ord for @l;
+
+ $t;
+}
+
+# Niels van Dijke: function to calculate total sum using sum0 and slide
+use List::Util qw(sum0);
+use List::MoreUtils qw(slide);
+
+sub ascii_differences_sum_slide {
+ sum0 slide {abs(ord($b) - ord($a))} split '',$_[0]
+}
+
+# A fanciful creation by fans, combining various Elvish elements from Tolkien's work.
+my $input_string = "Aearenuialinorosinaiantirnoitisirsiensinoit";
+
+# Benchmark all three methods
+timethese(1000000, {
+ 'Using split_1' => sub { ascii_differences_sum_split_1($input_string) },
+ 'Using split_2' => sub { ascii_differences_sum_split_2($input_string) },
+ 'Using slide' => sub { ascii_differences_sum_slide($input_string) },
+});
+
+=begin
+Results:
+ Benchmark: timing 1000000 iterations of Using slide, Using split_1, Using split_2...
+ Using slide: 7 wallclock secs ( 6.55 usr + 0.00 sys = 6.55 CPU) @ 152671.76/s (n=1000000)
+ Using split_1: 7 wallclock secs ( 6.87 usr + 0.00 sys = 6.87 CPU) @ 145560.41/s (n=1000000)
+ Using split_2: 6 wallclock secs ( 5.76 usr + 0.00 sys = 5.76 CPU) @ 173611.11/s (n=1000000)
+=cut
diff --git a/challenge-272/reinier-maliepaard/perl/ch-2a.pl b/challenge-272/reinier-maliepaard/perl/ch-2a.pl
new file mode 100644
index 0000000000..5c2b34ddce
--- /dev/null
+++ b/challenge-272/reinier-maliepaard/perl/ch-2a.pl
@@ -0,0 +1,16 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+sub ascii_differences_sum_split_2_alt
+{
+ my ( $t, @list ) = ( 0, split(//, $_[0]) );
+
+ my $f = ord( shift(@list) );
+
+ for (@list) {
+ $t += abs( $f - ord($_) );
+ $f = ord($_);
+ }
+ return($t);
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 689963ed7b..ac531cbb78 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,4 +1,23 @@
{
+ "xAxis" : {
+ "type" : "category"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 272"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 24] Last updated at 2024-06-08 12:52:21 GMT"
+ },
+ "tooltip" : {
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
+ },
"drilldown" : {
"series" : [
{
@@ -8,30 +27,34 @@
2
],
[
- "Raku",
- 2
- ],
- [
"Blog",
1
]
],
- "name" : "Ali Moradi",
- "id" : "Ali Moradi"
+ "name" : "Adam Russell",
+ "id" : "Adam Russell"
},
{
+ "name" : "Ali Moradi",
+ "id" : "Ali Moradi",
"data" : [
[
"Perl",
2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
]
- ],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ ]
},
{
- "name" : "David Ferrone",
- "id" : "David Ferrone",
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -46,8 +69,18 @@
2
]
],
+ "name" : "David Ferrone",
+ "id" : "David Ferrone"
+ },
+ {
"name" : "E. Choroba",
- "id" : "E. Choroba"
+ "id" : "E. Choroba",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
},
{
"data" : [
@@ -56,8 +89,8 @@
2
]
],
- "id" : "Feng Chang",
- "name" : "Feng Chang"
+ "name" : "Feng Chang",
+ "id" : "Feng Chang"
},
{
"data" : [
@@ -74,8 +107,32 @@
1
]
],
- "name" : "Jaldhar H. Vyas",
- "id" : "Jaldhar H. Vyas"
+ "id" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas"
+ },
+ {
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "id" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
"data" : [
@@ -92,40 +149,56 @@
1
]
],
- "name" : "Laurent Rosenfeld",
- "id" : "Laurent Rosenfeld"
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
- "name" : "Mark Anderson",
- "id" : "Mark Anderson",
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"data" : [
[
"Raku",
2
+ ],
+ [
+ "Blog",
+ 9
]
]
},
{
- "name" : "Matthew Neleigh",
- "id" : "Matthew Neleigh",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "id" : "Mark Anderson",
+ "name" : "Mark Anderson"
+ },
+ {
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke"
},
{
+ "name" : "Packy Anderson",
+ "id" : "Packy Anderson",
"data" : [
[
"Perl",
@@ -139,11 +212,11 @@
"Blog",
1
]
- ],
- "name" : "Packy Anderson",
- "id" : "Packy Anderson"
+ ]
},
{
+ "name" : "Peter Campbell Smith",
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -153,9 +226,7 @@
"Blog",
1
]
- ],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ ]
},
{
"data" : [
@@ -168,14 +239,46 @@
"id" : "Peter Meszaros"
},
{
+ "id" : "Reinier Maliepaard",
+ "name" : "Reinier Maliepaard",
"data" : [
[
"Perl",
2
+ ],
+ [
+ "Blog",
+ 1
]
- ],
+ ]
+ },
+ {
"id" : "Robbie Hatley",
- "name" : "Robbie Hatley"
+ "name" : "Robbie Hatley",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ]
+ ]
},
{
"data" : [
@@ -198,12 +301,10 @@
2
]
],
- "name" : "Thomas Kohler",
- "id" : "Thomas Kohler"
+ "id" : "Thomas Kohler",
+ "name" : "Thomas Kohler"
},
{
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -213,9 +314,13 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -225,34 +330,42 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "subtitle" : {
- "text" : "[Champions: 18] Last updated at 2024-06-05 21:18:19 GMT"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
}
},
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"series" : [
{
- "name" : "The Weekly Challenge - 272",
- "colorByPoint" : 1,
"data" : [
{
- "drilldown" : "Ali Moradi",
+ "y" : 3,
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell"
+ },
+ {
"name" : "Ali Moradi",
+ "drilldown" : "Ali Moradi",
"y" : 5
},
{
"y" : 2,
- "name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby"
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
"name" : "David Ferrone",
@@ -260,107 +373,108 @@
"drilldown" : "David Ferrone"
},
{
+ "name" : "E. Choroba",
"drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
+ "y" : 2
},
{
+ "name" : "Feng Chang",
"drilldown" : "Feng Chang",
- "y" : 2,
- "name" : "Feng Chang"
+ "y" : 2
},
{
+ "name" : "Jaldhar H. Vyas",
"drilldown" : "Jaldhar H. Vyas",
- "y" : 5,
- "name" : "Jaldhar H. Vyas"
+ "y" : 5
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
- "name" : "Laurent Rosenfeld",
"y" : 3,
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 3
+ },
+ {
+ "y" : 11,
+ "drilldown" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
- "y" : 2,
"name" : "Mark Anderson",
- "drilldown" : "Mark Anderson"
+ "drilldown" : "Mark Anderson",
+ "y" : 2
},
{
- "drilldown" : "Matthew Neleigh",
"y" : 2,
+ "drilldown" : "Matthew Neleigh",
"name" : "Matthew Neleigh"
},
{
"drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke",
- "y" : 2
+ "y" : 2,
+ "name" : "Niels van Dijke"
},
{
- "y" : 5,
"name" : "Packy Anderson",
+ "y" : 5,
"drilldown" : "Packy Anderson"
},
{
- "y" : 3,
"name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
+ "drilldown" : "Peter Campbell Smith",
+ "y" : 3
},
{
- "name" : "Peter Meszaros",
+ "drilldown" : "Peter Meszaros",
"y" : 2,
- "drilldown" : "Peter Meszaros"
+ "name" : "Peter Meszaros"
+ },
+ {
+ "name" : "Reinier Maliepaard",
+ "drilldown" : "Reinier Maliepaard",
+ "y" : 3
},
{
- "y" : 2,
"name" : "Robbie Hatley",
- "drilldown" : "Robbie Hatley"
+ "drilldown" : "Robbie Hatley",
+ "y" : 3
+ },
+ {
+ "name" : "Roger Bell_West",
+ "y" : 4,
+ "drilldown" : "Roger Bell_West"
},
{
"name" : "Santiago Leyva",
- "y" : 2,
- "drilldown" : "Santiago Leyva"
+ "drilldown" : "Santiago Leyva",
+ "y" : 2
},
{
- "y" : 4,
"name" : "Thomas Kohler",
+ "y" : 4,
"drilldown" : "Thomas Kohler"
},
{
- "drilldown" : "Ulrich Rieke",
"y" : 4,
+ "drilldown" : "Ulrich Rieke",
"name" : "Ulrich Rieke"
},
{
- "drilldown" : "W. Luis Mochan",
"name" : "W. Luis Mochan",
+ "drilldown" : "W. Luis Mochan",
"y" : 3
}
- ]
- }
- ],
- "legend" : {
- "enabled" : 0
- },
- "title" : {
- "text" : "The Weekly Challenge - 272"
- },
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
- },
- "chart" : {
- "type" : "column"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
+ ],
+ "name" : "The Weekly Challenge - 272",
+ "colorByPoint" : 1
}
- },
- "xAxis" : {
- "type" : "category"
- }
+ ]
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index fc2e54709a..f04f4fca20 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,24 +1,12 @@
{
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
"xAxis" : {
+ "type" : "category",
"labels" : {
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
}
- },
- "type" : "category"
- },
- "subtitle" : {
- "text" : "Last updated at 2024-06-05 21:18:19 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ }
},
"yAxis" : {
"min" : 0,
@@ -26,38 +14,50 @@
"text" : null
}
},
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
"name" : "Contributions",
- "dataLabels" : {
- "rotation" : -90,
- "align" : "right",
- "y" : 10,
- "color" : "#FFFFFF",
- "format" : "{point.y:.0f}",
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "enabled" : "true"
- },
"data" : [
[
"Blog",
- 4926
+ 4939
],
[
"Perl",
- 14079
+ 14087
],
[
"Raku",
- 8163
+ 8169
]
- ]
+ ],
+ "dataLabels" : {
+ "y" : 10,
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "color" : "#FFFFFF",
+ "format" : "{point.y:.0f}",
+ "enabled" : "true",
+ "rotation" : -90,
+ "align" : "right"
+ }
}
- ]
+ ],
+ "legend" : {
+ "enabled" : "false"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2024-06-08 12:52:21 GMT"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ }
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index a28eb17b1c..2b91515c98 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,22 +1,28 @@
{
+ "xAxis" : {
+ "type" : "category"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "legend" : {
+ "enabled" : "false"
+ },
"series" : [
{
"colorByPoint" : "true",
"name" : "The Weekly Challenge Languages",
"data" : [
{
- "drilldown" : "001",
"name" : "#001",
- "y" : 168
+ "y" : 168,
+ "drilldown" : "001"
},
{
- "drilldown" : "002",
"name" : "#002",
+ "drilldown" : "002",
"y" : 133
},
{
@@ -30,9 +36,9 @@
"drilldown" : "004"
},
{
- "y" : 82,
"name" : "#005",
- "drilldown" : "005"
+ "drilldown" : "005",
+ "y" : 82
},
{
"name" : "#006",
@@ -41,8 +47,8 @@
},
{
"name" : "#007",
- "y" : 71,
- "drilldown" : "007"
+ "drilldown" : "007",
+ "y" : 71
},
{
"name" : "#008",
@@ -55,64 +61,64 @@
"name" : "#009"
},
{
- "drilldown" : "010",
"name" : "#010",
- "y" : 71
+ "y" : 71,
+ "drilldown" : "010"
},
{
"y" : 91,
- "name" : "#011",
- "drilldown" : "011"
+ "drilldown" : "011",
+ "name" : "#011"
},
{
- "drilldown" : "012",
"name" : "#012",
+ "drilldown" : "012",
"y" : 96
},
{
"drilldown" : "013",
- "name" : "#013",
- "y" : 88
+ "y" : 88,
+ "name" : "#013"
},
{
- "name" : "#014",
"y" : 104,
- "drilldown" : "014"
+ "drilldown" : "014",
+ "name" : "#014"
},
{
- "name" : "#015",
"y" : 103,
- "drilldown" : "015"
+ "drilldown" : "015",
+ "name" : "#015"
},
{
+ "name" : "#016",
"drilldown" : "016",
- "y" : 75,
- "name" : "#016"
+ "y" : 75
},
{
+ "name" : "#017",
"drilldown" : "017",
- "y" : 87,
- "name" : "#017"
+ "y" : 87
},
{
- "y" : 84,
"name" : "#018",
- "drilldown" : "018"
+ "drilldown" : "018",
+ "y" : 84
},
{
- "name" : "#019",
"y" : 105,
- "drilldown" : "019"
+ "drilldown" : "019",
+ "name" : "#019"
},
{
"y" : 103,
- "name" : "#020",
- "drilldown" : "020"
+ "drilldown" : "020",
+ "name" : "#020"
},
{
+ "drilldown" : "021",
"y" : 74,
- "name" : "#021",
- "drilldown" : "021"
+ "name" : "#021"
},
{
"name" : "#022",
@@ -120,44 +126,44 @@
"drilldown" : "022"
},
{
+ "name" : "#023",
"drilldown" : "023",
- "y" : 101,
- "name" : "#023"
+ "y" : 101
},
{
- "drilldown" : "024",
"name" : "#024",
+ "drilldown" : "024",
"y" : 77
},
{
+ "y" : 62,
"drilldown" : "025",
- "name" : "#025",
- "y" : 62
+ "name" : "#025"
},
{
- "drilldown" : "026",
"y" : 76,
+ "drilldown" : "026",
"name" : "#026"
},
{
- "drilldown" : "027",
"y" : 64,
+ "drilldown" : "027",
"name" : "#027"
},
{
"name" : "#028",
- "y" : 82,
- "drilldown" : "028"
+ "drilldown" : "028",
+ "y" : 82
},
{
"drilldown" : "029",
- "name" : "#029",
- "y" : 83
+ "y" : 83,
+ "name" : "#029"
},
{
"y" : 121,
- "name" : "#030",
- "drilldown" : "030"
+ "drilldown" : "030",
+ "name" : "#030"
},
{
"drilldown" : "031",
@@ -165,14 +171,14 @@
"name" : "#031"
},
{
- "y" : 98,
"name" : "#032",
- "drilldown" : "032"
+ "drilldown" : "032",
+ "y" : 98
},
{