@bottlebooks/valid-values 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/core/translate.d.ts +3 -0
- package/dist/core/translate.d.ts.map +1 -0
- package/dist/core/translate.js +42 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -10
- package/dist/main.js +23 -17
- package/dist/validValues/award.d.ts +6 -2
- package/dist/validValues/award.d.ts.map +1 -1
- package/dist/validValues/award.js +29 -236
- package/dist/validValues/awardMedal.d.ts +1 -1
- package/dist/validValues/beerStyle.d.ts +1 -1
- package/dist/validValues/certification.d.ts +1 -1
- package/dist/validValues/country.d.ts +7 -2
- package/dist/validValues/country.d.ts.map +1 -1
- package/dist/validValues/country.js +2 -149
- package/dist/validValues/designation.d.ts +0 -115
- package/dist/validValues/designation.d.ts.map +1 -1
- package/dist/validValues/ingredient.d.ts +1 -1
- package/dist/validValues/ingredient.d.ts.map +1 -1
- package/dist/validValues/ingredient.js +37 -33
- package/dist/validValues/packagingCertification.d.ts +1 -1
- package/dist/validValues/productType.d.ts +6 -2
- package/dist/validValues/productType.d.ts.map +1 -1
- package/dist/validValues/productType.js +39 -78
- package/dist/validValues/productionMethod.d.ts +1 -1
- package/dist/validValues/region.d.ts +14 -17
- package/dist/validValues/region.d.ts.map +1 -1
- package/dist/validValues/region.js +4804 -5250
- package/dist/validValues/responsibleConsumptionLogo.d.ts +1 -1
- package/dist/validValues/subregion.d.ts +10 -17
- package/dist/validValues/subregion.d.ts.map +1 -1
- package/dist/validValues/subregion.js +11115 -13852
- package/dist/validValues/types/ProductType.d.ts.map +1 -1
- package/dist/validValues/types/ValidValueDefinition.d.ts +1 -1
- package/dist/validValues/types/ValidValueDefinition.d.ts.map +1 -1
- package/dist/validValues/types/award_p85_100.d.ts +3 -0
- package/dist/validValues/types/award_p85_100.d.ts.map +1 -0
- package/dist/validValues/types/award_p85_100.js +9 -0
- package/dist/validValues/types/productTypesSpirit.d.ts +4 -0
- package/dist/validValues/types/productTypesSpirit.d.ts.map +1 -0
- package/dist/validValues/types/productTypesSpirit.js +9 -0
- package/dist/validValues/types/productTypesWine.d.ts +4 -0
- package/dist/validValues/types/productTypesWine.d.ts.map +1 -0
- package/dist/validValues/types/productTypesWine.js +9 -0
- package/dist/validValues/utils/createValidValues.d.ts +1 -1
- package/dist/validValues/utils/createValidValues.d.ts.map +1 -1
- package/dist/validValues/utils/createValidValues.js +50 -53
- package/dist/validValues/varietyName.d.ts +1 -1
- package/dist/validValues/wineColor.d.ts +1 -1
- package/dist/validValues/wineType.d.ts +1 -1
- package/package.json +2 -2
- package/region.ts +0 -0
- package/src/core/translate.ts +40 -0
- package/src/index.ts +1 -6
- package/src/locales/po/bg.po +2110 -2110
- package/src/locales/po/de.po +2110 -2110
- package/src/locales/po/ee.po +2110 -2110
- package/src/locales/po/en.po +2110 -2110
- package/src/locales/po/es.po +2110 -2110
- package/src/locales/po/fi.po +2110 -2110
- package/src/locales/po/fr.po +2110 -2110
- package/src/locales/po/hr.po +2110 -2110
- package/src/locales/po/hu.po +2110 -2110
- package/src/locales/po/it.po +2110 -2110
- package/src/locales/po/lt.po +2110 -2110
- package/src/locales/po/lv.po +2110 -2110
- package/src/locales/po/mt.po +2110 -2110
- package/src/locales/po/nl.po +2110 -2110
- package/src/locales/po/pl.po +2110 -2110
- package/src/locales/po/pt.po +2110 -2110
- package/src/locales/po/ro.po +2110 -2110
- package/src/locales/po/se.po +2110 -2110
- package/src/locales/po/si.po +2110 -2110
- package/src/locales/po/sk.po +2110 -2110
- package/src/main.ts +39 -29
- package/src/validValues/award.ts +242 -709
- package/src/validValues/country.ts +7 -148
- package/src/validValues/designation.ts +0 -5
- package/src/validValues/ingredient.ts +35 -343
- package/src/validValues/productType.ts +7 -40
- package/src/validValues/region.ts +514 -479
- package/src/validValues/subregion.ts +1429 -2775
- package/src/validValues/types/ProductType.ts +0 -1
- package/src/validValues/types/ValidValueDefinition.ts +1 -1
- package/src/validValues/types/award_p85_100.ts +19 -0
- package/src/validValues/types/productTypesSpirit.ts +38 -0
- package/src/validValues/types/productTypesWine.ts +10 -0
- package/src/validValues/utils/createValidValues.ts +52 -50
- package/dist/validValues/types/Country.js +0 -5
- package/src/validValues/types/Award.ts +0 -39
- package/src/validValues/types/Country.ts +0 -39
package/src/validValues/award.ts
CHANGED
|
@@ -1,70 +1,57 @@
|
|
|
1
|
-
import { defineMessage } from '@lingui/macro';
|
|
2
1
|
import createValidValues from './utils/createValidValues.js';
|
|
3
|
-
import
|
|
2
|
+
import P85to100 from './types/award_p85_100';
|
|
3
|
+
interface Award {
|
|
4
|
+
key: string;
|
|
5
|
+
title: string;
|
|
6
|
+
medals?: string[];
|
|
7
|
+
}
|
|
8
|
+
|
|
4
9
|
export default createValidValues<Award>({
|
|
5
10
|
a_la_carte: {
|
|
6
11
|
key: 'a_la_carte',
|
|
7
12
|
title: 'A La Carte',
|
|
8
|
-
|
|
9
|
-
medals: [
|
|
10
|
-
'p_85',
|
|
11
|
-
'p_86',
|
|
12
|
-
'p_87',
|
|
13
|
-
'p_88',
|
|
14
|
-
'p_89',
|
|
15
|
-
'p_90',
|
|
16
|
-
'p_91',
|
|
17
|
-
'p_92',
|
|
18
|
-
'p_93',
|
|
19
|
-
'p_94',
|
|
20
|
-
'p_95',
|
|
21
|
-
'p_96',
|
|
22
|
-
'p_97',
|
|
23
|
-
'p_98',
|
|
24
|
-
'p_99',
|
|
25
|
-
'p_100',
|
|
26
|
-
],
|
|
13
|
+
medals: P85to100,
|
|
27
14
|
},
|
|
28
15
|
american_wine_society_commercial_wine_competition: {
|
|
29
16
|
key: 'american_wine_society_commercial_wine_competition',
|
|
30
17
|
title: 'American Wine Society Commercial Wine Competition',
|
|
31
|
-
|
|
18
|
+
|
|
32
19
|
medals: ['doubleGold', 'silver', 'bronze', 'special_award'],
|
|
33
20
|
},
|
|
34
21
|
asia_international_wine_competition: {
|
|
35
22
|
key: 'asia_international_wine_competition',
|
|
36
23
|
title: 'Asia International Wine Competition',
|
|
37
|
-
|
|
24
|
+
|
|
38
25
|
medals: ['doubleGold', 'gold', 'silver', 'bronze', 'individual_award'],
|
|
39
26
|
},
|
|
40
27
|
asia_wine_challenge: {
|
|
41
28
|
key: 'asia_wine_challenge',
|
|
42
29
|
title: 'Asia Wine Challenge',
|
|
43
|
-
|
|
30
|
+
|
|
44
31
|
medals: ['gold', 'silver', 'bronze'],
|
|
45
32
|
},
|
|
46
33
|
at_genuss_weintrophy: {
|
|
47
34
|
key: 'at_genuss_weintrophy',
|
|
48
35
|
title: 'GENUSS.Magazin Weintrophy',
|
|
49
|
-
|
|
36
|
+
|
|
50
37
|
medals: ['glasses_5', 'glasses_4', 'glasses_3', 'glasses_2', 'glasses_1'],
|
|
51
38
|
},
|
|
52
39
|
at_oesterreichwein_salon: {
|
|
53
40
|
key: 'at_oesterreichwein_salon',
|
|
54
41
|
title: 'SALON Österreich Wein',
|
|
55
|
-
|
|
42
|
+
|
|
56
43
|
medals: ['at_winner', 'at_selected', 'at_salonwine'],
|
|
57
44
|
},
|
|
58
45
|
at_vinaria_m: {
|
|
59
46
|
key: 'at_vinaria_m',
|
|
60
47
|
title: 'Vinaria Medals',
|
|
61
|
-
|
|
48
|
+
|
|
62
49
|
medals: ['s_1', 's_2', 's_3', 's_4', 's_5'],
|
|
63
50
|
},
|
|
64
51
|
at_vinaria_p: {
|
|
65
52
|
key: 'at_vinaria_p',
|
|
66
53
|
title: 'Vinaria Rating',
|
|
67
|
-
|
|
54
|
+
|
|
68
55
|
medals: [
|
|
69
56
|
'p_11',
|
|
70
57
|
'p_11_5',
|
|
@@ -90,53 +77,31 @@ export default createValidValues<Award>({
|
|
|
90
77
|
au_royal_easter_wine: {
|
|
91
78
|
key: 'au_royal_easter_wine',
|
|
92
79
|
title: 'Royal Easter Show Wine Awards',
|
|
93
|
-
|
|
80
|
+
|
|
94
81
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
95
82
|
},
|
|
96
83
|
au_winestate: {
|
|
97
84
|
key: 'au_winestate',
|
|
98
85
|
title: 'Winestate Magazin Wine Awards',
|
|
99
|
-
|
|
86
|
+
|
|
100
87
|
medals: ['s_3', 's_3_5', 's_4', 's_4_5', 's_5'],
|
|
101
88
|
},
|
|
102
89
|
australian_international_wine_challenge: {
|
|
103
90
|
key: 'australian_international_wine_challenge',
|
|
104
91
|
title: 'Australian International Wine Challenge',
|
|
105
|
-
|
|
92
|
+
|
|
106
93
|
medals: ['gold', 'silver', 'bronze'],
|
|
107
94
|
},
|
|
108
95
|
australian_wine_showcase_magazine: {
|
|
109
96
|
key: 'australian_wine_showcase_magazine',
|
|
110
97
|
title: 'Australian Wine Showcase Magazine',
|
|
111
|
-
|
|
112
|
-
medals: [
|
|
113
|
-
'p_80',
|
|
114
|
-
'p_81',
|
|
115
|
-
'p_82',
|
|
116
|
-
'p_83',
|
|
117
|
-
'p_84',
|
|
118
|
-
'p_85',
|
|
119
|
-
'p_86',
|
|
120
|
-
'p_87',
|
|
121
|
-
'p_88',
|
|
122
|
-
'p_89',
|
|
123
|
-
'p_90',
|
|
124
|
-
'p_91',
|
|
125
|
-
'p_92',
|
|
126
|
-
'p_93',
|
|
127
|
-
'p_94',
|
|
128
|
-
'p_95',
|
|
129
|
-
'p_96',
|
|
130
|
-
'p_97',
|
|
131
|
-
'p_98',
|
|
132
|
-
'p_99',
|
|
133
|
-
'p_100',
|
|
134
|
-
],
|
|
98
|
+
|
|
99
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
135
100
|
},
|
|
136
101
|
auwinecompanion_p: {
|
|
137
102
|
key: 'auwinecompanion_p',
|
|
138
103
|
title: 'James Halliday Wine Companion',
|
|
139
|
-
|
|
104
|
+
|
|
140
105
|
medals: [
|
|
141
106
|
'p_75',
|
|
142
107
|
'p_76',
|
|
@@ -148,34 +113,18 @@ export default createValidValues<Award>({
|
|
|
148
113
|
'p_82',
|
|
149
114
|
'p_83',
|
|
150
115
|
'p_84',
|
|
151
|
-
|
|
152
|
-
'p_86',
|
|
153
|
-
'p_87',
|
|
154
|
-
'p_88',
|
|
155
|
-
'p_89',
|
|
156
|
-
'p_90',
|
|
157
|
-
'p_91',
|
|
158
|
-
'p_92',
|
|
159
|
-
'p_93',
|
|
160
|
-
'p_94',
|
|
161
|
-
'p_95',
|
|
162
|
-
'p_96',
|
|
163
|
-
'p_97',
|
|
164
|
-
'p_98',
|
|
165
|
-
'p_99',
|
|
166
|
-
'p_100',
|
|
167
|
-
],
|
|
116
|
+
].concat(P85to100),
|
|
168
117
|
},
|
|
169
118
|
awcvienna: {
|
|
170
119
|
key: 'awcvienna',
|
|
171
120
|
title: 'AWC Vienna',
|
|
172
|
-
|
|
121
|
+
|
|
173
122
|
medals: ['gold', 'silver', 'seal_of_approval'],
|
|
174
123
|
},
|
|
175
124
|
awcvienna_p: {
|
|
176
125
|
key: 'awcvienna_p',
|
|
177
126
|
title: 'AWC Vienna Points',
|
|
178
|
-
|
|
127
|
+
|
|
179
128
|
medals: [
|
|
180
129
|
'p_80',
|
|
181
130
|
'p_80_5',
|
|
@@ -223,31 +172,31 @@ export default createValidValues<Award>({
|
|
|
223
172
|
bacchus_international_wine_competition: {
|
|
224
173
|
key: 'bacchus_international_wine_competition',
|
|
225
174
|
title: 'Bacchus International Wine Competition',
|
|
226
|
-
|
|
175
|
+
|
|
227
176
|
medals: ['gold', 'silver', 'bronze'],
|
|
228
177
|
},
|
|
229
178
|
berlin_international_wine_competition: {
|
|
230
179
|
key: 'berlin_international_wine_competition',
|
|
231
180
|
title: 'Berlin International Wine Competition',
|
|
232
|
-
|
|
181
|
+
|
|
233
182
|
medals: ['doubleGold', 'gold', 'silver', 'bronze', 'individual_award'],
|
|
234
183
|
},
|
|
235
184
|
berlinerwinetrophy: {
|
|
236
185
|
key: 'berlinerwinetrophy',
|
|
237
186
|
title: 'Berliner Wine Trophy',
|
|
238
|
-
|
|
187
|
+
|
|
239
188
|
medals: ['grand_gold', 'gold', 'silver'],
|
|
240
189
|
},
|
|
241
190
|
bettanedess: {
|
|
242
191
|
key: 'bettanedess',
|
|
243
192
|
title: 'Bettane and Desseauve Medals',
|
|
244
|
-
|
|
193
|
+
|
|
245
194
|
medals: ['bronze', 'silver', 'gold'],
|
|
246
195
|
},
|
|
247
196
|
bettanedess_p: {
|
|
248
197
|
key: 'bettanedess_p',
|
|
249
198
|
title: 'Bettane and Desseauve',
|
|
250
|
-
|
|
199
|
+
|
|
251
200
|
medals: [
|
|
252
201
|
'p_01',
|
|
253
202
|
'p_02',
|
|
@@ -274,7 +223,7 @@ export default createValidValues<Award>({
|
|
|
274
223
|
beverage_tasting_institute: {
|
|
275
224
|
key: 'beverage_tasting_institute',
|
|
276
225
|
title: 'Beverage Tasting Institute',
|
|
277
|
-
|
|
226
|
+
|
|
278
227
|
medals: [
|
|
279
228
|
'p_60',
|
|
280
229
|
'p_61',
|
|
@@ -301,100 +250,84 @@ export default createValidValues<Award>({
|
|
|
301
250
|
'p_82',
|
|
302
251
|
'p_83',
|
|
303
252
|
'p_84',
|
|
304
|
-
|
|
305
|
-
'p_86',
|
|
306
|
-
'p_87',
|
|
307
|
-
'p_88',
|
|
308
|
-
'p_89',
|
|
309
|
-
'p_90',
|
|
310
|
-
'p_91',
|
|
311
|
-
'p_92',
|
|
312
|
-
'p_93',
|
|
313
|
-
'p_94',
|
|
314
|
-
'p_95',
|
|
315
|
-
'p_96',
|
|
316
|
-
'p_97',
|
|
317
|
-
'p_98',
|
|
318
|
-
'p_99',
|
|
319
|
-
'p_100',
|
|
320
|
-
],
|
|
253
|
+
].concat(P85to100),
|
|
321
254
|
},
|
|
322
255
|
catador_wine_awards: {
|
|
323
256
|
key: 'catador_wine_awards',
|
|
324
257
|
title: 'Catador Wine Awards',
|
|
325
|
-
|
|
258
|
+
|
|
326
259
|
medals: ['grand_gold', 'gold', 'silver', 'bronze'],
|
|
327
260
|
},
|
|
328
261
|
catavinum_world_wine_spirit_competition: {
|
|
329
262
|
key: 'catavinum_world_wine_spirit_competition',
|
|
330
263
|
title: 'Catavinum World Wine & Spirit Competition',
|
|
331
|
-
|
|
264
|
+
|
|
332
265
|
medals: ['great_gold', 'gold', 'silver', 'bronze'],
|
|
333
266
|
},
|
|
334
267
|
ch_mondial_des_pinots: {
|
|
335
268
|
key: 'ch_mondial_des_pinots',
|
|
336
269
|
title: 'Mondial des Pinots',
|
|
337
|
-
|
|
270
|
+
|
|
338
271
|
medals: ['gold', 'silver', 'bronze'],
|
|
339
272
|
},
|
|
340
273
|
challenge_international_du_vin: {
|
|
341
274
|
key: 'challenge_international_du_vin',
|
|
342
275
|
title: 'Challenge International du Vin',
|
|
343
|
-
|
|
276
|
+
|
|
344
277
|
medals: ['gold', 'silver', 'bronze'],
|
|
345
278
|
},
|
|
346
279
|
china_wine_competition: {
|
|
347
280
|
key: 'china_wine_competition',
|
|
348
281
|
title: 'China Wine Competition',
|
|
349
|
-
|
|
282
|
+
|
|
350
283
|
medals: ['gold', 'silver', 'bronze'],
|
|
351
284
|
},
|
|
352
285
|
cinve_awards: {
|
|
353
286
|
key: 'cinve_awards',
|
|
354
287
|
title: 'Cinve Awards',
|
|
355
|
-
|
|
288
|
+
|
|
356
289
|
medals: ['gold', 'silver', 'bronze'],
|
|
357
290
|
},
|
|
358
291
|
citadelles_du_vin_international_wine_spirit_competition: {
|
|
359
292
|
key: 'citadelles_du_vin_international_wine_spirit_competition',
|
|
360
293
|
title: 'Citadelles Du Vin International Wine & Spirit Competition',
|
|
361
|
-
|
|
294
|
+
|
|
362
295
|
medals: ['gold', 'silver', 'bronze'],
|
|
363
296
|
},
|
|
364
297
|
clare_valley_regional_wine_show: {
|
|
365
298
|
key: 'clare_valley_regional_wine_show',
|
|
366
299
|
title: 'Clare Valley Regional Wine Show',
|
|
367
|
-
|
|
300
|
+
|
|
368
301
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
369
302
|
},
|
|
370
303
|
concourscabernets: {
|
|
371
304
|
key: 'concourscabernets',
|
|
372
305
|
title: 'The Concours International des Cabernets',
|
|
373
|
-
|
|
306
|
+
|
|
374
307
|
medals: ['trophy', 'gold', 'silver'],
|
|
375
308
|
},
|
|
376
309
|
concoursmondial: {
|
|
377
310
|
key: 'concoursmondial',
|
|
378
311
|
title: 'Concours Mondial de Bruxelles',
|
|
379
|
-
|
|
312
|
+
|
|
380
313
|
medals: ['grand _gold', 'gold', 'silver'],
|
|
381
314
|
},
|
|
382
315
|
concoursmondial_sauvignon: {
|
|
383
316
|
key: 'concoursmondial_sauvignon',
|
|
384
317
|
title: 'Concours Mondial du Sauvignon',
|
|
385
|
-
|
|
318
|
+
|
|
386
319
|
medals: ['gold', 'silver'],
|
|
387
320
|
},
|
|
388
321
|
conz_michaelcooper: {
|
|
389
322
|
key: 'conz_michaelcooper',
|
|
390
323
|
title: 'Michael Cooper’s Buyer’s Guide',
|
|
391
|
-
|
|
324
|
+
|
|
392
325
|
medals: ['s_1', 's_2', 's_3', 's_4', 's_5'],
|
|
393
326
|
},
|
|
394
327
|
critics_challenge_international_wine_competition: {
|
|
395
328
|
key: 'critics_challenge_international_wine_competition',
|
|
396
329
|
title: 'Critics Challenge International Wine Competition',
|
|
397
|
-
|
|
330
|
+
|
|
398
331
|
medals: [
|
|
399
332
|
'critics_platinum',
|
|
400
333
|
'critics_double_gold',
|
|
@@ -405,19 +338,19 @@ export default createValidValues<Award>({
|
|
|
405
338
|
cuisine_magazine_nz_australian_shiraz_tasting: {
|
|
406
339
|
key: 'cuisine_magazine_nz_australian_shiraz_tasting',
|
|
407
340
|
title: 'Cuisine Magazine NZ & Australian Shiraz Tasting',
|
|
408
|
-
|
|
341
|
+
|
|
409
342
|
medals: ['s_5', 's_4', 's_3', 's_2', 's_1'],
|
|
410
343
|
},
|
|
411
344
|
cwsa: {
|
|
412
345
|
key: 'cwsa',
|
|
413
346
|
title: 'China Wine & Spirits Awards',
|
|
414
|
-
|
|
347
|
+
|
|
415
348
|
medals: ['trophy', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
416
349
|
},
|
|
417
350
|
dan_berger_international_wine_competition: {
|
|
418
351
|
key: 'dan_berger_international_wine_competition',
|
|
419
352
|
title: 'Dan Berger International Wine Competition',
|
|
420
|
-
|
|
353
|
+
|
|
421
354
|
medals: [
|
|
422
355
|
'medal_bestOfClass',
|
|
423
356
|
'best_of_show',
|
|
@@ -430,65 +363,43 @@ export default createValidValues<Award>({
|
|
|
430
363
|
de_badische_gebietswein: {
|
|
431
364
|
key: 'de_badische_gebietswein',
|
|
432
365
|
title: 'Badische Gebietswein - und Sektprämierung',
|
|
433
|
-
|
|
366
|
+
|
|
434
367
|
medals: ['gold', 'silver'],
|
|
435
368
|
},
|
|
436
369
|
de_bioweinpreis_autumn: {
|
|
437
370
|
key: 'de_bioweinpreis_autumn',
|
|
438
371
|
title: 'Bioweinpreis - Autumn',
|
|
439
|
-
|
|
372
|
+
|
|
440
373
|
medals: ['top_gold', 'gold', 'silver', 'recommended'],
|
|
441
374
|
},
|
|
442
375
|
de_dlg: {
|
|
443
376
|
key: 'de_dlg',
|
|
444
377
|
title: 'Deutsche Landwirtschaftsgesellschaft',
|
|
445
|
-
|
|
378
|
+
|
|
446
379
|
medals: ['gold_extra', 'gold', 'silver', 'bronze'],
|
|
447
380
|
},
|
|
448
381
|
de_lwk_rheinpfalz: {
|
|
449
382
|
key: 'de_lwk_rheinpfalz',
|
|
450
383
|
title: 'Landwirtschaftskammer Rheinland-Pfalz Auszeichnungen',
|
|
451
|
-
|
|
384
|
+
|
|
452
385
|
medals: ['de_greatstatehonor', 'de_statehonor', 'de_specialhonor'],
|
|
453
386
|
},
|
|
454
387
|
de_lwk_rheinpfalz_m: {
|
|
455
388
|
key: 'de_lwk_rheinpfalz_m',
|
|
456
389
|
title: 'Landwirtschaftskammer Rheinland-Pfalz Medaillen',
|
|
457
|
-
|
|
390
|
+
|
|
458
391
|
medals: ['gold', 'silver', 'bronze'],
|
|
459
392
|
},
|
|
460
393
|
de_weinplus_p: {
|
|
461
394
|
key: 'de_weinplus_p',
|
|
462
395
|
title: 'Wein-Plus',
|
|
463
|
-
|
|
464
|
-
medals: [
|
|
465
|
-
'p_80',
|
|
466
|
-
'p_81',
|
|
467
|
-
'p_82',
|
|
468
|
-
'p_83',
|
|
469
|
-
'p_84',
|
|
470
|
-
'p_85',
|
|
471
|
-
'p_86',
|
|
472
|
-
'p_87',
|
|
473
|
-
'p_88',
|
|
474
|
-
'p_89',
|
|
475
|
-
'p_90',
|
|
476
|
-
'p_91',
|
|
477
|
-
'p_92',
|
|
478
|
-
'p_93',
|
|
479
|
-
'p_94',
|
|
480
|
-
'p_95',
|
|
481
|
-
'p_96',
|
|
482
|
-
'p_97',
|
|
483
|
-
'p_98',
|
|
484
|
-
'p_99',
|
|
485
|
-
'p_100',
|
|
486
|
-
],
|
|
396
|
+
|
|
397
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
487
398
|
},
|
|
488
399
|
decanter: {
|
|
489
400
|
key: 'decanter',
|
|
490
401
|
title: 'Decanter Medal',
|
|
491
|
-
|
|
402
|
+
|
|
492
403
|
medals: [
|
|
493
404
|
'platinum',
|
|
494
405
|
'gold',
|
|
@@ -504,13 +415,13 @@ export default createValidValues<Award>({
|
|
|
504
415
|
decanter_asia_wine_awards: {
|
|
505
416
|
key: 'decanter_asia_wine_awards',
|
|
506
417
|
title: 'Decanter Asia Wine Awards',
|
|
507
|
-
|
|
418
|
+
|
|
508
419
|
medals: ['gold', 'silver', 'bronze', 'decanter_commended'],
|
|
509
420
|
},
|
|
510
421
|
decanter_p: {
|
|
511
422
|
key: 'decanter_p',
|
|
512
423
|
title: 'Decanter Points',
|
|
513
|
-
|
|
424
|
+
|
|
514
425
|
medals: [
|
|
515
426
|
'p_60',
|
|
516
427
|
'p_61',
|
|
@@ -537,28 +448,12 @@ export default createValidValues<Award>({
|
|
|
537
448
|
'p_82',
|
|
538
449
|
'p_83',
|
|
539
450
|
'p_84',
|
|
540
|
-
|
|
541
|
-
'p_86',
|
|
542
|
-
'p_87',
|
|
543
|
-
'p_88',
|
|
544
|
-
'p_89',
|
|
545
|
-
'p_90',
|
|
546
|
-
'p_91',
|
|
547
|
-
'p_92',
|
|
548
|
-
'p_93',
|
|
549
|
-
'p_94',
|
|
550
|
-
'p_95',
|
|
551
|
-
'p_96',
|
|
552
|
-
'p_97',
|
|
553
|
-
'p_98',
|
|
554
|
-
'p_99',
|
|
555
|
-
'p_100',
|
|
556
|
-
],
|
|
451
|
+
].concat(P85to100),
|
|
557
452
|
},
|
|
558
453
|
descorchados_p: {
|
|
559
454
|
key: 'descorchados_p',
|
|
560
455
|
title: 'Descorchados Wine Guide',
|
|
561
|
-
|
|
456
|
+
|
|
562
457
|
medals: [
|
|
563
458
|
'p_75',
|
|
564
459
|
'p_76',
|
|
@@ -570,34 +465,18 @@ export default createValidValues<Award>({
|
|
|
570
465
|
'p_82',
|
|
571
466
|
'p_83',
|
|
572
467
|
'p_84',
|
|
573
|
-
|
|
574
|
-
'p_86',
|
|
575
|
-
'p_87',
|
|
576
|
-
'p_88',
|
|
577
|
-
'p_89',
|
|
578
|
-
'p_90',
|
|
579
|
-
'p_91',
|
|
580
|
-
'p_92',
|
|
581
|
-
'p_93',
|
|
582
|
-
'p_94',
|
|
583
|
-
'p_95',
|
|
584
|
-
'p_96',
|
|
585
|
-
'p_97',
|
|
586
|
-
'p_98',
|
|
587
|
-
'p_99',
|
|
588
|
-
'p_100',
|
|
589
|
-
],
|
|
468
|
+
].concat(P85to100),
|
|
590
469
|
},
|
|
591
470
|
es_ecoracimo: {
|
|
592
471
|
key: 'es_ecoracimo',
|
|
593
472
|
title: 'Ecoracimo - International Organic Wines Contest',
|
|
594
|
-
|
|
473
|
+
|
|
595
474
|
medals: ['grand_gold', 'gold', 'silver'],
|
|
596
475
|
},
|
|
597
476
|
falstaff_p: {
|
|
598
477
|
key: 'falstaff_p',
|
|
599
478
|
title: 'Falstaff Wine Guide',
|
|
600
|
-
|
|
479
|
+
|
|
601
480
|
medals: [
|
|
602
481
|
'p_75',
|
|
603
482
|
'p_76',
|
|
@@ -609,34 +488,18 @@ export default createValidValues<Award>({
|
|
|
609
488
|
'p_82',
|
|
610
489
|
'p_83',
|
|
611
490
|
'p_84',
|
|
612
|
-
|
|
613
|
-
'p_86',
|
|
614
|
-
'p_87',
|
|
615
|
-
'p_88',
|
|
616
|
-
'p_89',
|
|
617
|
-
'p_90',
|
|
618
|
-
'p_91',
|
|
619
|
-
'p_92',
|
|
620
|
-
'p_93',
|
|
621
|
-
'p_94',
|
|
622
|
-
'p_95',
|
|
623
|
-
'p_96',
|
|
624
|
-
'p_97',
|
|
625
|
-
'p_98',
|
|
626
|
-
'p_99',
|
|
627
|
-
'p_100',
|
|
628
|
-
],
|
|
491
|
+
].concat(P85to100),
|
|
629
492
|
},
|
|
630
493
|
finger_lakes_international_wine_competition: {
|
|
631
494
|
key: 'finger_lakes_international_wine_competition',
|
|
632
495
|
title: 'Finger Lakes International Wine Competition',
|
|
633
|
-
|
|
496
|
+
|
|
634
497
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
635
498
|
},
|
|
636
499
|
fnb_sauvignon_blanc: {
|
|
637
500
|
key: 'fnb_sauvignon_blanc',
|
|
638
501
|
title: 'FNB Top 10 Sauvignon Blanc',
|
|
639
|
-
|
|
502
|
+
|
|
640
503
|
medals: [
|
|
641
504
|
'sweet_trophy',
|
|
642
505
|
'white_trophy',
|
|
@@ -648,73 +511,73 @@ export default createValidValues<Award>({
|
|
|
648
511
|
fr_cgvlr: {
|
|
649
512
|
key: 'fr_cgvlr',
|
|
650
513
|
title: 'Concours des grands vins du Languedoc-Roussillon',
|
|
651
|
-
|
|
514
|
+
|
|
652
515
|
medals: ['gold', 'silver'],
|
|
653
516
|
},
|
|
654
517
|
fr_charddumonde: {
|
|
655
518
|
key: 'fr_charddumonde',
|
|
656
519
|
title: 'Chardonnay du Monde',
|
|
657
|
-
|
|
520
|
+
|
|
658
521
|
medals: ['gold', 'silver', 'bronze'],
|
|
659
522
|
},
|
|
660
523
|
fr_conc_mondial_fem: {
|
|
661
524
|
key: 'fr_conc_mondial_fem',
|
|
662
525
|
title: 'Concours Mondial des Féminalise',
|
|
663
|
-
|
|
526
|
+
|
|
664
527
|
medals: ['gold', 'silver'],
|
|
665
528
|
},
|
|
666
529
|
fr_conc_nat_cremants: {
|
|
667
530
|
key: 'fr_conc_nat_cremants',
|
|
668
531
|
title: 'Concours National des Crémants',
|
|
669
|
-
|
|
532
|
+
|
|
670
533
|
medals: ['gold', 'silver', 'bronze'],
|
|
671
534
|
},
|
|
672
535
|
fr_concbourdeauxaq: {
|
|
673
536
|
key: 'fr_concbourdeauxaq',
|
|
674
537
|
title: 'Concours de Bordeaux Vins Aquitains',
|
|
675
|
-
|
|
538
|
+
|
|
676
539
|
medals: ['gold', 'silver', 'bronze'],
|
|
677
540
|
},
|
|
678
541
|
fr_concgrandvinsfrmacon: {
|
|
679
542
|
key: 'fr_concgrandvinsfrmacon',
|
|
680
543
|
title: 'Concours des Grands Vins de France Macon',
|
|
681
|
-
|
|
544
|
+
|
|
682
545
|
medals: ['gold', 'silver', 'bronze'],
|
|
683
546
|
},
|
|
684
547
|
fr_concoursbeaujolais: {
|
|
685
548
|
key: 'fr_concoursbeaujolais',
|
|
686
549
|
title: 'Concours des Grands Vins du Beaujolais',
|
|
687
|
-
|
|
550
|
+
|
|
688
551
|
medals: ['gold', 'silver', 'bronze'],
|
|
689
552
|
},
|
|
690
553
|
fr_concoursgeneralagricole: {
|
|
691
554
|
key: 'fr_concoursgeneralagricole',
|
|
692
555
|
title: 'Concours General Agricole',
|
|
693
|
-
|
|
556
|
+
|
|
694
557
|
medals: ['gold', 'silver', 'bronze'],
|
|
695
558
|
},
|
|
696
559
|
fr_concoursintlyon: {
|
|
697
560
|
key: 'fr_concoursintlyon',
|
|
698
561
|
title: 'Concours International de Lyon',
|
|
699
|
-
|
|
562
|
+
|
|
700
563
|
medals: ['gold', 'silver'],
|
|
701
564
|
},
|
|
702
565
|
fr_concvignindep: {
|
|
703
566
|
key: 'fr_concvignindep',
|
|
704
567
|
title: 'Concours des Vignerons Indépendants',
|
|
705
|
-
|
|
568
|
+
|
|
706
569
|
medals: ['gold', 'silver', 'bronze'],
|
|
707
570
|
},
|
|
708
571
|
fr_effervescents_du_monde: {
|
|
709
572
|
key: 'fr_effervescents_du_monde',
|
|
710
573
|
title: 'Effervescents du Monde',
|
|
711
|
-
|
|
574
|
+
|
|
712
575
|
medals: ['grand_gold', 'gold', 'silver', 'bronze'],
|
|
713
576
|
},
|
|
714
577
|
fr_gaultmillau_p: {
|
|
715
578
|
key: 'fr_gaultmillau_p',
|
|
716
579
|
title: 'Gault & Millau Points',
|
|
717
|
-
|
|
580
|
+
|
|
718
581
|
medals: [
|
|
719
582
|
'p_11_5',
|
|
720
583
|
'p_12',
|
|
@@ -739,19 +602,19 @@ export default createValidValues<Award>({
|
|
|
739
602
|
fr_genagcompconcgenagri: {
|
|
740
603
|
key: 'fr_genagcompconcgenagri',
|
|
741
604
|
title: 'General Agricultural Competition or Concours General Agricole',
|
|
742
|
-
|
|
605
|
+
|
|
743
606
|
medals: ['gold', 'silver', 'bronze'],
|
|
744
607
|
},
|
|
745
608
|
fr_gilbertgaillard_m: {
|
|
746
609
|
key: 'fr_gilbertgaillard_m',
|
|
747
610
|
title: 'Gilbert & Gaillard Medals',
|
|
748
|
-
|
|
611
|
+
|
|
749
612
|
medals: ['gold'],
|
|
750
613
|
},
|
|
751
614
|
fr_gilbertgaillard_p: {
|
|
752
615
|
key: 'fr_gilbertgaillard_p',
|
|
753
616
|
title: 'Gilbert & Gaillard Rating',
|
|
754
|
-
|
|
617
|
+
|
|
755
618
|
medals: [
|
|
756
619
|
'p_75',
|
|
757
620
|
'p_76',
|
|
@@ -763,100 +626,84 @@ export default createValidValues<Award>({
|
|
|
763
626
|
'p_82',
|
|
764
627
|
'p_83',
|
|
765
628
|
'p_84',
|
|
766
|
-
|
|
767
|
-
'p_86',
|
|
768
|
-
'p_87',
|
|
769
|
-
'p_88',
|
|
770
|
-
'p_89',
|
|
771
|
-
'p_90',
|
|
772
|
-
'p_91',
|
|
773
|
-
'p_92',
|
|
774
|
-
'p_93',
|
|
775
|
-
'p_94',
|
|
776
|
-
'p_95',
|
|
777
|
-
'p_96',
|
|
778
|
-
'p_97',
|
|
779
|
-
'p_98',
|
|
780
|
-
'p_99',
|
|
781
|
-
'p_100',
|
|
782
|
-
],
|
|
629
|
+
].concat(P85to100),
|
|
783
630
|
},
|
|
784
631
|
fr_hachette_winemaker_of_the_year: {
|
|
785
632
|
key: 'fr_hachette_winemaker_of_the_year',
|
|
786
633
|
title: 'Guide Hachette Winemaker of the year',
|
|
787
|
-
|
|
634
|
+
|
|
788
635
|
medals: ['noMedals'],
|
|
789
636
|
},
|
|
790
637
|
fr_interigp: {
|
|
791
638
|
key: 'fr_interigp',
|
|
792
639
|
title: 'Concours National des IGP',
|
|
793
|
-
|
|
640
|
+
|
|
794
641
|
medals: ['gold', 'silver', 'bronze'],
|
|
795
642
|
},
|
|
796
643
|
fr_millesimebio: {
|
|
797
644
|
key: 'fr_millesimebio',
|
|
798
645
|
title: 'Millésime Bio',
|
|
799
|
-
|
|
646
|
+
|
|
800
647
|
medals: ['gold', 'silver', 'bronze'],
|
|
801
648
|
},
|
|
802
649
|
fr_mondialdurose: {
|
|
803
650
|
key: 'fr_mondialdurose',
|
|
804
651
|
title: 'Le mondial du Rosé',
|
|
805
|
-
|
|
652
|
+
|
|
806
653
|
medals: ['gold', 'silver'],
|
|
807
654
|
},
|
|
808
655
|
fr_palm_nat_avgf: {
|
|
809
656
|
key: 'fr_palm_nat_avgf',
|
|
810
657
|
title: "Palmarès National de l'AVGF",
|
|
811
|
-
|
|
658
|
+
|
|
812
659
|
medals: ['gold', 'silver', 'bronze'],
|
|
813
660
|
},
|
|
814
661
|
fr_syrahdumonde: {
|
|
815
662
|
key: 'fr_syrahdumonde',
|
|
816
663
|
title: 'Syrah du Monde',
|
|
817
|
-
|
|
664
|
+
|
|
818
665
|
medals: ['gold', 'silver', 'bronze'],
|
|
819
666
|
},
|
|
820
667
|
frankfurt_international_wine_trophy: {
|
|
821
668
|
key: 'frankfurt_international_wine_trophy',
|
|
822
669
|
title: 'Frankfurt International Wine Trophy',
|
|
823
|
-
|
|
670
|
+
|
|
824
671
|
medals: ['grand_gold', 'gold', 'silver'],
|
|
825
672
|
},
|
|
826
673
|
gamberorosso: {
|
|
827
674
|
key: 'gamberorosso',
|
|
828
675
|
title: 'Gambero Rosso',
|
|
829
|
-
|
|
676
|
+
|
|
830
677
|
medals: ['g_1', 'g_2', 'g_3'],
|
|
831
678
|
},
|
|
832
679
|
global_fine_wine_challenge: {
|
|
833
680
|
key: 'global_fine_wine_challenge',
|
|
834
681
|
title: 'Global Fine Wine Challenge',
|
|
835
|
-
|
|
682
|
+
|
|
836
683
|
medals: ['trophy', 'doubleGold', 'gold'],
|
|
837
684
|
},
|
|
838
685
|
great_american_international_wine_competition: {
|
|
839
686
|
key: 'great_american_international_wine_competition',
|
|
840
687
|
title: 'Great American International Wine Competition',
|
|
841
|
-
|
|
688
|
+
|
|
842
689
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
843
690
|
},
|
|
844
691
|
great_australian_shiraz_challenge: {
|
|
845
692
|
key: 'great_australian_shiraz_challenge',
|
|
846
693
|
title: 'Great Australian Shiraz Challenge',
|
|
847
|
-
|
|
694
|
+
|
|
848
695
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
849
696
|
},
|
|
850
697
|
grenache_du_monde: {
|
|
851
698
|
key: 'grenache_du_monde',
|
|
852
699
|
title: 'Grenache du Monde',
|
|
853
|
-
|
|
700
|
+
|
|
854
701
|
medals: ['gold', 'silver'],
|
|
855
702
|
},
|
|
856
703
|
grotehamersma_p: {
|
|
857
704
|
key: 'grotehamersma_p',
|
|
858
705
|
title: 'De Grote Hamersma',
|
|
859
|
-
|
|
706
|
+
|
|
860
707
|
medals: [
|
|
861
708
|
'p_01',
|
|
862
709
|
'p_02',
|
|
@@ -878,7 +725,7 @@ export default createValidValues<Award>({
|
|
|
878
725
|
guiapenin_p: {
|
|
879
726
|
key: 'guiapenin_p',
|
|
880
727
|
title: 'Guia Penin',
|
|
881
|
-
|
|
728
|
+
|
|
882
729
|
medals: [
|
|
883
730
|
'p_50',
|
|
884
731
|
'p_51',
|
|
@@ -915,100 +762,84 @@ export default createValidValues<Award>({
|
|
|
915
762
|
'p_82',
|
|
916
763
|
'p_83',
|
|
917
764
|
'p_84',
|
|
918
|
-
|
|
919
|
-
'p_86',
|
|
920
|
-
'p_87',
|
|
921
|
-
'p_88',
|
|
922
|
-
'p_89',
|
|
923
|
-
'p_90',
|
|
924
|
-
'p_91',
|
|
925
|
-
'p_92',
|
|
926
|
-
'p_93',
|
|
927
|
-
'p_94',
|
|
928
|
-
'p_95',
|
|
929
|
-
'p_96',
|
|
930
|
-
'p_97',
|
|
931
|
-
'p_98',
|
|
932
|
-
'p_99',
|
|
933
|
-
'p_100',
|
|
934
|
-
],
|
|
765
|
+
].concat(P85to100),
|
|
935
766
|
},
|
|
936
767
|
guidehachette_p: {
|
|
937
768
|
key: 'guidehachette_p',
|
|
938
769
|
title: 'Guide Hachette',
|
|
939
|
-
|
|
770
|
+
|
|
940
771
|
medals: ['s_1', 's_2', 's_3', 'coup_de_coeur'],
|
|
941
772
|
},
|
|
942
773
|
harvest_challenge: {
|
|
943
774
|
key: 'harvest_challenge',
|
|
944
775
|
title: 'Harvest Challenge',
|
|
945
|
-
|
|
776
|
+
|
|
946
777
|
medals: ['special_award', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
947
778
|
},
|
|
948
779
|
hilton_head_island_wine_food_festival_international_judging: {
|
|
949
780
|
key: 'hilton_head_island_wine_food_festival_international_judging',
|
|
950
781
|
title: 'Hilton Head Island Wine & Food Festival International Judging',
|
|
951
|
-
|
|
782
|
+
|
|
952
783
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
953
784
|
},
|
|
954
785
|
hong_kong_international_wine_spirit_competition: {
|
|
955
786
|
key: 'hong_kong_international_wine_spirit_competition',
|
|
956
787
|
title: 'Hong Kong International Wine & Spirit Competition',
|
|
957
|
-
|
|
788
|
+
|
|
958
789
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
959
790
|
},
|
|
960
791
|
indy_international_wine_competition: {
|
|
961
792
|
key: 'indy_international_wine_competition',
|
|
962
793
|
title: 'Indy International Wine Competition',
|
|
963
|
-
|
|
794
|
+
|
|
964
795
|
medals: ['gold', 'silver', 'bronze'],
|
|
965
796
|
},
|
|
966
797
|
international_taste_quality_institute: {
|
|
967
798
|
key: 'international_taste_quality_institute',
|
|
968
799
|
title: 'International Taste Quality Institute',
|
|
969
|
-
|
|
800
|
+
|
|
970
801
|
medals: ['crystal_award', 'diamond_award', 'absolute_award'],
|
|
971
802
|
},
|
|
972
803
|
international_wine_awards: {
|
|
973
804
|
key: 'international_wine_awards',
|
|
974
805
|
title: 'International Wine Awards',
|
|
975
|
-
|
|
806
|
+
|
|
976
807
|
medals: ['great_gold', 'gold', 'silver', 'bronze'],
|
|
977
808
|
},
|
|
978
809
|
international_wine_challenge_china: {
|
|
979
810
|
key: 'international_wine_challenge_china',
|
|
980
811
|
title: 'International Wine Challenge China',
|
|
981
|
-
|
|
812
|
+
|
|
982
813
|
medals: ['gold', 'silver', 'bronze', 'decanter_commended'],
|
|
983
814
|
},
|
|
984
815
|
international_wine_contest_bucharest: {
|
|
985
816
|
key: 'international_wine_contest_bucharest',
|
|
986
817
|
title: 'International Wine Contest Bucharest',
|
|
987
|
-
|
|
818
|
+
|
|
988
819
|
medals: ['great_gold', 'gold', 'silver'],
|
|
989
820
|
},
|
|
990
821
|
international_womens_wine_competition: {
|
|
991
822
|
key: 'international_womens_wine_competition',
|
|
992
823
|
title: 'International Womens Wine Competition',
|
|
993
|
-
|
|
824
|
+
|
|
994
825
|
medals: ['medal_bestOfClass', 'gold', 'silver', 'bronze'],
|
|
995
826
|
},
|
|
996
827
|
intervin_international_wine_awards: {
|
|
997
828
|
key: 'intervin_international_wine_awards',
|
|
998
829
|
title: 'Intervin International Wine Awards',
|
|
999
|
-
|
|
830
|
+
|
|
1000
831
|
medals: ['gold', 'silver', 'honors', 'best_value'],
|
|
1001
832
|
},
|
|
1002
833
|
intervin_wine_awards: {
|
|
1003
834
|
key: 'intervin_wine_awards',
|
|
1004
835
|
title: 'Intervin Wine Awards',
|
|
1005
|
-
|
|
836
|
+
|
|
1006
837
|
medals: ['gold', 'silver', 'honours', 'best_value'],
|
|
1007
838
|
},
|
|
1008
839
|
intwinecellar_p: {
|
|
1009
840
|
key: 'intwinecellar_p',
|
|
1010
841
|
title: 'International Wine Cellar',
|
|
1011
|
-
|
|
842
|
+
|
|
1012
843
|
medals: [
|
|
1013
844
|
'p_70',
|
|
1014
845
|
'p_71',
|
|
@@ -1025,34 +856,18 @@ export default createValidValues<Award>({
|
|
|
1025
856
|
'p_82',
|
|
1026
857
|
'p_83',
|
|
1027
858
|
'p_84',
|
|
1028
|
-
|
|
1029
|
-
'p_86',
|
|
1030
|
-
'p_87',
|
|
1031
|
-
'p_88',
|
|
1032
|
-
'p_89',
|
|
1033
|
-
'p_90',
|
|
1034
|
-
'p_91',
|
|
1035
|
-
'p_92',
|
|
1036
|
-
'p_93',
|
|
1037
|
-
'p_94',
|
|
1038
|
-
'p_95',
|
|
1039
|
-
'p_96',
|
|
1040
|
-
'p_97',
|
|
1041
|
-
'p_98',
|
|
1042
|
-
'p_99',
|
|
1043
|
-
'p_100',
|
|
1044
|
-
],
|
|
859
|
+
].concat(P85to100),
|
|
1045
860
|
},
|
|
1046
861
|
isc: {
|
|
1047
862
|
key: 'isc',
|
|
1048
863
|
title: 'International Spirits Challenge (ISC)',
|
|
1049
|
-
|
|
864
|
+
|
|
1050
865
|
medals: ['gold', 'silver', 'bronze'],
|
|
1051
866
|
},
|
|
1052
867
|
it_bibenda_grappoli: {
|
|
1053
868
|
key: 'it_bibenda_grappoli',
|
|
1054
869
|
title: 'Bibenda.it Wine Guide',
|
|
1055
|
-
|
|
870
|
+
|
|
1056
871
|
medals: [
|
|
1057
872
|
'it_grappoli_2',
|
|
1058
873
|
'it_grappoli_3',
|
|
@@ -1063,47 +878,25 @@ export default createValidValues<Award>({
|
|
|
1063
878
|
it_viniveronelli_p: {
|
|
1064
879
|
key: 'it_viniveronelli_p',
|
|
1065
880
|
title: 'I Vini di Veronelli Golden Guide Rating',
|
|
1066
|
-
|
|
1067
|
-
medals: [
|
|
1068
|
-
'p_80',
|
|
1069
|
-
'p_81',
|
|
1070
|
-
'p_82',
|
|
1071
|
-
'p_83',
|
|
1072
|
-
'p_84',
|
|
1073
|
-
'p_85',
|
|
1074
|
-
'p_86',
|
|
1075
|
-
'p_87',
|
|
1076
|
-
'p_88',
|
|
1077
|
-
'p_89',
|
|
1078
|
-
'p_90',
|
|
1079
|
-
'p_91',
|
|
1080
|
-
'p_92',
|
|
1081
|
-
'p_93',
|
|
1082
|
-
'p_94',
|
|
1083
|
-
'p_95',
|
|
1084
|
-
'p_96',
|
|
1085
|
-
'p_97',
|
|
1086
|
-
'p_98',
|
|
1087
|
-
'p_99',
|
|
1088
|
-
'p_100',
|
|
1089
|
-
],
|
|
881
|
+
|
|
882
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
1090
883
|
},
|
|
1091
884
|
iwc: {
|
|
1092
885
|
key: 'iwc',
|
|
1093
886
|
title: 'International Wine Challenge (IWC)',
|
|
1094
|
-
|
|
887
|
+
|
|
1095
888
|
medals: ['trophy', 'gold', 'silver', 'bronze', 'decanter_commended'],
|
|
1096
889
|
},
|
|
1097
890
|
iwsc: {
|
|
1098
891
|
key: 'iwsc',
|
|
1099
892
|
title: 'International Wine & Spirits Competition (IWSC)',
|
|
1100
|
-
|
|
893
|
+
|
|
1101
894
|
medals: ['gold_outstanding', 'gold', 'silver', 'bronze'],
|
|
1102
895
|
},
|
|
1103
896
|
jancisrobinson_p: {
|
|
1104
897
|
key: 'jancisrobinson_p',
|
|
1105
898
|
title: 'Jancis Robinson',
|
|
1106
|
-
|
|
899
|
+
|
|
1107
900
|
medals: [
|
|
1108
901
|
'p_01',
|
|
1109
902
|
'p_02',
|
|
@@ -1138,13 +931,13 @@ export default createValidValues<Award>({
|
|
|
1138
931
|
japan_wine_challenge: {
|
|
1139
932
|
key: 'japan_wine_challenge',
|
|
1140
933
|
title: 'Japan Wine Challenge',
|
|
1141
|
-
|
|
934
|
+
|
|
1142
935
|
medals: ['trophy', 'platinum', 'gold', 'silver', 'bronze'],
|
|
1143
936
|
},
|
|
1144
937
|
jebdunnuck: {
|
|
1145
938
|
key: 'jebdunnuck',
|
|
1146
939
|
title: 'Jeb Dunnuck',
|
|
1147
|
-
|
|
940
|
+
|
|
1148
941
|
medals: [
|
|
1149
942
|
'p_50',
|
|
1150
943
|
'p_51',
|
|
@@ -1181,34 +974,18 @@ export default createValidValues<Award>({
|
|
|
1181
974
|
'p_82',
|
|
1182
975
|
'p_83',
|
|
1183
976
|
'p_84',
|
|
1184
|
-
|
|
1185
|
-
'p_86',
|
|
1186
|
-
'p_87',
|
|
1187
|
-
'p_88',
|
|
1188
|
-
'p_89',
|
|
1189
|
-
'p_90',
|
|
1190
|
-
'p_91',
|
|
1191
|
-
'p_92',
|
|
1192
|
-
'p_93',
|
|
1193
|
-
'p_94',
|
|
1194
|
-
'p_95',
|
|
1195
|
-
'p_96',
|
|
1196
|
-
'p_97',
|
|
1197
|
-
'p_98',
|
|
1198
|
-
'p_99',
|
|
1199
|
-
'p_100',
|
|
1200
|
-
],
|
|
977
|
+
].concat(P85to100),
|
|
1201
978
|
},
|
|
1202
979
|
jp_sakura_womenwineaward: {
|
|
1203
980
|
key: 'jp_sakura_womenwineaward',
|
|
1204
981
|
title: "Sakura Japan Women's Wine Awards",
|
|
1205
|
-
|
|
982
|
+
|
|
1206
983
|
medals: ['silver', 'gold', 'doubleGold', 'diamond_trophy'],
|
|
1207
984
|
},
|
|
1208
985
|
jsuckling_p: {
|
|
1209
986
|
key: 'jsuckling_p',
|
|
1210
987
|
title: 'James Suckling',
|
|
1211
|
-
|
|
988
|
+
|
|
1212
989
|
medals: [
|
|
1213
990
|
'p_60',
|
|
1214
991
|
'p_61',
|
|
@@ -1235,34 +1012,18 @@ export default createValidValues<Award>({
|
|
|
1235
1012
|
'p_82',
|
|
1236
1013
|
'p_83',
|
|
1237
1014
|
'p_84',
|
|
1238
|
-
|
|
1239
|
-
'p_86',
|
|
1240
|
-
'p_87',
|
|
1241
|
-
'p_88',
|
|
1242
|
-
'p_89',
|
|
1243
|
-
'p_90',
|
|
1244
|
-
'p_91',
|
|
1245
|
-
'p_92',
|
|
1246
|
-
'p_93',
|
|
1247
|
-
'p_94',
|
|
1248
|
-
'p_95',
|
|
1249
|
-
'p_96',
|
|
1250
|
-
'p_97',
|
|
1251
|
-
'p_98',
|
|
1252
|
-
'p_99',
|
|
1253
|
-
'p_100',
|
|
1254
|
-
],
|
|
1015
|
+
].concat(P85to100),
|
|
1255
1016
|
},
|
|
1256
1017
|
korea_wine_challenge: {
|
|
1257
1018
|
key: 'korea_wine_challenge',
|
|
1258
1019
|
title: 'Korea Wine Challenge',
|
|
1259
|
-
|
|
1020
|
+
|
|
1260
1021
|
medals: ['trophy', 'best', 'gold', 'silver', 'bronze'],
|
|
1261
1022
|
},
|
|
1262
1023
|
la_mujer_elige_woman_chooses: {
|
|
1263
1024
|
key: 'la_mujer_elige_woman_chooses',
|
|
1264
1025
|
title: 'La Mujer Elige "Woman Chooses"',
|
|
1265
|
-
|
|
1026
|
+
|
|
1266
1027
|
medals: [
|
|
1267
1028
|
'great_champion',
|
|
1268
1029
|
'individual_award',
|
|
@@ -1274,13 +1035,13 @@ export default createValidValues<Award>({
|
|
|
1274
1035
|
las_vegas_global_wine_awards: {
|
|
1275
1036
|
key: 'las_vegas_global_wine_awards',
|
|
1276
1037
|
title: 'Las Vegas Global Wine awards',
|
|
1277
|
-
|
|
1038
|
+
|
|
1278
1039
|
medals: ['medal_bestInShow', 'doubleGold', 'gold', 'silver'],
|
|
1279
1040
|
},
|
|
1280
1041
|
london_wine_competition: {
|
|
1281
1042
|
key: 'london_wine_competition',
|
|
1282
1043
|
title: 'London Wine Competition',
|
|
1283
|
-
|
|
1044
|
+
|
|
1284
1045
|
medals: [
|
|
1285
1046
|
'gold',
|
|
1286
1047
|
'silver',
|
|
@@ -1294,13 +1055,13 @@ export default createValidValues<Award>({
|
|
|
1294
1055
|
los_angeles_international_wine_competition: {
|
|
1295
1056
|
key: 'los_angeles_international_wine_competition',
|
|
1296
1057
|
title: 'Los Angeles International Wine Competition',
|
|
1297
|
-
|
|
1058
|
+
|
|
1298
1059
|
medals: ['medal_bestOfClass', 'gold', 'silver', 'bronze'],
|
|
1299
1060
|
},
|
|
1300
1061
|
lucamaroni: {
|
|
1301
1062
|
key: 'lucamaroni',
|
|
1302
1063
|
title: 'Luca Maroni',
|
|
1303
|
-
|
|
1064
|
+
|
|
1304
1065
|
medals: [
|
|
1305
1066
|
'p_60',
|
|
1306
1067
|
'p_61',
|
|
@@ -1327,58 +1088,42 @@ export default createValidValues<Award>({
|
|
|
1327
1088
|
'p_82',
|
|
1328
1089
|
'p_83',
|
|
1329
1090
|
'p_84',
|
|
1330
|
-
|
|
1331
|
-
'p_86',
|
|
1332
|
-
'p_87',
|
|
1333
|
-
'p_88',
|
|
1334
|
-
'p_89',
|
|
1335
|
-
'p_90',
|
|
1336
|
-
'p_91',
|
|
1337
|
-
'p_92',
|
|
1338
|
-
'p_93',
|
|
1339
|
-
'p_94',
|
|
1340
|
-
'p_95',
|
|
1341
|
-
'p_96',
|
|
1342
|
-
'p_97',
|
|
1343
|
-
'p_98',
|
|
1344
|
-
'p_99',
|
|
1345
|
-
'p_100',
|
|
1346
|
-
],
|
|
1091
|
+
].concat(P85to100),
|
|
1347
1092
|
},
|
|
1348
1093
|
melbourne_international_wine_competition: {
|
|
1349
1094
|
key: 'melbourne_international_wine_competition',
|
|
1350
1095
|
title: 'Melbourne International Wine Competition',
|
|
1351
|
-
|
|
1096
|
+
|
|
1352
1097
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1353
1098
|
},
|
|
1354
1099
|
millennial_award_show: {
|
|
1355
1100
|
key: 'millennial_award_show',
|
|
1356
1101
|
title: 'Millennial Award Show',
|
|
1357
|
-
|
|
1102
|
+
|
|
1358
1103
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1359
1104
|
},
|
|
1360
1105
|
monde_selection_international_wine_contest: {
|
|
1361
1106
|
key: 'monde_selection_international_wine_contest',
|
|
1362
1107
|
title: 'Monde Selection International Wine Contest',
|
|
1363
|
-
|
|
1108
|
+
|
|
1364
1109
|
medals: ['grand_gold', 'gold', 'silver', 'bronze'],
|
|
1365
1110
|
},
|
|
1366
1111
|
monterey_international_wine_competition: {
|
|
1367
1112
|
key: 'monterey_international_wine_competition',
|
|
1368
1113
|
title: 'Monterey International Wine Competition',
|
|
1369
|
-
|
|
1114
|
+
|
|
1370
1115
|
medals: ['platinum', 'gold', 'silver', 'best'],
|
|
1371
1116
|
},
|
|
1372
1117
|
mundusvini: {
|
|
1373
1118
|
key: 'mundusvini',
|
|
1374
1119
|
title: 'MUNDUS vini award',
|
|
1375
|
-
|
|
1120
|
+
|
|
1376
1121
|
medals: ['great_gold', 'gold', 'silver', 'bronze'],
|
|
1377
1122
|
},
|
|
1378
1123
|
mundusvini_p: {
|
|
1379
1124
|
key: 'mundusvini_p',
|
|
1380
1125
|
title: 'MUNDUS vini points',
|
|
1381
|
-
|
|
1126
|
+
|
|
1382
1127
|
medals: [
|
|
1383
1128
|
'p_70',
|
|
1384
1129
|
'p_71',
|
|
@@ -1395,34 +1140,18 @@ export default createValidValues<Award>({
|
|
|
1395
1140
|
'p_82',
|
|
1396
1141
|
'p_83',
|
|
1397
1142
|
'p_84',
|
|
1398
|
-
|
|
1399
|
-
'p_86',
|
|
1400
|
-
'p_87',
|
|
1401
|
-
'p_88',
|
|
1402
|
-
'p_89',
|
|
1403
|
-
'p_90',
|
|
1404
|
-
'p_91',
|
|
1405
|
-
'p_92',
|
|
1406
|
-
'p_93',
|
|
1407
|
-
'p_94',
|
|
1408
|
-
'p_95',
|
|
1409
|
-
'p_96',
|
|
1410
|
-
'p_97',
|
|
1411
|
-
'p_98',
|
|
1412
|
-
'p_99',
|
|
1413
|
-
'p_100',
|
|
1414
|
-
],
|
|
1143
|
+
].concat(P85to100),
|
|
1415
1144
|
},
|
|
1416
1145
|
national_wine_show_of_australia: {
|
|
1417
1146
|
key: 'national_wine_show_of_australia',
|
|
1418
1147
|
title: 'National Wine Show of Australia',
|
|
1419
|
-
|
|
1148
|
+
|
|
1420
1149
|
medals: ['trophy', 'top_gold', 'gold', 'silver', 'bronze'],
|
|
1421
1150
|
},
|
|
1422
1151
|
new_world_international_wine_competition: {
|
|
1423
1152
|
key: 'new_world_international_wine_competition',
|
|
1424
1153
|
title: 'New World International Wine Competition',
|
|
1425
|
-
|
|
1154
|
+
|
|
1426
1155
|
medals: [
|
|
1427
1156
|
'trophy',
|
|
1428
1157
|
'best_of_varietal',
|
|
@@ -1436,37 +1165,37 @@ export default createValidValues<Award>({
|
|
|
1436
1165
|
new_world_wine_awards: {
|
|
1437
1166
|
key: 'new_world_wine_awards',
|
|
1438
1167
|
title: 'New World Wine Awards',
|
|
1439
|
-
|
|
1168
|
+
|
|
1440
1169
|
medals: ['gold', 'silver', 'bronze'],
|
|
1441
1170
|
},
|
|
1442
1171
|
new_york_international_wine_competition: {
|
|
1443
1172
|
key: 'new_york_international_wine_competition',
|
|
1444
1173
|
title: 'New York International Wine Competition',
|
|
1445
|
-
|
|
1174
|
+
|
|
1446
1175
|
medals: ['individual_award', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
1447
1176
|
},
|
|
1448
1177
|
new_zealand_aromatic_wine_competition: {
|
|
1449
1178
|
key: 'new_zealand_aromatic_wine_competition',
|
|
1450
1179
|
title: 'New Zealand Aromatic Wine Competition',
|
|
1451
|
-
|
|
1180
|
+
|
|
1452
1181
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1453
1182
|
},
|
|
1454
1183
|
new_zealand_international_wine_show: {
|
|
1455
1184
|
key: 'new_zealand_international_wine_show',
|
|
1456
1185
|
title: 'New Zealand International Wine Show',
|
|
1457
|
-
|
|
1186
|
+
|
|
1458
1187
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1459
1188
|
},
|
|
1460
1189
|
nl_nicklei_p: {
|
|
1461
1190
|
key: 'nl_nicklei_p',
|
|
1462
1191
|
title: 'Nicolaas Klei Omfietswijngids',
|
|
1463
|
-
|
|
1192
|
+
|
|
1464
1193
|
medals: ['recommended'],
|
|
1465
1194
|
},
|
|
1466
1195
|
nl_onno_kleyn_p: {
|
|
1467
1196
|
key: 'nl_onno_kleyn_p',
|
|
1468
1197
|
title: 'Onno Kleyn Rating',
|
|
1469
|
-
|
|
1198
|
+
|
|
1470
1199
|
medals: [
|
|
1471
1200
|
'p_01',
|
|
1472
1201
|
'p_01_5',
|
|
@@ -1492,77 +1221,55 @@ export default createValidValues<Award>({
|
|
|
1492
1221
|
noAwardsYet: {
|
|
1493
1222
|
key: 'noAwardsYet',
|
|
1494
1223
|
title: '- This wine has not yet received a recognition',
|
|
1495
|
-
|
|
1224
|
+
|
|
1496
1225
|
medals: [],
|
|
1497
1226
|
},
|
|
1498
1227
|
nz_aotearoa_wines: {
|
|
1499
1228
|
key: 'nz_aotearoa_wines',
|
|
1500
1229
|
title: 'The National Wine Awards of Aotearoa New Zealand',
|
|
1501
|
-
|
|
1230
|
+
|
|
1502
1231
|
medals: ['gold', 'silver', 'bronze'],
|
|
1503
1232
|
},
|
|
1504
1233
|
nz_fine_wines: {
|
|
1505
1234
|
key: 'nz_fine_wines',
|
|
1506
1235
|
title: 'Fine Wines of New Zealand',
|
|
1507
|
-
|
|
1236
|
+
|
|
1508
1237
|
medals: ['winner'],
|
|
1509
1238
|
},
|
|
1510
1239
|
nz_hawkes_bay_wine: {
|
|
1511
1240
|
key: 'nz_hawkes_bay_wine',
|
|
1512
1241
|
title: "Hawke's Bay Wine Awards",
|
|
1513
|
-
|
|
1242
|
+
|
|
1514
1243
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1515
1244
|
},
|
|
1516
1245
|
nz_malborough_wine: {
|
|
1517
1246
|
key: 'nz_malborough_wine',
|
|
1518
1247
|
title: 'Marlborough Wine Show',
|
|
1519
|
-
|
|
1248
|
+
|
|
1520
1249
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1521
1250
|
},
|
|
1522
1251
|
nz_new_world_wine: {
|
|
1523
1252
|
key: 'nz_new_world_wine',
|
|
1524
1253
|
title: 'New World Wine Awards - Medals',
|
|
1525
|
-
|
|
1254
|
+
|
|
1526
1255
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1527
1256
|
},
|
|
1528
1257
|
nz_new_world_wine_points: {
|
|
1529
1258
|
key: 'nz_new_world_wine_points',
|
|
1530
1259
|
title: 'New World Wine Awards - Points',
|
|
1531
|
-
|
|
1532
|
-
medals: [
|
|
1533
|
-
'p_80',
|
|
1534
|
-
'p_81',
|
|
1535
|
-
'p_82',
|
|
1536
|
-
'p_83',
|
|
1537
|
-
'p_84',
|
|
1538
|
-
'p_85',
|
|
1539
|
-
'p_86',
|
|
1540
|
-
'p_87',
|
|
1541
|
-
'p_88',
|
|
1542
|
-
'p_89',
|
|
1543
|
-
'p_90',
|
|
1544
|
-
'p_91',
|
|
1545
|
-
'p_92',
|
|
1546
|
-
'p_93',
|
|
1547
|
-
'p_94',
|
|
1548
|
-
'p_95',
|
|
1549
|
-
'p_96',
|
|
1550
|
-
'p_97',
|
|
1551
|
-
'p_98',
|
|
1552
|
-
'p_99',
|
|
1553
|
-
'p_100',
|
|
1554
|
-
],
|
|
1260
|
+
|
|
1261
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
1555
1262
|
},
|
|
1556
1263
|
nz_organic_wine: {
|
|
1557
1264
|
key: 'nz_organic_wine',
|
|
1558
1265
|
title: 'NZ Organic Wine Awards',
|
|
1559
|
-
|
|
1266
|
+
|
|
1560
1267
|
medals: ['gold', 'silver', 'bronze'],
|
|
1561
1268
|
},
|
|
1562
1269
|
nz_wine_orbit: {
|
|
1563
1270
|
key: 'nz_wine_orbit',
|
|
1564
1271
|
title: 'Wine Orbit',
|
|
1565
|
-
|
|
1272
|
+
|
|
1566
1273
|
medals: [
|
|
1567
1274
|
'p_77',
|
|
1568
1275
|
'p_78',
|
|
@@ -1572,34 +1279,18 @@ export default createValidValues<Award>({
|
|
|
1572
1279
|
'p_82',
|
|
1573
1280
|
'p_83',
|
|
1574
1281
|
'p_84',
|
|
1575
|
-
|
|
1576
|
-
'p_86',
|
|
1577
|
-
'p_87',
|
|
1578
|
-
'p_88',
|
|
1579
|
-
'p_89',
|
|
1580
|
-
'p_90',
|
|
1581
|
-
'p_91',
|
|
1582
|
-
'p_92',
|
|
1583
|
-
'p_93',
|
|
1584
|
-
'p_94',
|
|
1585
|
-
'p_95',
|
|
1586
|
-
'p_96',
|
|
1587
|
-
'p_97',
|
|
1588
|
-
'p_98',
|
|
1589
|
-
'p_99',
|
|
1590
|
-
'p_100',
|
|
1591
|
-
],
|
|
1282
|
+
].concat(P85to100),
|
|
1592
1283
|
},
|
|
1593
1284
|
nz_wine_ot_year: {
|
|
1594
1285
|
key: 'nz_wine_ot_year',
|
|
1595
1286
|
title: 'NZ Wine of the Year Awards',
|
|
1596
|
-
|
|
1287
|
+
|
|
1597
1288
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1598
1289
|
},
|
|
1599
1290
|
pacific_rim_international_wine_competition: {
|
|
1600
1291
|
key: 'pacific_rim_international_wine_competition',
|
|
1601
1292
|
title: 'Pacific Rim International Wine Competition',
|
|
1602
|
-
|
|
1293
|
+
|
|
1603
1294
|
medals: [
|
|
1604
1295
|
'best_of_show',
|
|
1605
1296
|
'medal_bestOfClass',
|
|
@@ -1612,31 +1303,31 @@ export default createValidValues<Award>({
|
|
|
1612
1303
|
paris_wine_cup: {
|
|
1613
1304
|
key: 'paris_wine_cup',
|
|
1614
1305
|
title: 'Paris Wine Cup',
|
|
1615
|
-
|
|
1306
|
+
|
|
1616
1307
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1617
1308
|
},
|
|
1618
1309
|
peoples_choice_wine_awards: {
|
|
1619
1310
|
key: 'peoples_choice_wine_awards',
|
|
1620
1311
|
title: 'Peoples Choice Wine Awards',
|
|
1621
|
-
|
|
1312
|
+
|
|
1622
1313
|
medals: ['individual_award'],
|
|
1623
1314
|
},
|
|
1624
1315
|
perth_royal_wine_show: {
|
|
1625
1316
|
key: 'perth_royal_wine_show',
|
|
1626
1317
|
title: 'Perth Royal Wine Show',
|
|
1627
|
-
|
|
1318
|
+
|
|
1628
1319
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1629
1320
|
},
|
|
1630
1321
|
pinotfile: {
|
|
1631
1322
|
key: 'pinotfile',
|
|
1632
1323
|
title: 'Pinotfile',
|
|
1633
|
-
|
|
1324
|
+
|
|
1634
1325
|
medals: ['extraordinary', 'outstanding', 'very_good', 'good', 'decent'],
|
|
1635
1326
|
},
|
|
1636
1327
|
pt_fernando_melo: {
|
|
1637
1328
|
key: 'pt_fernando_melo',
|
|
1638
1329
|
title: 'Fernando Melo',
|
|
1639
|
-
|
|
1330
|
+
|
|
1640
1331
|
medals: [
|
|
1641
1332
|
'p_15',
|
|
1642
1333
|
'p_15_5',
|
|
@@ -1654,7 +1345,7 @@ export default createValidValues<Award>({
|
|
|
1654
1345
|
pt_grandes_escolhas: {
|
|
1655
1346
|
key: 'pt_grandes_escolhas',
|
|
1656
1347
|
title: 'Grandes Escolhas',
|
|
1657
|
-
|
|
1348
|
+
|
|
1658
1349
|
medals: [
|
|
1659
1350
|
'p_14_5',
|
|
1660
1351
|
'p_15',
|
|
@@ -1673,7 +1364,7 @@ export default createValidValues<Award>({
|
|
|
1673
1364
|
pt_revista_de_vinhos: {
|
|
1674
1365
|
key: 'pt_revista_de_vinhos',
|
|
1675
1366
|
title: 'Revista de Vinhos',
|
|
1676
|
-
|
|
1367
|
+
|
|
1677
1368
|
medals: [
|
|
1678
1369
|
'p_13',
|
|
1679
1370
|
'p_13_5',
|
|
@@ -1695,61 +1386,61 @@ export default createValidValues<Award>({
|
|
|
1695
1386
|
royal_adelaide_wine_show: {
|
|
1696
1387
|
key: 'royal_adelaide_wine_show',
|
|
1697
1388
|
title: 'Royal Adelaide Wine Show',
|
|
1698
|
-
|
|
1389
|
+
|
|
1699
1390
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1700
1391
|
},
|
|
1701
1392
|
royal_hobart_international_wine_show: {
|
|
1702
1393
|
key: 'royal_hobart_international_wine_show',
|
|
1703
1394
|
title: 'Royal Hobart International Wine Show',
|
|
1704
|
-
|
|
1395
|
+
|
|
1705
1396
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1706
1397
|
},
|
|
1707
1398
|
royal_melbourne_wine_awards: {
|
|
1708
1399
|
key: 'royal_melbourne_wine_awards',
|
|
1709
1400
|
title: 'Royal Melbourne Wine Awards',
|
|
1710
|
-
|
|
1401
|
+
|
|
1711
1402
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
1712
1403
|
},
|
|
1713
1404
|
san_diego_international_wine_spirits_challenge: {
|
|
1714
1405
|
key: 'san_diego_international_wine_spirits_challenge',
|
|
1715
1406
|
title: 'San Diego International Wine & Spirits Challenge',
|
|
1716
|
-
|
|
1407
|
+
|
|
1717
1408
|
medals: ['platinum', 'doubleGold', 'gold', 'silver'],
|
|
1718
1409
|
},
|
|
1719
1410
|
san_francisco_international_wine_competition: {
|
|
1720
1411
|
key: 'san_francisco_international_wine_competition',
|
|
1721
1412
|
title: 'San Francisco International Wine Competition',
|
|
1722
|
-
|
|
1413
|
+
|
|
1723
1414
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1724
1415
|
},
|
|
1725
1416
|
six_nations_wine_challenge: {
|
|
1726
1417
|
key: 'six_nations_wine_challenge',
|
|
1727
1418
|
title: 'Six Nations Wine Challenge',
|
|
1728
|
-
|
|
1419
|
+
|
|
1729
1420
|
medals: ['trophy', 'doubleGold', 'gold'],
|
|
1730
1421
|
},
|
|
1731
1422
|
smv_canada: {
|
|
1732
1423
|
key: 'smv_canada',
|
|
1733
1424
|
title: 'Selections Mondiales du Vin',
|
|
1734
|
-
|
|
1425
|
+
|
|
1735
1426
|
medals: ['grand_gold', 'gold', 'silver'],
|
|
1736
1427
|
},
|
|
1737
1428
|
sommelier_challenge_international_wine_spirits_competition: {
|
|
1738
1429
|
key: 'sommelier_challenge_international_wine_spirits_competition',
|
|
1739
1430
|
title: 'Sommelier Challenge International Wine & Spirits Competition',
|
|
1740
|
-
|
|
1431
|
+
|
|
1741
1432
|
medals: ['best_of_show', 'best', 'platinum', 'gold', 'silver'],
|
|
1742
1433
|
},
|
|
1743
1434
|
sommeliers_choice_awards: {
|
|
1744
1435
|
key: 'sommeliers_choice_awards',
|
|
1745
1436
|
title: 'Sommeliers Choice Awards',
|
|
1746
|
-
|
|
1437
|
+
|
|
1747
1438
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1748
1439
|
},
|
|
1749
1440
|
stephen_tanzer_p: {
|
|
1750
1441
|
key: 'stephen_tanzer_p',
|
|
1751
1442
|
title: 'Stephen Tanzer Rating',
|
|
1752
|
-
|
|
1443
|
+
|
|
1753
1444
|
medals: [
|
|
1754
1445
|
'p_65',
|
|
1755
1446
|
'p_66',
|
|
@@ -1771,34 +1462,18 @@ export default createValidValues<Award>({
|
|
|
1771
1462
|
'p_82',
|
|
1772
1463
|
'p_83',
|
|
1773
1464
|
'p_84',
|
|
1774
|
-
|
|
1775
|
-
'p_86',
|
|
1776
|
-
'p_87',
|
|
1777
|
-
'p_88',
|
|
1778
|
-
'p_89',
|
|
1779
|
-
'p_90',
|
|
1780
|
-
'p_91',
|
|
1781
|
-
'p_92',
|
|
1782
|
-
'p_93',
|
|
1783
|
-
'p_94',
|
|
1784
|
-
'p_95',
|
|
1785
|
-
'p_96',
|
|
1786
|
-
'p_97',
|
|
1787
|
-
'p_98',
|
|
1788
|
-
'p_99',
|
|
1789
|
-
'p_100',
|
|
1790
|
-
],
|
|
1465
|
+
].concat(P85to100),
|
|
1791
1466
|
},
|
|
1792
1467
|
stuttgart_international_wine_competition: {
|
|
1793
1468
|
key: 'stuttgart_international_wine_competition',
|
|
1794
1469
|
title: 'Stuttgart International Wine Competition',
|
|
1795
|
-
|
|
1470
|
+
|
|
1796
1471
|
medals: ['individual_award', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
1797
1472
|
},
|
|
1798
1473
|
sud_de_france_top_100: {
|
|
1799
1474
|
key: 'sud_de_france_top_100',
|
|
1800
1475
|
title: 'Sud de France Top 100',
|
|
1801
|
-
|
|
1476
|
+
|
|
1802
1477
|
medals: [
|
|
1803
1478
|
'gold',
|
|
1804
1479
|
'best_red',
|
|
@@ -1812,31 +1487,31 @@ export default createValidValues<Award>({
|
|
|
1812
1487
|
swa: {
|
|
1813
1488
|
key: 'swa',
|
|
1814
1489
|
title: 'Sommelier Wine Awards',
|
|
1815
|
-
|
|
1490
|
+
|
|
1816
1491
|
medals: ['bronze', 'silver', 'gold'],
|
|
1817
1492
|
},
|
|
1818
1493
|
sydney_international_wine_competition: {
|
|
1819
1494
|
key: 'sydney_international_wine_competition',
|
|
1820
1495
|
title: 'Sydney International Wine Competition',
|
|
1821
|
-
|
|
1496
|
+
|
|
1822
1497
|
medals: ['trophy', 'blue_gold', 'gold', 'top_100', 'finalist'],
|
|
1823
1498
|
},
|
|
1824
1499
|
tasters_guild_international_wine_judging: {
|
|
1825
1500
|
key: 'tasters_guild_international_wine_judging',
|
|
1826
1501
|
title: 'Tasters Guild International Wine Judging',
|
|
1827
|
-
|
|
1502
|
+
|
|
1828
1503
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1829
1504
|
},
|
|
1830
1505
|
tasters_guild_wine_lovers_international_consumer_wine_judging: {
|
|
1831
1506
|
key: 'tasters_guild_wine_lovers_international_consumer_wine_judging',
|
|
1832
1507
|
title: 'Tasters Guild Wine Lovers International Consumer Wine Judging',
|
|
1833
|
-
|
|
1508
|
+
|
|
1834
1509
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
1835
1510
|
},
|
|
1836
1511
|
tastingpanelmag: {
|
|
1837
1512
|
key: 'tastingpanelmag',
|
|
1838
1513
|
title: 'The Tasting Panel Magazine',
|
|
1839
|
-
|
|
1514
|
+
|
|
1840
1515
|
medals: [
|
|
1841
1516
|
'p_86',
|
|
1842
1517
|
'p_87',
|
|
@@ -1858,91 +1533,73 @@ export default createValidValues<Award>({
|
|
|
1858
1533
|
terravino_mediterranean_international_wine_spirit_challenge: {
|
|
1859
1534
|
key: 'terravino_mediterranean_international_wine_spirit_challenge',
|
|
1860
1535
|
title: 'TERRAVINO Mediterranean International Wine & Spirit Challenge',
|
|
1861
|
-
|
|
1536
|
+
|
|
1862
1537
|
medals: ['best_of', 'doubleGold', 'gold', 'silver'],
|
|
1863
1538
|
},
|
|
1864
1539
|
texsom_international_wine_awards: {
|
|
1865
1540
|
key: 'texsom_international_wine_awards',
|
|
1866
1541
|
title: 'Texsom International Wine Awards',
|
|
1867
|
-
|
|
1542
|
+
|
|
1868
1543
|
medals: ['judges_selection', 'platinum', 'gold', 'silver', 'bronze'],
|
|
1869
1544
|
},
|
|
1870
1545
|
the_asian_cabernet_sauvignon_masters: {
|
|
1871
1546
|
key: 'the_asian_cabernet_sauvignon_masters',
|
|
1872
1547
|
title: 'The Asian Cabernet Sauvignon Masters',
|
|
1873
|
-
|
|
1548
|
+
|
|
1874
1549
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1875
1550
|
},
|
|
1876
1551
|
the_asian_chardonnay_masters: {
|
|
1877
1552
|
key: 'the_asian_chardonnay_masters',
|
|
1878
1553
|
title: 'The Asian Chardonnay Masters',
|
|
1879
|
-
|
|
1554
|
+
|
|
1880
1555
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1881
1556
|
},
|
|
1882
1557
|
the_asian_syrah_masters: {
|
|
1883
1558
|
key: 'the_asian_syrah_masters',
|
|
1884
1559
|
title: 'The Asian Syrah Masters',
|
|
1885
|
-
|
|
1560
|
+
|
|
1886
1561
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1887
1562
|
},
|
|
1888
1563
|
the_drink_business: {
|
|
1889
1564
|
key: 'the_drink_business',
|
|
1890
1565
|
title: 'The Drinks Business',
|
|
1891
|
-
|
|
1566
|
+
|
|
1892
1567
|
medals: ['gold', 'silver', 'bronze', 'master'],
|
|
1893
1568
|
},
|
|
1894
1569
|
the_global_cabernet_sauvignon_masters: {
|
|
1895
1570
|
key: 'the_global_cabernet_sauvignon_masters',
|
|
1896
1571
|
title: 'The Global Cabernet Sauvignon Masters',
|
|
1897
|
-
|
|
1572
|
+
|
|
1898
1573
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1899
1574
|
},
|
|
1900
1575
|
the_global_chardonnay_masters: {
|
|
1901
1576
|
key: 'the_global_chardonnay_masters',
|
|
1902
1577
|
title: 'The Global Chardonnay Masters',
|
|
1903
|
-
|
|
1578
|
+
|
|
1904
1579
|
medals: ['master', 'gold', 'silver', 'bronze'],
|
|
1905
1580
|
},
|
|
1906
1581
|
the_global_riesling_masters: {
|
|
1907
1582
|
key: 'the_global_riesling_masters',
|
|
1908
1583
|
title: 'The Global Riesling Masters',
|
|
1909
|
-
|
|
1584
|
+
|
|
1910
1585
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1911
1586
|
},
|
|
1912
1587
|
the_global_syrah_masters: {
|
|
1913
1588
|
key: 'the_global_syrah_masters',
|
|
1914
1589
|
title: 'The Global Syrah Masters',
|
|
1915
|
-
|
|
1590
|
+
|
|
1916
1591
|
medals: ['masters', 'gold', 'silver', 'bronze'],
|
|
1917
1592
|
},
|
|
1918
1593
|
therealreview_p: {
|
|
1919
1594
|
key: 'therealreview_p',
|
|
1920
1595
|
title: 'The Real Review',
|
|
1921
|
-
|
|
1922
|
-
medals: [
|
|
1923
|
-
'p_84',
|
|
1924
|
-
'p_85',
|
|
1925
|
-
'p_86',
|
|
1926
|
-
'p_87',
|
|
1927
|
-
'p_88',
|
|
1928
|
-
'p_89',
|
|
1929
|
-
'p_90',
|
|
1930
|
-
'p_91',
|
|
1931
|
-
'p_92',
|
|
1932
|
-
'p_93',
|
|
1933
|
-
'p_94',
|
|
1934
|
-
'p_95',
|
|
1935
|
-
'p_96',
|
|
1936
|
-
'p_97',
|
|
1937
|
-
'p_98',
|
|
1938
|
-
'p_99',
|
|
1939
|
-
'p_100',
|
|
1940
|
-
],
|
|
1596
|
+
|
|
1597
|
+
medals: ['p_84'].concat(P85to100),
|
|
1941
1598
|
},
|
|
1942
1599
|
timatkin_p: {
|
|
1943
1600
|
key: 'timatkin_p',
|
|
1944
1601
|
title: 'Tim Atkin',
|
|
1945
|
-
|
|
1602
|
+
|
|
1946
1603
|
medals: [
|
|
1947
1604
|
'p_60',
|
|
1948
1605
|
'p_61',
|
|
@@ -1969,64 +1626,48 @@ export default createValidValues<Award>({
|
|
|
1969
1626
|
'p_82',
|
|
1970
1627
|
'p_83',
|
|
1971
1628
|
'p_84',
|
|
1972
|
-
|
|
1973
|
-
'p_86',
|
|
1974
|
-
'p_87',
|
|
1975
|
-
'p_88',
|
|
1976
|
-
'p_89',
|
|
1977
|
-
'p_90',
|
|
1978
|
-
'p_91',
|
|
1979
|
-
'p_92',
|
|
1980
|
-
'p_93',
|
|
1981
|
-
'p_94',
|
|
1982
|
-
'p_95',
|
|
1983
|
-
'p_96',
|
|
1984
|
-
'p_97',
|
|
1985
|
-
'p_98',
|
|
1986
|
-
'p_99',
|
|
1987
|
-
'p_100',
|
|
1988
|
-
],
|
|
1629
|
+
].concat(P85to100),
|
|
1989
1630
|
},
|
|
1990
1631
|
uk_sa_wine_awards: {
|
|
1991
1632
|
key: 'uk_sa_wine_awards',
|
|
1992
1633
|
title: 'South African Wine Awards London',
|
|
1993
|
-
|
|
1634
|
+
|
|
1994
1635
|
medals: ['doubleGold', 'gold'],
|
|
1995
1636
|
},
|
|
1996
1637
|
ukva: {
|
|
1997
1638
|
key: 'ukva',
|
|
1998
1639
|
title: 'UKVA UK Wine Awards',
|
|
1999
|
-
|
|
1640
|
+
|
|
2000
1641
|
medals: ['gold', 'silver', 'bronze'],
|
|
2001
1642
|
},
|
|
2002
1643
|
ultimate_wine_challenge: {
|
|
2003
1644
|
key: 'ultimate_wine_challenge',
|
|
2004
1645
|
title: 'Ultimate Wine Challenge',
|
|
2005
|
-
|
|
1646
|
+
|
|
2006
1647
|
medals: ['chairman_trophy', 'finalist', 'great_value', 'tried_and_true'],
|
|
2007
1648
|
},
|
|
2008
1649
|
us_usawineratings: {
|
|
2009
1650
|
key: 'us_usawineratings',
|
|
2010
1651
|
title: 'USA Wine Ratings',
|
|
2011
|
-
|
|
1652
|
+
|
|
2012
1653
|
medals: ['gold', 'silver', 'bronze'],
|
|
2013
1654
|
},
|
|
2014
1655
|
vinagora_international_wine_competition: {
|
|
2015
1656
|
key: 'vinagora_international_wine_competition',
|
|
2016
1657
|
title: 'VinAgora International Wine Competition',
|
|
2017
|
-
|
|
1658
|
+
|
|
2018
1659
|
medals: ['champion', 'trophy', 'grand_gold', 'gold', 'silver'],
|
|
2019
1660
|
},
|
|
2020
1661
|
vinalies_internationales: {
|
|
2021
1662
|
key: 'vinalies_internationales',
|
|
2022
1663
|
title: 'Vinalies Internationales Medal',
|
|
2023
|
-
|
|
1664
|
+
|
|
2024
1665
|
medals: ['gold', 'silver'],
|
|
2025
1666
|
},
|
|
2026
1667
|
vindefrance_p: {
|
|
2027
1668
|
key: 'vindefrance_p',
|
|
2028
1669
|
title: 'La Revue du Vin de France',
|
|
2029
|
-
|
|
1670
|
+
|
|
2030
1671
|
medals: [
|
|
2031
1672
|
'p_01',
|
|
2032
1673
|
'p_02',
|
|
@@ -2053,7 +1694,7 @@ export default createValidValues<Award>({
|
|
|
2053
1694
|
vinousgalloni_p: {
|
|
2054
1695
|
key: 'vinousgalloni_p',
|
|
2055
1696
|
title: 'Vinous by Antonio Galloni',
|
|
2056
|
-
|
|
1697
|
+
|
|
2057
1698
|
medals: [
|
|
2058
1699
|
'p_75',
|
|
2059
1700
|
'p_76',
|
|
@@ -2065,28 +1706,12 @@ export default createValidValues<Award>({
|
|
|
2065
1706
|
'p_82',
|
|
2066
1707
|
'p_83',
|
|
2067
1708
|
'p_84',
|
|
2068
|
-
|
|
2069
|
-
'p_86',
|
|
2070
|
-
'p_87',
|
|
2071
|
-
'p_88',
|
|
2072
|
-
'p_89',
|
|
2073
|
-
'p_90',
|
|
2074
|
-
'p_91',
|
|
2075
|
-
'p_92',
|
|
2076
|
-
'p_93',
|
|
2077
|
-
'p_94',
|
|
2078
|
-
'p_95',
|
|
2079
|
-
'p_96',
|
|
2080
|
-
'p_97',
|
|
2081
|
-
'p_98',
|
|
2082
|
-
'p_99',
|
|
2083
|
-
'p_100',
|
|
2084
|
-
],
|
|
1709
|
+
].concat(P85to100),
|
|
2085
1710
|
},
|
|
2086
1711
|
vinum: {
|
|
2087
1712
|
key: 'vinum',
|
|
2088
1713
|
title: 'Vinum',
|
|
2089
|
-
|
|
1714
|
+
|
|
2090
1715
|
medals: [
|
|
2091
1716
|
'p_10',
|
|
2092
1717
|
'p_11',
|
|
@@ -2104,13 +1729,13 @@ export default createValidValues<Award>({
|
|
|
2104
1729
|
vinus_international_wine_spirit_competition: {
|
|
2105
1730
|
key: 'vinus_international_wine_spirit_competition',
|
|
2106
1731
|
title: 'Vinus International Wine & Spirit Competition',
|
|
2107
|
-
|
|
1732
|
+
|
|
2108
1733
|
medals: ['special_award', 'doubleGold', 'gold', 'silver'],
|
|
2109
1734
|
},
|
|
2110
1735
|
vivino: {
|
|
2111
1736
|
key: 'vivino',
|
|
2112
1737
|
title: 'Vivino Wine Rating',
|
|
2113
|
-
|
|
1738
|
+
|
|
2114
1739
|
medals: [
|
|
2115
1740
|
'p_03',
|
|
2116
1741
|
'p_03_1',
|
|
@@ -2138,35 +1763,13 @@ export default createValidValues<Award>({
|
|
|
2138
1763
|
wEnthusiast_p: {
|
|
2139
1764
|
key: 'wEnthusiast_p',
|
|
2140
1765
|
title: 'Wine Enthusiast Points',
|
|
2141
|
-
|
|
2142
|
-
medals: [
|
|
2143
|
-
'p_80',
|
|
2144
|
-
'p_81',
|
|
2145
|
-
'p_82',
|
|
2146
|
-
'p_83',
|
|
2147
|
-
'p_84',
|
|
2148
|
-
'p_85',
|
|
2149
|
-
'p_86',
|
|
2150
|
-
'p_87',
|
|
2151
|
-
'p_88',
|
|
2152
|
-
'p_89',
|
|
2153
|
-
'p_90',
|
|
2154
|
-
'p_91',
|
|
2155
|
-
'p_92',
|
|
2156
|
-
'p_93',
|
|
2157
|
-
'p_94',
|
|
2158
|
-
'p_95',
|
|
2159
|
-
'p_96',
|
|
2160
|
-
'p_97',
|
|
2161
|
-
'p_98',
|
|
2162
|
-
'p_99',
|
|
2163
|
-
'p_100',
|
|
2164
|
-
],
|
|
1766
|
+
|
|
1767
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
2165
1768
|
},
|
|
2166
1769
|
wadvocate: {
|
|
2167
1770
|
key: 'wadvocate',
|
|
2168
1771
|
title: 'The Wine Advocate',
|
|
2169
|
-
|
|
1772
|
+
|
|
2170
1773
|
medals: [
|
|
2171
1774
|
'extraordinary',
|
|
2172
1775
|
'outstanding',
|
|
@@ -2179,7 +1782,7 @@ export default createValidValues<Award>({
|
|
|
2179
1782
|
wadvocate_p: {
|
|
2180
1783
|
key: 'wadvocate_p',
|
|
2181
1784
|
title: 'The Wine Advocate Points',
|
|
2182
|
-
|
|
1785
|
+
|
|
2183
1786
|
medals: [
|
|
2184
1787
|
'p_60',
|
|
2185
1788
|
'p_61',
|
|
@@ -2206,88 +1809,72 @@ export default createValidValues<Award>({
|
|
|
2206
1809
|
'p_82',
|
|
2207
1810
|
'p_83',
|
|
2208
1811
|
'p_84',
|
|
2209
|
-
|
|
2210
|
-
'p_86',
|
|
2211
|
-
'p_87',
|
|
2212
|
-
'p_88',
|
|
2213
|
-
'p_89',
|
|
2214
|
-
'p_90',
|
|
2215
|
-
'p_91',
|
|
2216
|
-
'p_92',
|
|
2217
|
-
'p_93',
|
|
2218
|
-
'p_94',
|
|
2219
|
-
'p_95',
|
|
2220
|
-
'p_96',
|
|
2221
|
-
'p_97',
|
|
2222
|
-
'p_98',
|
|
2223
|
-
'p_99',
|
|
2224
|
-
'p_100',
|
|
2225
|
-
],
|
|
1812
|
+
].concat(P85to100),
|
|
2226
1813
|
},
|
|
2227
1814
|
'west_coast_wine_competition_(east_meets_west)': {
|
|
2228
1815
|
key: 'west_coast_wine_competition_(east_meets_west)',
|
|
2229
1816
|
title: 'West Coast Wine Competition (East Meets West)',
|
|
2230
|
-
|
|
1817
|
+
|
|
2231
1818
|
medals: ['special_award', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
2232
1819
|
},
|
|
2233
1820
|
wine100_challenge: {
|
|
2234
1821
|
key: 'wine100_challenge',
|
|
2235
1822
|
title: 'Wine100 Challenge',
|
|
2236
|
-
|
|
1823
|
+
|
|
2237
1824
|
medals: ['best', 'trophy', 'gold', 'silver', 'bronze'],
|
|
2238
1825
|
},
|
|
2239
1826
|
wineGBAwards: {
|
|
2240
1827
|
key: 'wineGBAwards',
|
|
2241
1828
|
title: 'WineGB Awards',
|
|
2242
|
-
|
|
1829
|
+
|
|
2243
1830
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
2244
1831
|
},
|
|
2245
1832
|
'wine_barrel_alliances-du-monde_international_competition': {
|
|
2246
1833
|
key: 'wine_barrel_alliances-du-monde_international_competition',
|
|
2247
1834
|
title: 'Wine & Barrel Alliances-Du-Monde International Competition',
|
|
2248
|
-
|
|
1835
|
+
|
|
2249
1836
|
medals: ['gold', 'silver', 'bronze', 'top_10'],
|
|
2250
1837
|
},
|
|
2251
1838
|
wine_luxe_international_wine_awards: {
|
|
2252
1839
|
key: 'wine_luxe_international_wine_awards',
|
|
2253
1840
|
title: 'Wine Luxe International Wine Awards',
|
|
2254
|
-
|
|
1841
|
+
|
|
2255
1842
|
medals: ['platinum', 'gold', 'silver', 'bronze'],
|
|
2256
1843
|
},
|
|
2257
1844
|
wine_master_challenge_world_wine_contest: {
|
|
2258
1845
|
key: 'wine_master_challenge_world_wine_contest',
|
|
2259
1846
|
title: 'Wine Master Challenge World Wine Contest',
|
|
2260
|
-
|
|
1847
|
+
|
|
2261
1848
|
medals: ['gold', 'silver'],
|
|
2262
1849
|
},
|
|
2263
1850
|
winemaker_challenge_international_wine_competition: {
|
|
2264
1851
|
key: 'winemaker_challenge_international_wine_competition',
|
|
2265
1852
|
title: 'Winemaker Challenge International Wine Competition',
|
|
2266
|
-
|
|
1853
|
+
|
|
2267
1854
|
medals: ['best', 'platinum', 'gold', 'silver'],
|
|
2268
1855
|
},
|
|
2269
1856
|
wmerchant: {
|
|
2270
1857
|
key: 'wmerchant',
|
|
2271
1858
|
title: 'The Wine Merchant Top 100',
|
|
2272
|
-
|
|
1859
|
+
|
|
2273
1860
|
medals: ['wmerchant_winner', 'wmerchant_commended'],
|
|
2274
1861
|
},
|
|
2275
1862
|
womens_wine_spirits_awards: {
|
|
2276
1863
|
key: 'womens_wine_spirits_awards',
|
|
2277
1864
|
title: 'Womens Wine & Spirits Awards',
|
|
2278
|
-
|
|
1865
|
+
|
|
2279
1866
|
medals: ['trophy', 'doubleGold', 'gold', 'silver', 'bronze'],
|
|
2280
1867
|
},
|
|
2281
1868
|
world_wine_championships: {
|
|
2282
1869
|
key: 'world_wine_championships',
|
|
2283
1870
|
title: 'World Wine Championships',
|
|
2284
|
-
|
|
1871
|
+
|
|
2285
1872
|
medals: [],
|
|
2286
1873
|
},
|
|
2287
1874
|
wsmagazine_p: {
|
|
2288
1875
|
key: 'wsmagazine_p',
|
|
2289
1876
|
title: 'Wine & Spirits Magazine',
|
|
2290
|
-
|
|
1877
|
+
|
|
2291
1878
|
medals: [
|
|
2292
1879
|
'p_60',
|
|
2293
1880
|
'p_61',
|
|
@@ -2314,28 +1901,12 @@ export default createValidValues<Award>({
|
|
|
2314
1901
|
'p_82',
|
|
2315
1902
|
'p_83',
|
|
2316
1903
|
'p_84',
|
|
2317
|
-
|
|
2318
|
-
'p_86',
|
|
2319
|
-
'p_87',
|
|
2320
|
-
'p_88',
|
|
2321
|
-
'p_89',
|
|
2322
|
-
'p_90',
|
|
2323
|
-
'p_91',
|
|
2324
|
-
'p_92',
|
|
2325
|
-
'p_93',
|
|
2326
|
-
'p_94',
|
|
2327
|
-
'p_95',
|
|
2328
|
-
'p_96',
|
|
2329
|
-
'p_97',
|
|
2330
|
-
'p_98',
|
|
2331
|
-
'p_99',
|
|
2332
|
-
'p_100',
|
|
2333
|
-
],
|
|
1904
|
+
].concat(P85to100),
|
|
2334
1905
|
},
|
|
2335
1906
|
wspectator: {
|
|
2336
1907
|
key: 'wspectator',
|
|
2337
1908
|
title: 'Wine Spectator',
|
|
2338
|
-
|
|
1909
|
+
|
|
2339
1910
|
medals: [
|
|
2340
1911
|
'classic',
|
|
2341
1912
|
'outstanding',
|
|
@@ -2348,7 +1919,7 @@ export default createValidValues<Award>({
|
|
|
2348
1919
|
wspectator_p: {
|
|
2349
1920
|
key: 'wspectator_p',
|
|
2350
1921
|
title: 'Wine Spectator Points',
|
|
2351
|
-
|
|
1922
|
+
|
|
2352
1923
|
medals: [
|
|
2353
1924
|
'p_60',
|
|
2354
1925
|
'p_61',
|
|
@@ -2375,116 +1946,78 @@ export default createValidValues<Award>({
|
|
|
2375
1946
|
'p_82',
|
|
2376
1947
|
'p_83',
|
|
2377
1948
|
'p_84',
|
|
2378
|
-
|
|
2379
|
-
'p_86',
|
|
2380
|
-
'p_87',
|
|
2381
|
-
'p_88',
|
|
2382
|
-
'p_89',
|
|
2383
|
-
'p_90',
|
|
2384
|
-
'p_91',
|
|
2385
|
-
'p_92',
|
|
2386
|
-
'p_93',
|
|
2387
|
-
'p_94',
|
|
2388
|
-
'p_95',
|
|
2389
|
-
'p_96',
|
|
2390
|
-
'p_97',
|
|
2391
|
-
'p_98',
|
|
2392
|
-
'p_99',
|
|
2393
|
-
'p_100',
|
|
2394
|
-
],
|
|
1949
|
+
].concat(P85to100),
|
|
2395
1950
|
},
|
|
2396
1951
|
za_amorim_cap_classique: {
|
|
2397
1952
|
key: 'za_amorim_cap_classique',
|
|
2398
1953
|
title: 'Amorim Cap Classique Challenge',
|
|
2399
|
-
|
|
1954
|
+
|
|
2400
1955
|
medals: ['gold', 'silver', 'bronze'],
|
|
2401
1956
|
},
|
|
2402
1957
|
za_chenin_challenge: {
|
|
2403
1958
|
key: 'za_chenin_challenge',
|
|
2404
1959
|
title: 'Standard Bank Chenin Blanc Top 10 Challenge',
|
|
2405
|
-
|
|
1960
|
+
|
|
2406
1961
|
medals: ['winner'],
|
|
2407
1962
|
},
|
|
2408
1963
|
za_maiwsa: {
|
|
2409
1964
|
key: 'za_maiwsa',
|
|
2410
1965
|
title: 'Michelangelo International Wine and Spirits',
|
|
2411
|
-
|
|
1966
|
+
|
|
2412
1967
|
medals: ['trophy', 'platinum', 'doubleGold', 'gold', 'silver'],
|
|
2413
1968
|
},
|
|
2414
1969
|
za_merlotforum: {
|
|
2415
1970
|
key: 'za_merlotforum',
|
|
2416
1971
|
title: 'Hallo Merlot Top 10 Merlot Competition',
|
|
2417
|
-
|
|
1972
|
+
|
|
2418
1973
|
medals: ['winner'],
|
|
2419
1974
|
},
|
|
2420
1975
|
za_nwc: {
|
|
2421
1976
|
key: 'za_nwc',
|
|
2422
1977
|
title: 'National Wine Challenge',
|
|
2423
|
-
|
|
1978
|
+
|
|
2424
1979
|
medals: ['m_grandCru', 'doublePlatinum', 'doubleGold', 'doubleSilver'],
|
|
2425
1980
|
},
|
|
2426
1981
|
za_oldmutual: {
|
|
2427
1982
|
key: 'za_oldmutual',
|
|
2428
1983
|
title: 'Old Mutual Trophy Wine Show',
|
|
2429
|
-
|
|
1984
|
+
|
|
2430
1985
|
medals: ['trophy', 'gold', 'silver', 'bronze'],
|
|
2431
1986
|
},
|
|
2432
1987
|
za_platter: {
|
|
2433
1988
|
key: 'za_platter',
|
|
2434
1989
|
title: "Platter's South African Wine Guide",
|
|
2435
|
-
|
|
1990
|
+
|
|
2436
1991
|
medals: ['s_1', 's_2', 's_3', 's_3_5', 's_4', 's_4_5', 's_5'],
|
|
2437
1992
|
},
|
|
2438
1993
|
za_rose_rocks: {
|
|
2439
1994
|
key: 'za_rose_rocks',
|
|
2440
1995
|
title: 'Rosé Rocks',
|
|
2441
|
-
|
|
1996
|
+
|
|
2442
1997
|
medals: ['gold', 'doubleGold'],
|
|
2443
1998
|
},
|
|
2444
1999
|
za_ultra_value_challenge: {
|
|
2445
2000
|
key: 'za_ultra_value_challenge',
|
|
2446
2001
|
title: 'Ultra Value Challenge',
|
|
2447
|
-
|
|
2002
|
+
|
|
2448
2003
|
medals: ['silver', 'gold', 'doubleGold'],
|
|
2449
2004
|
},
|
|
2450
2005
|
za_veritas: {
|
|
2451
2006
|
key: 'za_veritas',
|
|
2452
2007
|
title: 'Veritas',
|
|
2453
|
-
|
|
2008
|
+
|
|
2454
2009
|
medals: ['doubleGold', 'gold', 'silver', 'bronze'],
|
|
2455
2010
|
},
|
|
2456
2011
|
za_vitisawards: {
|
|
2457
2012
|
key: 'za_vitisawards',
|
|
2458
2013
|
title: 'Vitis Vinifera Awards',
|
|
2459
|
-
|
|
2014
|
+
|
|
2460
2015
|
medals: ['doubleGold', 'gold', 'silver'],
|
|
2461
2016
|
},
|
|
2462
2017
|
za_winemag_p: {
|
|
2463
2018
|
key: 'za_winemag_p',
|
|
2464
2019
|
title: 'Winemag.co.za Rating',
|
|
2465
|
-
|
|
2466
|
-
medals: [
|
|
2467
|
-
'p_80',
|
|
2468
|
-
'p_81',
|
|
2469
|
-
'p_82',
|
|
2470
|
-
'p_83',
|
|
2471
|
-
'p_84',
|
|
2472
|
-
'p_85',
|
|
2473
|
-
'p_86',
|
|
2474
|
-
'p_87',
|
|
2475
|
-
'p_88',
|
|
2476
|
-
'p_89',
|
|
2477
|
-
'p_90',
|
|
2478
|
-
'p_91',
|
|
2479
|
-
'p_92',
|
|
2480
|
-
'p_93',
|
|
2481
|
-
'p_94',
|
|
2482
|
-
'p_95',
|
|
2483
|
-
'p_96',
|
|
2484
|
-
'p_97',
|
|
2485
|
-
'p_98',
|
|
2486
|
-
'p_99',
|
|
2487
|
-
'p_100',
|
|
2488
|
-
],
|
|
2020
|
+
|
|
2021
|
+
medals: ['p_80', 'p_81', 'p_82', 'p_83', 'p_84'].concat(P85to100),
|
|
2489
2022
|
},
|
|
2490
2023
|
});
|