-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhops.json
2144 lines (2144 loc) · 73.8 KB
/
hops.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Id": 1,
"Aroma": "Floral, citrus",
"BrewingUsage": 1,
"Name": "Ahtanum",
"Pedigree": "Open pollination. Developed by Select Botanicals",
"AlphaMax": 6.3,
"AlphaMin": 5.7,
"BetaMax": 6.5,
"BetaMin": 5.0,
"CoHumuloneMax": 35,
"CoHumuloneMin": 30,
"Info": "Its name is derived from the Ahtanum area near Yakima where the first hop farm was established in 1869 by Charles Carpenter",
"Styles": "American Ales, Pale Ale, IPA, Lager",
"TotalOilMax": 1.2,
"TotalOilMin": 0.8,
"Trade": "Used for its aromatic properties and moderate bittering"
},
{
"Id": 2,
"Aroma": "Floral, tropical and citrus tones",
"BrewingUsage": 1,
"Name": "Amarillo",
"Pedigree": "Privately grown and registered",
"AlphaMax": 11.0,
"AlphaMin": 8.0,
"BetaMax": 7.0,
"BetaMin": 6.0,
"CoHumuloneMax": 24,
"CoHumuloneMin": 21,
"Info": "Limited acreage",
"Styles": "American Ales, IPA, Belgian-style IPA, Double IPA",
"TotalOilMax": 1.9,
"TotalOilMin": 1.5,
"Trade": "Viewed as a Cascade type"
},
{
"Id": 3,
"Aroma": "Blackcurrant, fruity, spicy",
"BrewingUsage": 2,
"Name": "Brewer's Gold (US)",
"Pedigree": "A sibling of Bullion",
"AlphaMax": 10.0,
"AlphaMin": 8.0,
"BetaMax": 4.5,
"BetaMin": 3.5,
"CoHumuloneMax": 48,
"CoHumuloneMin": 40,
"Info": "Limited acreage in the US. Developed by Professor Salmon in 1934",
"Styles": "Ale, Pilsner, Lambic, Biere de Garde, Saison",
"TotalOilMax": 2.4,
"TotalOilMin": 2.0,
"Trade": "Mainly used as a bittering hop"
},
{
"Id": 4,
"Aroma": "Medium intensity, floral, citrus and grapefruit",
"BrewingUsage": 1,
"Name": "Cascade",
"Pedigree": "Open pollination of a Fuggle seedling, derived from Fuggle and Serebrianka",
"AlphaMax": 7.0,
"AlphaMin": 4.5,
"BetaMax": 7.0,
"BetaMin": 4.5,
"CoHumuloneMax": 40,
"CoHumuloneMin": 33,
"Info": "1st commercial hop from the USDA-ARS breeding program. It was bred in 1956 and released in 1972.",
"Styles": "US-style Ales, IPA, Porter & Barley wines, Witbier",
"TotalOilMax": 1.5,
"TotalOilMin": 0.8,
"Trade": "An aroma variety with well-balanced bittering potential. Good for dry hopping."
},
{
"Id": 5,
"Aroma": "Medium intensity, floral and citrus tones",
"BrewingUsage": 3,
"Name": "Centennial",
"Pedigree": "Cross between Brewer's Gold and a USDA male",
"AlphaMax": 11.5,
"AlphaMin": 9.5,
"BetaMax": 4.5,
"BetaMin": 3.5,
"CoHumuloneMax": 30,
"CoHumuloneMin": 28,
"Info": "Popular among craft brewers; bred in 1974 and released in 1990",
"Styles": "All US-style Ales, IPA. Has been used with wheat beers",
"TotalOilMax": 2.5,
"TotalOilMin": 1.5,
"Trade": "Very balanced, sometimes calles a \"Super\""
},
{
"Id": 6,
"Aroma": "Medium intensity, spicy, piney and distinct with subtle tones of grapefruit",
"BrewingUsage": 3,
"Name": "Chinook",
"Pedigree": "Cross between Petham Golding and a high alpha USDA male",
"AlphaMax": 14.0,
"AlphaMin": 12.0,
"BetaMax": 4.0,
"BetaMin": 3.0,
"CoHumuloneMax": 34,
"CoHumuloneMin": 29,
"Info": "Increasingly popular among craft brewers; released in 1985",
"Styles": "US-style Pale Ale, IPA, Stout, Porter, Lager",
"TotalOilMax": 2.5,
"TotalOilMin": 1.5,
"Trade": "A high alpha hop with an acceptable aroma profile"
},
{
"Id": 7,
"Aroma": "Strong citrus and tropical tones - grapefruit, melon, lime, gooseberry, passion fruit and lychee",
"BrewingUsage": 1,
"Name": "Citra",
"Pedigree": "Comprised of Hallertauer Mittlefr\u00fch, US Tettnang, Brewer's Gold and East Kent Golding",
"AlphaMax": 13.0,
"AlphaMin": 11.0,
"BetaMax": 4.5,
"BetaMin": 3.5,
"CoHumuloneMax": 24,
"CoHumuloneMin": 22,
"Info": "Developed by the Hop Breeding Company of Yakima, Washington; released in 2007",
"Styles": "American-style Pale Ale, IPA, Double IPA",
"TotalOilMax": 2.8,
"TotalOilMin": 2.2,
"Trade": "New, up and coming variety, known for its intense flavor and aroma characteristics"
},
{
"Id": 8,
"Aroma": "Strong, floral and spicy",
"BrewingUsage": 3,
"Name": "Cluster",
"Pedigree": "Unknown - suggested that it arose from the hybridization of imported varieties and indigenous male hops",
"AlphaMax": 8.5,
"AlphaMin": 5.5,
"BetaMax": 5.5,
"BetaMin": 4.5,
"CoHumuloneMax": 42,
"CoHumuloneMin": 36,
"Info": "The oldest hop variety grown in the US",
"Styles": "Ales (Aroma), Lagers (Bittering) and Stout; often used in reproductions of historical US beer styles",
"TotalOilMax": 0.8,
"TotalOilMin": 0.4,
"Trade": "Excellent general purpose hop with balanced bittering and aroma potential"
},
{
"Id": 9,
"Aroma": "Pungent",
"BrewingUsage": 3,
"Name": "Columbus",
"Pedigree": "Bred and selected from Hopunion breeding",
"AlphaMax": 16.0,
"AlphaMin": 14.0,
"BetaMax": 5.0,
"BetaMin": 4.0,
"CoHumuloneMax": 35,
"CoHumuloneMin": 30,
"Info": "Part of \"CTZ\" with Tomahawk and Zeus",
"Styles": "US IPA, US Pale Ale, Stout, Barley Wine, Lager",
"TotalOilMax": 2.0,
"TotalOilMin": 1.5,
"Trade": "Popular oil profile, great for dry hopping"
},
{
"Id": 10,
"Aroma": "Mild, floral and spicy",
"BrewingUsage": 1,
"Name": "Crystal",
"Pedigree": "Triploid variety from German Hallertau with contributions from Cascade, Brewer's Gold and Early Green; a half-sister of Mt. Hood and Liberty",
"AlphaMax": 5.5,
"AlphaMin": 3.5,
"BetaMax": 6.7,
"BetaMin": 4.5,
"CoHumuloneMax": 26,
"CoHumuloneMin": 20,
"Info": "Primarily grown in Oregon; released in 1993",
"Styles": "Lager, K\u00f6lsch, ESB, Pilsner, IPA, Pale Ale & Belgian Ales",
"TotalOilMax": 2.1,
"TotalOilMin": 0.8,
"Trade": "The most pungent of the new triploid Hallertau family"
},
{
"Id": 11,
"Aroma": "Mild, woody and fruity",
"BrewingUsage": 1,
"Name": "Fuggle (US)",
"Pedigree": "A chance seedling",
"AlphaMax": 5.5,
"AlphaMin": 4.0,
"BetaMax": 2.0,
"BetaMin": 1.5,
"CoHumuloneMax": 32,
"CoHumuloneMin": 25,
"Info": "Selected in 1861 by Richard Fuggle. Known as Styrian Golding in Slovenia and UK Fuggle in England",
"Styles": "Any English-style beer, US Ale, Lambic",
"TotalOilMax": 1.2,
"TotalOilMin": 0.7,
"Trade": "Traditional English-type aroma hop"
},
{
"Id": 12,
"Aroma": "",
"BrewingUsage": 3,
"Name": "Galena",
"Pedigree": "Open pollination of Brewer's Gold",
"AlphaMax": 14.0,
"AlphaMin": 12.0,
"BetaMax": 9.0,
"BetaMin": 7.0,
"CoHumuloneMax": 42,
"CoHumuloneMin": 37,
"Info": "Developed in the Idaho state breeding program in 1968; released in 1978",
"Styles": "Most English-style and American-style Ales",
"TotalOilMax": 1.2,
"TotalOilMin": 0.9,
"Trade": "Excellent high alpha hop with balanced bittering and aroma characteristics"
},
{
"Id": 13,
"Aroma": "Pleasant hop",
"BrewingUsage": 3,
"Name": "Glacier",
"Pedigree": "Offspring of Elsasser",
"AlphaMax": 5.63,
"AlphaMin": 5.63,
"BetaMax": 7.6,
"BetaMin": 7.6,
"CoHumuloneMax": 13,
"CoHumuloneMin": 11,
"Info": "Released as a public variety in 2000 by Dr. Stephen Kenny of Washington State University. Chosen for its low co-humulone and good yield potential",
"Styles": "Pale Ale, ESB, English-style Pale Ale, Porter, Stout",
"TotalOilMax": 1.6,
"TotalOilMin": 0.7,
"Trade": "Excellent variety with balanced bittering properties and a good aroma profile"
},
{
"Id": 14,
"Aroma": "Mild, delicate classic English-type",
"BrewingUsage": 1,
"Name": "Golding (US)",
"Pedigree": "East Kent Golding",
"AlphaMax": 6.0,
"AlphaMin": 4.0,
"BetaMax": 3.0,
"BetaMin": 2.0,
"CoHumuloneMax": 25,
"CoHumuloneMin": 20,
"Info": "UK Golding clones have been introduced for growing in WA and OR. There are no longer any BC Golding hops grown.",
"Styles": "All English-style beers, especially Bitters and Pale Ales, Belgian-style Ales, Barley Wine",
"TotalOilMax": 1.0,
"TotalOilMin": 0.4,
"Trade": "Popular among ale breweries in the US"
},
{
"Id": 15,
"Aroma": "Very mild, slightly flowery and spicy",
"BrewingUsage": 1,
"Name": "Hallertau (US)",
"Pedigree": "Traditional German variety, originally selected in the area of the same name",
"AlphaMax": 5.5,
"AlphaMin": 3.5,
"BetaMax": 5.5,
"BetaMin": 3.5,
"CoHumuloneMax": 25,
"CoHumuloneMin": 18,
"Info": "Limited acreage grown in the US",
"Styles": "Lager, Pilsner, Bock, Wheat, Munich Helles",
"TotalOilMax": 1.5,
"TotalOilMin": 0.6,
"Trade": "Traditional German aroma hop"
},
{
"Id": 16,
"Aroma": "Floral, spicy",
"BrewingUsage": 3,
"Name": "Horizon",
"Pedigree": "Half-sister of Nugget",
"AlphaMax": 13.0,
"AlphaMin": 11.0,
"BetaMax": 8.5,
"BetaMin": 6.5,
"CoHumuloneMax": 19,
"CoHumuloneMin": 16,
"Info": "Commercially grown in small quantities, gaining popularity in the craft brew industry; developed in Oregon, 1970",
"Styles": "All ales and lagers",
"TotalOilMax": 2.0,
"TotalOilMin": 1.5,
"Trade": "Medium alpha, good aroma, dual purpose hop. Low co-humulone results in clean tasting beer"
},
{
"Id": 17,
"Aroma": "Mild, slightly spicy",
"BrewingUsage": 1,
"Name": "Liberty",
"Pedigree": "Cross between tetraploid female hop cultivar Hallertau Mittlefruh and downy mildew resistant male. A half-sister tot Ultra, Mt. Hood and Crystal",
"AlphaMax": 5.0,
"AlphaMin": 3.0,
"BetaMax": 4.0,
"BetaMin": 3.0,
"CoHumuloneMax": 30,
"CoHumuloneMin": 24,
"Info": "1 of 4 triploid Hallertau varieties released, most closely rsembles the Hallertau cultivar",
"Styles": "Lager, Pilsner, Bock, K\u00f6lsch, Wheat",
"TotalOilMax": 1.8,
"TotalOilMin": 0.6,
"Trade": "Close similarities to imported German aroma varieties, especially Hallertau"
},
{
"Id": 18,
"Aroma": "No distinct aroma characteristics",
"BrewingUsage": 2,
"Name": "Magnum (US)",
"Pedigree": "Bred at the Hop Research Institute in H\u00fcll, a cross between Galena and a German male",
"AlphaMax": 14.0,
"AlphaMin": 10.0,
"BetaMax": 7.0,
"BetaMin": 4.5,
"CoHumuloneMax": 30,
"CoHumuloneMin": 24,
"Info": "Limited US acreage but widely gron in Germany",
"Styles": "All Ales and Lagers",
"TotalOilMax": 3.0,
"TotalOilMin": 1.9,
"Trade": "Gaining acceptance as a clean bittering hop"
},
{
"Id": 19,
"Aroma": "Mild, herbal",
"BrewingUsage": 2,
"Name": "Millennium",
"Pedigree": "Descendent of Nugget",
"AlphaMax": 16.5,
"AlphaMin": 14.5,
"BetaMax": 5.3,
"BetaMin": 4.3,
"CoHumuloneMax": 32,
"CoHumuloneMin": 28,
"Info": "Released by Jon I. Haas in 2000",
"Styles": "Ales, Stout, Barley Wine",
"TotalOilMax": 2.2,
"TotalOilMin": 1.8,
"Trade": "High alpha, very similar to Columbus and Nugget"
},
{
"Id": 20,
"Aroma": "Mild, somewhat pungent",
"BrewingUsage": 1,
"Name": "Mt. Hood",
"Pedigree": "Triploid seedling of Gr. Hallertauer Mittelfr\u00fch, half sister to Ultra, Liberty and Crystal",
"AlphaMax": 8.0,
"AlphaMin": 4.0,
"BetaMax": 7.5,
"BetaMin": 5.0,
"CoHumuloneMax": 27,
"CoHumuloneMin": 22,
"Info": "Released in the US in 1989",
"Styles": "Lager, Pilsner, Bock, Alt, Munich Helles, Wheat",
"TotalOilMax": 1.3,
"TotalOilMin": 1.0,
"Trade": "Aroma hop variety with similarities to the German Hallertau and Hersbrucker varieties."
},
{
"Id": 21,
"Aroma": "Excellent floral/noble aromas, with citrus and licorice tones",
"BrewingUsage": 3,
"Name": "Mt. Rainier",
"Pedigree": "Complex parentage including Hallertau, Galena, and Fuggle",
"AlphaMax": 8.1,
"AlphaMin": 5.0,
"BetaMax": 7.0,
"BetaMin": 5.0,
"CoHumuloneMax": 24,
"CoHumuloneMin": 21,
"Info": "Will only be grown through the 2010 season",
"Styles": "",
"TotalOilMax": 0.5,
"TotalOilMin": 0.2,
"Trade": "Similar to Hallertau, but with more bittering strength"
},
{
"Id": 22,
"Aroma": "Mild",
"BrewingUsage": 2,
"Name": "Newport",
"Pedigree": "Open pollination",
"AlphaMax": 17.0,
"AlphaMin": 13.5,
"BetaMax": 9.1,
"BetaMin": 7.2,
"CoHumuloneMax": 38,
"CoHumuloneMin": 36,
"Info": "Released in 2002",
"Styles": "Ales, Stout, Barley Wine",
"TotalOilMax": 3.4,
"TotalOilMin": 1.6,
"Trade": "Viewed as a high-bittering alpha hop"
},
{
"Id": 23,
"Aroma": "Medium intensity with Evergeen, wood & mint overtones",
"BrewingUsage": 3,
"Name": "Northern Brewer (US)",
"Pedigree": "Canterbury Golding female and the male OB21",
"AlphaMax": 10.0,
"AlphaMin": 8.0,
"BetaMax": 5.0,
"BetaMin": 3.0,
"CoHumuloneMax": 30,
"CoHumuloneMin": 20,
"Info": "Bred in England, 1934; limited acreage in the US",
"Styles": "All English-styles, esp. Porters, Ales, K\u00f6lsch, and Munich Helles",
"TotalOilMax": 2.0,
"TotalOilMin": 1.5,
"Trade": "A true dual purpose hop with good aroma"
},
{
"Id": 24,
"Aroma": "Mild, herbal and pleasant",
"BrewingUsage": 2,
"Name": "Nugget",
"Pedigree": "Lineage incldues Brewer's Gold, Early Green and Canterbury Golding",
"AlphaMax": 14.5,
"AlphaMin": 12.0,
"BetaMax": 6.0,
"BetaMin": 4.0,
"CoHumuloneMax": 30,
"CoHumuloneMin": 24,
"Info": "2nd largest hop variety in Oregon",
"Styles": "Ales, Stout, Barley Wine, Saison, Biere de Garde",
"TotalOilMax": 2.3,
"TotalOilMin": 1.7,
"Trade": "A high alpha hop with a good aroma profile"
},
{
"Id": 25,
"Aroma": "Floral, fruity and earthy tones",
"BrewingUsage": 1,
"Name": "Palisade",
"Pedigree": "Tettnang parentage",
"AlphaMax": 9.5,
"AlphaMin": 5.5,
"BetaMax": 8.0,
"BetaMin": 6.0,
"CoHumuloneMax": 29,
"CoHumuloneMin": 24,
"Info": "Cultivar bred by Yakima Chief Ranches",
"Styles": "English and American-style ales",
"TotalOilMax": 1.6,
"TotalOilMin": 1.4,
"Trade": "Used for its aromatic properties and moderate bittering"
},
{
"Id": 26,
"Aroma": "Slightly spicy with floral tones",
"BrewingUsage": 1,
"Name": "Perle (US)",
"Pedigree": "Bred from English Northern Brewer",
"AlphaMax": 9.5,
"AlphaMin": 7.0,
"BetaMax": 5.0,
"BetaMin": 4.0,
"CoHumuloneMax": 32,
"CoHumuloneMin": 27,
"Info": "Bred at the Hop Research Center in H\u00fcll, Germany; mainatins excellent storage stability",
"Styles": "Pale Ale, Porter, Stout, Lager, Weizen, Alt, Barley Wine, K\u00f6lsch",
"TotalOilMax": 0.9,
"TotalOilMin": 0.7,
"Trade": "Often used as a dual purpose hop"
},
{
"Id": 27,
"Aroma": "Very mild, spicy and earthy",
"BrewingUsage": 1,
"Name": "Saaz (US)",
"Pedigree": "US equivalent of the longstanding Czech variety",
"AlphaMax": 4.5,
"AlphaMin": 3.0,
"BetaMax": 4.5,
"BetaMin": 3.0,
"CoHumuloneMax": 28,
"CoHumuloneMin": 24,
"Info": "High ambient temperatures can have an adverse effect on yields",
"Styles": "Pilsner, Lager, Wheat, Belgian-style Ales",
"TotalOilMax": 1.0,
"TotalOilMin": 0.5,
"Trade": "Available in small quantities"
},
{
"Id": 28,
"Aroma": "Slightly spicy with herbal and floral tones",
"BrewingUsage": 1,
"Name": "Santiam",
"Pedigree": "Triploid aroma selection from a diploid Tettnang clone and a tetraploid Hallertauer",
"AlphaMax": 7.0,
"AlphaMin": 5.0,
"BetaMax": 8.5,
"BetaMin": 6.0,
"CoHumuloneMax": 24,
"CoHumuloneMin": 20,
"Info": "Limited but stable acreage; released in 1997",
"Styles": "Lager, Pilsner, Belgian Tripel, K\u00f6lsch, Bock, Munich Helles",
"TotalOilMax": 1.7,
"TotalOilMin": 1.3,
"Trade": "American aroma hop that contains noble hop characteristics"
},
{
"Id": 29,
"Aroma": "Very unique, pine-like aroma",
"BrewingUsage": 3,
"Name": "Simcoe",
"Pedigree": "Bittering and aroma type cultivar",
"AlphaMax": 14.0,
"AlphaMin": 12.0,
"BetaMax": 5.0,
"BetaMin": 4.0,
"CoHumuloneMax": 20,
"CoHumuloneMin": 15,
"Info": "Known as a bittering hop with good aroma characteristics; bred by Yakima Chief Ranches",
"Styles": "American-style Ales, Pale ale, IPA, Double IPA",
"TotalOilMax": 2.5,
"TotalOilMin": 2.0,
"Trade": "Used for aromatic and bittering properties"
},
{
"Id": 30,
"Aroma": "Unique, lemon and slight dill",
"BrewingUsage": 1,
"Name": "Sorachi Ace",
"Pedigree": "Cross between Brewer's Gold, Saazer - OP and Beikei No. 2 male",
"AlphaMax": 16.0,
"AlphaMin": 10.0,
"BetaMax": 7.0,
"BetaMin": 6.0,
"CoHumuloneMax": 23,
"CoHumuloneMin": 23,
"Info": "Seeding selection made in Japan",
"Styles": "Belgian Wit, IPA, Pale Ale, Beglian Saison",
"TotalOilMax": 2.8,
"TotalOilMin": 2.0,
"Trade": "An extremely unique high alpha aroma variety with great bittering characteristics"
},
{
"Id": 31,
"Aroma": "Herbal and spicy with a hint of floral and citrus",
"BrewingUsage": 1,
"Name": "Sterling",
"Pedigree": "Lineage includes Saaz, Cascade, Brewer's Gold, Early Green and German open-pollination",
"AlphaMax": 9.0,
"AlphaMin": 6.0,
"BetaMax": 6.0,
"BetaMin": 4.0,
"CoHumuloneMax": 28,
"CoHumuloneMin": 22,
"Info": "Limited but stable acreage; released in 1998",
"Styles": "Pilsner, Lager and Belgian-style Ales",
"TotalOilMax": 1.9,
"TotalOilMin": 1.3,
"Trade": "Finding favor as a Saaz replacement"
},
{
"Id": 32,
"Aroma": "Distinct spiciness with earthy, onion, garlic and citrus characteristics",
"BrewingUsage": 1,
"Name": "Summit",
"Pedigree": "Cross pollination of Lexus and an unspecified male; derived from numerous plants including Zeus, Nugget and male USDA varieties",
"AlphaMax": 19.0,
"AlphaMin": 16.0,
"BetaMax": 6.0,
"BetaMin": 3.3,
"CoHumuloneMax": 33,
"CoHumuloneMin": 26,
"Info": "Bred by the American Dwarf Hop Association in the United States, released in 2003",
"Styles": "IPA, Pale Ale, Imperial IPA",
"TotalOilMax": 2.5,
"TotalOilMin": 1.5,
"Trade": "Great late addition hop"
},
{
"Id": 33,
"Aroma": "Slightly spicy",
"BrewingUsage": 1,
"Name": "Tettnang (US)",
"Pedigree": "A traditional German land-race variety",
"AlphaMax": 5.0,
"AlphaMin": 4.0,
"BetaMax": 4.5,
"BetaMin": 3.0,
"CoHumuloneMax": 25,
"CoHumuloneMin": 20,
"Info": "Similar to Fuggle; popular with craft brewers",
"Styles": "Pilsner, Lager, Wheat, American-style Ales",
"TotalOilMax": 0.8,
"TotalOilMin": 0.4,
"Trade": "A true noble aroma variety"
},
{
"Id": 34,
"Aroma": "Similar to Hallertau Mittelfr\u00fch",
"BrewingUsage": 1,
"Name": "Vanguard",
"Pedigree": "Cross between USDA accessions 21285 (a Hallertau Mittelfr\u00fch daughter) and 64037M",
"AlphaMax": 6.0,
"AlphaMin": 5.0,
"BetaMax": 7.0,
"BetaMin": 5.0,
"CoHumuloneMax": 16,
"CoHumuloneMin": 14,
"Info": "Similar to Hallertau Mittelfr\u00fch; released for cultivation in 1997",
"Styles": "Lager, Pilsner, Bock, K\u00f6lsch, Wheat, Munich Helles, Belgian-style Ales",
"TotalOilMax": 1.2,
"TotalOilMin": 0.8,
"Trade": "Used for its aromatic properties and low co-humulone"
},
{
"Id": 35,
"Aroma": "Very mild",
"BrewingUsage": 2,
"Name": "Warrior",
"Pedigree": "Bred by Yakima Chief Ranches",
"AlphaMax": 17.0,
"AlphaMin": 15.0,
"BetaMax": 5.5,
"BetaMin": 4.5,
"CoHumuloneMax": 26,
"CoHumuloneMin": 24,
"Info": "Very grower friendly",
"Styles": "Pale Ale, IPA",
"TotalOilMax": 2.0,
"TotalOilMin": 1.0,
"Trade": "Stable, high alpha hop"
},
{
"Id": 36,
"Aroma": "Mild and pleasant, slightly spicy",
"BrewingUsage": 1,
"Name": "Willamette",
"Pedigree": "Triploid seedling of the English Fuggle variety",
"AlphaMax": 6.0,
"AlphaMin": 4.0,
"BetaMax": 4.5,
"BetaMin": 3.0,
"CoHumuloneMax": 35,
"CoHumuloneMin": 30,
"Info": "Well established in the US industry; currently the most widely grown aroma hop in the US",
"Styles": "All English-style Ales, US Pale Ale, US Brown Ale, American Lager",
"TotalOilMax": 1.5,
"TotalOilMin": 1.0,
"Trade": "A quality hop aroma"
},
{
"Id": 37,
"Aroma": "Pronounced and pleasant",
"BrewingUsage": 2,
"Name": "Pride of Ringwood (AU)",
"Pedigree": "2nd generation from the English Pride of Kent",
"AlphaMax": 11.0,
"AlphaMin": 7.0,
"BetaMax": 6.0,
"BetaMin": 4.0,
"CoHumuloneMax": 39,
"CoHumuloneMin": 32,
"Info": "Bred in Australia and grwon since the 1960s",
"Styles": "Australian lagers",
"TotalOilMax": 2.0,
"TotalOilMin": 0.9,
"Trade": "Predominantly used as a bittering hop but contains interesting aramotic qualities"
},
{
"Id": 38,
"Aroma": "Very mild with pleasant hoppy notes",
"BrewingUsage": 1,
"Name": "Saaz (CZ)",
"Pedigree": "Czech aroma landrace variety",
"AlphaMax": 5.0,
"AlphaMin": 2.0,
"BetaMax": 8.0,
"BetaMin": 7.0,
"CoHumuloneMax": 28,
"CoHumuloneMin": 23,
"Info": "The predominant Czech variety",
"Styles": "Pilsner, Lagers, Belgian-Style Ales, Lambic",
"TotalOilMax": 1.0,
"TotalOilMin": 0.4,
"Trade": "The classical \"noble\" aroma hop with long and strong traditions. Associated with the renowned Pilsner Lager."
},
{
"Id": 39,
"Aroma": "Medium intensity, pleasant and hoppy",
"BrewingUsage": 1,
"Name": "Strisselspalt (FR)",
"Pedigree": "Major aroma hop of the Alsace area of France near Strasbourg",
"AlphaMax": 5.0,
"AlphaMin": 3.0,
"BetaMax": 5.5,
"BetaMin": 3.0,
"CoHumuloneMax": 25,
"CoHumuloneMin": 20,
"Info": "Worldwide acceptance as good aroma hop. similar to Hersbrucker, but preffered by some breweries",
"Styles": "Pilsner, Lager, Wheat, Belgian-style Ales, Saison and Biere de Garde",
"TotalOilMax": 0.9,
"TotalOilMin": 0.6,
"Trade": "Very good aroma hop"
},
{
"Id": 40,
"Aroma": "Black currant, fruity, spicy",
"BrewingUsage": 2,
"Name": "Brewer's Gold (DE)",
"Pedigree": "Open pollination of a wild Manitoba hop",
"AlphaMax": 9.0,
"AlphaMin": 5.0,
"BetaMax": 3.5,
"BetaMin": 2.5,
"CoHumuloneMax": 48,
"CoHumuloneMin": 40,
"Info": "Originally bred in the UK by professor E.S. Salmon; released in 1934",
"Styles": "Ales, German Lagers, Lambic, Saison, Bier de Garde",
"TotalOilMax": 2.2,
"TotalOilMin": 1.8,
"Trade": "Mainly used as a bittering hop"
},
{
"Id": 41,
"Aroma": "Mild with distinct floral, hop and citrus tones",
"BrewingUsage": 1,
"Name": "Hallertau Mittelfr\u00fch (DE)",
"Pedigree": "Traditional local variety in the Hallertau region",
"AlphaMax": 5.5,
"AlphaMin": 3.0,
"BetaMax": 5.0,
"BetaMin": 3.0,
"CoHumuloneMax": 28,
"CoHumuloneMin": 18,
"Info": "At one time, the major Hallertau landrace variety with a highly acclaimed aroma profile",
"Styles": "Lager, Pilsner, Weizen, Belgian-style Ales, Alt, Lambic, K\u00f6lsch, Munich Helles",
"TotalOilMax": 1.3,
"TotalOilMin": 0.7,
"Trade": "The classic German aroma hop associated with Bavarian-style lager beers, distinguished by an intense, pleasantly harmonic bitterness."
},
{
"Id": 42,
"Aroma": "Medium intensity, evenly distributed impressions",
"BrewingUsage": 2,
"Name": "Herkules (DE)",
"Pedigree": "Cross between Hallertauer Taurus and a powdery mildew resistant H\u00fcll male breeding line",
"AlphaMax": 17.0,
"AlphaMin": 12.0,
"BetaMax": 5.5,
"BetaMin": 4.0,
"CoHumuloneMax": 38,
"CoHumuloneMin": 32,
"Info": "Bred at the Hop Research Cwnter in H\u00fcll, Germany; released in 2005",
"Styles": "Pilsners, German-style Lagers, Alt",
"TotalOilMax": 2.4,
"TotalOilMin": 1.6,
"Trade": "Very high bitter value"
},
{
"Id": 43,
"Aroma": "Mild to medium, pleasant, floral and slightly fruity",
"BrewingUsage": 1,
"Name": "Hersbrucker (DE)",
"Pedigree": "Traditional German landrace variety selected in the Hersbruck area",
"AlphaMax": 5.0,
"AlphaMin": 2.0,
"BetaMax": 6.0,
"BetaMin": 2.5,
"CoHumuloneMax": 25,
"CoHumuloneMin": 18,
"Info": "Has developed into the variety with the largest acreage - grown throughout the Hallertau, Spalt and Hersbruck areas",
"Styles": "Lager, Pilsner, Bock, Weizen Bock, Wheat, Belgian Ales, K\u00f6lsch, Munich Helles",
"TotalOilMax": 1.3,
"TotalOilMin": 0.7,
"Trade": "A noble aroma type"
},
{
"Id": 44,
"Aroma": "Delicate floral and fruity impressions",
"BrewingUsage": 2,
"Name": "Magnum (DE)",
"Pedigree": "Bred at the Hop Research Institute in H\u00fcll",
"AlphaMax": 16.0,
"AlphaMin": 11.0,
"BetaMax": 7.0,
"BetaMin": 5.0,
"CoHumuloneMax": 29,
"CoHumuloneMin": 21,
"Info": "The main high alpha variant grown in Germany",
"Styles": "Ale, Lager, Stout, Pilsner types",
"TotalOilMax": 2.6,
"TotalOilMin": 1.6,
"Trade": "High alpha with good yields and disease resistance"
},
{
"Id": 45,
"Aroma": "Strong with earthy, floral and spicy tones",
"BrewingUsage": 2,
"Name": "Merkur (DE)",
"Pedigree": "Cross between Hallertauer Magnum and 81/8/13",
"AlphaMax": 15.0,
"AlphaMin": 12.0,
"BetaMax": 7.0,
"BetaMin": 3.5,
"CoHumuloneMax": 20,
"CoHumuloneMin": 16,
"Info": "Strong resistance to powdery mildew",
"Styles": "German and American Lagers",
"TotalOilMax": 2.8,
"TotalOilMin": 2.2,
"Trade": "High alpha variety with high bitter value, good aroma, strong storage stability and low co-humulone"
},
{
"Id": 46,
"Aroma": "Medium intensity, hoppy tang",
"BrewingUsage": 3,
"Name": "Northern Brewer (DE)",
"Pedigree": "One of the original high alpha hops bred in England; a cross between an American wild hop and English male",
"AlphaMax": 10.0,
"AlphaMin": 7.0,
"BetaMax": 5.0,
"BetaMin": 3.5,
"CoHumuloneMax": 33,
"CoHumuloneMin": 27,
"Info": "Bred in England and later grown in Belgium, Spain, Germany and the US",
"Styles": "ESB, Bitter, English Pale Ale, Porter, Lager",
"TotalOilMax": 2.1,
"TotalOilMin": 1.6,
"Trade": "A true dual purpose hop"
},
{
"Id": 47,
"Aroma": "Balanced fruity, hoppy, flowery, citrusy and herbal characteristics",
"BrewingUsage": 1,
"Name": "Opal (DE)",
"Pedigree": "Bred at the Hop Research Center in H\u00fcll, Germany",
"AlphaMax": 8.0,
"AlphaMin": 5.0,
"BetaMax": 5.5,
"BetaMin": 3.5,
"CoHumuloneMax": 17,
"CoHumuloneMin": 13,
"Info": "Registered in 2001",
"Styles": "Summer Ales, Light Ales, Belgian-style Ales, Wheat",
"TotalOilMax": 1.3,
"TotalOilMin": 0.8,
"Trade": "Good aroma type"
},
{
"Id": 48,
"Aroma": "Delicate, floral and fruity",
"BrewingUsage": 1,
"Name": "Perle (DE)",
"Pedigree": "Bred at the H\u00fcll Hop Research Institute from the English Northern Brewer variety",
"AlphaMax": 10.0,
"AlphaMin": 6.0,
"BetaMax": 5.0,
"BetaMin": 2.5,
"CoHumuloneMax": 35,
"CoHumuloneMin": 29,
"Info": "The most popular German-grown hop variety; released in 1978",
"Styles": "Pale Ale, Porter, Stout, Lager, Pilsner, Weizen, Ale, Alt, K\u00f6lsch, Munich Helles",
"TotalOilMax": 1.3,
"TotalOilMin": 0.8,
"Trade": "Highly acceptable aroma variety with balanced bittering"
},
{
"Id": 49,
"Aroma": "Distinct aroma with flowery and fruity tones",
"BrewingUsage": 1,
"Name": "Saphir (DE)",
"Pedigree": "Bred at the Hop Research Center in H\u00fcll, Germany",
"AlphaMax": 4.5,
"AlphaMin": 2.0,
"BetaMax": 7.0,
"BetaMin": 4.0,
"CoHumuloneMax": 17,
"CoHumuloneMin": 12,
"Info": "Released in 2002",
"Styles": "German lagers, Pilsners, Belgian-style Ales",
"TotalOilMax": 1.4,
"TotalOilMin": 0.8,
"Trade": "Fine aroma variety"
},
{
"Id": 50,
"Aroma": "Very fine Spalter type aroma with fruity and flowery tones, imparts a distinct hoppy tang",
"BrewingUsage": 1,
"Name": "Spalter Select (DE)",
"Pedigree": "Bred from Hallertauer Mittlefr\u00fch and Spalt as a disease resistant Spalt type.",
"AlphaMax": 6.5,
"AlphaMin": 3.0,
"BetaMax": 5.0,
"BetaMin": 3.5,
"CoHumuloneMax": 27,
"CoHumuloneMin": 21,
"Info": "Bred at the Hop Research Center in H\u00fcll, Germany; released in 1991",
"Styles": "Lager, Alt, K\u00f6lsch",
"TotalOilMax": 0.9,
"TotalOilMin": 0.6,
"Trade": "Bred to be like the Spalt/Tettnang/Saaz group"
},
{
"Id": 51,
"Aroma": "Predominantly fruity with hoppy and flowery tones",
"BrewingUsage": 1,
"Name": "Smaragd (DE)",
"Pedigree": "Bred at the Hop Research Center in H\u00fcll, Germany",
"AlphaMax": 6.0,
"AlphaMin": 4.0,
"BetaMax": 5.5,
"BetaMin": 3.5,
"CoHumuloneMax": 18,
"CoHumuloneMin": 13,
"Info": "",
"Styles": "Ales, Alt, K\u00f6lsch",
"TotalOilMax": 1.7,
"TotalOilMin": 0.7,
"Trade": "A fine aroma variety with high bitter value"
},
{
"Id": 52,
"Aroma": "Mild and pleasant with flowery, fruity and spicy tones",
"BrewingUsage": 1,
"Name": "Spalt (DE)",
"Pedigree": "Traditional German landrace variety selected and grown in the area of the same name",
"AlphaMax": 5.5,
"AlphaMin": 2.5,
"BetaMax": 5.0,
"BetaMin": 3.0,
"CoHumuloneMax": 29,
"CoHumuloneMin": 22,
"Info": "Only grown in the Spalt area, limited acreage",
"Styles": "Lager, Pilsner, Bock, Alt, K\u00f6lsch, Munich Helles",
"TotalOilMax": 0.9,
"TotalOilMin": 0.5,
"Trade": "Traditional noble aroma hop with average bitter value and very good aroma, provides a distinct hoppy flavor"
},
{
"Id": 53,
"Aroma": "Strong",
"BrewingUsage": 2,
"Name": "Taurus (DE)",
"Pedigree": "Cross between 82/39/37 and 85/54/15M",
"AlphaMax": 17.0,
"AlphaMin": 12.0,
"BetaMax": 6.0,
"BetaMin": 4.0,
"CoHumuloneMax": 25,
"CoHumuloneMin": 20,
"Info": "Bred at the Hop Research Center in H\u00fcll, Germany",
"Styles": "German-style Ales, Lagers",
"TotalOilMax": 1.4,
"TotalOilMin": 0.9,
"Trade": "Ultra high-alpha variety of Hallertau, granting strong bitterness"
},
{
"Id": 54,
"Aroma": "Mild and pleasant with balanced aroma impressions",
"BrewingUsage": 1,
"Name": "Tettnang (DE)",
"Pedigree": "Traditional German landrace variety",
"AlphaMax": 6.0,
"AlphaMin": 3.0,
"BetaMax": 5.0,
"BetaMin": 3.0,
"CoHumuloneMax": 29,
"CoHumuloneMin": 22,
"Info": "Largely confined tot the Tettnang area and belonging to the Saaz variety group",
"Styles": "Lager, Ale, Pilsner, Weizen, Lambic, Alt, K\u00f6lsch, Munich Helles, Belgian-style Ales",
"TotalOilMax": 0.9,
"TotalOilMin": 0.5,
"Trade": "Traditional, noble aroma hop"
},
{
"Id": 55,
"Aroma": "Medium intensity, floral and herbal tones",
"BrewingUsage": 1,
"Name": "Tradition (DE)",
"Pedigree": "A cross between Hallertauer Gold and 75/15/106M originating in Germany",
"AlphaMax": 7.0,
"AlphaMin": 5.0,
"BetaMax": 5.0,
"BetaMin": 4.0,
"CoHumuloneMax": 29,
"CoHumuloneMin": 26,
"Info": "Bred for disease resistance at the Hop Research Center in H\u00fcll, Germany; registered in 1993",
"Styles": "Lager, Pilsner, Bock, Wheat, Weizen",
"TotalOilMax": 1.4,
"TotalOilMin": 1.0,
"Trade": ""
},
{
"Id": 56,
"Aroma": "Citrus, grapefruit",
"BrewingUsage": 1,
"Name": "Cascade (NZ)",
"Pedigree": "Cross between English Fuggle and a male believed to have been a cross of Fuggle and Serebrianka",
"AlphaMax": 8.0,
"AlphaMin": 6.0,
"BetaMax": 5.5,