aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-01-24 02:50:34 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-01-24 02:50:34 +0000
commit7a689592e24b8542203167db6807fe4b51e39600 (patch)
tree4ebbd8a1a356294b19d67eccc0275e5ede255255
parent510663618a21e6ac648a47bc91a3d915dcc54c43 (diff)
downloadperlweeklychallenge-club-7a689592e24b8542203167db6807fe4b51e39600.tar.gz
perlweeklychallenge-club-7a689592e24b8542203167db6807fe4b51e39600.tar.bz2
perlweeklychallenge-club-7a689592e24b8542203167db6807fe4b51e39600.zip
- Added solutions by Colin Crain.
-rwxr-xr-xchallenge-148/colin-crain/perl/ch-1.pl116
-rwxr-xr-xchallenge-148/colin-crain/raku/ch-1.raku39
-rw-r--r--stats/pwc-current.json204
-rw-r--r--stats/pwc-language-breakdown-summary.json40
-rw-r--r--stats/pwc-language-breakdown.json960
-rw-r--r--stats/pwc-leaders.json742
-rw-r--r--stats/pwc-summary-1-30.json40
-rw-r--r--stats/pwc-summary-121-150.json118
-rw-r--r--stats/pwc-summary-151-180.json54
-rw-r--r--stats/pwc-summary-181-210.json40
-rw-r--r--stats/pwc-summary-211-240.json38
-rw-r--r--stats/pwc-summary-241-270.json46
-rw-r--r--stats/pwc-summary-31-60.json116
-rw-r--r--stats/pwc-summary-61-90.json100
-rw-r--r--stats/pwc-summary-91-120.json118
-rw-r--r--stats/pwc-summary.json536
16 files changed, 1735 insertions, 1572 deletions
diff --git a/challenge-148/colin-crain/perl/ch-1.pl b/challenge-148/colin-crain/perl/ch-1.pl
new file mode 100755
index 0000000000..90c5ab0af4
--- /dev/null
+++ b/challenge-148/colin-crain/perl/ch-1.pl
@@ -0,0 +1,116 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# numbrs-without-th-lttr-.pl
+#
+# Eban Numbers
+# Submitted by: Mohammad S Anwar
+# Write a script to generate all Eban Numbers <= 100.
+#
+# An Eban number is a number that has no letter ‘e’ in it when the
+# number is spelled in English (American or British).
+#
+# Example
+#
+# 2, 4, 6, 30, 32 are the first 5 Eban numbers.
+#
+# method:
+# I think we're finally jumped the shark on number theory,
+# landing with a splash right in the middle of natural language
+# programming.
+#
+# It's tempting to try and write a textual conversion routine to
+# "speak" all two-digit numbers. On the other hand, it's much
+# more sensible to use Neil Bower's excellent Lingua::EN::Numbers
+# to do the tricky part for us. It is:
+# 1. the right way to do it
+# 2. good practice in the right way to do it
+#
+# Addressing the first point: Natural Language Programming is
+# fraught with hairy little edge-cases that need to be
+# addressed, and so, keeping company with the CSV format and
+# Date and Time Manipulation code, it's wise to hand over such
+# processing to a dedicated library that's sole purpose is to
+# keep such stuff straight.
+#
+# Then again it wouldn't be too crazy to address every case.
+# It's easy to visually inspect them all. It is, after all,
+# only 99 numbers if we start from 1. Why 1? As for zero, well just look at
+# it. And all negative numbers contain the letter "e" in the
+# word "negative" so we don't even need to decide to only use
+# positive values. On the other hand there are an infinite
+# number of real values below 100, so we'll need to disallow
+# that unwholesome creed if we ever want to finish:
+# "thirty-four point six six six six six ..."
+#
+# Yea that's not going to work.
+#
+# We'll start with implementing the module and go from there.
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+## this is the right way to do this
+use Lingua::EN::Numbers qw( num2en );
+for (0..99) {
+ my $word = num2en( $_ );
+ next if $word =~ /e/;
+ say $word;
+}
+
+say ''; ## separate out two methods
+
+## constructing written words for numbers less than 100 is a irregular and non-obvious.
+my @ones = qw( ∅ one two three four five six seven eight nine );
+my @tens = qw( ∅ ten twenty thirty forty fifty sixty seventy eighty ninety);
+my %teens = qw( ten-one eleven
+ ten-two twelve
+ ten-three thirteen
+ ten-four fourteen
+ ten-five fifteen
+ ten-six sixteen
+ ten-seven seventeen
+ ten-eight eighteen
+ ten-nine nineteen );
+
+my @out;
+for my $t ( @tens ) {
+ for my $o ( @ones ) {
+ push @out, "$t-$o";
+ }
+}
+
+for (@out) {
+ s/^∅-|-?∅$//g;
+ s/$_/$teens{$_}/ if $teens{$_};
+}
+
+shift @out;
+say $_ for grep { ! /e/ } @out;
+
+
+
+
+
+
+
+
+
+
+
+
+# use Test::More;
+#
+# is
+#
+# done_testing();
diff --git a/challenge-148/colin-crain/raku/ch-1.raku b/challenge-148/colin-crain/raku/ch-1.raku
new file mode 100755
index 0000000000..2b5bd44397
--- /dev/null
+++ b/challenge-148/colin-crain/raku/ch-1.raku
@@ -0,0 +1,39 @@
+#!/usr/bin/env perl6
+#
+#
+# numbrs-without-th-lttr-.raku
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN () ;
+
+my @ones = < ∅ one two three four five six seven eight nine >;
+my @tens = < ∅ ten twenty thirty forty fifty sixty seventy eighty ninety >;
+my %teens = < ten-one eleven
+ ten-two twelve
+ ten-three thirteen
+ ten-four fourteen
+ ten-five fifteen
+ ten-six sixteen
+ ten-seven seventeen
+ ten-eight eighteen
+ ten-nine nineteen >;
+
+
+my @out = ([X] @tens, @ones).map: *.join('-');
+
+for @out {
+ s:g/ ^ \∅\- | \-?\∅ $ //;
+ s/ $_ /%teens{$_}/ if %teens{$_}:exists;
+}
+@out.shift;
+
+.say for @out.grep:{ ! /e/ };
+
+
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 02d8298f9a..f3be8a7fc8 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,6 +1,17 @@
{
- "chart" : {
- "type" : "column"
+ "tooltip" : {
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1,
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 26] Last updated at 2022-01-24 02:48:03 GMT"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 148"
+ },
+ "legend" : {
+ "enabled" : 0
},
"plotOptions" : {
"series" : {
@@ -11,32 +22,23 @@
}
}
},
- "title" : {
- "text" : "The Weekly Challenge - 148"
- },
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "[Champions: 26] Last updated at 2022-01-24 00:14:51 GMT"
- },
"series" : [
{
"data" : [
{
- "drilldown" : "Abigail",
"y" : 4,
+ "drilldown" : "Abigail",
"name" : "Abigail"
},
{
- "drilldown" : "Adam Russell",
+ "name" : "Adam Russell",
"y" : 2,
- "name" : "Adam Russell"
+ "drilldown" : "Adam Russell"
},
{
- "name" : "Arne Sommer",
"drilldown" : "Arne Sommer",
- "y" : 5
+ "y" : 5,
+ "name" : "Arne Sommer"
},
{
"name" : "Athanasius",
@@ -49,23 +51,23 @@
"drilldown" : "Bruce Gray"
},
{
- "name" : "Colin Crain",
- "y" : 1,
- "drilldown" : "Colin Crain"
+ "drilldown" : "Colin Crain",
+ "y" : 3,
+ "name" : "Colin Crain"
},
{
- "y" : 3,
"drilldown" : "Dave Jacoby",
+ "y" : 3,
"name" : "Dave Jacoby"
},
{
"name" : "Duncan C. White",
- "y" : 2,
- "drilldown" : "Duncan C. White"
+ "drilldown" : "Duncan C. White",
+ "y" : 2
},
{
- "y" : 2,
"drilldown" : "E. Choroba",
+ "y" : 2,
"name" : "E. Choroba"
},
{
@@ -79,14 +81,14 @@
"name" : "James Smith"
},
{
+ "name" : "Laurent Rosenfeld",
"drilldown" : "Laurent Rosenfeld",
- "y" : 5,
- "name" : "Laurent Rosenfeld"
+ "y" : 5
},
{
- "name" : "Luca Ferrari",
"drilldown" : "Luca Ferrari",
- "y" : 6
+ "y" : 6,
+ "name" : "Luca Ferrari"
},
{
"y" : 1,
@@ -94,33 +96,33 @@
"name" : "Mark Anderson"
},
{
+ "name" : "Mark Senn",
"drilldown" : "Mark Senn",
- "y" : 4,
- "name" : "Mark Senn"
+ "y" : 4
},
{
- "name" : "Marton Polgar",
+ "drilldown" : "Marton Polgar",
"y" : 2,
- "drilldown" : "Marton Polgar"
+ "name" : "Marton Polgar"
},
{
- "name" : "Matthew Neleigh",
+ "drilldown" : "Matthew Neleigh",
"y" : 2,
- "drilldown" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke",
"y" : 2,
- "drilldown" : "Niels van Dijke"
+ "name" : "Niels van Dijke"
},
{
"name" : "Pete Houston",
- "y" : 1,
- "drilldown" : "Pete Houston"
+ "drilldown" : "Pete Houston",
+ "y" : 1
},
{
- "y" : 3,
"drilldown" : "Peter Campbell Smith",
+ "y" : 3,
"name" : "Peter Campbell Smith"
},
{
@@ -134,46 +136,42 @@
"name" : "Roger Bell_West"
},
{
- "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson",
"y" : 2,
- "drilldown" : "Steven Wilson"
+ "name" : "Steven Wilson"
},
{
- "name" : "Ulrich Rieke",
"drilldown" : "Ulrich Rieke",
- "y" : 3
+ "y" : 3,
+ "name" : "Ulrich Rieke"
},
{
+ "name" : "W. Luis Mochan",
"y" : 3,
- "drilldown" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan"
},
{
"name" : "Walt Mankowski",
- "drilldown" : "Walt Mankowski",
- "y" : 3
+ "y" : 3,
+ "drilldown" : "Walt Mankowski"
}
],
- "name" : "The Weekly Challenge - 148",
- "colorByPoint" : 1
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 148"
}
],
+ "xAxis" : {
+ "type" : "category"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "legend" : {
- "enabled" : 0
- },
- "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" : [
{
+ "id" : "Abigail",
"name" : "Abigail",
"data" : [
[
@@ -184,21 +182,19 @@
"Blog",
2
]
- ],
- "id" : "Abigail"
+ ]
},
{
- "name" : "Adam Russell",
+ "id" : "Adam Russell",
"data" : [
[
"Perl",
2
]
],
- "id" : "Adam Russell"
+ "name" : "Adam Russell"
},
{
- "id" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -213,7 +209,8 @@
1
]
],
- "name" : "Arne Sommer"
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer"
},
{
"name" : "Athanasius",
@@ -230,6 +227,8 @@
"id" : "Athanasius"
},
{
+ "id" : "Bruce Gray",
+ "name" : "Bruce Gray",
"data" : [
[
"Perl",
@@ -239,19 +238,25 @@
"Raku",
2
]
- ],
- "id" : "Bruce Gray",
- "name" : "Bruce Gray"
+ ]
},
{
- "name" : "Colin Crain",
+ "id" : "Colin Crain",
"data" : [
[
+ "Perl",
+ 1
+ ],
+ [
+ "Raku",
+ 1
+ ],
+ [
"Blog",
1
]
],
- "id" : "Colin Crain"
+ "name" : "Colin Crain"
},
{
"id" : "Dave Jacoby",
@@ -268,13 +273,13 @@
"name" : "Dave Jacoby"
},
{
+ "id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
],
- "id" : "Duncan C. White",
"name" : "Duncan C. White"
},
{
@@ -284,8 +289,8 @@
2
]
],
- "id" : "E. Choroba",
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "id" : "E. Choroba"
},
{
"id" : "Flavio Poletti",
@@ -306,6 +311,7 @@
"name" : "Flavio Poletti"
},
{
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -316,11 +322,9 @@
1
]
],
- "id" : "James Smith",
"name" : "James Smith"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -335,9 +339,11 @@
1
]
],
+ "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld"
},
{
+ "id" : "Luca Ferrari",
"name" : "Luca Ferrari",
"data" : [
[
@@ -348,21 +354,19 @@
"Blog",
4
]
- ],
- "id" : "Luca Ferrari"
+ ]
},
{
"name" : "Mark Anderson",
- "id" : "Mark Anderson",
"data" : [
[
"Raku",
1
]
- ]
+ ],
+ "id" : "Mark Anderson"
},
{
- "name" : "Mark Senn",
"data" : [
[
"Raku",
@@ -373,37 +377,38 @@
2
]
],
+ "name" : "Mark Senn",
"id" : "Mark Senn"
},
{
- "name" : "Marton Polgar",
+ "id" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
],
- "id" : "Marton Polgar"
+ "name" : "Marton Polgar"
},
{
"id" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Matthew Neleigh"
+ ]
},
{
"id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Niels van Dijke"
+ ]
},
{
"data" : [
@@ -412,10 +417,12 @@
1
]
],
- "id" : "Pete Houston",
- "name" : "Pete Houston"
+ "name" : "Pete Houston",
+ "id" : "Pete Houston"
},
{
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -425,9 +432,7 @@
"Blog",
1
]
- ],
- "id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
+ ]
},
{
"data" : [
@@ -436,11 +441,11 @@
2
]
],
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco"
+ "name" : "Robert DiCicco",
+ "id" : "Robert DiCicco"
},
{
- "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -455,19 +460,20 @@
1
]
],
- "name" : "Roger Bell_West"
+ "id" : "Roger Bell_West"
},
{
+ "id" : "Steven Wilson",
"data" : [
[
"Perl",
2
]
],
- "id" : "Steven Wilson",
"name" : "Steven Wilson"
},
{
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -478,10 +484,10 @@
2
]
],
- "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke"
},
{
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -492,12 +498,9 @@
1
]
],
- "id" : "W. Luis Mochan",
"name" : "W. Luis Mochan"
},
{
- "name" : "Walt Mankowski",
- "id" : "Walt Mankowski",
"data" : [
[
"Perl",
@@ -507,8 +510,13 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Walt Mankowski",
+ "id" : "Walt Mankowski"
}
]
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index a788a0c2eb..bc5a3c04a5 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,30 +1,28 @@
{
"xAxis" : {
+ "type" : "category",
"labels" : {
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
}
- },
- "type" : "category"
- },
- "subtitle" : {
- "text" : "Last updated at 2022-01-24 00:14:51 GMT"
+ }
},
"series" : [
{
"dataLabels" : {
+ "align" : "right",
+ "y" : 10,
+ "enabled" : "true",
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
},
- "format" : "{point.y:.0f}",
- "enabled" : "true",
- "align" : "right",
- "y" : 10,
"color" : "#FFFFFF",
+ "format" : "{point.y:.0f}",
"rotation" : -90
},
+ "name" : "Contributions",
"data" : [
[
"Blog",
@@ -32,32 +30,34 @@
],
[
"Perl",
- 7147
+ 7148
],
[
"Raku",
- 4300
+ 4301
]
- ],
- "name" : "Contributions"
+ ]
}
],
+ "chart" : {
+ "type" : "column"
+ },
"yAxis" : {
"title" : {
"text" : null
},
"min" : 0
},
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2021]"
+ "legend" : {
+ "enabled" : "false"
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "legend" : {
- "enabled" : "false"
+ "subtitle" : {
+ "text" : "Last updated at 2022-01-24 02:48:03 GMT"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2021]"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index beea7e90b9..4e73872db5 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -2,22 +2,18 @@
"xAxis" : {
"type" : "category"
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-01-24 00:14:51 GMT"
- },
"series" : [
{
"colorByPoint" : "true",
- "name" : "The Weekly Challenge Languages",
"data" : [
{
+ "name" : "#001",
"y" : 161,
- "drilldown" : "001",
- "name" : "#001"
+ "drilldown" : "001"
},
{
- "drilldown" : "002",
"y" : 125,
+ "drilldown" : "002",
"name" : "#002"
},
{
@@ -31,24 +27,24 @@
"name" : "#004"
},
{
+ "name" : "#005",
"y" : 78,
- "drilldown" : "005",
- "name" : "#005"
+ "drilldown" : "005"
},
{
+ "name" : "#006",
"drilldown" : "006",
- "y" : 58,
- "name" : "#006"
+ "y" : 58
},
{
- "y" : 64,
+ "name" : "#007",
"drilldown" : "007",
- "name" : "#007"
+ "y" : 64
},
{
- "y" : 78,
+ "name" : "#008",
"drilldown" : "008",
- "name" : "#008"
+ "y" : 78
},
{
"name" : "#009",
@@ -57,68 +53,68 @@
},
{
"name" : "#010",
- "drilldown" : "010",
- "y" : 65
+ "y" : 65,
+ "drilldown" : "010"
},
{
"name" : "#011",
- "drilldown" : "011",
- "y" : 85
+ "y" : 85,
+ "drilldown" : "011"
},
{
- "name" : "#012",
+ "drilldown" : "012",
"y" : 89,
- "drilldown" : "012"
+ "name" : "#012"
},
{
- "name" : "#013",
+ "drilldown" : "013",
"y" : 85,
- "drilldown" : "013"
+ "name" : "#013"
},
{
- "name" : "#014",
+ "y" : 101,
"drilldown" : "014",
- "y" : 101
+ "name" : "#014"
},
{
- "name" : "#015",
"y" : 99,
- "drilldown" : "015"
+ "drilldown" : "015",
+ "name" : "#015"
},
{
- "y" : 71,
+ "name" : "#016",
"drilldown" : "016",
- "name" : "#016"
+ "y" : 71
},
{
+ "name" : "#017",
"drilldown" : "017",
- "y" : 84,
- "name" : "#017"
+ "y" : 84
},
{
"name" : "#018",
- "drilldown" : "018",
- "y" : 81
+ "y" : 81,
+ "drilldown" : "018"
},
{
- "name" : "#019",
+ "y" : 103,
"drilldown" : "019",
- "y" : 103
+ "name" : "#019"
},
{
"name" : "#020",
- "drilldown" : "020",
- "y" : 101
+ "y" : 101,
+ "drilldown" : "020"
},
{
- "name" : "#021",
+ "y" : 72,
"drilldown" : "021",
- "y" : 72
+ "name" : "#021"
},
{
"name" : "#022",
- "y" : 68,
- "drilldown" : "022"
+ "drilldown" : "022",
+ "y" : 68
},
{
"name" : "#023",
@@ -132,8 +128,8 @@
},
{
"name" : "#025",
- "drilldown" : "025",
- "y" : 59
+ "y" : 59,
+ "drilldown" : "025"
},
{
"name" : "#026",
@@ -156,28 +152,28 @@
"name" : "#029"
},
{
- "y" : 119,
+ "name" : "#030",
"drilldown" : "030",
- "name" : "#030"
+ "y" : 119
},
{
- "drilldown" : "031",
+ "name" : "#031",
"y" : 91,
- "name" : "#031"
+ "drilldown" : "031"
},
{
- "drilldown" : "032",
+ "name" : "#032",
"y" : 96,
- "name" : "#032"
+ "drilldown" : "032"
},
{
"name" : "#033",
- "drilldown" : "033",
- "y" : 112
+ "y" : 112,
+ "drilldown" : "033"
},
{
- "drilldown" : "034",
"y" : 66,
+ "drilldown" : "034",
"name" : "#034"
},
{
@@ -192,47 +188,47 @@
},
{
"name" : "#037",
- "y" : 67,
- "drilldown" : "037"
+ "drilldown" : "037",
+ "y" : 67
},
{
+ "name" : "#038",
"y" : 68,
- "drilldown" : "038",
- "name" : "#038"
+ "drilldown" : "038"
},
{
"name" : "#039",
- "drilldown" : "039",
- "y" : 62
+ "y" : 62,
+ "drilldown" : "039"
},
{
"name" : "#040",
- "y" : 73,
- "drilldown" : "040"
+ "drilldown" : "040",
+ "y" : 73
},
{
- "name" : "#041",
"y" : 76,
- "drilldown" : "041"
+ "drilldown" : "041",
+ "name" : "#041"
},
{
- "name" : "#042",
"drilldown" : "042",
- "y" : 92
+ "y" : 92,
+ "name" : "#042"
},
{
+ "name" : "#043",
"y" : 68,
- "drilldown" : "043",
- "name" : "#043"
+ "drilldown" : "043"
},
{
"name" : "#044",
- "y" : 85,
- "drilldown" : "044"
+ "drilldown" : "044",
+ "y" : 85
},
{
- "y" : 96,
"drilldown" : "045",
+ "y" : 96,
"n