aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2020-07-06 00:24:17 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2020-07-06 00:24:17 +0100
commit7b32c1d78a98d625710dc97ad8aef600a1a523d4 (patch)
treebe4a6e3ae2921501b09333c411132de9be79d9bc
parenta1693a58dc7619db3962e7f331714538bd76954b (diff)
downloadperlweeklychallenge-club-7b32c1d78a98d625710dc97ad8aef600a1a523d4.tar.gz
perlweeklychallenge-club-7b32c1d78a98d625710dc97ad8aef600a1a523d4.tar.bz2
perlweeklychallenge-club-7b32c1d78a98d625710dc97ad8aef600a1a523d4.zip
- Added APL solutions by Richard Park.
-rw-r--r--challenge-067/richard-park/apl/LetterPhone.aplf6
-rw-r--r--challenge-067/richard-park/apl/NumberCombinations.aplf16
-rw-r--r--challenge-067/richard-park/apl/ch-1.aplf16
-rw-r--r--challenge-067/richard-park/apl/ch-2.aplf6
-rw-r--r--challenge-067/richard-park/blog.txt1
-rw-r--r--stats/pwc-current.json267
-rw-r--r--stats/pwc-language-breakdown-summary.json54
-rw-r--r--stats/pwc-language-breakdown.json498
-rw-r--r--stats/pwc-leaders.json356
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json44
-rw-r--r--stats/pwc-summary-151-180.json42
-rw-r--r--stats/pwc-summary-31-60.json22
-rw-r--r--stats/pwc-summary-61-90.json34
-rw-r--r--stats/pwc-summary-91-120.json38
-rw-r--r--stats/pwc-summary.json58
16 files changed, 777 insertions, 717 deletions
diff --git a/challenge-067/richard-park/apl/LetterPhone.aplf b/challenge-067/richard-park/apl/LetterPhone.aplf
new file mode 100644
index 0000000000..dd200c706d
--- /dev/null
+++ b/challenge-067/richard-park/apl/LetterPhone.aplf
@@ -0,0 +1,6 @@
+ LetterPhone←{
+⍝ ⍵: Character vector of digits e.g. '35'
+⍝ ←: All possible letter combinations from a keypad defined by ⍺
+ ⍺←'_,@' 'ABC' 'DEF' 'GHI' 'JKL' 'MNO' 'PQRS' 'TUV' 'WXYZ'
+ ,⊃∘.,/⍺[⍎¨⍵]
+ }
diff --git a/challenge-067/richard-park/apl/NumberCombinations.aplf b/challenge-067/richard-park/apl/NumberCombinations.aplf
new file mode 100644
index 0000000000..5f7ad35d22
--- /dev/null
+++ b/challenge-067/richard-park/apl/NumberCombinations.aplf
@@ -0,0 +1,16 @@
+ NumberCombinations←{
+⍝ ←: All strictly ascending vectors of length ⍵
+⍝ which contain numbers in ⍳⍺
+⍝ Attempt 1
+⍝ =========
+ c←,((⍳⍺)∘.,⊢)⍣(¯1+⍵)⊢⍳⍺ ⍝ All combinations of digits in (⍳⍺)
+ ⍝ Of length ⍵
+ c⌿⍨{((∪≡⊢)⍵)∧((⊂⍋⍵)⌷⍵)≡⍵}¨c ⍝ Strictly ascending combinations
+⍝ Attempt 2
+⍝ =========
+⍝ e.g. 5 NumberCombinations 2
+ a←⍳¯1+⍺
+ b←(¯1+⍺)⍴⊂a ⍝ Maximal run repeated ¯1+⍺ times
+ c←1+0~⍨¨b×a≤b ⍝ Remove 0s and add 1
+ ⊃,/a,¨¨c ⍝ Catenate a's with c's
+ }
diff --git a/challenge-067/richard-park/apl/ch-1.aplf b/challenge-067/richard-park/apl/ch-1.aplf
new file mode 100644
index 0000000000..5f7ad35d22
--- /dev/null
+++ b/challenge-067/richard-park/apl/ch-1.aplf
@@ -0,0 +1,16 @@
+ NumberCombinations←{
+⍝ ←: All strictly ascending vectors of length ⍵
+⍝ which contain numbers in ⍳⍺
+⍝ Attempt 1
+⍝ =========
+ c←,((⍳⍺)∘.,⊢)⍣(¯1+⍵)⊢⍳⍺ ⍝ All combinations of digits in (⍳⍺)
+ ⍝ Of length ⍵
+ c⌿⍨{((∪≡⊢)⍵)∧((⊂⍋⍵)⌷⍵)≡⍵}¨c ⍝ Strictly ascending combinations
+⍝ Attempt 2
+⍝ =========
+⍝ e.g. 5 NumberCombinations 2
+ a←⍳¯1+⍺
+ b←(¯1+⍺)⍴⊂a ⍝ Maximal run repeated ¯1+⍺ times
+ c←1+0~⍨¨b×a≤b ⍝ Remove 0s and add 1
+ ⊃,/a,¨¨c ⍝ Catenate a's with c's
+ }
diff --git a/challenge-067/richard-park/apl/ch-2.aplf b/challenge-067/richard-park/apl/ch-2.aplf
new file mode 100644
index 0000000000..dd200c706d
--- /dev/null
+++ b/challenge-067/richard-park/apl/ch-2.aplf
@@ -0,0 +1,6 @@
+ LetterPhone←{
+⍝ ⍵: Character vector of digits e.g. '35'
+⍝ ←: All possible letter combinations from a keypad defined by ⍺
+ ⍺←'_,@' 'ABC' 'DEF' 'GHI' 'JKL' 'MNO' 'PQRS' 'TUV' 'WXYZ'
+ ,⊃∘.,/⍺[⍎¨⍵]
+ }
diff --git a/challenge-067/richard-park/blog.txt b/challenge-067/richard-park/blog.txt
new file mode 100644
index 0000000000..9615e69ee9
--- /dev/null
+++ b/challenge-067/richard-park/blog.txt
@@ -0,0 +1 @@
+https://www.youtube.com/watch?v=tSQOOzyD4Qw
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 640dc76a45..b2d476de45 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -4,162 +4,144 @@
"text" : "Total Solutions"
}
},
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
- }
- },
- "chart" : {
- "type" : "column"
- },
- "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/>"
- },
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 27] Last updated at 2020-07-05 23:16:36 GMT"
- },
"series" : [
{
"colorByPoint" : 1,
"data" : [
{
"drilldown" : "Andrew Shitov",
- "y" : 2,
- "name" : "Andrew Shitov"
+ "name" : "Andrew Shitov",
+ "y" : 2
},
{
- "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer",
"y" : 5,
- "name" : "Arne Sommer"
+ "drilldown" : "Arne Sommer"
},
{
"name" : "Athanasius",
- "drilldown" : "Athanasius",
- "y" : 4
+ "y" : 4,
+ "drilldown" : "Athanasius"
},
{
- "name" : "Chenyf",
"drilldown" : "Chenyf",
+ "name" : "Chenyf",
"y" : 2
},
{
+ "name" : "Cheok-Yin Fung",
"y" : 3,
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ "drilldown" : "Cheok-Yin Fung"
},
{
- "name" : "Dave Jacoby",
"drilldown" : "Dave Jacoby",
- "y" : 2
+ "y" : 2,
+ "name" : "Dave Jacoby"
},
{
- "name" : "Donald Hunter",
"y" : 3,
+ "name" : "Donald Hunter",
"drilldown" : "Donald Hunter"
},
{
- "name" : "Duncan C. White",
+ "drilldown" : "Duncan C. White",
"y" : 2,
- "drilldown" : "Duncan C. White"
+ "name" : "Duncan C. White"
},
{
- "name" : "E. Choroba",
+ "drilldown" : "E. Choroba",
"y" : 2,
- "drilldown" : "E. Choroba"
+ "name" : "E. Choroba"
},
{
"name" : "Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas",
- "y" : 5
+ "y" : 5,
+ "drilldown" : "Jaldhar H. Vyas"
},
{
- "drilldown" : "Javier Luque",
+ "name" : "Javier Luque",
"y" : 5,
- "name" : "Javier Luque"
+ "drilldown" : "Javier Luque"
},
{
- "name" : "Jorg Sommrey",
+ "drilldown" : "Jorg Sommrey",
"y" : 2,
- "drilldown" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey"
},
{
- "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
"y" : 5,
- "drilldown" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld"
},
{
- "name" : "Leo Manfredi",
"drilldown" : "Leo Manfredi",
+ "name" : "Leo Manfredi",
"y" : 1
},
{
- "name" : "Luca Ferrari",
"y" : 4,
+ "name" : "Luca Ferrari",
"drilldown" : "Luca Ferrari"
},
{
- "drilldown" : "Mark Anderson",
"y" : 2,
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
},
{
"y" : 7,
- "drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "name" : "Mohammad S Anwar",
+ "drilldown" : "Mohammad S Anwar"
},
{
- "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke",
"y" : 2,
- "drilldown" : "Niels van Dijke"
+ "name" : "Niels van Dijke"
},
{
- "name" : "Noud Aldenhoven",
"drilldown" : "Noud Aldenhoven",
+ "name" : "Noud Aldenhoven",
"y" : 2
},
{
- "name" : "Roger Bell_West",
+ "drilldown" : "Richard Park",
+ "y" : 1,
+ "name" : "Richard Park"
+ },
+ {
+ "drilldown" : "Roger Bell_West",
"y" : 3,
- "drilldown" : "Roger Bell_West"
+ "name" : "Roger Bell_West"
},
{
"name" : "Shahed Nooshmand",
- "drilldown" : "Shahed Nooshmand",
- "y" : 3
+ "y" : 3,
+ "drilldown" : "Shahed Nooshmand"
},
{
- "drilldown" : "Simon Miner",
"y" : 2,
- "name" : "Simon Miner"
+ "name" : "Simon Miner",
+ "drilldown" : "Simon Miner"
},
{
"y" : 2,
- "drilldown" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "drilldown" : "Simon Proctor"
},
{
- "name" : "Ulrich Rieke",
"drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"y" : 3
},
{
- "name" : "Walt Mankowski",
"drilldown" : "Walt Mankowski",
- "y" : 2
+ "y" : 2,
+ "name" : "Walt Mankowski"
},
{
+ "y" : 2,
"name" : "Wanderdoc",
- "drilldown" : "Wanderdoc",
- "y" : 2
+ "drilldown" : "Wanderdoc"
},
{
"name" : "Yet Ebreo",
@@ -170,21 +152,30 @@
"name" : "Perl Weekly Challenge - 067"
}
],
+ "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/>"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 067"
+ },
"drilldown" : {
"series" : [
{
"id" : "Andrew Shitov",
- "name" : "Andrew Shitov",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Andrew Shitov"
},
{
- "id" : "Arne Sommer",
- "name" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -198,9 +189,13 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer",
+ "name" : "Arne Sommer"
},
{
+ "name" : "Athanasius",
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -210,22 +205,19 @@
"Raku",
2
]
- ],
- "name" : "Athanasius",
- "id" : "Athanasius"
+ ]
},
{
- "name" : "Chenyf",
"data" : [
[
"Raku",
2
]
],
- "id" : "Chenyf"
+ "id" : "Chenyf",
+ "name" : "Chenyf"
},
{
- "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -236,6 +228,7 @@
1
]
],
+ "id" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung"
},
{
@@ -245,11 +238,11 @@
2
]
],
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby"
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
- "id" : "Donald Hunter",
+ "name" : "Donald Hunter",
"data" : [
[
"Raku",
@@ -260,29 +253,30 @@
1
]
],
- "name" : "Donald Hunter"
+ "id" : "Donald Hunter"
},
{
- "id" : "Duncan C. White",
"name" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Duncan C. White"
},
{
- "id" : "E. Choroba",
- "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
+ "name" : "Jaldhar H. Vyas",
"data" : [
[
"Perl",
@@ -297,12 +291,9 @@
1
]
],
- "name" : "Jaldhar H. Vyas",
"id" : "Jaldhar H. Vyas"
},
{
- "id" : "Javier Luque",
- "name" : "Javier Luque",
"data" : [
[
"Perl",
@@ -316,7 +307,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Javier Luque",
+ "name" : "Javier Luque"
},
{
"data" : [
@@ -325,11 +318,12 @@
2
]
],
- "name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey"
+ "id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
"name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -343,21 +337,19 @@
"Blog",
1
]
- ],
- "id" : "Laurent Rosenfeld"
+ ]
},
{
- "name" : "Leo Manfredi",
+ "id" : "Leo Manfredi",
"data" : [
[
"Perl",
1
]
],
- "id" : "Leo Manfredi"
+ "name" : "Leo Manfredi"
},
{
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -368,19 +360,21 @@
2
]
],
+ "id" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
- "name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "id" : "Mark Anderson"
+ "name" : "Mark Anderson"
},
{
+ "id" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -395,8 +389,7 @@
3
]
],
- "name" : "Mohammad S Anwar",
- "id" : "Mohammad S Anwar"
+ "name" : "Mohammad S Anwar"
},
{
"data" : [
@@ -405,18 +398,28 @@
2
]
],
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke"
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke"
},
{
+ "id" : "Noud Aldenhoven",
"data" : [
[
"Raku",
2
]
],
- "name" : "Noud Aldenhoven",
- "id" : "Noud Aldenhoven"
+ "name" : "Noud Aldenhoven"
+ },
+ {
+ "data" : [
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "id" : "Richard Park",
+ "name" : "Richard Park"
},
{
"data" : [
@@ -429,12 +432,12 @@
1
]
],
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West"
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
- "id" : "Shahed Nooshmand",
"name" : "Shahed Nooshmand",
+ "id" : "Shahed Nooshmand",
"data" : [
[
"Raku",
@@ -453,21 +456,21 @@
2
]
],
- "name" : "Simon Miner",
- "id" : "Simon Miner"
+ "id" : "Simon Miner",
+ "name" : "Simon Miner"
},
{
"id" : "Simon Proctor",
- "name" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Simon Proctor"
},
{
- "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -478,17 +481,17 @@
2
]
],
- "id" : "Ulrich Rieke"
+ "name" : "Ulrich Rieke"
},
{
+ "name" : "Walt Mankowski",
+ "id" : "Walt Mankowski",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Walt Mankowski",
- "id" : "Walt Mankowski"
+ ]
},
{
"name" : "Wanderdoc",
@@ -501,21 +504,33 @@
"id" : "Wanderdoc"
},
{
- "id" : "Yet Ebreo",
+ "name" : "Yet Ebreo",
"data" : [
[
"Perl",
2
]
],
- "name" : "Yet Ebreo"
+ "id" : "Yet Ebreo"
}
]
},
- "title" : {
- "text" : "Perl Weekly Challenge - 067"
+ "chart" : {
+ "type" : "column"
},
- "xAxis" : {
- "type" : "category"
+ "subtitle" : {
+ "text" : "[Champions: 28] Last updated at 2020-07-05 23:23:57 GMT"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index b0bc93df3c..a379fc3301 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,20 +1,16 @@
{
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- }
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
},
"series" : [
{
- "name" : "Contributions",
"data" : [
[
"Blog",
- 787
+ 788
],
[
"Perl",
@@ -25,39 +21,43 @@
1781
]
],
+ "name" : "Contributions",
"dataLabels" : {
- "align" : "right",
- "format" : "{point.y:.0f}",
"rotation" : -90,
"color" : "#FFFFFF",
- "y" : 10,
"enabled" : "true",
+ "format" : "{point.y:.0f}",
+ "y" : 10,
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "align" : "right"
}
}
],
- "subtitle" : {
- "text" : "Last updated at 2020-07-05 23:16:36 GMT"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
},
"title" : {
"text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
},
+ "subtitle" : {
+ "text" : "Last updated at 2020-07-05 23:23:57 GMT"
+ },
"chart" : {
"type" : "column"
},
"legend" : {
"enabled" : "false"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index dd6c6f3444..cafd7d4ca1 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,159 +1,131 @@
{
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
- "legend" : {
- "enabled" : "false"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
"xAxis" : {
"type" : "category"
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-07-05 23:16:36 GMT"
- },
"series" : [
{
"colorByPoint" : "true",
"name" : "Perl Weekly Challenge Languages",
"data" : [
{
- "y" : 142,
"drilldown" : "001",
+ "y" : 142,
"name" : "#001"
},
{
- "name" : "#002",
"drilldown" : "002",
- "y" : 109
+ "y" : 109,
+ "name" : "#002"
},
{
"y" : 71,
- "drilldown" : "003",
- "name" : "#003"
+ "name" : "#003",
+ "drilldown" : "003"
},
{
"name" : "#004",
- "drilldown" : "004",
- "y" : 91
+ "y" : 91,
+ "drilldown" : "004"
},
{
+ "name" : "#005",
"y" : 72,
- "drilldown" : "005",
- "name" : "#005"
+ "drilldown" : "005"
},
{
+ "y" : 52,
"name" : "#006",
- "drilldown" : "006",
- "y" : 52
+ "drilldown" : "006"
},
{
- "name" : "#007",
"y" : 59,
+ "name" : "#007",
"drilldown" : "007"
},
{
- "drilldown" : "008",
"y" : 72,
- "name" : "#008"
+ "name" : "#008",
+ "drilldown" : "008"
},
{
- "name" : "#009",
+ "drilldown" : "009",
"y" : 68,
- "drilldown" : "009"
+ "name" : "#009"
},
{
+ "name" : "#010",
"y" : 60,
- "drilldown" : "010",
- "name" : "#010"
+ "drilldown" : "010"
},
{
- "name" : "#011",
+ "drilldown" : "011",
"y" : 79,
- "drilldown" : "011"
+ "name" : "#011"
},
{
+ "drilldown" : "012",
"name" : "#012",
- "y" : 83,
- "drilldown" : "012"
+ "y" : 83
},
{
- "y" : 76,
"drilldown" : "013",
+ "y" : 76,
"name" : "#013"
},
{
- "y" : 96,
"drilldown" : "014",
+ "y" : 96,
"name" : "#014"
},
{
- "drilldown" : "015",
+ "name" : "#015",
"y" : 93,
- "name" : "#015"
+ "drilldown" : "015"
},
{
+ "y" : 66,
"name" : "#016",
- "drilldown" : "016",
- "y" : 66
+ "drilldown" : "016"
},
{
+ "name" : "#017",
"y" : 79,
- "drilldown" : "017",
- "name" : "#017"
+ "drilldown" : "017"
},
{
- "name" : "#018",
+ "drilldown" : "018",
"y" : 76,
- "drilldown" : "018"
+ "name" : "#018"
},
{
- "y" : 97,
"drilldown" : "019",
- "name" : "#019"
+ "name" : "#019",
+ "y" : 97
},
{
- "name" : "#020",
"y" : 95,
+ "name" : "#020",
"drilldown" : "020"
},
{
- "name" : "#021",
"drilldown" : "021",
- "y" : 67
+ "y" : 67,
+ "name" : "#021"
},
{
"y" : 63,
- "drilldown" : "022",
- "name" : "#022"
+ "name" : "#022",
+ "drilldown" : "022"
},
{
"drilldown" : "023",
- "y" : 91,
- "name" : "#023"
+ "name" : "#023",
+ "y" : 91
},
{
+ "name" : "#024",
"y" : 70,
- "drilldown" : "024",
- "name" : "#024"
+ "drilldown" : "024"
},
{
"drilldown" : "025",
@@ -161,44 +133,44 @@
"name" : "#025"
},
{
- "name" : "#026",
"y" : 70,
+ "name" : "#026",
"drilldown" : "026"
},
{
"drilldown" : "027",
- "y" : 58,
- "name" : "#027"
+ "name" : "#027",
+ "y" : 58
},
{
- "y" : 78,
"drilldown" : "028",
- "name" : "#028"
+ "name" : "#028",
+ "y" : 78
},
{
"y" : 77,
- "drilldown" : "029",
- "name" : "#029"
+ "name" : "#029",
+ "drilldown" : "029"
},
{
- "y" : 115,
"drilldown" : "030",
- "name" : "#030"
+ "name" : "#030",
+ "y" : 115
},
{
- "name" : "#031",
"y" : 87,
+ "name" : "#031",
"drilldown" : "031"
},
{
"y" : 92,
- "drilldown" : "032",
- "name" : "#032"
+ "name" : "#032",
+ "drilldown" : "032"
},
{
- "name" : "#033",
+ "drilldown" : "033",
"y" : 108,
- "drilldown" : "033"
+ "name" : "#033"
},
{
"drilldown" : "034",
@@ -206,69 +178,69 @@