aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2021-08-30 13:01:49 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2021-08-30 13:01:49 +0100
commitcb8da72f6ed37eec366fb34253839ff119a89c19 (patch)
tree79282c6c49c49eaa6ada0a541d92b8233e8157a2
parent903abdef122a8081f238f0b3a9e8c02c5929b2b8 (diff)
downloadperlweeklychallenge-club-cb8da72f6ed37eec366fb34253839ff119a89c19.tar.gz
perlweeklychallenge-club-cb8da72f6ed37eec366fb34253839ff119a89c19.tar.bz2
perlweeklychallenge-club-cb8da72f6ed37eec366fb34253839ff119a89c19.zip
- Added solutions by Laurent Rosenfeld.
-rw-r--r--challenge-127/laurent-rosenfeld/perl/ch-1.pl3
-rw-r--r--challenge-127/laurent-rosenfeld/raku/ch-1.raku7
-rw-r--r--stats/pwc-current.json354
-rw-r--r--stats/pwc-language-breakdown-summary.json64
-rw-r--r--stats/pwc-language-breakdown.json1836
-rw-r--r--stats/pwc-leaders.json740
-rw-r--r--stats/pwc-summary-1-30.json38
-rw-r--r--stats/pwc-summary-121-150.json54
-rw-r--r--stats/pwc-summary-151-180.json110
-rw-r--r--stats/pwc-summary-181-210.json42
-rw-r--r--stats/pwc-summary-211-240.json46
-rw-r--r--stats/pwc-summary-31-60.json86
-rw-r--r--stats/pwc-summary-61-90.json112
-rw-r--r--stats/pwc-summary-91-120.json110
-rw-r--r--stats/pwc-summary.json46
15 files changed, 1829 insertions, 1819 deletions
diff --git a/challenge-127/laurent-rosenfeld/perl/ch-1.pl b/challenge-127/laurent-rosenfeld/perl/ch-1.pl
new file mode 100644
index 0000000000..561e75359b
--- /dev/null
+++ b/challenge-127/laurent-rosenfeld/perl/ch-1.pl
@@ -0,0 +1,3 @@
+use strict; use warnings; use feature “say”;
+
+sub isdisjoint { my ($s1, $s2) = @; my %h1 = map { $_ => 1 } @$s1; for my $d (@$s2) { return 0 if exists $h1{$d}; } return 1; } say isdisjoint [1, 2, 5, 3, 4], [4, 6, 7, 8, 9]; say isdisjoint [1, 3, 5, 7, 9], [0, 2, 4, 6, 8];
diff --git a/challenge-127/laurent-rosenfeld/raku/ch-1.raku b/challenge-127/laurent-rosenfeld/raku/ch-1.raku
new file mode 100644
index 0000000000..312ad53fe6
--- /dev/null
+++ b/challenge-127/laurent-rosenfeld/raku/ch-1.raku
@@ -0,0 +1,7 @@
+use v6;
+
+sub is-disjoint ($s1, $s2) {
+ return ($s1 (&) $s2).elems == 0 ?? 1 !! 0;
+}
+say is-disjoint (1, 2, 5, 3, 4), (4, 6, 7, 8, 9);
+say is-disjoint (1, 3, 5, 7, 9), (0, 2, 4, 6, 8);
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index bcd86e0fda..ecfef05514 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,18 +1,35 @@
{
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "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/>"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 127"
+ },
"series" : [
{
- "name" : "The Weekly Challenge - 127",
- "colorByPoint" : 1,
"data" : [
{
- "y" : 4,
"name" : "Abigail",
- "drilldown" : "Abigail"
+ "drilldown" : "Abigail",
+ "y" : 4
},
{
- "y" : 4,
"name" : "Adam Russell",
- "drilldown" : "Adam Russell"
+ "drilldown" : "Adam Russell",
+ "y" : 4
},
{
"drilldown" : "Andrew Shitov",
@@ -20,13 +37,13 @@
"y" : 1
},
{
- "drilldown" : "Andrezgz",
"name" : "Andrezgz",
+ "drilldown" : "Andrezgz",
"y" : 2
},
{
- "drilldown" : "Arne Sommer",
"name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer",
"y" : 5
},
{
@@ -36,28 +53,28 @@
},
{
"name" : "Bruce Gray",
- "y" : 4,
- "drilldown" : "Bruce Gray"
+ "drilldown" : "Bruce Gray",
+ "y" : 4
},
{
- "drilldown" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung",
"y" : 2
},
{
- "name" : "Colin Crain",
"y" : 3,
- "drilldown" : "Colin Crain"
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
},
{
+ "y" : 1,
"drilldown" : "Cristina Heredia",
- "name" : "Cristina Heredia",
- "y" : 1
+ "name" : "Cristina Heredia"
},
{
+ "y" : 3,
"drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
+ "name" : "Dave Jacoby"
},
{
"y" : 2,
@@ -65,64 +82,64 @@
"drilldown" : "Duane Powell"
},
{
- "y" : 2,
"name" : "Duncan C. White",
- "drilldown" : "Duncan C. White"
+ "drilldown" : "Duncan C. White",
+ "y" : 2
},
{
- "drilldown" : "E. Choroba",
+ "y" : 2,
"name" : "E. Choroba",
- "y" : 2
+ "drilldown" : "E. Choroba"
},
{
"drilldown" : "Flavio Poletti",
- "y" : 6,
- "name" : "Flavio Poletti"
+ "name" : "Flavio Poletti",
+ "y" : 6
},
{
- "y" : 2,
+ "drilldown" : "Ian Goodnight",
"name" : "Ian Goodnight",
- "drilldown" : "Ian Goodnight"
+ "y" : 2
},
{
- "y" : 2,
+ "drilldown" : "Ioannis Bourlakos",
"name" : "Ioannis Bourlakos",
- "drilldown" : "Ioannis Bourlakos"
+ "y" : 2
},
{
- "name" : "James Smith",
"y" : 3,
+ "name" : "James Smith",
"drilldown" : "James Smith"
},
{
"y" : 2,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
- "y" : 3,
+ "drilldown" : "Jared Martin",
"name" : "Jared Martin",
- "drilldown" : "Jared Martin"
+ "y" : 3
},
{
"name" : "Joan Mimosinnet",
- "y" : 2,
- "drilldown" : "Joan Mimosinnet"
+ "drilldown" : "Joan Mimosinnet",
+ "y" : 2
},
{
- "name" : "Jorg Sommrey",
"y" : 2,
+ "name" : "Jorg Sommrey",
"drilldown" : "Jorg Sommrey"
},
{
- "drilldown" : "Konstantinos Giannakakis",
+ "y" : 2,
"name" : "Konstantinos Giannakakis",
- "y" : 2
+ "drilldown" : "Konstantinos Giannakakis"
},
{
- "drilldown" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
- "y" : 3
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
},
{
"y" : 2,
@@ -135,83 +152,92 @@
"y" : 4
},
{
- "drilldown" : "Mark Anderson",
"y" : 1,
+ "drilldown" : "Mark Anderson",
"name" : "Mark Anderson"
},
{
- "name" : "Matthew Neleigh",
"y" : 2,
+ "name" : "Matthew Neleigh",
"drilldown" : "Matthew Neleigh"
},
{
- "drilldown" : "Niels van Dijke",
+ "y" : 2,
"name" : "Niels van Dijke",
- "y" : 2
+ "drilldown" : "Niels van Dijke"
},
{
- "drilldown" : "Olivier Delouya",
+ "y" : 1,
"name" : "Olivier Delouya",
- "y" : 1
+ "drilldown" : "Olivier Delouya"
},
{
"name" : "Paul Fajman",
- "y" : 2,
- "drilldown" : "Paul Fajman"
+ "drilldown" : "Paul Fajman",
+ "y" : 2
},
{
+ "y" : 2,
"drilldown" : "Pete Houston",
- "name" : "Pete Houston",
- "y" : 2
+ "name" : "Pete Houston"
},
{
- "drilldown" : "Roger Bell_West",
"y" : 5,
+ "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West"
},
{
"y" : 3,
- "name" : "Simon Green",
- "drilldown" : "Simon Green"
+ "drilldown" : "Simon Green",
+ "name" : "Simon Green"
},
{
+ "name" : "Simon Proctor",
"drilldown" : "Simon Proctor",
- "y" : 1,
- "name" : "Simon Proctor"
+ "y" : 1
},
{
- "drilldown" : "Steven Wilson",
"y" : 1,
+ "drilldown" : "Steven Wilson",
"name" : "Steven Wilson"
},
{
"drilldown" : "Stuart Little",
- "y" : 4,
- "name" : "Stuart Little"
+ "name" : "Stuart Little",
+ "y" : 4
},
{
- "y" : 4,
+ "drilldown" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
+ "y" : 4
},
{
"y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
},
{
"name" : "Wanderdoc",
- "y" : 2,
- "drilldown" : "Wanderdoc"
+ "drilldown" : "Wanderdoc",
+ "y" : 2
}
- ]
+ ],
+ "name" : "The Weekly Challenge - 127",
+ "colorByPoint" : 1
}
],
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
"drilldown" : {
"series" : [
{
- "id" : "Abigail",
- "name" : "Abigail",
"data" : [
[
"Perl",
@@ -221,11 +247,12 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Abigail",
+ "name" : "Abigail"
},
{
"name" : "Adam Russell",
- "id" : "Adam Russell",
"data" : [
[
"Perl",
@@ -235,31 +262,30 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Adam Russell"
},
{
"id" : "Andrew Shitov",
- "name" : "Andrew Shitov",
"data" : [
[
"Raku",
1
]
- ]
+ ],
+ "name" : "Andrew Shitov"
},
{
+ "name" : "Andrezgz",
"data" : [
[
"Perl",
2
]
],
- "name" : "Andrezgz",
"id" : "Andrezgz"
},
{
- "id" : "Arne Sommer",
- "name" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -273,11 +299,11 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer",
+ "name" : "Arne Sommer"
},
{
- "id" : "Athanasius",
- "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -287,11 +313,12 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
"id" : "Bruce Gray",
- "name" : "Bruce Gray",
"data" : [
[
"Perl",
@@ -301,21 +328,22 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Bruce Gray"
},
{
+ "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
],
- "id" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ "id" : "Cheok-Yin Fung"
},
{
- "id" : "Colin Crain",
"name" : "Colin Crain",
+ "id" : "Colin Crain",
"data" : [
[
"Perl",
@@ -338,6 +366,7 @@
"name" : "Cristina Heredia"
},
{
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -348,40 +377,41 @@
1
]
],
- "name" : "Dave Jacoby",
"id" : "Dave Jacoby"
},
{
+ "name" : "Duane Powell",
"data" : [
[
"Perl",
2
]
],
- "name" : "Duane Powell",
"id" : "Duane Powell"
},
{
- "name" : "Duncan C. White",
- "id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -395,9 +425,7 @@
"Blog",
2
]
- ],
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti"
+ ]
},
{
"data" : [
@@ -406,20 +434,22 @@
2
]
],
- "name" : "Ian Goodnight",
- "id" : "Ian Goodnight"
+ "id" : "Ian Goodnight",
+ "name" : "Ian Goodnight"
},
{
+ "id" : "Ioannis Bourlakos",
"data" : [
[
"Perl",
2
]
],
- "id" : "Ioannis Bourlakos",
"name" : "Ioannis Bourlakos"
},
{
+ "name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -429,23 +459,21 @@
"Blog",
1
]
- ],
- "id" : "James Smith",
- "name" : "James Smith"
+ ]
},
{
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
],
- "id" : "Jan Krnavek",
"name" : "Jan Krnavek"
},
{
- "id" : "Jared Martin",
"name" : "Jared Martin",
+ "id" : "Jared Martin",
"data" : [
[
"Perl",
@@ -464,60 +492,58 @@
2
]
],
- "name" : "Joan Mimosinnet",
- "id" : "Joan Mimosinnet"
+ "id" : "Joan Mimosinnet",
+ "name" : "Joan Mimosinnet"
},
{
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ ]
},
{
+ "name" : "Konstantinos Giannakakis",
"data" : [
[
"Perl",
2
]
],
- "name" : "Konstantinos Giannakakis",
"id" : "Konstantinos Giannakakis"
},
{
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
- 1
+ 2
],
[
"Raku",
- 1
+ 2
],
[
"Blog",
1
]
- ],
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ ]
},
{
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch"
+ ]
},
{
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -527,67 +553,69 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
1
]
],
- "name" : "Mark Anderson",
"id" : "Mark Anderson"
},
{
+ "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "name" : "Matthew Neleigh",
- "id" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke"
},
{
+ "id" : "Olivier Delouya",
"data" : [
[
"Perl",
1
]
],
- "id" : "Olivier Delouya",
"name" : "Olivier Delouya"
},
{
"name" : "Paul Fajman",
- "id" : "Paul Fajman",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Paul Fajman"
},
{
+ "name" : "Pete Houston",
+ "id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Pete Houston",
- "id" : "Pete Houston"
+ ]
},
{
"data" : [
@@ -604,10 +632,12 @@
1
]
],
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West"
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
+ "name" : "Simon Green",
+ "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -617,33 +647,30 @@
"Blog",
1
]
- ],
- "id" : "Simon Green",
- "name" : "Simon Green"
+ ]
},
{
+ "name" : "Simon Proctor",
"data" : [
[
"Raku",
1
]
],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "id" : "Simon Proctor"
},
{
- "id" : "Steven Wilson",
"name" : "Steven Wilson",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Steven Wilson"
},
{
"id" : "Stuart Little",
- "name" : "Stuart Little",
"data" : [
[
"Perl",
@@ -653,9 +680,11 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Stuart Little"
},
{
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -666,12 +695,9 @@
2
]
],
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
+ "id" : "Ulrich Rieke"
},
{
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -681,52 +707,26 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
},
{
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Wanderdoc",
- "id" : "Wanderdoc"
+ ]
}
]
},
- "chart" : {
- "type" : "column"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "title" : {
- "text" : "The Weekly Challenge - 127"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
"subtitle" : {
- "text" : "[Champions: 40] Last updated at 2021-08-30 01:54:19 GMT"
- },
- "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/>"
+ "text" : "[Champions: 40] Last updated at 2021-08-30 12:00:38 GMT"
},
"xAxis" : {
"type" : "category"
- },
- "legend" : {
- "enabled" : 0
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 77af9498b4..75890f080b 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,6 +1,21 @@
{
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2021-08-30 12:00:38 GMT"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2021]"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"series" : [
{
@@ -11,53 +26,38 @@
],
[
"Perl",
- 6110
+ 6111
],
[
"Raku",
- 3776
+ 3777
]
],
- "name" : "Contributions",
"dataLabels" : {
- "align" : "right",
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
},
- "y" : 10,
- "rotation" : -90,
"format" : "{point.y:.0f}",
"color" : "#FFFFFF",
+ "rotation" : -90,
+ "y" : 10,
+ "align" : "right",
"enabled" : "true"
- }
+ },
+ "name" : "Contributions"
}
],
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "subtitle" : {
- "text" : "Last updated at 2021-08-30 01:54:19 GMT"
- },
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
- },
- "legend" : {
- "enabled" : "false"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2021]"
- },
"yAxis" : {
"min" : 0,
"title" : {
"text" : null
}
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index b531bf3381..29bf745d44 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,21 +1,676 @@
{
+ "legend" : {
+ "enabled" : "false"
+ },
"chart" : {
"type" : "column"
},
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
+ "series" : [
+ {
+ "name" : "The Weekly Challenge Languages",
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "name" : "#001",
+ "drilldown" : "001",
+ "y" : 161
+ },
+ {
+ "y" : 125,
+ "drilldown" : "002",
+ "name" : "#002"
+ },
+ {
+ "y" : 81,
+ "name" : "#003",
+ "drilldown" : "003"
+ },
+ {
+ "name" : "#004",
+ "drilldown" : "004",
+ "y" : 99
+ },
+ {
+ "name" : "#005",
+ "drilldown" : "005",
+ "y" : 78
+ },
+ {
+ "y" : 58,
+ "drilldown" : "006",
+ "name" : "#006"
+ },
+ {
+ "drilldown" : "007",
+ "name" : "#007",
+ "y" : 64
+ },
+ {
+ "y" : 78,
+ "drilldown" : "008",
+ "name" : "#008"
+ },
+ {
+ "y" : 76,
+ "name" : "#009",
+ "drilldown" : "009"
+ },
+ {
+ "name" : "#010",
+ "drilldown" : "010",
+ "y" : 65
+ },
+ {
+ "drilldown" : "011",
+ "name" : "#011",
+ "y" : 85
+ },
+ {
+ "drilldown" : "012",
+ "name" : "#012",
+ "y" : 89
+ },
+ {
+ "y" : 85,
+ "drilldown" : "013",
+ "name" : "#013"
+ },
+ {
+ "y" : 101,
+ "name" : "#014",
+ "drilldown" : "014"
+ },
+ {
+ "y" : 99,
+ "name" : "#015",
+ "drilldown" : "015"
+ },
+ {
+ "drilldown" : "016",
+ "name" : "#016",
+ "y" : 71
+ },
+ {
+ "drilldown" : "017",
+ "name" : "#017",
+ "y" : 84
+ },
+ {
+ "drilldown" : "018",
+ "name" : "#018",
+ "y" : 81
+ },
+ {
+ "name" : "#019",