aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-06-26 17:25:43 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-06-26 17:25:43 +0100
commit7ccae39ceac6e4ad1bb83bd3e9b169deddfc02f0 (patch)
tree50fdfb45b99ecf86ad6ee90d470d20edc56e42d1
parent48032cc42325d1a29fdb24a742932f5d4c4a624d (diff)
downloadperlweeklychallenge-club-7ccae39ceac6e4ad1bb83bd3e9b169deddfc02f0.tar.gz
perlweeklychallenge-club-7ccae39ceac6e4ad1bb83bd3e9b169deddfc02f0.tar.bz2
perlweeklychallenge-club-7ccae39ceac6e4ad1bb83bd3e9b169deddfc02f0.zip
- Added Raku solution to the task "Primorial Numbers" of week 170.
-rw-r--r--challenge-170/mohammad-anwar/raku/ch-1.raku38
-rw-r--r--stats/pwc-current.json268
-rw-r--r--stats/pwc-language-breakdown-summary.json66
-rw-r--r--stats/pwc-language-breakdown.json1174
-rw-r--r--stats/pwc-leaders.json770
-rw-r--r--stats/pwc-summary-1-30.json98
-rw-r--r--stats/pwc-summary-121-150.json110
-rw-r--r--stats/pwc-summary-151-180.json44
-rw-r--r--stats/pwc-summary-181-210.json28
-rw-r--r--stats/pwc-summary-211-240.json32
-rw-r--r--stats/pwc-summary-241-270.json94
-rw-r--r--stats/pwc-summary-31-60.json98
-rw-r--r--stats/pwc-summary-61-90.json110
-rw-r--r--stats/pwc-summary-91-120.json44
-rw-r--r--stats/pwc-summary.json566
15 files changed, 1791 insertions, 1749 deletions
diff --git a/challenge-170/mohammad-anwar/raku/ch-1.raku b/challenge-170/mohammad-anwar/raku/ch-1.raku
new file mode 100644
index 0000000000..bd394fe44e
--- /dev/null
+++ b/challenge-170/mohammad-anwar/raku/ch-1.raku
@@ -0,0 +1,38 @@
+#!/usr/bin/env raku
+
+=begin pod
+
+Week 170:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-170
+
+Task #1: Primorial Numbers
+
+ Write a script to generate first 10 Primorial Numbers.
+
+=end pod
+
+use Test;
+
+is primorial-numbers(10),
+ [2, 6, 30, 210, 2310, 30030, 510510, 9699690, 223092870, 6469693230];
+
+done-testing;
+
+#
+#
+# METHOD
+
+sub primorial-numbers(Int $n) {
+ my $pn = [];
+ my $i = 0;
+ my $j = 1;
+ while ($pn.elems < $n) {
+ $i++;
+ next unless $i.is-prime;
+ $j = $i * $j;
+ $pn.push: $j;
+ }
+
+ return $pn;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index e58290dda3..1346d37fff 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,40 +1,35 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
"series" : [
{
"data" : [
{
- "drilldown" : "Adam Russell",
"y" : 1,
+ "drilldown" : "Adam Russell",
"name" : "Adam Russell"
},
{
+ "name" : "Arne Sommer",
"drilldown" : "Arne Sommer",
- "y" : 3,
- "name" : "Arne Sommer"
+ "y" : 3
},
{
"name" : "Athanasius",
- "y" : 4,
- "drilldown" : "Athanasius"
+ "drilldown" : "Athanasius",
+ "y" : 4
},
{
- "name" : "Cheok-Yin Fung",
"y" : 2,
+ "name" : "Cheok-Yin Fung",
"drilldown" : "Cheok-Yin Fung"
},
{
+ "y" : 2,
"drilldown" : "Colin Crain",
- "name" : "Colin Crain",
- "y" : 2
+ "name" : "Colin Crain"
},
{
- "drilldown" : "Cristina Heredia",
"y" : 1,
+ "drilldown" : "Cristina Heredia",
"name" : "Cristina Heredia"
},
{
@@ -43,79 +38,79 @@
"drilldown" : "Dario Mazzeo"
},
{
- "drilldown" : "Dave Jacoby",
"y" : 2,
+ "drilldown" : "Dave Jacoby",
"name" : "Dave Jacoby"
},
{
+ "y" : 2,
"drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
+ "name" : "E. Choroba"
},
{
- "drilldown" : "Flavio Poletti",
"name" : "Flavio Poletti",
+ "drilldown" : "Flavio Poletti",
"y" : 6
},
{
+ "drilldown" : "habere-et-dispetire",
"name" : "habere-et-dispetire",
- "y" : 2,
- "drilldown" : "habere-et-dispetire"
+ "y" : 2
},
{
- "y" : 3,
+ "drilldown" : "James Smith",
"name" : "James Smith",
- "drilldown" : "James Smith"
+ "y" : 3
},
{
"y" : 2,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
- "drilldown" : "Jorg Sommrey",
+ "y" : 2,
"name" : "Jorg Sommrey",
- "y" : 2
+ "drilldown" : "Jorg Sommrey"
},
{
"name" : "Laurent Rosenfeld",
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
},
{
- "drilldown" : "Lubos Kolouch",
"y" : 2,
+ "drilldown" : "Lubos Kolouch",
"name" : "Lubos Kolouch"
},
{
- "y" : 8,
"name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
+ "drilldown" : "Luca Ferrari",
+ "y" : 8
},
{
- "name" : "Marton Polgar",
"y" : 2,
+ "name" : "Marton Polgar",
"drilldown" : "Marton Polgar"
},
{
- "y" : 2,
"name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh"
+ "drilldown" : "Matthew Neleigh",
+ "y" : 2
},
{
- "y" : 1,
+ "y" : 2,
"name" : "Mohammad S Anwar",
"drilldown" : "Mohammad S Anwar"
},
{
- "y" : 2,
"name" : "Niels van Dijke",
- "drilldown" : "Niels van Dijke"
+ "drilldown" : "Niels van Dijke",
+ "y" : 2
},
{
"y" : 3,
- "name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
+ "drilldown" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"drilldown" : "Philippe Bricout",
@@ -123,76 +118,73 @@
"y" : 1
},
{
- "name" : "Robert DiCicco",
"y" : 2,
+ "name" : "Robert DiCicco",
"drilldown" : "Robert DiCicco"
},
{
- "y" : 2,
+ "drilldown" : "Robert Ransbottom",
"name" : "Robert Ransbottom",
- "drilldown" : "Robert Ransbottom"
+ "y" : 2
},
{
- "y" : 5,
"name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West"
+ "drilldown" : "Roger Bell_West",
+ "y" : 5
},
{
"drilldown" : "Ryan Thompson",
- "y" : 3,
- "name" : "Ryan Thompson"
+ "name" : "Ryan Thompson",
+ "y" : 3
},
{
- "y" : 2,
"name" : "Simon Green",
- "drilldown" : "Simon Green"
+ "drilldown" : "Simon Green",
+ "y" : 2
},
{
- "drilldown" : "Stephen G Lynn",
"name" : "Stephen G Lynn",
+ "drilldown" : "Stephen G Lynn",
"y" : 5
},
{
"y" : 3,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
"y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
}
],
"colorByPoint" : 1,
"name" : "The Weekly Challenge - 170"
}
],
+ "subtitle" : {
+ "text" : "[Champions: 31] Last updated at 2022-06-26 16:24:08 GMT"
+ },
"plotOptions" : {
"series" : {
+ "borderWidth" : 0,
"dataLabels" : {
"format" : "{point.y}",
"enabled" : 1
- },
- "borderWidth" : 0
+ }
}
},
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : 0
- },
- "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/>"
- },
"xAxis" : {
"type" : "category"
},
"title" : {
"text" : "The Weekly Challenge - 170"
},
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
"drilldown" : {
"series" : [
{
@@ -202,8 +194,8 @@
1
]
],
- "name" : "Adam Russell",
- "id" : "Adam Russell"
+ "id" : "Adam Russell",
+ "name" : "Adam Russell"
},
{
"data" : [
@@ -220,6 +212,8 @@
"name" : "Arne Sommer"
},
{
+ "name" : "Athanasius",
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -229,13 +223,11 @@
"Raku",
2
]
- ],
- "name" : "Athanasius",
- "id" : "Athanasius"
+ ]
},
{
- "id" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -244,14 +236,14 @@
]
},
{
- "name" : "Colin Crain",
- "id" : "Colin Crain",
"data" : [
[
"Blog",
2
]
- ]
+ ],
+ "name" : "Colin Crain",
+ "id" : "Colin Crain"
},
{
"data" : [
@@ -274,24 +266,24 @@
"name" : "Dario Mazzeo"
},
{
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
- "name" : "E. Choroba",
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "E. Choroba",
+ "id" : "E. Choroba"
},
{
"data" : [
@@ -332,12 +324,12 @@
1
]
],
- "id" : "James Smith",
- "name" : "James Smith"
+ "name" : "James Smith",
+ "id" : "James Smith"
},
{
- "name" : "Jan Krnavek",
"id" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
@@ -346,16 +338,18 @@
]
},
{
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey"
+ ]
},
{
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -369,19 +363,17 @@
"Blog",
1
]
- ],
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ ]
},
{
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ ]
},
{
"data" : [
@@ -398,46 +390,52 @@
"id" : "Luca Ferrari"
},
{
- "name" : "Marton Polgar",
- "id" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Marton Polgar",
+ "id" : "Marton Polgar"
},
{
- "id" : "Matthew Neleigh",
- "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh"
},
{
- "name" : "Mohammad S Anwar",
- "id" : "Mohammad S Anwar",
"data" : [
[
"Perl",
1
+ ],
+ [
+ "Raku",
+ 1
]
- ]
+ ],
+ "name" : "Mohammad S Anwar",
+ "id" : "Mohammad S Anwar"
},
{
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke"
+ ]
},
{
+ "name" : "Peter Campbell Smith",
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -447,23 +445,19 @@
"Blog",
1
]
- ],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ ]
},
{
+ "id" : "Philippe Bricout",
+ "name" : "Philippe Bricout",
"data" : [
[
"Perl",
1
]
- ],
- "name" : "Philippe Bricout",
- "id" : "Philippe Bricout"
+ ]
},
{
- "name" : "Robert DiCicco",
- "id" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -473,7 +467,9 @@
"Raku",
1
]
- ]
+ ],
+ "name" : "Robert DiCicco",
+ "id" : "Robert DiCicco"
},
{
"data" : [
@@ -482,12 +478,10 @@
2
]
],
- "id" : "Robert Ransbottom",
- "name" : "Robert Ransbottom"
+ "name" : "Robert Ransbottom",
+ "id" : "Robert Ransbottom"
},
{
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -501,7 +495,9 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Roger Bell_West",
+ "id" : "Roger Bell_West"
},
{
"id" : "Ryan Thompson",
@@ -518,16 +514,18 @@
]
},
{
+ "id" : "Simon Green",
+ "name" : "Simon Green",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Simon Green",
- "id" : "Simon Green"
+ ]
},
{
+ "id" : "Stephen G Lynn",
+ "name" : "Stephen G Lynn",
"data" : [
[
"Perl",
@@ -541,13 +539,9 @@
"Blog",
1
]
- ],
- "name" : "Stephen G Lynn",
- "id" : "Stephen G Lynn"
+ ]
},
{
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -557,7 +551,9 @@
"Raku",
1
]
- ]
+ ],
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke"
},
{
"data" : [
@@ -570,12 +566,20 @@
1
]
],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
}
]
},
- "subtitle" : {
- "text" : "[Champions: 31] Last updated at 2022-06-26 13:35:44 GMT"
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "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/>"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index b4e04516cf..0a8c986854 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,43 +1,18 @@
{
- "subtitle" : {
- "text" : "Last updated at 2022-06-26 13:35:44 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2022]"
- },
"xAxis" : {
"type" : "category",
"labels" : {
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
}
}
},
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : "false"
+ "subtitle" : {
+ "text" : "Last updated at 2022-06-26 16:24:08 GMT"
},
"series" : [
{
- "name" : "Contributions",
- "dataLabels" : {
- "color" : "#FFFFFF",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "y" : 10,
- "align" : "right",
- "enabled" : "true",
- "format" : "{point.y:.0f}",
- "rotation" : -90
- },
"data" : [
[
"Blog",
@@ -49,15 +24,40 @@
],
[
"Raku",
- 4920
+ 4921
]
- ]
+ ],
+ "dataLabels" : {
+ "format" : "{point.y:.0f}",
+ "align" : "right",
+ "rotation" : -90,
+ "color" : "#FFFFFF",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "enabled" : "true",
+ "y" : 10
+ },
+ "name" : "Contributions"
}
],
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "chart" : {
+ "type" : "column"
+ },
"yAxis" : {
+ "min" : 0,
"title" : {
"text" : null
- },
- "min" : 0
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2022]"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index fe96236fc1..7e52d3997e 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,12 +1,15 @@
{
- "title" : {
- "text" : "The Weekly Challenge Language"
+ "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"
},
"drilldown" : {
"series" : [
{
- "name" : "001",
- "id" : "001",
"data" : [
[
"Perl",
@@ -20,11 +23,11 @@
"Blog",
11
]
- ]
+ ],
+ "name" : "001",
+ "id" : "001"
},
{
- "id" : "002",
- "name" : "002",
"data" : [
[
"Perl",
@@ -38,7 +41,9 @@
"Blog",
10
]
- ]
+ ],
+ "name" : "002",
+ "id" : "002"
},
{
"name" : "003",
@@ -59,6 +64,8 @@
]
},
{
+ "name" : "004",
+ "id" : "004",
"data" : [
[
"Perl",
@@ -72,9 +79,7 @@
"Blog",
10
]
- ],
- "name" : "004",
- "id" : "004"
+ ]
},
{
"id" : "005",
@@ -95,6 +100,8 @@
]
},
{
+ "name" : "006",
+ "id" : "006",
"data" : [
[
"Perl",
@@ -108,13 +115,9 @@
"Blog",
7
]
- ],
- "id" : "006",
- "name" : "006"
+ ]
},
{
- "id" : "007",
- "name" : "007",
"data" : [
[
"Perl",
@@ -128,9 +131,13 @@
"Blog",
10
]
- ]
+ ],
+ "id" : "007",
+ "name" : "007"
},
{
+ "name" : "008",
+ "id" : "008",
"data" : [
[
"Perl",
@@ -144,11 +151,11 @@
"Blog",
12
]
- ],
- "name" : "008",
- "id" : "008"
+ ]
},
{
+ "name" : "009",
+ "id" : "009",
"data" : [
[
"Perl",
@@ -162,9 +169,7 @@
"Blog",
13
]
- ],
- "name" : "009",
- "id" : "009"
+ ]
},
{
"name" : "010",
@@ -185,8 +190,8 @@
]
},
{
- "id" : "011",
"name" : "011",
+ "id" : "011",
"data" : [
[
"Perl",
@@ -221,6 +226,8 @@
]
},
{
+ "name" : "013",
+ "id" : "013",
"data" : [
[
"Perl",
@@ -234,13 +241,9 @@
"Blog",
13
]
- ],
- "name" : "013",
- "id" : "013"
+ ]
},
{
- "name" : "014",
- "id" : "014",
"data" : [
[
"Perl",
@@ -254,9 +257,13 @@
"Blog",
15
]
- ]
+ ],
+ "name" : "014",
+ "id" : "014"
},
{
+ "id" : "015",
+ "name" : "015",
"data" : [
[
"Perl",
@@ -270,13 +277,11 @@
"Blog",
15
]
- ],
- "name" : "015",
- "id" : "015"
+ ]
},
{
- "name" : "016",
"id" : "016",
+ "name" : "016",
"data" : [
[
"Perl",
@@ -329,8 +334,6 @@
"id" : "018"
},
{
- "name" : "019",
- "id" : "019",
"data" : [
[
"Perl",
@@ -344,7 +347,9 @@
"Blog",
13
]
- ]
+ ],
+ "id" : "019",
+ "name" : "019"
},
{
"id" : "020",
@@ -365,6 +370,8 @@
]
},
{
+ "name" : "021",
+ "id" : "021",
"data" : [
[
"Perl",
@@ -378,9 +385,7 @@
"Blog",
10
]
- ],
- "id" : "021",
- "name" : "021"
+ ]
},
{
"name" : "022",
@@ -415,8 +420,8 @@
12
]
],
- "id" : "023",
- "name" : "023"
+ "name" : "023",
+ "id" : "023"
},
{
"data" : [
@@ -433,12 +438,10 @@
11
]
],
- "name" : "024",
- "id" : "024"
+ "id" : "024",
+ "name" : "024"
},
{
- "name" : "025",
- "id" : "025",
"data" : [
[
"Perl",
@@ -452,7 +455,9 @@
"Blog",
12
]
- ]
+ ],
+ "name" : "025",
+ "id" : "025"
},
{
"data" : [
@@ -469,10 +474,12 @@
10
]
],
- "name" : "026",
- "id" : "026"
+ "id" : "026",
+ "name" : "026"
},
{
+ "id" : "027",
+ "name" : "027",
"data" : [
[
"Perl",
@@ -486,9 +493,7 @@
"Blog",
9
]
- ],
- "id" : "027",
- "name" : "027"
+ ]
},
{
"data" : [
@@ -505,8 +510,8 @@
9
]
],
- "name" : "028",
- "id" : "028"
+ "id" : "028",
+ "name" : "028"
},
{
"data" : [
@@ -527,6 +532,8 @@
"name" : "029"
},
{
+ "id" : "030",
+ "name" : "030",
"data" : [
[
"Perl",
@@ -540,11 +547,11 @@
"Blog",
10
]
- ],
- "name" : "030",
- "id" : "030"
+ ]
},
{
+ "id" : "031",
+ "name" : "031",
"data" : [
[
"Perl",
@@ -558,9 +565,7 @@
"Blog",
9
]
- ],
- "id" : "031",
- "name" : "031"
+ ]
},
{
"data" : [
@@ -577,10 +582,12 @@
10
]
],
- "id" : "032",
- "name" :