aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-04-18 19:35:16 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-04-18 19:35:16 +0100
commitbe33dd2aba1140bd39954f64816a59e4b89e643c (patch)
tree2dfee46cf2a3a621b3757c20512b3fcc3cb030f0
parent295710fd207a2e17ef33ae4b1d7264b75e1f3640 (diff)
downloadperlweeklychallenge-club-be33dd2aba1140bd39954f64816a59e4b89e643c.tar.gz
perlweeklychallenge-club-be33dd2aba1140bd39954f64816a59e4b89e643c.tar.bz2
perlweeklychallenge-club-be33dd2aba1140bd39954f64816a59e4b89e643c.zip
- Added solutions by Arne Sommer.
- Added solutions by Mariano Spadaccini. - Added solutions by Laurent Rosenfeld.
-rw-r--r--challenge-265/laurent-rosenfeld/blog1.txt1
-rw-r--r--challenge-265/laurent-rosenfeld/perl/ch-2.pl28
-rw-r--r--challenge-265/laurent-rosenfeld/raku/ch-2.raku16
-rw-r--r--stats/pwc-current.json408
-rw-r--r--stats/pwc-language-breakdown-summary.json52
-rw-r--r--stats/pwc-language-breakdown.json3666
-rw-r--r--stats/pwc-leaders.json390
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json102
-rw-r--r--stats/pwc-summary-151-180.json104
-rw-r--r--stats/pwc-summary-181-210.json32
-rw-r--r--stats/pwc-summary-211-240.json92
-rw-r--r--stats/pwc-summary-241-270.json54
-rw-r--r--stats/pwc-summary-271-300.json100
-rw-r--r--stats/pwc-summary-301-330.json48
-rw-r--r--stats/pwc-summary-31-60.json36
-rw-r--r--stats/pwc-summary-61-90.json32
-rw-r--r--stats/pwc-summary-91-120.json34
-rw-r--r--stats/pwc-summary.json28
19 files changed, 2669 insertions, 2590 deletions
diff --git a/challenge-265/laurent-rosenfeld/blog1.txt b/challenge-265/laurent-rosenfeld/blog1.txt
new file mode 100644
index 0000000000..d818b637e6
--- /dev/null
+++ b/challenge-265/laurent-rosenfeld/blog1.txt
@@ -0,0 +1 @@
+https://blogs.perl.org/users/laurent_r/2024/04/perl-weekly-challenge-265-completing-word.html
diff --git a/challenge-265/laurent-rosenfeld/perl/ch-2.pl b/challenge-265/laurent-rosenfeld/perl/ch-2.pl
new file mode 100644
index 0000000000..c52d1045c0
--- /dev/null
+++ b/challenge-265/laurent-rosenfeld/perl/ch-2.pl
@@ -0,0 +1,28 @@
+use strict;
+use warnings;
+use feature 'say';
+
+sub complete_word {
+ my ($in_str, @in_words) = @_;
+ my %letters;
+ $letters{$_}++ for grep { $_ =~ /[a-z]/ } map { lc } split //, $in_str;
+ my @result;
+ WORD: for my $word (@in_words) {
+ my %word_let;
+ $word_let{$_}++ for map { lc } split //, $word;
+ for my $k (keys %letters) {
+ next WORD unless exists $word_let{$k};
+ next WORD if $letters{$k} > $word_let{$k};
+ }
+ push @result, $word;
+ }
+ return (sort {length $a <=> length $b} @result)[0];
+}
+
+my @tests = ( ['aBc 11c', ['accbbb', 'abc', 'abbc']],
+ ['Da2 abc', ['abcm', 'baacd', 'abaadc']],
+ ['JB 007', ['jj', 'bb', 'bjb']] );
+for my $test (@tests) {
+ printf "%-8s - %-10s => ", $test->[0], "$test->[1][0] ...";
+ say complete_word $test->[0], @{$test->[1]};
+}
diff --git a/challenge-265/laurent-rosenfeld/raku/ch-2.raku b/challenge-265/laurent-rosenfeld/raku/ch-2.raku
new file mode 100644
index 0000000000..9b171623fa
--- /dev/null
+++ b/challenge-265/laurent-rosenfeld/raku/ch-2.raku
@@ -0,0 +1,16 @@
+sub complete-word ($in-str, @in-words) {
+ my $letters = $in-str.comb.map({ .lc}).grep( /<[a..z]>/).Bag;
+ my @result;
+ for @in-words -> $word {
+ push @result, $word if $letters ⊆ $word.comb.map({ .lc }).Bag;
+ }
+ return min(@result, :by( { $_.chars } ));
+}
+
+my @tests = ('aBc 11c', ('accbbb', 'abc', 'abbc')),
+ ('Da2 abc', ('abcm', 'baacd', 'abaadc')),
+ ('JB 007', ('jj', 'bb', 'bjb'));
+for @tests -> @test {
+ printf "%-8s - %-20s => ", @test[0], "@test[1]";
+ say complete-word @test[0], @test[1];
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 0b463128e4..1643dbeb78 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,19 +1,161 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "series" : [
+ {
+ "name" : "The Weekly Challenge - 265",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "name" : "Ali Moradi",
+ "y" : 3,
+ "drilldown" : "Ali Moradi"
+ },
+ {
+ "y" : 1,
+ "name" : "Andrew Shitov",
+ "drilldown" : "Andrew Shitov"
+ },
+ {
+ "name" : "Arne Sommer",
+ "y" : 3,
+ "drilldown" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "y" : 4,
+ "name" : "Athanasius"
+ },
+ {
+ "y" : 3,
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "y" : 2,
+ "name" : "David Ferrone",
+ "drilldown" : "David Ferrone"
+ },
+ {
+ "name" : "E. Choroba",
+ "y" : 2,
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "y" : 2,
+ "name" : "Feng Chang",
+ "drilldown" : "Feng Chang"
+ },
+ {
+ "y" : 3,
+ "name" : "James Smith",
+ "drilldown" : "James Smith"
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "y" : 6
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "y" : 11,
+ "name" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mariano Spadaccini",
+ "y" : 2,
+ "name" : "Mariano Spadaccini"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Niels van Dijke",
+ "y" : 2,
+ "name" : "Niels van Dijke"
+ },
+ {
+ "y" : 5,
+ "name" : "Packy Anderson",
+ "drilldown" : "Packy Anderson"
+ },
+ {
+ "drilldown" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Peter Meszaros",
+ "name" : "Peter Meszaros",
+ "y" : 2
+ },
+ {
+ "name" : "Reinier Maliepaard",
+ "y" : 3,
+ "drilldown" : "Reinier Maliepaard"
+ },
+ {
+ "name" : "Robbie Hatley",
+ "y" : 3,
+ "drilldown" : "Robbie Hatley"
+ },
+ {
+ "y" : 4,
+ "name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West"
+ },
+ {
+ "name" : "Thomas Kohler",
+ "y" : 4,
+ "drilldown" : "Thomas Kohler"
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "y" : 4,
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
+ "y" : 3
+ }
+ ]
}
- },
- "legend" : {
- "enabled" : 0
+ ],
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
},
"xAxis" : {
"type" : "category"
},
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 265"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 23] Last updated at 2024-04-18 17:31:54 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
"drilldown" : {
"series" : [
{
- "name" : "Ali Moradi",
"id" : "Ali Moradi",
"data" : [
[
@@ -24,21 +166,34 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Ali Moradi"
},
{
+ "name" : "Andrew Shitov",
"data" : [
[
"Raku",
1
]
],
- "id" : "Andrew Shitov",
- "name" : "Andrew Shitov"
+ "id" : "Andrew Shitov"
+ },
+ {
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -48,10 +203,11 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
- "id" : "Dave Jacoby",
"name" : "Dave Jacoby",
"data" : [
[
@@ -62,39 +218,42 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Dave Jacoby"
},
{
- "name" : "David Ferrone",
- "id" : "David Ferrone",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "David Ferrone",
+ "name" : "David Ferrone"
},
{
+ "name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "E. Choroba",
- "name" : "E. Choroba"
+ ]
},
{
- "id" : "Feng Chang",
"name" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Feng Chang"
},
{
+ "name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -104,29 +263,29 @@
"Blog",
1
]
- ],
- "name" : "James Smith",
- "id" : "James Smith"
+ ]
},
{
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
- 1
+ 2
],
[
"Raku",
- 1
+ 2
],
[
"Blog",
- 1
+ 2
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld"
},
{
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -136,9 +295,17 @@
"Blog",
9
]
- ],
- "id" : "Luca Ferrari",
- "name" : "Luca Ferrari"
+ ]
+ },
+ {
+ "name" : "Mariano Spadaccini",
+ "id" : "Mariano Spadaccini",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
},
{
"data" : [
@@ -151,18 +318,17 @@
"name" : "Mark Anderson"
},
{
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke",
- "name" : "Niels van Dijke"
+ "id" : "Niels van Dijke"
},
{
"id" : "Packy Anderson",
- "name" : "Packy Anderson",
"data" : [
[
"Perl",
@@ -176,11 +342,10 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Packy Anderson"
},
{
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -190,7 +355,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"data" : [
@@ -231,8 +398,6 @@
"name" : "Robbie Hatley"
},
{
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -242,11 +407,11 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
- "name" : "Thomas Kohler",
- "id" : "Thomas Kohler",
"data" : [
[
"Perl",
@@ -256,10 +421,11 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Thomas Kohler",
+ "name" : "Thomas Kohler"
},
{
- "name" : "Ulrich Rieke",
"id" : "Ulrich Rieke",
"data" : [
[
@@ -270,9 +436,12 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Ulrich Rieke"
},
{
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -282,146 +451,11 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "chart" : {
- "type" : "column"
- },
- "series" : [
- {
- "data" : [
- {
- "drilldown" : "Ali Moradi",
- "y" : 3,
- "name" : "Ali Moradi"
- },
- {
- "name" : "Andrew Shitov",
- "y" : 1,
- "drilldown" : "Andrew Shitov"
- },
- {
- "drilldown" : "Athanasius",
- "y" : 4,
- "name" : "Athanasius"
- },
- {
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
- },
- {
- "name" : "David Ferrone",
- "y" : 2,
- "drilldown" : "David Ferrone"
- },
- {
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
- },
- {
- "drilldown" : "Feng Chang",
- "y" : 2,
- "name" : "Feng Chang"
- },
- {
- "drilldown" : "James Smith",
- "y" : 3,
- "name" : "James Smith"
- },
- {
- "name" : "Laurent Rosenfeld",
- "y" : 3,
- "drilldown" : "Laurent Rosenfeld"
- },
- {
- "name" : "Luca Ferrari",
- "y" : 11,
- "drilldown" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "y" : 2,
- "drilldown" : "Mark Anderson"
- },
- {
- "drilldown" : "Niels van Dijke",
- "y" : 2,
- "name" : "Niels van Dijke"
- },
- {
- "drilldown" : "Packy Anderson",
- "y" : 5,
- "name" : "Packy Anderson"
- },
- {
- "y" : 3,
- "name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
- },
- {
- "drilldown" : "Peter Meszaros",
- "y" : 2,
- "name" : "Peter Meszaros"
- },
- {
- "name" : "Reinier Maliepaard",
- "y" : 3,
- "drilldown" : "Reinier Maliepaard"
- },
- {
- "name" : "Robbie Hatley",
- "y" : 3,
- "drilldown" : "Robbie Hatley"
- },
- {
- "drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West",
- "y" : 4
- },
- {
- "drilldown" : "Thomas Kohler",
- "name" : "Thomas Kohler",
- "y" : 4
- },
- {
- "y" : 4,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
- },
- {
- "drilldown" : "W. Luis Mochan",
- "y" : 3,
- "name" : "W. Luis Mochan"
- }
- ],
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 265"
- }
- ],
- "title" : {
- "text" : "The Weekly Challenge - 265"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "subtitle" : {
- "text" : "[Champions: 21] Last updated at 2024-04-18 08:56:35 GMT"
- },
- "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
+ "legend" : {
+ "enabled" : 0
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 6fe4a083f3..ced42476b9 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,63 +1,63 @@
{
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ },
"subtitle" : {
- "text" : "Last updated at 2024-04-18 08:56:35 GMT"
+ "text" : "Last updated at 2024-04-18 17:31:54 GMT"
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ },
+ "type" : "category"
},
"series" : [
{
- "name" : "Contributions",
"data" : [
[
"Blog",
- 4762
+ 4764
],
[
"Perl",
- 13725
+ 13728
],
[
"Raku",
- 7965
+ 7968
]
],
"dataLabels" : {
- "align" : "right",
+ "y" : 10,
+ "color" : "#FFFFFF",
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
},
+ "format" : "{point.y:.0f}",
"enabled" : "true",
"rotation" : -90,
- "y" : 10,
- "format" : "{point.y:.0f}",
- "color" : "#FFFFFF"
- }
+ "align" : "right"
+ },
+ "name" : "Contributions"
}
],
- "chart" : {
- "type" : "column"
+ "legend" : {
+ "enabled" : "false"
},
"yAxis" : {
"min" : 0,
"title" : {
"text" : null
}
- },
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- }
- },
- "legend" : {
- "enabled" : "false"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 314d209726..66231a54f2 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,1340 @@
{
+ "series" : [
+ {
+ "colorByPoint" : "true",
+ "name" : "The Weekly Challenge Languages",
+ "data" : [
+ {
+ "drilldown" : "001",
+ "y" : 168,
+ "name" : "#001"
+ },
+ {
+ "y" : 133,
+ "name" : "#002",
+ "drilldown" : "002"
+ },
+ {
+ "drilldown" : "003",
+ "y" : 91,
+ "name" : "#003"
+ },
+ {
+ "drilldown" : "004",
+ "y" : 106,
+ "name" : "#004"
+ },
+ {
+ "name" : "#005",
+ "y" : 82,
+ "drilldown" : "005"
+ },
+ {
+ "drilldown" : "006",
+ "name" : "#006",
+ "y" : 63
+ },
+ {
+ "drilldown" : "007",
+ "name" : "#007",
+ "y" : 71
+ },
+ {
+ "drilldown" : "008",
+ "y" : 84,
+ "name" : "#008"
+ },
+ {
+ "drilldown" : "009",
+ "y" : 82,
+ "name" : "#009"
+ },
+ {
+ "name" : "#010",
+ "y" : 71,
+ "drilldown" : "010"
+ },
+ {
+ "name" : "#011",
+ "y" : 91,
+ "drilldown" : "011"
+ },
+ {
+ "name" : "#012",
+ "y" : 96,
+ "drilldown" : "012"
+ },
+ {
+ "y" : 88,
+ "name" : "#013",
+ "drilldown" : "013"
+ },
+ {
+ "drilldown" : "014",
+ "y" : 104,
+ "name" : "#014"
+ },
+ {
+ "name" : "#015",
+ "y" : 103,
+ "drilldown" : "015"
+ },
+ {
+ "drilldown" : "016",
+ "y" : 75,
+ "name" : "#016"
+ },
+ {
+ "y" : 86,
+ "name" : "#017",
+ "drilldown" : "017"
+ },
+ {
+ "drilldown" : "018",
+ "y" : 83,
+ "name" : "#018"
+ },
+ {
+ "y" : 105,
+ "name" : "#019",
+ "drilldown" : "019"
+ },
+ {
+ "drilldown" : "020",
+ "name" : "#020",
+ "y" : 103
+ },
+ {
+ "name" : "#021",
+ "y" : 74,
+ "drilldown" : "021"
+ },
+ {
+ "drilldown" : "022",
+ "y" : 72,
+ "name" : "#022"
+ },
+ {
+ "name" : "#023",
+ "y" : 101,
+ "drilldown" : "023"
+ },
+ {
+ "drilldown" : "024",
+ "y" : 77,
+ "name" : "#024"
+ },
+ {
+ "name" : "#025",
+ "y" : 62,
+ "drilldown" : "025"
+ },
+ {
+ "drilldown" : "026",
+ "name" : "#026",
+ "y" : 76
+ },
+ {
+ "y" : 64,
+ "name" : "#027",
+ "drilldown" : "027"
+ },
+ {
+ "drilldown" : "028",
+ "y" : 82,
+ "name" : "#028"
+ },
+ {
+ "drilldown" : "029",
+ "name" : "#029",
+ "y" : 83
+ },
+ {
+ "name" : "#030",
+ "y" : 121,
+ "drilldown" : "030"
+ },
+ {
+ "name" : "#031",
+ "y" : 93,
+ "drilldown" : "031"
+ },
+ {
+ "y" : 98,
+ "name" : "#032",
+ "drilldown" : "032"
+ },
+ {
+ "y" : 114,
+ "name" : "#033",
+ "drilldown" : "033"
+ },
+ {
+ "drilldown" : "034",
+ "y" : 70,
+ "name" : "#034"
+ },
+ {
+ "drilldown" : "035",
+ "name" : "#035",
+ "y" : 68
+ },
+ {
+ "drilldown" : "036",
+ "name" : "#036",
+ "y" : 70
+ },
+ {
+ "drilldown" : "037",
+ "name" : "#037",
+ "y" : 70
+ },
+ {
+ "drilldown" : "038",
+ "y" : 74,
+ "name" : "#038"
+ },
+ {
+ "drilldown" : "039",
+ "name" : "#039",
+ "y" : 68
+ },
+ {
+ "drilldown" : "040",
+ "y" : 77,
+ "name" : "#040"
+ },
+ {
+ "y" : 80,
+ "name" : "#041",
+ "drilldown" : "041"
+ },
+ {
+ "drilldown" : "042",
+ "name" : "#042",
+ "y" : 98
+ },
+ {
+ "drilldown" : "043",
+ "y" : 72,
+ "name" : "#043"
+ },
+ {
+ "drilldown" : "044",
+ "y" : 90,
+ "name" : "#044"
+ },
+ {
+ "name" : "#045",
+ "y" : 102,
+ "drilldown" : "045"
+ },
+ {
+ "y" : 93,
+ "name" : "#046",
+ "drilldown" : "046"
+ },
+ {
+ "y" : 88,
+ "name" : "#047",
+ "drilldown" : "047"
+ },
+ {
+ "name" : "#048",
+ "y" : 112,
+ "drilldown" : "048"
+ },
+ {
+ "drilldown" : "049",
+ "name" : "#049",
+ "y" : 93
+ },
+ {
+ "drilldown" : "050",
+ "name" : "#050",
+ "y" : 104
+ },
+ {
+ "drilldown" : "051",
+ "y" : 95,
+ "name" : "#051"
+ },
+ {
+ "drilldown" : "052",
+ "y" : 93,
+ "name" : "#052"
+ },
+ {
+ "y" : 105,
+ "name" : "#053",
+ "drilldown" : "053"
+ },
+ {
+ "y" : 107,
+ "name" : "#054",
+ "drilldown" : "054"
+ },
+ {
+ "drilldown" : "055",
+ "name" : "#055",
+ "y" : 92
+ },
+ {