-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathesoRecipeData.php
3685 lines (3682 loc) · 253 KB
/
esoRecipeData.php
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
<?php
$ESO_RECIPELIST_INFO = array(
1 => array(42, 'Meat Dishes', '/esoui/art/treeicons/provisioner_indexicon_meat_up.dds', 2),
2 => array(42, 'Fruit Dishes', '/esoui/art/treeicons/provisioner_indexicon_stew_up.dds', 2),
3 => array(42, 'Vegetable Dishes', '/esoui/art/treeicons/provisioner_indexicon_baked_up.dds', 2),
4 => array(36, 'Savouries', '/esoui/art/treeicons/provisioner_indexicon_meat_up.dds', 3),
5 => array(36, 'Ragout', '/esoui/art/treeicons/provisioner_indexicon_stew_up.dds', 3),
6 => array(36, 'Entremet', '/esoui/art/treeicons/provisioner_indexicon_baked_up.dds', 3),
7 => array(31, 'Gourmet', '/esoui/art/treeicons/provisioner_indexicon_stew_up.dds', 4),
8 => array(42, 'Alcoholic Drinks', '/esoui/art/treeicons/provisioner_indexicon_beer_up.dds', 2),
9 => array(42, 'Tea', '/esoui/art/treeicons/provisioner_indexicon_spirits_up.dds', 2),
10 => array(42, 'Tonics', '/esoui/art/treeicons/provisioner_indexicon_wine_up.dds', 2),
11 => array(36, 'Liqueurs', '/esoui/art/treeicons/provisioner_indexicon_spirits_up.dds', 3),
12 => array(36, 'Tinctures', '/esoui/art/treeicons/provisioner_indexicon_beer_up.dds', 3),
13 => array(36, 'Cordial Teas', '/esoui/art/treeicons/provisioner_indexicon_wine_up.dds', 3),
14 => array(31, 'Distillates', '/esoui/art/treeicons/provisioner_indexicon_spirits_up.dds', 4),
15 => array(40, 'Delicacies', '/esoui/art/treeicons/provisioner_indexicon_spirits_up.dds', 5),
//15 => array(17, 'Delicacies', '/esoui/art/treeicons/provisioner_indexicon_spirits_up.dds', 5),
//16 => array(24, 'Delicacies', '/esoui/art/treeicons/provisioner_indexicon_meat_up.dds', 5),
17 => array(39, "Conservatory", "/esoui/art/treeicons/housing_indexicon_conservatory_up.dds", 1),
18 => array(123, "Courtyard", "/esoui/art/treeicons/housing_indexicon_courtyard_up.dds", 1),
19 => array(337, "Dining", "/esoui/art/treeicons/housing_indexicon_dining_up.dds", 1),
20 => array(80, "Gallery", "/esoui/art/treeicons/housing_indexicon_gallery_up.dds", 1),
21 => array(621, "Hearth", "/esoui/art/treeicons/housing_indexicon_hearth_up.dds", 1),
22 => array(215, "Library", "/esoui/art/treeicons/housing_indexicon_library_up.dds", 1),
23 => array(361, "Parlor", "/esoui/art/treeicons/housing_indexicon_parlor_up.dds", 1),
24 => array(374, "Lighting", "/esoui/art/treeicons/housing_indexicon_shrine_up.dds", 1),
25 => array(320, "Structures", "/esoui/art/treeicons/housing_indexicon_structures_up.dds", 1),
26 => array(363, "Suite", "/esoui/art/treeicons/housing_indexicon_suite_up.dds", 1),
27 => array(155, "Undercroft", "/esoui/art/treeicons/housing_indexicon_undercroft_up.dds", 1),
28 => array(179, "Workshop", "/esoui/art/treeicons/housing_indexicon_workshop_up.dds", 1),
29 => array(10, "Miscellaneous", "/esoui/art/treeicons/housing_indexicon_misc_up.dds", 1),
30 => array(9, "Services", "/esoui/art/treeicons/collection_indexicon_assistants_up.dds", 1),
100 => array(0, 'Unknown', '', 1),
);
$ESO_RECIPE_INFO = array(
33526 => array(45888, "Meat Dishes", "Fishy Stick", 2),
28358 => array(55462, "Meat Dishes", "Roast Pig", 2),
33819 => array(45935, "Meat Dishes", "Chicken Breast", 2),
42804 => array(45891, "Meat Dishes", "Flank Steak", 2),
28289 => array(45915, "Meat Dishes", "Roast Venison", 2),
28362 => array(45938, "Meat Dishes", "Grilled Hare", 2),
28334 => array(45894, "Meat Dishes", "Rabbit Pasty", 2),
28301 => array(45918, "Meat Dishes", "Tarragon Chicken", 2),
28374 => array(45941, "Meat Dishes", "Hunter's Pie", 2),
33849 => array(45897, "Meat Dishes", "Stir-Fried Garlic Beef", 2),
28313 => array(45921, "Meat Dishes", "Rabbit Millet Pilaf", 2),
28386 => array(45944, "Meat Dishes", "Pan-Fried Trout", 2),
28342 => array(45900, "Meat Dishes", "Breton Pork Sausage", 2),
33484 => array(45924, "Meat Dishes", "Whiterun Cheese-Baked Trout", 2),
28398 => array(45947, "Meat Dishes", "Venison Pasty", 2),
33861 => array(45903, "Meat Dishes", "Cheese Pork Schnitzel", 2),
33502 => array(45927, "Meat Dishes", "Salted Cod", 2),
33563 => array(45950, "Meat Dishes", "Chicken and Biscuits", 2),
28350 => array(45906, "Meat Dishes", "Senchal Curry Fish and Rice", 2),
33520 => array(45930, "Meat Dishes", "Elinhir Roast Antelope", 2),
33581 => array(45953, "Meat Dishes", "Hare in Garlic Sauce", 2),
33873 => array(45909, "Meat Dishes", "Camlorn Pork Sausage", 2),
33885 => array(45956, "Meat Dishes", "Crispy Cheddar Chicken", 2),
33801 => array(45933, "Meat Dishes", "Bruma Jugged Rabbit", 2),
33903 => array(45959, "Meat Dishes", "Mammoth Snout Pie", 2),
57085 => array(56948, "Meat Dishes", "Rabbit Haunch with Cheese Grits", 2),
57088 => array(56951, "Meat Dishes", "Stros M'Kai Grilled Seagull", 2),
33921 => array(45962, "Meat Dishes", "Solstheim Elk and Scuttle", 2),
57098 => array(56961, "Meat Dishes", "Blacklight Oxen Meatballs", 2),
57101 => array(56964, "Meat Dishes", "Akaviri Pork Fried Rice", 2),
43088 => array(45965, "Meat Dishes", "Millet-Stuffed Pork Loin", 2),
57111 => array(56974, "Meat Dishes", "Curried Kwama Scrib Risotto", 2),
57114 => array(56977, "Meat Dishes", "Grilled Timber Mammoth Kebabs", 2),
43142 => array(45968, "Meat Dishes", "Argonian Saddle-Cured Rabbit", 2),
57123 => array(56986, "Meat Dishes", "Kwama Egg Quiche", 2),
57126 => array(56989, "Meat Dishes", "Dunmeri Jerked Horse Haunch", 2),
57135 => array(56998, "Meat Dishes", "The Skald-King's Patty Melt", 2),
57136 => array(56999, "Meat Dishes", "Orcish Bratwurst on Bun", 2),
57137 => array(57000, "Meat Dishes", "Crawdad Quiche", 2),
68233 => array(68189, "Meat Dishes", "Garlic-and-Pepper Venison Steak", 2),
68234 => array(68190, "Meat Dishes", "Millet and Beef Stuffed Peppers", 2),
68235 => array(68191, "Meat Dishes", "Lilmoth Garlic Hagfish", 2),
33837 => array(45889, "Fruit Dishes", "Baked Apples", 2),
28281 => array(45913, "Fruit Dishes", "Banana Surprise", 2),
33825 => array(45936, "Fruit Dishes", "Grape Preserves", 2),
33843 => array(45892, "Fruit Dishes", "Melon Jelly", 2),
28293 => array(45916, "Fruit Dishes", "Tomato Soup", 2),
28366 => array(45939, "Fruit Dishes", "Pumpkin Puree", 2),
42807 => array(45895, "Fruit Dishes", "Pumpkin Cheesecake", 2),
28305 => array(45919, "Fruit Dishes", "Banana Millet Muffin", 2),
28378 => array(45942, "Fruit Dishes", "Bravil Melon Salad", 2),
33855 => array(45898, "Fruit Dishes", "Deshaan Honeydew Hors d'Ouevre", 2),
28317 => array(45922, "Fruit Dishes", "Fried Green Tomatoes", 2),
28390 => array(45945, "Fruit Dishes", "Stuffed Grape Leaves", 2),
42814 => array(45901, "Fruit Dishes", "Pellitine Tomato Rice", 2),
33490 => array(45925, "Fruit Dishes", "Garlic Pumpkin Seeds", 2),
33552 => array(45948, "Fruit Dishes", "Redoran Peppered Melon", 2),
33867 => array(45904, "Fruit Dishes", "Cinnamon Gorapples", 2),
33508 => array(45928, "Fruit Dishes", "Cantaloupe Bread", 2),
33569 => array(45951, "Fruit Dishes", "Green Bananas with Garlic", 2),
42790 => array(45907, "Fruit Dishes", "Cinnamon Grape Jelly", 2),
33789 => array(45931, "Fruit Dishes", "Cyrodilic Pumpkin Fritters", 2),
33587 => array(45954, "Fruit Dishes", "Stormhold Baked Bananas", 2),
33879 => array(45910, "Fruit Dishes", "Clan Mother's Banana Pilaf", 2),
57083 => array(56946, "Fruit Dishes", "Rimmen Raisin Cookies", 2),
33891 => array(45957, "Fruit Dishes", "Apple Cobbler Supreme", 2),
33909 => array(45960, "Fruit Dishes", "Skyrim Jazbay Crostata", 2),
57086 => array(56949, "Fruit Dishes", "Kragenmoor Pickled Pumpkin", 2),
57087 => array(56950, "Fruit Dishes", "Summer Sundas Soup", 2),
33927 => array(45963, "Fruit Dishes", "Melon-Chevre Salad", 2),
57099 => array(56962, "Fruit Dishes", "Mage's Gorapple Porridge", 2),
57100 => array(56963, "Fruit Dishes", "Mistral Banana Bread", 2),
43094 => array(45966, "Fruit Dishes", "Orcrest Garlic Apple Jelly", 2),
57112 => array(56975, "Fruit Dishes", "Hag Fen Pumpkin Pie", 2),
57113 => array(56976, "Fruit Dishes", "Ordinator's Beetle-Cheese Soup", 2),
43154 => array(45969, "Fruit Dishes", "Fresh Apples and Eidar Cheese", 2),
57124 => array(56987, "Fruit Dishes", "Combwort Flatbread", 2),
57125 => array(56988, "Fruit Dishes", "Honey Nut Treat", 2),
57138 => array(57001, "Fruit Dishes", "House Hlaalu Pumpkin Risotto", 2),
57139 => array(57002, "Fruit Dishes", "Bananas in Moon-Sugar Syrup", 2),
57140 => array(57003, "Fruit Dishes", "Garlic Guar Stuffed Grape Leaves", 2),
68236 => array(68192, "Fruit Dishes", "Firsthold Fruit and Cheese Plate", 2),
68237 => array(68193, "Fruit Dishes", "Thrice-Baked Gorapple Pie", 2),
68238 => array(68194, "Fruit Dishes", "Tomato Garlic Chutney", 2),
28321 => array(45887, "Vegetable Dishes", "Carrot Soup", 2),
28354 => array(45912, "Vegetable Dishes", "Baked Potato", 2),
33813 => array(45934, "Vegetable Dishes", "Roast Corn", 2),
28325 => array(45890, "Vegetable Dishes", "Steamed Radishes", 2),
33358 => array(45914, "Vegetable Dishes", "Borscht", 2),
33831 => array(45937, "Vegetable Dishes", "Green Salad", 2),
28330 => array(45893, "Vegetable Dishes", "Carrot Cheesecake", 2),
28297 => array(45917, "Vegetable Dishes", "Gilane Garlicky Greens", 2),
28370 => array(45940, "Vegetable Dishes", "Radishes in Rice", 2),
42811 => array(45896, "Vegetable Dishes", "Balmora Cabbage Biscuits", 2),
28309 => array(45920, "Vegetable Dishes", "Spicy Beet Salad", 2),
28382 => array(45943, "Vegetable Dishes", "Port Hunding Cheese Fries", 2),
28338 => array(45899, "Vegetable Dishes", "Alik'r Beets with Goat Cheese", 2),
33478 => array(45923, "Vegetable Dishes", "Nibenese Garlic Carrots", 2),
28394 => array(45946, "Vegetable Dishes", "Battaglir Chowder", 2),
42784 => array(45902, "Vegetable Dishes", "Rihad Beet and Garlic Salad", 2),
33496 => array(45926, "Vegetable Dishes", "Eidar Radish Salad", 2),
33557 => array(45949, "Vegetable Dishes", "Potato Rice Blintzes", 2),
28346 => array(45905, "Vegetable Dishes", "Garlic Mashed Potatoes", 2),
33514 => array(45929, "Vegetable Dishes", "Chorrol Corn on the Cob", 2),
33575 => array(45952, "Vegetable Dishes", "Jerall View Inn Carrot Cake", 2),
42796 => array(45908, "Vegetable Dishes", "Roasted Beet and Millet Salad", 2),
33795 => array(45932, "Vegetable Dishes", "Twice-Baked Potatoes", 2),
33593 => array(45955, "Vegetable Dishes", "Indoril Radish Tartlets", 2),
33897 => array(45958, "Vegetable Dishes", "Cyrodilic Cornbread", 2),
57089 => array(56952, "Vegetable Dishes", "Cheesemonger's Salad", 2),
57090 => array(56953, "Vegetable Dishes", "Toasted Millet Salad", 2),
33915 => array(45961, "Vegetable Dishes", "Vvardenfell Ash Yam Loaf", 2),
57102 => array(56965, "Vegetable Dishes", "Savory Thorn Cornbread", 2),
57103 => array(56966, "Vegetable Dishes", "Dragonstar Radish Kebabs", 2),
32160 => array(45964, "Vegetable Dishes", "West Weald Corn Chowder", 2),
57115 => array(56978, "Vegetable Dishes", "Baby Carrots in Moon-Sugar Glaze", 2),
57116 => array(56979, "Vegetable Dishes", "Velothi Cabbage Soup", 2),
43124 => array(45967, "Vegetable Dishes", "Pickled Carrot Slurry", 2),
57127 => array(56990, "Vegetable Dishes", "Skingrad Cabbage Soup", 2),
57128 => array(56991, "Vegetable Dishes", "Garlic Radishes a la Kvatch", 2),
57141 => array(57004, "Vegetable Dishes", "Taneth Chili Cheese Corn", 2),
57142 => array(57005, "Vegetable Dishes", "The Secret Chef's Beet Crostata", 2),
57143 => array(57006, "Vegetable Dishes", "Nord Warrior Potato Porridge", 2),
68239 => array(68195, "Vegetable Dishes", "Hearty Garlic Corn Chowder", 2),
68240 => array(68196, "Vegetable Dishes", "Bravil's Best Beet Risotto", 2),
68241 => array(68197, "Vegetable Dishes", "Tenmar Millet-Carrot Couscous", 2),
28348 => array(45636, "Savouries", "Melon Carpaccio", 3),
28299 => array(45654, "Savouries", "Red Deer Stew", 3),
28373 => array(45675, "Savouries", "Punkin Bunny", 3),
28360 => array(45639, "Savouries", "Apple Baked Fish", 3),
28311 => array(45657, "Savouries", "Monkeypig Cutlets", 3),
28385 => array(45678, "Savouries", "Grape-Glazed Bantam Guar", 3),
42808 => array(45642, "Savouries", "Peacock Pie", 3),
33480 => array(45660, "Savouries", "Yellow Oxen Loaf", 3),
28397 => array(45681, "Savouries", "Argonian Pumpkin Stew", 3),
42793 => array(45646, "Savouries", "Colovian Roast Turkey", 3),
33505 => array(45664, "Savouries", "Pork and Bitter Melon", 3),
33567 => array(45685, "Savouries", "Baked Sole with Bananas", 3),
33846 => array(45649, "Savouries", "Pumpkin-Stuffed Fellrunner", 3),
33523 => array(45667, "Savouries", "Redguard Venison Pie", 3),
33585 => array(45688, "Savouries", "Parmesan Eels in Watermelon", 3),
33864 => array(45652, "Savouries", "Venison Stuffed Grape Leaves", 3),
33804 => array(45672, "Savouries", "Aunt Alessia's Pork Chops", 3),
33889 => array(45693, "Savouries", "Minotaur Slumgullion", 3),
43158 => array(45699, "Savouries", "Black Marsh Wamasu Loin", 3),
57092 => array(56955, "Savouries", "Chicken-and-Banana Fried Rice", 3),
57093 => array(56956, "Savouries", "Mother Mara's Savory Rabbit Stew", 3),
33913 => array(45705, "Savouries", "Oyster Tomato Orzo", 3),
57105 => array(56968, "Savouries", "Gazelle Cutlet with Minced Pumpkin", 3),
57106 => array(56969, "Savouries", "Elsweyr Fondue", 3),
33931 => array(45711, "Savouries", "Ashlander Nix-Hound Chili", 3),
57118 => array(56981, "Savouries", "Seared Slaughterfish with Mammoth Cheese", 3),
57119 => array(56982, "Savouries", "Colovian Beef Noodle Soup", 3),
43097 => array(45717, "Savouries", "Khajiiti Sweet-Stuffed Duck", 3),
57130 => array(56993, "Savouries", "Cloudy Dregs Inn Bouillabaisse", 3),
57131 => array(56994, "Savouries", "Corinthean Roast Kagouti", 3),
57144 => array(57007, "Savouries", "Sweet Horker Stew", 3),
57145 => array(57008, "Savouries", "Lillandril Summer Sausage", 3),
57146 => array(57009, "Savouries", "Coldharbour Daedrat Snacks", 3),
68242 => array(68198, "Savouries", "Mistral Banana-Bunny Hash", 3),
68243 => array(68199, "Savouries", "Melon-Baked Parmesan Pork", 3),
68244 => array(68200, "Savouries", "Solitude Salmon-Millet Soup", 3),
28353 => array(45637, "Ragout", "Salmon with Radish Slaw", 3),
28304 => array(45655, "Ragout", "Beet-Glazed Pork", 3),
33403 => array(45676, "Ragout", "Stuffed Capon", 3),
33528 => array(45640, "Ragout", "Beef Stew", 3),
28316 => array(45658, "Ragout", "Shepherd's Pie", 3),
33409 => array(45679, "Ragout", "Rabbit Loin with Bitter Greens", 3),
33537 => array(45643, "Ragout", "Stuffed Venison Haunch", 3),
33487 => array(45661, "Ragout", "Rabbit Gnocchi Ragu", 3),
33416 => array(45682, "Ragout", "Beef and Beets Pasty", 3),
42786 => array(45645, "Ragout", "Falkreath Meat Loaf", 3),
33498 => array(45663, "Ragout", "Highland Rabbit Stew", 3),
33560 => array(45684, "Ragout", "Hunt-Wife's Beef Radish Stew", 3),
33839 => array(45648, "Ragout", "Shornhelm Ox-Tail Soup", 3),
33516 => array(45666, "Ragout", "Frostfall Pork Roast", 3),
33578 => array(45687, "Ragout", "Rabbit Corn Chowder", 3),
33857 => array(45651, "Ragout", "Fricasseed Rabbit with Radishes", 3),
33797 => array(45670, "Ragout", "Narsis Bantam Guar Hash", 3),
33596 => array(54243, "Ragout", "Mudcrab Corn Fritters", 3),
43092 => array(45697, "Ragout", "Necrom Beetle-Cheese Poutine", 3),
57091 => array(56954, "Ragout", "Rumare Slaughterfish Pie", 3),
57094 => array(56957, "Ragout", "Psijic Order Pigs-in-a-Blanket", 3),
33906 => array(45703, "Ragout", "Ash-Hopper Dumplings on Scathecraw", 3),
57104 => array(56967, "Ragout", "Craglorn Skavenger Stew", 3),
57107 => array(56970, "Ragout", "Raven Rock Baked Ash Yams", 3),
33924 => array(45709, "Ragout", "Grilled Camel on Cornbread", 3),
57117 => array(56980, "Ragout", "Potato-Stuffed Roast Pheasant", 3),
57120 => array(56983, "Ragout", "Goblin-Style Grilled Rat", 3),
33900 => array(45715, "Ragout", "Grandmam's Roast Rabbit", 3),
57129 => array(56992, "Ragout", "Wild-Boar-and-Beets", 3),
57132 => array(56995, "Ragout", "Hammerfell Antelope Stew", 3),
57147 => array(57010, "Ragout", "Kwama Egg Omelet", 3),
57148 => array(57011, "Ragout", "Breton Bubble-and-Squeak", 3),
57149 => array(57012, "Ragout", "Silverside Perch Pudding", 3),
68245 => array(68201, "Ragout", "Sticky Pork and Radish Noodles", 3),
68246 => array(68202, "Ragout", "Garlic Cod with Potato Crust", 3),
68247 => array(68203, "Ragout", "Braised Rabbit with Spring Vegetables", 3),
28357 => array(45638, "Entremet", "Last Seed Salad", 3),
28308 => array(45656, "Entremet", "Sweet Potatoes", 3),
33405 => array(45677, "Entremet", "Mid Year Green Salad", 3),
33531 => array(45641, "Entremet", "Melon-Radish Salad", 3),
28320 => array(45659, "Entremet", "Tomato Borscht", 3),
33411 => array(45680, "Entremet", "Pumpkin Corn Fritters", 3),
33540 => array(45644, "Entremet", "Falinesti Forbidden Fruit", 3),
33493 => array(45662, "Entremet", "Hearthfire Harvest Pilaf", 3),
33555 => array(45683, "Entremet", "Hearty Sun's Dusk Soup", 3),
42799 => array(45647, "Entremet", "Hearthfire Vegetable Salad", 3),
33511 => array(45665, "Entremet", "Apple Mashed Potatoes", 3),
33573 => array(45686, "Entremet", "Elsweyr Corn Fritters", 3),
33852 => array(45650, "Entremet", "Sun's Height Pudding", 3),
42759 => array(45668, "Entremet", "Apple-Eidar Cheese Salad", 3),
33591 => array(45689, "Entremet", "Sweet Dune Gnocchi", 3),
33870 => array(45653, "Entremet", "Creamcheese Frosted Gorapple Cake", 3),
33810 => array(45674, "Entremet", "Forge-Wife's Spudmelon Pie", 3),
33895 => array(45695, "Entremet", "Blackwood Stuffed Banana Leaves", 3),
54377 => array(45700, "Entremet", "Spinner's Taboo Salad", 3),
57095 => array(56958, "Entremet", "Ashlander Ochre Mash", 3),
57096 => array(56959, "Entremet", "Orcish No-Rhubarb Salad", 3),
33916 => array(45706, "Entremet", "Sun-Dried Caravan Provisions", 3),
57108 => array(56971, "Entremet", "Savory Banana Cornbread", 3),
57109 => array(56972, "Entremet", "Drunken Goat Cheese with Radishes", 3),
28332 => array(45712, "Entremet", "Savory Mid Year Preserves", 3),
57121 => array(56984, "Entremet", "Eidar Banana-Radish Vichyssoise", 3),
57122 => array(56985, "Entremet", "Khajiiti Apple Spanakopita", 3),
43155 => array(45718, "Entremet", "Every-Morndas Casserole", 3),
57133 => array(56996, "Entremet", "Savory-Sweet Fried Kale", 3),
57134 => array(56997, "Entremet", "Late-Summer Corn Slaw", 3),
57150 => array(57013, "Entremet", "Boiled Creme Treat", 3),
57151 => array(57014, "Entremet", "Sweetroll", 3),
57152 => array(57015, "Entremet", "Arenthia's Empty Tankard Frittata", 3),
68248 => array(68204, "Entremet", "Chevre-Radish Salad with Pumpkin Seeds", 3),
68249 => array(68205, "Entremet", "Grapes and Ash Yam Falafel", 3),
68250 => array(68206, "Entremet", "Late Hearthfire Vegetable Tart", 3),
57080 => array(56943, "Gourmet", "Corinthe Corn Beef", 4),
57081 => array(56944, "Gourmet", "Sweet Skeever Gumbo", 4),
57082 => array(56947, "Gourmet", "Riekling Suckling Bristleback", 4),
57084 => array(56945, "Gourmet", "Summerset Rainbow Pie", 4),
33802 => array(45671, "Gourmet", "Dawnstar Sun's Dusk Chowder", 4),
33594 => array(45690, "Gourmet", "Nibenese Fricasseed Fawn", 4),
33856 => array(54370, "Gourmet", "Vvardenfell Cliff Racer Ragout", 4),
55922 => array(45701, "Gourmet", "Twenty-Four-Raven Pie", 4),
33886 => array(45692, "Gourmet", "Gold Coast Mudcrab Fries", 4),
33892 => array(45694, "Gourmet", "Stirk Pork-and-Beets", 4),
28331 => array(45696, "Gourmet", "Horker Loaf", 4),
57110 => array(56973, "Gourmet", "Markarth Short Pig", 4),
33808 => array(45673, "Gourmet", "Parrot-and-Pumpkin Salad", 4),
33868 => array(45791, "Gourmet", "Direnni Hundred-Year Rabbit Bisque", 4),
33919 => array(45707, "Gourmet", "Caramelized Goat Nibbles", 4),
33862 => array(54369, "Gourmet", "Goatherd's Pie", 4),
33796 => array(54371, "Gourmet", "Braised Sweetmeats", 4),
43128 => array(45698, "Gourmet", "Slow-Simmered Rabbit Goulash", 4),
33928 => array(45710, "Gourmet", "Planked Abecean Longfin", 4),
33910 => array(45704, "Gourmet", "Salmon Steak Supreme", 4),
33904 => array(45702, "Gourmet", "Imperial Stuffed Piglet", 4),
33922 => array(45708, "Gourmet", "Duck Soup", 4),
28333 => array(45719, "Gourmet", "Hircine's Meat Loaf", 4),
43089 => array(45713, "Gourmet", "Ultimate Riverhold Beef Pasty", 4),
43143 => array(45716, "Gourmet", "The Emperor's Venison Fricassee", 4),
33898 => array(45714, "Gourmet", "Potentate's Supreme Cioppino", 4),
57153 => array(57016, "Gourmet", "The Secret Chef's Pork Roast", 4),
68251 => array(68207, "Gourmet", "Capon Tomato-Beet Casserole", 4),
68252 => array(68208, "Gourmet", "Jugged Rabbit in Preserves", 4),
68253 => array(68209, "Gourmet", "Longfin Pasty with Melon Sauce", 4),
68254 => array(68210, "Gourmet", "Withered Tree Inn Venison Pot Roast", 4),
28401 => array(45970, "Alcoholic Drinks", "Nut Brown Ale", 2),
33600 => array(45980, "Alcoholic Drinks", "Red Rye Beer", 2),
33933 => array(45988, "Alcoholic Drinks", "Golden Lager", 2),
28405 => array(45971, "Alcoholic Drinks", "Bog-Iron Ale", 2),
33606 => array(45981, "Alcoholic Drinks", "Mazte", 2),
33939 => array(45989, "Alcoholic Drinks", "Surilie Syrah Wine", 2),
28409 => array(45972, "Alcoholic Drinks", "Clarified Syrah Wine", 2),
33612 => array(45982, "Alcoholic Drinks", "Four-Eye Grog", 2),
33945 => array(45990, "Alcoholic Drinks", "Lemon Flower Mazte", 2),
28413 => array(45973, "Alcoholic Drinks", "Tawny Port", 2),
33618 => array(46035, "Alcoholic Drinks", "Red Hippocras", 2),
33951 => array(45991, "Alcoholic Drinks", "Old Clear-Eye Whiskey", 2),
28417 => array(45974, "Alcoholic Drinks", "Eltheric Hooch", 2),
33624 => array(45984, "Alcoholic Drinks", "Barley Nectar", 2),
33957 => array(45992, "Alcoholic Drinks", "Gossamer Mazte", 2),
28421 => array(45975, "Alcoholic Drinks", "Honey Rye", 2),
33630 => array(45985, "Alcoholic Drinks", "Mermaid Whiskey", 2),
33963 => array(45993, "Alcoholic Drinks", "Ginger Wheat Beer", 2),
28425 => array(45976, "Alcoholic Drinks", "Sour Mash", 2),
33636 => array(45986, "Alcoholic Drinks", "Spiced Mazte", 2),
33969 => array(45994, "Alcoholic Drinks", "Mulled Wine", 2),
28429 => array(45977, "Alcoholic Drinks", "Rye-in-your-Eye", 2),
33642 => array(45987, "Alcoholic Drinks", "Sorry, Honey Lager", 2),
33975 => array(45995, "Alcoholic Drinks", "Nereid Wine", 2),
28433 => array(45978, "Alcoholic Drinks", "Gods-Blind-Me", 2),
57158 => array(57020, "Alcoholic Drinks", "Cheydinhal Sherry", 2),
57161 => array(57023, "Alcoholic Drinks", "Colovian Amber Ale", 2),
28437 => array(45979, "Alcoholic Drinks", "Sweet Scamp Mazte", 2),
57170 => array(57032, "Alcoholic Drinks", "Sour Gin Fizz", 2),
57173 => array(57035, "Alcoholic Drinks", "Whiskey Sour", 2),
28402 => array(46048, "Alcoholic Drinks", "Comely Wench Whiskey", 2),
57182 => array(57044, "Alcoholic Drinks", "Rimmen Sour Bock", 2),
57185 => array(57047, "Alcoholic Drinks", "Frothy Sargassum", 2),
33652 => array(46051, "Alcoholic Drinks", "Arenthian Brandy", 2),
34032 => array(46054, "Alcoholic Drinks", "Summer Sky Pale Ale", 2),
57194 => array(57056, "Alcoholic Drinks", "Argonian Mud-Nectar", 2),
57200 => array(57062, "Alcoholic Drinks", "Alabaster Honey Rum", 2),
57201 => array(57063, "Alcoholic Drinks", "Crystal Tower Whiskey", 2),
57202 => array(57064, "Alcoholic Drinks", "Palace of Kings Ginger Beer", 2),
68255 => array(68211, "Alcoholic Drinks", "Kragenmoor Zinger Mazte", 2),
68256 => array(68212, "Alcoholic Drinks", "Colovian Ginger Beer", 2),
68257 => array(68213, "Alcoholic Drinks", "Markarth Mead", 2),
28441 => array(45996, "Tea", "Jasmine Tea", 2),
33648 => array(46006, "Tea", "Mint Chai", 2),
33981 => array(46014, "Tea", "Rose Herbal Tea", 2),
28445 => array(45997, "Tea", "Lotus Tea", 2),
33654 => array(46007, "Tea", "Bitter Tea", 2),
33987 => array(46015, "Tea", "Comberry Chai", 2),
28449 => array(45998, "Tea", "Honeyberry Tea", 2),
33660 => array(46008, "Tea", "Morning Reveille Tea", 2),
33993 => array(46016, "Tea", "Sweetsting Tea", 2),
28453 => array(45999, "Tea", "Sourflower Tea", 2),
33666 => array(46009, "Tea", "Green Scourgut Tea", 2),
33999 => array(46017, "Tea", "Gingerose Tea", 2),
28457 => array(46000, "Tea", "Bitterlemon Tea", 2),
33672 => array(46010, "Tea", "Treacleberry Tea", 2),
34005 => array(46018, "Tea", "Seaflower Tea", 2),
28461 => array(46001, "Tea", "Thrassian Chai", 2),
33678 => array(46011, "Tea", "Enlightenment Tea", 2),
34011 => array(46019, "Tea", "Mead de Menthe", 2),
28465 => array(46002, "Tea", "Maormer Tea", 2),
33684 => array(46012, "Tea", "Spiceberry Chai", 2),
34017 => array(46020, "Tea", "Torval Mint Tea", 2),
28469 => array(46003, "Tea", "Puckermint Tea", 2),
33690 => array(46013, "Tea", "Winter Rose Tea", 2),
34023 => array(46021, "Tea", "Pink Profundity", 2),
28473 => array(46004, "Tea", "Two-Zephyr Tea", 2),
57159 => array(57021, "Tea", "Sweet Slaughterfish Tea", 2),
57160 => array(57022, "Tea", "Vivec's Gingergreen Chai", 2),
28477 => array(46005, "Tea", "Sweet Dreams Tea", 2),
57171 => array(57033, "Tea", "Jasminger Tea", 2),
57172 => array(57034, "Tea", "Camlorn Mint Tea", 2),
33602 => array(46049, "Tea", "Aetherial Tea", 2),
57183 => array(57045, "Tea", "Clan Mother's Cordial", 2),
57184 => array(57046, "Tea", "Mournhold Twister", 2),
28482 => array(46052, "Tea", "Khenarthi's Wings Chai", 2),
46061 => array(46055, "Tea", "Bitter Ritual Tea", 2),
57195 => array(57057, "Tea", "Five-Fireball Infusion", 2),
57203 => array(57065, "Tea", "Comberry Citrus Quencher", 2),
57204 => array(57066, "Tea", "Pirate Queen Mint Tea", 2),
57205 => array(57067, "Tea", "Falkreath Rosy Mead", 2),
68258 => array(68214, "Tea", "Heart's Day Rose Tea", 2),
68259 => array(68215, "Tea", "Soothing Bard's-Throat Tea", 2),
68260 => array(68216, "Tea", "Muthsera's Remorse", 2),
28481 => array(46022, "Tonics", "Ginkgo Tonic", 2),
33696 => array(46032, "Tonics", "Acai Tonic Infusion", 2),
34029 => array(46040, "Tonics", "Guarana Tonic", 2),
28485 => array(46023, "Tonics", "Ginseng Tonic", 2),
33702 => array(46033, "Tonics", "Black Coffee", 2),
34035 => array(46041, "Tonics", "Mate Infusion", 2),
28489 => array(46024, "Tonics", "Tonsil Tingle Tonic", 2),
33708 => array(46034, "Tonics", "Meady-Matey Infusion", 2),
34041 => array(46042, "Tonics", "Yellow Goblin Tonic", 2),
28493 => array(46025, "Tonics", "Isinmate Infusion", 2),
33714 => array(45983, "Tonics", "Kelp Kaveh", 2),
34047 => array(46043, "Tonics", "Sweetberry Tonic", 2),
28497 => array(46026, "Tonics", "Taneth Coffee", 2),
33720 => array(46036, "Tonics", "Ginkgo Twist Tonic", 2),
34053 => array(46044, "Tonics", "Yerba Zinger Tonic", 2),
28501 => array(46027, "Tonics", "Busy Bee Brew", 2),
33726 => array(46037, "Tonics", "Ginseng Sling", 2),
34059 => array(46045, "Tonics", "Athlete's Guzzle", 2),
28505 => array(46028, "Tonics", "Berrymead Tonic", 2),
33732 => array(46038, "Tonics", "Pirate's Jig Tonic", 2),
34065 => array(46046, "Tonics", "Dancing Grandma", 2),
28509 => array(46029, "Tonics", "Rihad Qishr", 2),
33738 => array(46039, "Tonics", "Seaberry Tonic", 2),
34071 => array(46047, "Tonics", "Crystal Clarity", 2),
28513 => array(46030, "Tonics", "Blue Road Marathon", 2),
57162 => array(57024, "Tonics", "Sweet Persistence", 2),
57163 => array(57025, "Tonics", "Infernal Infusion", 2),
28517 => array(46031, "Tonics", "Shimmerene Tonic", 2),
57174 => array(57036, "Tonics", "Lemonic Invigoration", 2),
57175 => array(57037, "Tonics", "Dreugh Spit", 2),
28444 => array(46050, "Tonics", "Grandpa's Bedtime Tonic", 2),
57186 => array(57048, "Tonics", "Sload Slime", 2),
57187 => array(57049, "Tonics", "Soothing Sundas Tonic", 2),
33698 => array(46053, "Tonics", "Sipping Imga Tonic", 2),
46063 => array(46056, "Tonics", "Sailor's Second Wind", 2),
57196 => array(57058, "Tonics", "Wamasu Spew", 2),
57206 => array(57068, "Tonics", "Hasphat's Sticky Guar Tonic", 2),
57207 => array(57069, "Tonics", "Nocturnal's Everblack Coffee", 2),
57208 => array(57070, "Tonics", "Fyr's Hyperagonal Potation", 2),
68261 => array(68217, "Tonics", "Fredas Night Infusion", 2),
68262 => array(68218, "Tonics", "Old Hegathe Lemon Kaveh", 2),
68263 => array(68219, "Tonics", "Hagraven's Tonic", 2),
28411 => array(45539, "Liqueurs", "Cloudrest Golden Ale", 3),
33614 => array(45551, "Liqueurs", "Clamberskull", 3),
33947 => array(45559, "Liqueurs", "Skingrad Muscat", 3),
28415 => array(45540, "Liqueurs", "Jasmine Moonshine", 3),
33620 => array(45552, "Liqueurs", "Creme de Menthe", 3),
33953 => array(45560, "Liqueurs", "Rose Lager", 3),
28419 => array(45541, "Liqueurs", "Clarified Rose Lager", 3),
33626 => array(45553, "Liqueurs", "Horker's Breath", 3),
33959 => array(45561, "Liqueurs", "Sujamma", 3),
28423 => array(45542, "Liqueurs", "Bitter Remorse Ale", 3),
33632 => array(45554, "Liqueurs", "Spriggan Sap", 3),
33965 => array(45562, "Liqueurs", "Truth-Glimpse", 3),
28427 => array(45543, "Liqueurs", "Sweet Lemonale", 3),
33638 => array(45555, "Liqueurs", "Double Clarified Mazte", 3),
33971 => array(45563, "Liqueurs", "Sanguine's Temptation", 3),
28431 => array(45544, "Liqueurs", "Summer Mazte", 3),
33644 => array(45556, "Liqueurs", "Riften Rye", 3),
33977 => array(45564, "Liqueurs", "Night-Grog", 3),
28435 => array(45546, "Liqueurs", "Rosy Island Ale", 3),
57164 => array(57026, "Liqueurs", "Wizard's Whiskey", 3),
57167 => array(57029, "Liqueurs", "Sweet and Sour Port", 3),
28439 => array(45548, "Liqueurs", "Anequina Stout", 3),
57176 => array(57038, "Liqueurs", "Black Night Cordial", 3),
57179 => array(57041, "Liqueurs", "Sylph Gin", 3),
33420 => array(54241, "Liqueurs", "Comberry Bourbon", 3),
57188 => array(57050, "Liqueurs", "Honeyhips Brown Ale", 3),
57191 => array(57053, "Liqueurs", "Hunt-Wife's Grog", 3),
46062 => array(45631, "Liqueurs", "Old Sweetheart Stout", 3),
33984 => array(54242, "Liqueurs", "Breton Pint of Bitters", 3),
57197 => array(57059, "Liqueurs", "Blue Banekin Beer", 3),
57209 => array(57071, "Liqueurs", "Saint Pelin's Tawny Port", 3),
57210 => array(57072, "Liqueurs", "Yokudan Sorrow Bourbon", 3),
57211 => array(57073, "Liqueurs", "Clavicus Vines Chenin Blanc", 3),
68264 => array(68220, "Liqueurs", "Port Hunding Pinot Noir", 3),
68265 => array(68221, "Liqueurs", "Dragontail Blended Whisky", 3),
68266 => array(68222, "Liqueurs", "Bravil Bitter Barley Beer", 3),
28452 => array(45567, "Tinctures", "Timber Mammoth Ale", 3),
33663 => array(45579, "Tinctures", "Kaveh Stout", 3),
33996 => array(45587, "Tinctures", "Stand-Me-Up Lager", 3),
28456 => array(45568, "Tinctures", "Ginkgo Lightning", 3),
33669 => array(45580, "Tinctures", "Acai Dry Mazte", 3),
34002 => array(45588, "Tinctures", "Yerba Syrah Wine", 3),
28460 => array(45569, "Tinctures", "Bravil Mead", 3),
33675 => array(45581, "Tinctures", "West Weald Wallop", 3),
34008 => array(45589, "Tinctures", "Elinhir Qishr", 3),
28464 => array(45570, "Tinctures", "Ginkgo Double Brandy", 3),
33681 => array(45582, "Tinctures", "Ginger Port", 3),
34014 => array(45590, "Tinctures", "Drowned Sailor Ale", 3),
28468 => array(45571, "Tinctures", "Fulmination Ale", 3),
33687 => array(45583, "Tinctures", "Vvardenfell Flin", 3),
34020 => array(45591, "Tinctures", "Sour Guar Shein", 3),
28472 => array(45572, "Tinctures", "Pyandonea Merlot", 3),
33693 => array(45584, "Tinctures", "Vigilance Gold Ale", 3),
34026 => array(45592, "Tinctures", "Imperial Stout", 3),
28476 => array(45574, "Tinctures", "Dark Seducer", 3),
57165 => array(57027, "Tinctures", "Stalwart Stout", 3),
57166 => array(57028, "Tinctures", "Boethiah's Breath", 3),
28487 => array(45604, "Tinctures", "Narsis Wickwheat Ale", 3),
57177 => array(57039, "Tinctures", "Spicy Wyress Wine", 3),
57178 => array(57040, "Tinctures", "White-Eye Whiskey", 3),
28443 => array(45622, "Tinctures", "Blacklight Ginger Mazte", 3),
57189 => array(57051, "Tinctures", "Jephre's Earthbone Beer", 3),
57190 => array(57052, "Tinctures", "Kvatch Watch Grenache", 3),
33697 => array(45627, "Tinctures", "Surilie Bros. White Merlot", 3),
46058 => array(45633, "Tinctures", "Crow's Nest Rye", 3),
57198 => array(57060, "Tinctures", "Necrom Nights Mazte", 3),
57212 => array(57074, "Tinctures", "Happy Ogrim Amber Ale", 3),
57213 => array(57075, "Tinctures", "Psijic Sage's Mazte", 3),
57214 => array(57076, "Tinctures", "Stendarr's Vigilance Ginger Ale", 3),
68267 => array(68223, "Tinctures", "Wide-Eye Double Rye", 3),
68268 => array(68224, "Tinctures", "Camlorn Sweet Brown Ale", 3),
68269 => array(68225, "Tinctures", "Flowing Bowl Green Port", 3),
28492 => array(45594, "Cordial Teas", "Lillandril Tonic Tea", 3),
33711 => array(45607, "Cordial Teas", "Blackwood Mint Chai", 3),
34044 => array(45614, "Cordial Teas", "Herbflower Tea", 3),
28496 => array(45595, "Cordial Teas", "Tsaesci Tea", 3),
33717 => array(45608, "Cordial Teas", "Bitter Kaveh", 3),
34050 => array(45615, "Cordial Teas", "Comberry Tonic", 3),
28500 => array(45596, "Cordial Teas", "Pondwater Tea", 3),
33723 => array(45609, "Cordial Teas", "Jasrana Tea Tonic", 3),
34056 => array(45616, "Cordial Teas", "Dibella's Kiss Tea", 3),
28504 => array(45597, "Cordial Teas", "Cornerclub Kaveh", 3),
33729 => array(45610, "Cordial Teas", "Celestial Tonic Tea", 3),
34062 => array(45617, "Cordial Teas", "Azura's Rose Tea", 3),
28508 => array(45598, "Cordial Teas", "Mintmead Kaveh", 3),
33735 => array(45611, "Cordial Teas", "Sweet Scented Infusion", 3),
34068 => array(45618, "Cordial Teas", "Pink Wisdom Tea", 3),
28512 => array(45600, "Cordial Teas", "Jasminkgo Tonic", 3),
33741 => array(45612, "Cordial Teas", "Silver Lotusberry Tea", 3),
34074 => array(45619, "Cordial Teas", "Tingle Tonic Tea", 3),
28516 => array(45602, "Cordial Teas", "Serene Awareness", 3),
57168 => array(57030, "Cordial Teas", "Midnight Ritual Tea", 3),
57169 => array(57031, "Cordial Teas", "Chthonic Tonic", 3),
33458 => array(45576, "Cordial Teas", "Centurion's Friend Kaveh", 3),
57180 => array(57042, "Cordial Teas", "Elven Maiden Tea", 3),
57181 => array(57043, "Cordial Teas", "Strapping Lad Tonic", 3),
33650 => array(45624, "Cordial Teas", "Mage's Mead", 3),
57192 => array(57054, "Cordial Teas", "First Kiss Tea", 3),
57193 => array(57055, "Cordial Teas", "Senchal Dancer Tonic", 3),
34030 => array(45629, "Cordial Teas", "Telvanni Tea", 3),
46060 => array(45535, "Cordial Teas", "Ten Ogres Tonic", 3),
57199 => array(57061, "Cordial Teas", "Ginger Guar Smoothie", 3),
57215 => array(57077, "Cordial Teas", "Balfiera Herbal Tonic", 3),
57216 => array(57078, "Cordial Teas", "Mint Mudcrab Mojito", 3),
57217 => array(57079, "Cordial Teas", "Tonal Architect Tonic", 3),
68270 => array(68226, "Cordial Teas", "Honest Lassie Honey Tea", 3),
68271 => array(68227, "Cordial Teas", "Rosy Disposition Tonic", 3),
68272 => array(68228, "Cordial Teas", "Cloudrest Clarified Coffee", 3),
57155 => array(57017, "Distillates", "Greef", 4),
57156 => array(57018, "Distillates", "Red Queen's Eye-Opener", 4),
57157 => array(57019, "Distillates", "Aqua Vitae", 4),
34027 => array(46079, "Distillates", "Abecean Brandy", 4),
33434 => array(45545, "Distillates", "Enemies Explode", 4),
33694 => array(45691, "Distillates", "Monkeypants Mazte", 4),
33979 => array(45565, "Distillates", "Seven Year Beer", 4),
33739 => array(46081, "Distillates", "Vaermina's Nightmare", 4),
33436 => array(45547, "Distillates", "Tranquility Pale Ale", 4),
33456 => array(45575, "Distillates", "Hopscotch", 4),
28514 => array(45601, "Distillates", "Ten-Foot Beer", 4),
34072 => array(46082, "Distillates", "Rude Awakening", 4),
33459 => array(45577, "Distillates", "Berveza Vitae", 4),
28518 => array(45603, "Distillates", "Orsinium Pink Zinfandel", 4),
33438 => array(45549, "Distillates", "Fifth Legion Porter", 4),
33603 => array(45621, "Distillates", "Cardiac Arrest", 4),
28403 => array(45620, "Distillates", "Animate-the-Dead", 4),
33440 => array(45623, "Distillates", "Xanmeer Brandy", 4),
33454 => array(45573, "Distillates", "Qhalua Liqueur", 4),
46057 => array(45632, "Distillates", "Hello Handsome Porter", 4),
33982 => array(45625, "Distillates", "High Rock Rose and Rye", 4),
28483 => array(45628, "Distillates", "Malacath's Hammer", 4),
33699 => array(45626, "Distillates", "Kagouti Kick Mazte", 4),
28510 => array(45599, "Distillates", "Tears of Joy", 4),
33646 => array(45557, "Distillates", "Numidium Brandy", 4),
34033 => array(45630, "Distillates", "Ysgramor's Harbinger Lager", 4),
46059 => array(45634, "Distillates", "Rislav's Righteous Red Kvass", 4),
68273 => array(68229, "Distillates", "Senche-Tiger Single Malt", 4),
68274 => array(68230, "Distillates", "Velothi View Vintage Malbec", 4),
68275 => array(68231, "Distillates", "Orcrest Agony Pale Ale", 4),
68276 => array(68232, "Distillates", "Lusty Argonian Maid Mazte", 4),
64221 => array(64223, "Delicacies", "Psijic Ambrosia", 5),
87687 => array(87684, "Delicacies", "Bowl of \"Peeled Eyeballs\"", 3),
87690 => array(87688, "Delicacies", "Witchmother's Party Punch", 4),
87695 => array(87692, "Delicacies", "Ghastly Eye Bowl", 3),
87699 => array(87698, "Delicacies", "Purifying Bloody Mara", 5),
87697 => array(87694, "Delicacies", "Witchmother's Potent Brew", 4),
112426 => array(96966, "Delicacies", "Bergama Warning Fire", 3),
112433 => array(96965, "Delicacies", "Betnikh Twice-Spiked Ale", 3),
112440 => array(96960, "Delicacies", "Snow Bear Glow-Wine", 2),
101879 => array(96968, "Delicacies", "Hissmir Fish-Eye Rye", 5),
115027 => array(115029, "Delicacies", "Mythic Aetherial Ambrosia", 5),
120076 => array(120077, "Delicacies", "Aetherial Ambrosia", 5),
120763 => array(120769, "Delicacies", "Dubious Camoran Throne", 4),
71056 => array(71060, "Delicacies", "Orzorga's Red Frothgar", 3),
133555 => array(133552, "Delicacies", "Spring-Loaded Infusion", 4),
153625 => array(153624, "Delicacies", "Corrupting Bloody Mara", 5),
153627 => array(153626, "Delicacies", "Pack Leader's Bone Broth", 5),
64470 => array(-1, "Delicacies", "Old Orsinium Blood Soup", 3),
71057 => array(71061, "Delicacies", "Orzorga's Tripe Trifle Pocket", 3),
71058 => array(71062, "Delicacies", "Orzorga's Blood Price Pie", 3),
71059 => array(71063, "Delicacies", "Orzorga's Smoked Bear Haunch", 5),
87685 => array(87682, "Delicacies", "Sweet Sanguine Apples^P", 2),
87686 => array(87683, "Delicacies", "Crisp and Crunchy Pumpkin Snack Skewer", 3),
87691 => array(87689, "Delicacies", "Crunchy Spider Skewer", 3),
87696 => array(87693, "Delicacies", "Frosted Brains^P", 3),
112425 => array(96967, "Delicacies", "Lava Foot Soup-and-Saltrice", 3),
112434 => array(96964, "Delicacies", "Jagga-Drenched \"Mud Ball\"", 3),
112435 => array(96963, "Delicacies", "Old Aldmeri Orphan Gruel", 2),
112438 => array(96962, "Delicacies", "Rajhin's Sugar Claws", 2),
112439 => array(96961, "Delicacies", "Alcaire Festival Sword-Pie", 2),
120436 => array(120767, "Delicacies", "Princess's Delight", 2),
120762 => array(120768, "Delicacies", "Candied Jester's Coins", 3),
120764 => array(120770, "Delicacies", "Jewels of Misrule", 4),
133554 => array(133551, "Delicacies", "Deregulated Mushroom Stew", 3),
133556 => array(133553, "Delicacies", "Clockwork Citrus Filet", 5),
139016 => array(139012, "Delicacies", "Artaeum Pickled Fish Bowl", 4),
139018 => array(139017, "Delicacies", "Artaeum Takeaway Broth", 5),
153629 => array(153628, "Delicacies", "Bewitched Sugar Skulls", 5),
171323 => array(171324, "Delicacies", "Colovian War Torte", 5),
171329 => array(171331, "Delicacies", "Molten War Torte", 5),
171432 => array(171435, "Delicacies", "White-Gold War Torte", 5),
139264 => array(139587, "Structures", "Alinor Fireplace, Ornate", 4),
139265 => array(139588, "Courtyard", "Alinor Fountain, Four-Way Timeworn", 4),
139266 => array(139589, "Courtyard", "Alinor Fountain, Timeworn", 3),
139267 => array(139590, "Dining", "Alinor Table, Round Marble", 3),
139268 => array(139591, "Dining", "Alinor Table, Decorative Marble", 3),
139269 => array(139592, "Dining", "Alinor Table, Noble Grand", 4),
139270 => array(139593, "Dining", "Alinor Table, Noble Intimate", 3),
139271 => array(139594, "Hearth", "Alinor Urn, Gilded", 3),
139272 => array(139595, "Hearth", "Alinor Amphora, Delicate", 2),
139273 => array(139596, "Hearth", "Alinor Amphora, Slender", 4),
139274 => array(139597, "Hearth", "Alinor Urn, Stemmed", 2),
139275 => array(139598, "Hearth", "Alinor Amphora, Embossed", 3),
139276 => array(139599, "Hearth", "Alinor Urn, Bronze", 3),
139277 => array(139600, "Courtyard", "Alinor Bowl, Shallow Limestone", 2),
139278 => array(139601, "Courtyard", "Alinor Bowl, Stemmed Limestone", 2),
139279 => array(139602, "Courtyard", "Alinor Urn, Limestone Large", 3),
139280 => array(139603, "Undercroft", "Alinor Shrine, Limestone", 3),
139281 => array(139604, "Undercroft", "Alinor Shrine, Limestone Raised", 3),
139282 => array(139605, "Courtyard", "Alinor Pot, Limestone", 2),
139283 => array(139606, "Gallery", "Alinor Display Stand, Marble Wide", 3),
139284 => array(139607, "Gallery", "Alinor Display Stand, Marble", 3),
139285 => array(139608, "Undercroft", "Alinor Wall Shrine, Marble", 3),
139286 => array(139609, "Hearth", "Alinor Table Setting, Complete", 3),
139287 => array(139610, "Hearth", "Alinor Meal, Complete Setting", 3),
139288 => array(139611, "Hearth", "Alinor Goblet, Simple", 2),
139289 => array(139612, "Hearth", "Alinor Goblet, Silver Plain", 2),
139290 => array(139613, "Hearth", "Alinor Chalice, Delicate", 3),
139291 => array(139614, "Hearth", "Alinor Goblet, Silver Stamped", 2),
139292 => array(139615, "Hearth", "Alinor Chalice, Ornate", 3),
139293 => array(139616, "Hearth", "Alinor Chalice, Silver Ornate", 3),
139294 => array(139617, "Hearth", "Alinor Plate, Embossed", 2),
139295 => array(139618, "Hearth", "Alinor Platter, Scalloped", 3),
139296 => array(139619, "Hearth", "Alinor Meal, Individual", 2),
139297 => array(139620, "Hearth", "Alinor Bread Basket, Wrought Iron", 3),
139298 => array(139621, "Hearth", "Alinor Pie Dish, Cherry Pie", 2),
139299 => array(139622, "Hearth", "Alinor Bowl, Carved Wood", 2),
139300 => array(139623, "Hearth", "Alinor Bowl, Millet", 2),
139301 => array(139624, "Gallery", "Display Case, Standing", 4),
139303 => array(139625, "Gallery", "Display Case, Standing Arched", 4),
139304 => array(139626, "Gallery", "Display Case, Specimen", 4),
139305 => array(139627, "Gallery", "Display Case, Large", 4),
139306 => array(139628, "Conservatory", "Alinor Potted Plant, Perpetual Bloom", 4),
139307 => array(139629, "Conservatory", "Alinor Potted Plant, Triple Tiered", 3),
139308 => array(139630, "Conservatory", "Alinor Potted Plant, Double Tiered", 3),
139309 => array(139631, "Conservatory", "Alinor Potted Plant, Twin Saplings", 3),
139310 => array(139632, "Conservatory", "Alinor Windowbox, Purple Wisteria", 4),
139311 => array(139633, "Conservatory", "Alinor Windowbox, Blue Wisteria", 4),
139312 => array(139634, "Parlor", "Alinor Curtains, Tall Drawn", 3),
139313 => array(139635, "Parlor", "Alinor Curtains, Drawn", 3),
139314 => array(139636, "Parlor", "Alinor Drapes, Noble", 4),
139315 => array(139637, "Parlor", "Alinor Carpet, Alinor Crescent", 4),
139316 => array(139638, "Parlor", "Alinor Carpet, Verdant", 4),
139317 => array(139639, "Parlor", "Alinor Carpet, Vibrant", 3),
139318 => array(139640, "Parlor", "Alinor Rug, Alinor Seal", 3),
139319 => array(139641, "Parlor", "Alinor Runner, Royal", 4),
139320 => array(139642, "Parlor", "Alinor Carpet, Intricate", 2),
139321 => array(139643, "Parlor", "Alinor Tapestry, Alinor Dawn", 3),
139322 => array(139644, "Parlor", "Alinor Tapestry, Alinor Dusk", 3),
139323 => array(139645, "Parlor", "Alinor Tapestry, Royal Gryphons", 3),
139324 => array(139646, "Courtyard", "Alinor Statue, Kinlord", 4),
139325 => array(139647, "Courtyard", "Alinor Statue, Orator", 4),
151626 => array(151972, "Library", "Elsweyr Bookcase, Ancient Stone Full", 4),
151627 => array(151973, "Structures", "Elsweyr Plinth, Ancient Stone", 2),
151628 => array(151974, "Courtyard", "Elsweyr Pillar, Ancient Stone", 3),
151629 => array(151975, "Courtyard", "Elsweyr Monument, Ancient Stone Broken", 4),
151630 => array(151976, "Hearth", "Elsweyr Plate, Rough", 2),
151631 => array(151977, "Hearth", "Elsweyr Meal, Roasted Chicken Pieces", 2),
151632 => array(151978, "Hearth", "Elsweyr Bowl, Deep Ceramic", 3),
151633 => array(151979, "Hearth", "Elsweyr Meal, Hearty Noodles", 3),
151634 => array(151980, "Hearth", "Elsweyr Fish, Displayed", 3),
151635 => array(151981, "Hearth", "Elsweyr Plate, Umber Ceramic", 4),
151636 => array(151982, "Hearth", "Elsweyr Meal, Whole Roasted Chicken", 4),
151637 => array(151983, "Hearth", "Elsweyr Bowl, Shallow Ceramic", 3),
151638 => array(151984, "Hearth", "Elsweyr Meal, Root Vegetables", 3),
151639 => array(151985, "Hearth", "Elsweyr Bowl, Simple", 2),
151640 => array(151986, "Hearth", "Elsweyr Meal, Sweet Stew", 2),
151641 => array(151987, "Hearth", "Elsweyr Steamer, Ceramic", 3),
151642 => array(151988, "Hearth", "Elsweyr Pot, Stoneware", 2),
151644 => array(151989, "Hearth", "Elsweyr Cup of Rice, Gilded", 3),
151645 => array(151990, "Hearth", "Elsweyr Sugar Bowl, Gilded", 3),
151646 => array(151991, "Hearth", "Elsweyr Gravy Boat, Gilded", 3),
151647 => array(151992, "Hearth", "Elsweyr Steaming Pot, Ceramic", 4),
151648 => array(151993, "Workshop", "Elsweyr Bucket, Wooden", 2),
151649 => array(151994, "Hearth", "Elsweyr Spice Display, Turmeric Yellow", 2),
151650 => array(151995, "Hearth", "Elsweyr Spice Display, Matcha Green", 2),
151651 => array(151996, "Hearth", "Elsweyr Spice Display, Saffron Red", 2),
151652 => array(151997, "Hearth", "Elsweyr Pot, Tall", 4),
151653 => array(151998, "Hearth", "Elsweyr Pot, Cerulean", 3),
151654 => array(151999, "Hearth", "Elsweyr Pot, Floral", 3),
151655 => array(152000, "Hearth", "Elsweyr Pot, Waves", 2),
151656 => array(152001, "Hearth", "Elsweyr Pot, Ornate", 2),
151657 => array(152002, "Parlor", "Elsweyr Sugar Pipe, Gilded", 4),
151658 => array(152003, "Conservatory", "Elsweyr Sand Meditation Ring, Large", 3),
151659 => array(152004, "Conservatory", "Elsweyr Sand Meditation Ring, Small", 2),
151660 => array(152005, "Undercroft", "Elsweyr Altar, Ancient Stone", 3),
151661 => array(152006, "Undercroft", "Elsweyr Incense Burner, Tall Brass", 3),
151662 => array(152007, "Undercroft", "Elsweyr Incense Burner, Branched Brass", 4),
139375 => array(139648, "Hearth", "Alinor Amphora, Portrait", 3),
151664 => array(152009, "Suite", "Elsweyr Bed, Blue Four-Poster", 4),
151665 => array(152010, "Suite", "Elsweyr Bed, Yellow Four-Poster", 4),
151666 => array(152011, "Suite", "Elsweyr Bed, Quilted Single", 3),
151667 => array(152012, "Suite", "Elsweyr Bed, Quilted Double", 3),
151668 => array(152013, "Suite", "Elsweyr Bed, Rumpled Quilted Single", 3),
151669 => array(152014, "Suite", "Elsweyr Bed, Rumpled Quilted Double", 4),
151670 => array(152015, "Suite", "Elsweyr Bed, Elegant Single", 4),
151671 => array(152016, "Suite", "Elsweyr Bed, Elegant Double", 4),
151672 => array(152017, "Suite", "Elsweyr Bed, Rumpled Elegant Single", 4),
151673 => array(152018, "Suite", "Elsweyr Bed, Rumpled Elegant Double", 4),
151674 => array(152019, "Dining", "Elsweyr Stall Counter, Single", 3),
151675 => array(152020, "Dining", "Elsweyr Stall Counter, Triple", 4),
151676 => array(152021, "Parlor", "Elsweyr Curtains, Wide Maroon", 4),
151677 => array(152022, "Parlor", "Elsweyr Curtains, Flat Panel Maroon", 3),
139390 => array(139649, "Hearth", "Alinor Cabinet, Noble", 4),
151679 => array(152024, "Workshop", "Elsweyr Fabric, Hanging", 3),
151680 => array(152025, "Workshop", "Elsweyr Fabric, Hanging Cluster", 3),
151681 => array(152026, "Parlor", "Hakoshae Banner, Blue", 2),
151682 => array(152027, "Parlor", "Hakoshae Banner, Triple Insignia", 2),
151683 => array(152028, "Parlor", "Hakoshae Banner, Square", 2),
151684 => array(152029, "Structures", "Elsweyr Tent, Open", 4),
151685 => array(152030, "Courtyard", "Elsweyr Column, Stone Support", 3),
151686 => array(152031, "Courtyard", "Elsweyr Spire, Decorative", 3),
151687 => array(152032, "Parlor", "Elsweyr Couch, Wooden", 3),
147592 => array(147651, "Hearth", "Silver Kettle, Masterworked", 5),
147593 => array(147652, "Parlor", "Frog-Caller, Untuned", 5),
147594 => array(147653, "Workshop", "Pottery Wheel, Ever-Turning", 5),
147595 => array(147654, "Workshop", "Alchemical Apparatus, Condenser", 5),
147596 => array(147655, "Lighting", "Hlaalu Salt Lamp, Enchanted", 5),
147597 => array(147656, "Structures", "Dark Elf Tent, Canopy", 5),
147598 => array(147657, "Lighting", "Hlaalu Stove, Chiminea", 5),
151695 => array(152039, "Dining", "Elsweyr Bench, Wooden", 2),
151696 => array(152040, "Library", "Elsweyr Bookcase, Wooden", 3),
151697 => array(152041, "Library", "Elsweyr Bookcase, Wooden Full", 4),
151698 => array(152042, "Library", "Elsweyr Bookshelf, Elegant Wooden", 3),
151699 => array(152043, "Library", "Elsweyr Bookcase, Elegant Wooden Full", 4),
151700 => array(152044, "Library", "Elsweyr Bookcase, Short Elegant", 3),
151701 => array(152045, "Library", "Elsweyr Bookcase, Short Elegant Full", 4),
151702 => array(152046, "Hearth", "Elsweyr Cupboard, Elegant Wooden", 4),
151703 => array(152047, "Suite", "Elsweyr Wardrobe, Wide Elegant Wooden", 4),
151704 => array(152048, "Suite", "Elsweyr Wardrobe, Elegant Wooden", 4),
151705 => array(152049, "Suite", "Elsweyr Trunk, Floral", 4),
151706 => array(152050, "Suite", "Elsweyr Trunk, Peaked Floral", 4),
151707 => array(152051, "Suite", "Elsweyr Trunk, Peaked Embellished", 4),
151708 => array(152052, "Suite", "Elsweyr Chest, Red Gilded", 4),
151709 => array(152053, "Hearth", "Elsweyr Cabinet, Wall", 3),
151710 => array(152054, "Library", "Elsweyr Shelf, Elegant Wall", 3),
151711 => array(152055, "Hearth", "Elsweyr Cabinet, Elegant Wooden", 3),
151712 => array(152056, "Dining", "Elsweyr Cabinet, Wide Elegant Wooden", 4),
151713 => array(152057, "Suite", "Elsweyr Room-Divider, Elegant", 4),
151714 => array(152058, "Hearth", "Elsweyr Winerack, Cane Mead", 4),
151715 => array(152059, "Suite", "Elsweyr Nightstand, Wooden", 3),
151716 => array(152060, "Library", "Elsweyr Desk, Wooden", 3),
151717 => array(152061, "Dining", "Elsweyr Table, Square", 3),
151718 => array(152062, "Dining", "Elsweyr Table, Wide", 3),
151719 => array(152063, "Dining", "Elsweyr Table, Low", 3),
151720 => array(152064, "Dining", "Elsweyr Table, Low Square", 3),
151721 => array(152065, "Library", "Elsweyr Desk, Elegant Wooden", 4),
151722 => array(152066, "Dining", "Elsweyr Table, Long Wooden", 4),
151723 => array(152067, "Suite", "Elsweyr Nightstand, Octagonal Wooden", 4),
151724 => array(152068, "Suite", "Elsweyr Nightstand, Elegant Wooden", 4),
151725 => array(152069, "Dining", "Elsweyr Table, Elegant Wooden", 4),
151726 => array(152070, "Dining", "Elsweyr Table, Wide Elegant Wooden", 4),
151727 => array(152071, "Library", "Elsweyr Writing Desk, Elegant Wooden", 4),
151728 => array(152072, "Lighting", "Elsweyr Brazier, Ribbed", 3),
151729 => array(152073, "Lighting", "Elsweyr Brazier, Embellished", 3),
151730 => array(152074, "Lighting", "Elsweyr Brazier, Tall", 4),
151731 => array(152075, "Lighting", "Elsweyr Brazier, Massive", 4),
151732 => array(152076, "Lighting", "Elsweyr Lightpost, Ancient Stone", 3),
151733 => array(152077, "Lighting", "Elsweyr Streetlight, Inlaid Stone", 3),
151734 => array(152078, "Lighting", "Elsweyr Lightpost, Ancient Tall", 4),
151735 => array(152079, "Lighting", "Elsweyr Lightpost, Ancient Sturdy", 4),
151736 => array(152080, "Lighting", "Elsweyr Candle, Column", 4),
151737 => array(152081, "Lighting", "Elsweyr Lantern, Hanging Twist", 3),
151738 => array(152082, "Lighting", "Elsweyr Lantern, Metal Ring", 3),
151739 => array(152083, "Lighting", "Elsweyr Candle, Saucer", 2),
151740 => array(152084, "Lighting", "Elsweyr Sconce, Candle Elegant", 3),
151741 => array(152085, "Lighting", "Elsweyr Sconce, Candle Engraved", 3),
151742 => array(152086, "Lighting", "Elsweyr Sconce, Candle Carved", 3),
151743 => array(152087, "Lighting", "Elsweyr Sconce, Candle Shielded", 3),
151744 => array(152088, "Lighting", "Elsweyr Lantern, Twist", 3),
151745 => array(152089, "Lighting", "Hakoshae Lantern, Linked Rings", 4),
151746 => array(152090, "Lighting", "Hakoshae Lantern, Blue", 4),
151747 => array(152091, "Lighting", "Hakoshae Lantern, Crimson", 4),
151748 => array(152092, "Parlor", "Elsweyr Carpet, Botanical Grand", 4),
151749 => array(152093, "Parlor", "Elsweyr Carpet, Chaotic Symmetry", 3),
151750 => array(152094, "Parlor", "Elsweyr Carpet, Sandflowers", 4),
151751 => array(152095, "Parlor", "Elsweyr Rug, Sandflowers", 4),
151752 => array(152096, "Parlor", "Elsweyr Half-Rug, Sandflowers", 3),
151753 => array(152097, "Parlor", "Elsweyr Runner, Autumn Vines", 3),
151754 => array(152098, "Parlor", "Elsweyr Carpet, Gold-Ruby", 2),
151755 => array(152099, "Parlor", "Elsweyr Carpet, Gold-Emerald", 2),
151756 => array(152100, "Parlor", "Elsweyr Runner, Lavish Floral", 3),
151757 => array(152101, "Parlor", "Elsweyr Carpet, Blossoms on Blue", 4),
151758 => array(152102, "Parlor", "Elsweyr Tapestry, Water Flowers", 3),
151759 => array(152103, "Parlor", "Elsweyr Tapestry, Amber Vines", 3),
151760 => array(152104, "Parlor", "Elsweyr Tapestry, Verdant Blossom", 3),
151761 => array(152105, "Parlor", "Elsweyr Tapestry, Ruby-Maroon", 3),
151762 => array(152106, "Courtyard", "Hakoshae Hook, Block", 3),
151763 => array(152107, "Courtyard", "Hakoshae Pillar, Wooden Hooked", 3),
151764 => array(152108, "Courtyard", "Elsweyr Post, Masonry Wall", 2),
151765 => array(152109, "Structures", "Elsweyr Wall, Curved Masonry", 2),
151766 => array(152110, "Structures", "Elsweyr Wall, Short Masonry", 2),
151767 => array(152111, "Structures", "Elsweyr Wall, Wide Masonry", 2),
151768 => array(152112, "Courtyard", "Elsweyr Fountain, Four Lions", 4),
151769 => array(152113, "Structures", "Elsweyr Platform, Stepped", 3),
151770 => array(152114, "Structures", "Elsweyr Floor, Masonry", 3),
151771 => array(152115, "Structures", "Elsweyr Stairs, Masonry", 3),
151772 => array(152116, "Structures", "Elsweyr Foot Bridge, Masonry", 3),
151773 => array(152117, "Structures", "Elsweyr Platform, Wooden Large", 2),
151774 => array(152118, "Structures", "Elsweyr Platform, Wooden Small", 2),
151775 => array(152119, "Structures", "Elsweyr Wall, Rough Wooden", 2),
151839 => array(152120, "Parlor", "Elsweyr Couch, Elegant Wooden", 4),
151902 => array(152237, "Undercroft", "Elsweyr Sarcophagus, Ancient", 3),
151903 => array(152238, "Undercroft", "Elsweyr Sarcophagus Lid, Ancient", 3),
115151 => array(115906, "Structures", "Breton Stall, Merchant", 2),
115152 => array(115907, "Courtyard", "Breton Cart, Wheelbarrow", 2),
115153 => array(115908, "Suite", "Breton Bed, Bunk", 2),
115154 => array(115909, "Suite", "Breton Bed, Single", 2),
115155 => array(115910, "Dining", "Breton Pew, Windowed", 2),
115156 => array(115911, "Dining", "Breton Bench, Plain", 2),
115157 => array(115912, "Suite", "Breton Nightstand, Open", 2),
115158 => array(115913, "Library", "Breton Bookcase, Tall", 2),
115159 => array(115914, "Dining", "Breton Chair, Slatted", 2),
115160 => array(115915, "Dining", "Breton Chair, Windowed", 2),
115161 => array(115916, "Library", "Breton Shelves, Double", 2),
115162 => array(115917, "Hearth", "Breton Rack, Barrel", 2),
115163 => array(115918, "Suite", "Breton Dresser, Open", 2),
115164 => array(115919, "Library", "Breton Desk", 2),
115165 => array(115920, "Dining", "Breton Table, Dining", 2),
115166 => array(115921, "Dining", "Breton Trestle, Sturdy", 2),
115167 => array(115922, "Dining", "Breton Table, Kitchen", 2),
115168 => array(115923, "Library", "Breton Shelf, Long", 2),
115169 => array(115924, "Hearth", "Breton Pitcher, Ceramic", 2),
115170 => array(115925, "Parlor", "Breton Carpet, Green", 2),
115171 => array(115926, "Parlor", "Breton Carpet, Square", 2),
115172 => array(115927, "Hearth", "Breton Amphora, Ceramic", 2),
115173 => array(115928, "Parlor", "Breton Vase, Ceramic", 2),
115174 => array(115929, "Lighting", "Breton Lightpost, Single", 2),
115175 => array(115965, "Lighting", "Breton Lightpost, Arched", 3),
115176 => array(115966, "Lighting", "Breton Streetlight, Paired", 3),
115177 => array(115932, "Lighting", "Breton Sconce, Torch", 2),
115178 => array(115963, "Courtyard", "Breton Cart, Covered Open", 3),
115179 => array(115964, "Structures", "Breton Stall, Vending", 3),
115180 => array(115934, "Suite", "Breton Bed, Four-poster", 3),
115181 => array(115935, "Suite", "Breton Bed, Full", 3),
115182 => array(115936, "Dining", "Breton Pew, Knotwork", 3),
115183 => array(115937, "Dining", "Breton Bench, Knotwork", 3),
115184 => array(115938, "Library", "Breton Bookcase, Knotwork", 3),
115185 => array(115939, "Dining", "Breton Chair, Rocking", 3),
115186 => array(115940, "Suite", "Breton Chest, Knotwork", 3),
115187 => array(115941, "Hearth", "Breton Hutch, Knotwork", 3),
115188 => array(115942, "Hearth", "Breton Cupboard, Knotwork", 3),
115189 => array(115943, "Suite", "Breton Chest of Drawers", 3),
115190 => array(115944, "Dining", "Breton Counter, Long Cabinet", 3),
115191 => array(115945, "Hearth", "Breton Shelf, Barrel Rack", 3),
115192 => array(115946, "Workshop", "Breton Stool, Plain", 3),
115193 => array(115947, "Library", "Breton Desk, Knotwork", 3),
115194 => array(115948, "Parlor", "Breton Table, Round", 3),
115195 => array(115949, "Dining", "Breton Table, Square", 3),
115196 => array(115950, "Library", "Breton Shelf, Scrolled", 3),
115197 => array(115951, "Hearth", "Breton Rack, Wine", 3),
115198 => array(115952, "Parlor", "Breton Carpet, Full", 3),
115199 => array(115953, "Parlor", "Breton Rug, Starburst", 3),
115200 => array(115954, "Parlor", "Breton Carpet, Dark", 3),
115201 => array(115955, "Hearth", "Breton Pottery, Lid", 3),
115202 => array(115957, "Hearth", "Breton Amphora, Glazed", 3),
115203 => array(115956, "Hearth", "Breton Urn, Glazed", 3),
115204 => array(115959, "Parlor", "Breton Vase, Glazed", 3),
115205 => array(116006, "Parlor", "Breton Vase, Delicate", 4),
115208 => array(115931, "Courtyard", "Breton Street Post, Stone", 2),
115209 => array(115933, "Courtyard", "Breton Street Post, Plain", 2),
115210 => array(115961, "Lighting", "Breton Streetlight, Arched Stone", 3),
115211 => array(115962, "Lighting", "Breton Streetlight, Paired Stone", 3),
115212 => array(115930, "Lighting", "Breton Sconce, Sturdy Torch", 2),
115213 => array(115999, "Courtyard", "Breton Cart, Palanquin", 4),
115214 => array(115971, "Hearth", "Breton Sideboard, Knotwork", 4),
115215 => array(115972, "Dining", "Breton Chair, Padded", 4),
115216 => array(115973, "Dining", "Breton Armchair, Padded", 4),
115217 => array(115974, "Hearth", "Breton Cabinet, Knotwork", 4),
115218 => array(115975, "Hearth", "Breton Curio, Knotwork", 4),
115219 => array(115977, "Suite", "Breton Coffer, Knotwork", 4),
115220 => array(115979, "Suite", "Breton Dresser, Knotwork", 4),
115221 => array(115980, "Dining", "Breton Counter, Corner", 4),
115222 => array(115981, "Dining", "Breton Counter, Cabinet", 4),
115223 => array(115982, "Suite", "Breton Mirror, Knotwork", 4),
115224 => array(115983, "Suite", "Breton Nightstand, Knotwork", 4),
115225 => array(115984, "Suite", "Breton Divider, Folded Knotwork", 4),
115226 => array(115985, "Suite", "Breton Divider, Curved Knotwork", 4),
115227 => array(115986, "Workshop", "Breton Stool, Padded", 4),
115228 => array(115987, "Library", "Breton Desk, Scholar's", 4),
115229 => array(115988, "Dining", "Breton Table, Formal", 4),
115230 => array(115989, "Dining", "Breton Trestle, Formal", 4),
115231 => array(115997, "Suite", "Breton Footlocker, Knotwork", 4),
115232 => array(115998, "Suite", "Breton Armoire, Knotwork", 4),
115233 => array(116002, "Undercroft", "Breton Urn Lid, Striated", 4),
115234 => array(116003, "Hearth", "Breton Urn, Striated", 4),
115235 => array(115990, "Parlor", "Breton Rug, Bordered", 4),
115236 => array(115991, "Parlor", "Breton Runner, Bordered", 4),
115237 => array(115992, "Parlor", "Breton Carpet, Bordered", 4),
115238 => array(115996, "Gallery", "Breton Tablecloth, Striped", 4),
115239 => array(116001, "Parlor", "Breton Tapestry, Boughs", 4),
115240 => array(116008, "Lighting", "Breton Sconce, Floor", 4),
115241 => array(116009, "Lighting", "Breton Candle, Grand", 4),
115242 => array(116010, "Lighting", "Breton Candelabra, Formal", 4),
115243 => array(116011, "Lighting", "Breton Sconce, Wall", 4),
115244 => array(115976, "Parlor", "Breton Drapes, Grand", 4),
115245 => array(115995, "Lighting", "Breton Lamp, Oil", 4),
115246 => array(116004, "Lighting", "Breton Lamp, Hanging", 4),
115247 => array(116005, "Lighting", "Breton Streetlight, Full Stone", 4),
115248 => array(116007, "Lighting", "Breton Streetlight, Full", 4),
115249 => array(115967, "Courtyard", "Breton Figure, Stone", 4),
115250 => array(115970, "Suite", "Breton Bed, Canopy", 4),
115251 => array(115978, "Suite", "Breton Cradle, Infant", 4),
115252 => array(115994, "Gallery", "Breton Tablecloth, Blue", 4),
115253 => array(116000, "Parlor", "Breton Tapestry, Vines", 4),
115254 => array(115968, "Lighting", "Breton Chandelier, Wrought Iron", 4),
115255 => array(115969, "Parlor", "Breton Curtains, Window", 4),
115256 => array(115993, "Gallery", "Breton Medallion, Lion", 4),
115262 => array(121311, "Gallery", "Breton Throne", 5),
115272 => array(116012, "Courtyard", "Dark Elf Cart, Merchant", 2),
115273 => array(116013, "Hearth", "Dark Elf Rack, Barrel", 2),
115274 => array(116014, "Dining", "Dark Elf Armchair, Angled", 2),
115275 => array(116015, "Suite", "Dark Elf Chest of Drawers", 2),
115276 => array(116016, "Suite", "Dark Elf Bed, Single", 2),
115277 => array(116017, "Dining", "Dark Elf Table, Formal", 2),
115279 => array(116019, "Hearth", "Dark Elf Urn, Banded", 2),
115280 => array(116020, "Undercroft", "Dark Elf Basin, Ringed", 2),
115281 => array(116021, "Parlor", "Dark Elf Runner, Bordered", 2),
115282 => array(116022, "Parlor", "Dark Elf Carpet, Mottled", 2),
115283 => array(116023, "Parlor", "Dark Elf Carpet, Patterned", 2),
115284 => array(116024, "Parlor", "Dark Elf Tapestry, Emblazoned", 2),
115285 => array(116025, "Lighting", "Dark Elf Candle, Claw Base", 2),
115286 => array(116026, "Lighting", "Dark Elf Lantern, Oil", 2),
115287 => array(116027, "Courtyard", "Dark Elf Streetpost, Banner", 2),
115288 => array(116028, "Courtyard", "Dark Elf Streetpost, Banners", 2),
115289 => array(116029, "Courtyard", "Dark Elf Wagon, Merchant", 3),
115290 => array(116030, "Courtyard", "Dark Elf Caravan, Cargo", 3),
115291 => array(116031, "Suite", "Dark Elf Dresser, Angled", 3),
115292 => array(116032, "Library", "Dark Elf Bookcase, Sectioned", 3),
115293 => array(116033, "Dining", "Dark Elf Chair, Angled", 2),
115294 => array(116034, "Dining", "Dark Elf Counter, Bar", 3),
115295 => array(116035, "Suite", "Dark Elf Wardrobe, Scaled", 3),
115296 => array(116036, "Library", "Dark Elf Desk, Angled", 3),
115297 => array(116037, "Suite", "Dark Elf Bed, Full", 3),
115298 => array(116038, "Suite", "Dark Elf Pillow, Body", 3),
115299 => array(116039, "Workshop", "Dark Elf Stool, Angled", 3),
115300 => array(116040, "Parlor", "Dark Elf Table, Tea", 4),
115301 => array(116041, "Dining", "Dark Elf Trestle, Scaled", 3),
115302 => array(116042, "Hearth", "Dark Elf Wine Rack, Sturdy", 3),
115303 => array(116043, "Library", "Dark Elf Shelf, Barrel", 3),
115304 => array(116044, "Hearth", "Dark Elf Pot, Scaled", 3),
115305 => array(116045, "Hearth", "Dark Elf Decanter, Glass", 3),
115306 => array(116046, "Hearth", "Dark Elf Cruet, Glass", 3),
115307 => array(116047, "Parlor", "Dark Elf Flags, Hanging", 3),
115308 => array(116048, "Hearth", "Dark Elf Cauldron, Banded", 3),
115309 => array(116049, "Parlor", "Dark Elf Carpet, Mossy", 3),
115310 => array(116050, "Parlor", "Dark Elf Carpet, Fungal", 3),
115311 => array(116051, "Parlor", "Dark Elf Rug, Fungal", 4),
115312 => array(116052, "Gallery", "Dark Elf Hook, Wall", 3),
115313 => array(116053, "Lighting", "Dark Elf Lantern, Caged", 4),
115314 => array(116054, "Lighting", "Dark Elf Lantern, Hanging", 4),
115315 => array(116055, "Lighting", "Dark Elf Streetlamp, Stone", 3),
115316 => array(116056, "Lighting", "Dark Elf Streetlamps, Stone", 3),
115317 => array(116057, "Parlor", "Dark Elf Sofa, Angled", 4),
115318 => array(116058, "Suite", "Dark Elf Bed, Canopy", 4),
115319 => array(116059, "Dining", "Dark Elf Counter, Corner", 4),
115320 => array(116060, "Dining", "Dark Elf Counter, Block", 4),
115321 => array(116061, "Suite", "Dark Elf Nightstand, Angled", 4),
115322 => array(116062, "Suite", "Dark Elf Pillow, Cushion", 4),
115323 => array(116063, "Suite", "Dark Elf Pillow, Roll", 4),
115324 => array(116064, "Suite", "Dark Elf Divider, Folded", 4),
115325 => array(116065, "Parlor", "Dark Elf End Table, Angled", 3),
115326 => array(116066, "Suite", "Dark Elf Trunk, Buckled", 4),
115327 => array(116067, "Suite", "Dark Elf Wardrobe, Angled", 4),
115328 => array(116068, "Hearth", "Dark Elf Kettle Cooker", 4),
115329 => array(116069, "Hearth", "Dark Elf Pot, Banded", 3),
115330 => array(116070, "Parlor", "Dark Elf Carpet, Ashen", 3),
115331 => array(116071, "Parlor", "Dark Elf Rug, Mossy", 4),
115332 => array(116072, "Parlor", "Dark Elf Rug, Striated", 4),
115333 => array(116073, "Gallery", "Dark Elf Medallion, Tribunal", 4),
115334 => array(116074, "Undercroft", "Dark Elf Censer, Hanging", 4),
115335 => array(116075, "Undercroft", "Dark Elf Thurible, Caged", 4),
115337 => array(116077, "Hearth", "Dark Elf Cauldron, Ringed", 4),
115338 => array(116078, "Lighting", "Dark Elf Lantern, Ashen", 3),
115339 => array(116079, "Lighting", "Dark Elf Candelabra, Angled", 4),
115340 => array(116080, "Lighting", "Dark Elf Candle, Votive Tray", 4),
115351 => array(116147, "Courtyard", "Nord Cart, Hay", 2),
115352 => array(116148, "Suite", "Nord Trunk, Heavy", 2),
115353 => array(116149, "Hearth", "Nord Hutch, Rough", 2),
115354 => array(116150, "Suite", "Nord Dresser, Rough", 2),
115355 => array(116151, "Suite", "Nord Nightstand, Rough", 2),