-
Notifications
You must be signed in to change notification settings - Fork 0
/
food-table.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 910.
1154 lines (1154 loc) · 176 KB
/
food-table.csv
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
"name","group","protein (g)","calcium (g)","sodium (g)","fiber (g)","vitaminc (g)","potassium (g)","carbohydrate (g)","sugars (g)","fat (g)","water (g)","calories","saturated (g)","monounsat (g)","polyunsat (g)"
"Butter oil, anhydrous","Dairy and Egg Products","0.28","0.004","0.002","null","0","0.005","null","null","99.48","0.24","876","61.924","28.732","3.694"
"Butter, salted","Dairy and Egg Products","0.85","0.024","0.714","null","0","0.024","0.06","0.06","81.11","15.87","717","51.368","21.021","3.043"
"Cheese fondue","Dairy and Egg Products","14.23","0.476","0.132","null","0","0.105","3.77","null","13.47","61.61","229","8.721","3.563","0.484"
"Cheese food, cold pack, american","Dairy and Egg Products","19.66","0.497","0.966","null","0","0.363","8.32","null","24.46","43.12","331","15.355","7.165","0.719"
"Cheese food, pasteurized process, swiss","Dairy and Egg Products","21.92","0.723","1.552","null","0","0.284","4.5","null","24.14","43.67","323","15.487","6.801","0.6"
"Cheese spread, cream cheese base","Dairy and Egg Products","7.1","0.071","0.673","null","0","0.112","3.5","3.5","28.6","58.5","295","18.02","8.071","1.033"
"Cheese, blue","Dairy and Egg Products","21.4","0.528","1.395","null","0","0.256","2.34","0.5","28.74","42.41","353","18.669","7.778","0.8"
"Cheese, brick","Dairy and Egg Products","23.24","0.674","0.56","null","0","0.136","2.79","0.51","29.68","41.11","371","18.764","8.598","0.784"
"Cheese, brie","Dairy and Egg Products","20.75","0.184","0.629","null","0","0.152","0.45","0.45","27.68","48.42","334","17.41","8.013","0.826"
"Cheese, camembert","Dairy and Egg Products","19.8","0.388","0.842","null","0","0.187","0.46","0.46","24.26","51.8","300","15.259","7.023","0.724"
"Cheese, cheddar","Dairy and Egg Products","24.9","0.721","0.621","null","0","0.098","1.28","0.52","33.14","36.75","403","21.092","9.391","0.942"
"Cheese, cheshire","Dairy and Egg Products","23.37","0.643","0.7","null","0","0.095","4.78","null","30.6","37.65","387","19.475","8.671","0.87"
"Cheese, colby","Dairy and Egg Products","23.76","0.685","0.604","null","0","0.127","2.57","0.52","32.11","38.2","394","20.218","9.28","0.953"
"Cheese, cottage, creamed, large or small curd","Dairy and Egg Products","11.12","0.083","0.364","null","0","0.104","3.38","2.67","4.3","79.79","98","1.718","0.778","0.123"
"Cheese, cream","Dairy and Egg Products","5.93","0.098","0.321","null","0","0.138","4.07","3.21","34.24","54.44","342","19.292","8.62","1.437"
"Cheese, edam","Dairy and Egg Products","24.99","0.731","0.965","null","0","0.188","1.43","1.43","27.8","41.56","357","17.572","8.125","0.665"
"Cheese, feta","Dairy and Egg Products","14.21","0.493","1.116","null","0","0.062","4.09","4.09","21.28","55.22","264","14.946","4.623","0.591"
"Cheese, fontina","Dairy and Egg Products","25.6","0.55","0.8","null","0","0.064","1.55","1.55","31.14","37.92","389","19.196","8.687","1.654"
"Cheese, fresh, queso fresco","Dairy and Egg Products","18.09","0.566","0.751","null","0","0.129","2.98","2.32","23.82","51.42","299","12.94","5.966","1.106"
"Cheese, gjetost","Dairy and Egg Products","9.65","0.4","0.6","null","0","1.409","42.65","null","29.51","13.44","466","19.16","7.879","0.938"
"Cheese, goat, hard type","Dairy and Egg Products","30.52","0.895","0.346","null","0","0.048","2.17","2.17","35.59","29.01","452","24.609","8.117","0.845"
"Cheese, goat, semisoft type","Dairy and Egg Products","21.58","0.298","0.515","null","0","0.158","2.54","2.54","29.84","45.52","364","20.639","6.808","0.709"
"Cheese, goat, soft type","Dairy and Egg Products","18.52","0.14","0.368","null","0","0.026","0.89","0.89","21.08","60.75","268","14.575","4.807","0.501"
"Cheese, gouda","Dairy and Egg Products","24.94","0.7","0.819","null","0","0.121","2.22","2.22","27.44","41.46","356","17.614","7.747","0.657"
"Cheese, gruyere","Dairy and Egg Products","29.81","1.011","0.336","null","0","0.081","0.36","0.36","32.34","33.19","413","18.913","10.043","1.733"
"Cheese, limburger","Dairy and Egg Products","20.05","0.497","0.8","null","0","0.128","0.49","0.49","27.25","48.42","327","16.746","8.606","0.495"
"Cheese, mexican, queso anejo","Dairy and Egg Products","21.44","0.68","1.131","null","0","0.087","4.63","4.63","29.98","38.06","373","19.033","8.528","0.901"
"Cheese, mexican, queso asadero","Dairy and Egg Products","22.6","0.661","0.655","null","0","0.086","2.87","2.87","28.26","42.16","356","17.939","8.038","0.85"
"Cheese, mexican, queso chihuahua","Dairy and Egg Products","21.56","0.651","0.617","null","0","0.052","5.56","5.56","29.68","39.13","374","18.843","8.443","0.892"
"Cheese, monterey","Dairy and Egg Products","24.48","0.746","0.536","null","0","0.081","0.68","0.5","30.28","41.01","373","19.066","8.751","0.899"
"Cheese, mozzarella, part skim milk","Dairy and Egg Products","24.26","0.782","0.619","null","0","0.084","2.77","1.13","15.92","53.78","254","10.114","4.51","0.472"
"Cheese, mozzarella, whole milk","Dairy and Egg Products","22.17","0.505","0.627","null","0","0.076","2.19","1.03","22.35","50.01","300","13.152","6.573","0.765"
"Cheese, muenster","Dairy and Egg Products","23.41","0.717","0.628","null","0","0.134","1.12","1.12","30.04","41.77","368","19.113","8.711","0.661"
"Cheese, neufchatel","Dairy and Egg Products","9.15","0.117","0.334","null","0","0.152","3.59","3.19","22.78","63.11","253","12.79","5.784","0.97"
"Cheese, parmesan, grated","Dairy and Egg Products","38.46","1.109","1.529","null","0","0.125","4.06","0.9","28.61","20.84","431","17.301","8.375","1.173"
"Cheese, parmesan, hard","Dairy and Egg Products","35.75","1.184","1.602","null","0","0.092","3.22","0.8","25.83","29.16","392","16.41","7.515","0.569"
"Cheese, parmesan, shredded","Dairy and Egg Products","37.86","1.253","1.696","null","0","0.097","3.41","0.9","27.34","25","415","17.37","8.734","0.661"
"Cheese, pasteurized process, pimento","Dairy and Egg Products","22.13","0.614","1.428","0.1","0.0023","0.162","1.73","0.62","31.2","39.08","375","19.663","8.937","0.988"
"Cheese, port de salut","Dairy and Egg Products","23.78","0.65","0.534","null","0","0.136","0.57","0.57","28.2","45.45","352","16.691","9.338","0.729"
"Cheese, provolone","Dairy and Egg Products","25.58","0.756","0.876","null","0","0.138","2.14","0.56","26.62","40.95","351","17.078","7.393","0.769"
"Cheese, ricotta, part skim milk","Dairy and Egg Products","11.39","0.272","0.125","null","0","0.125","5.14","0.31","7.91","74.41","138","4.927","2.314","0.26"
"Cheese, ricotta, whole milk","Dairy and Egg Products","11.26","0.207","0.084","null","0","0.105","3.04","0.27","12.98","71.7","174","8.295","3.627","0.385"
"Cheese, romano","Dairy and Egg Products","31.8","1.064","1.2","null","0","0.086","3.63","0.73","26.94","30.91","387","17.115","7.838","0.593"
"Cheese, roquefort","Dairy and Egg Products","21.54","0.662","1.809","null","0","0.091","2","null","30.64","39.38","369","19.263","8.474","1.32"
"Cheese, swiss","Dairy and Egg Products","26.93","0.791","0.192","null","0","0.077","5.38","1.32","27.8","37.12","380","17.779","7.274","0.972"
"Cheese, tilsit","Dairy and Egg Products","24.41","0.7","0.753","null","0","0.065","1.88","null","25.98","42.86","340","16.775","7.136","0.721"
"Cheese, white, queso blanco","Dairy and Egg Products","20.38","0.69","0.704","null","0","0.126","2.53","1.76","24.31","48.7","310","13.661","6.459","1.149"
"Cream, fluid, half and half","Dairy and Egg Products","2.96","0.105","0.041","null","0.0009","0.13","4.3","0.16","11.5","80.57","130","7.158","3.321","0.427"
"Cream, fluid, heavy whipping","Dairy and Egg Products","2.05","0.065","0.038","null","0.0006","0.075","2.79","0.11","37","57.71","345","23.032","10.686","1.374"
"Cream, fluid, light (coffee cream or table cream)","Dairy and Egg Products","2.7","0.096","0.04","null","0.0008","0.122","3.66","0.14","19.31","73.75","195","12.02","5.577","0.717"
"Cream, fluid, light whipping","Dairy and Egg Products","2.17","0.069","0.034","null","0.0006","0.097","2.96","0.11","30.91","63.5","292","19.337","9.093","0.884"
"Cream, sour, cultured","Dairy and Egg Products","2.07","0.11","0.08","null","0.0009","0.141","2.88","3.5","19.73","74.46","193","11.507","5.068","0.84"
"Cream, whipped, cream topping, pressurized","Dairy and Egg Products","3.2","0.101","0.13","null","0","0.147","12.49","8","22.22","61.33","257","13.831","6.418","0.825"
"Dessert topping, pressurized","Dairy and Egg Products","0.98","0.005","0.062","null","0","0.019","16.07","16.07","22.3","60.37","264","18.912","1.927","0.241"
"Dulce de Leche","Dairy and Egg Products","6.84","0.251","0.129","null","0","0.35","55.35","49.74","7.35","28.71","315","4.534","2.143","0.375"
"Eggnog","Dairy and Egg Products","4.55","0.13","0.054","null","0.0015","0.165","8.05","8.41","4.19","82.54","88","2.591","1.302","0.198"
"Ensure plus, liquid nutrition","Dairy and Egg Products","5.16","0.079","0.095","null","0.0119","0.175","19.88","19.88","4.52","69.84","141","0.673","1.283","3.111"
"KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product","Dairy and Egg Products","16.3","0.418","1.705","0.2","0.0004","0.297","16.2","8.2","9.5","51.5","215","6.4","null","null"
"KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce","Dairy and Egg Products","12","0.359","1.638","0.3","0.0004","0.24","9.2","6.7","21","51.5","276","13.1","null","null"
"KRAFT VELVEETA Pasteurized Process Cheese Spread","Dairy and Egg Products","16.3","0.466","1.499","null","0.0002","0.335","9.8","8.1","22","45.8","303","14.4","null","null"
"Milk shakes, thick chocolate","Dairy and Egg Products","3.05","0.132","0.111","0.3","0","0.224","21.15","20.85","2.7","72.2","119","1.681","0.78","0.1"
"Milk shakes, thick vanilla","Dairy and Egg Products","3.86","0.146","0.095","null","0","0.183","17.75","17.75","3.03","74.45","112","1.886","0.875","0.113"
"Milk, human, mature, fluid","Dairy and Egg Products","1.03","0.032","0.017","null","0.005","0.051","6.89","6.89","4.38","87.5","70","2.009","1.658","0.497"
"Milk, indian buffalo, fluid","Dairy and Egg Products","3.75","0.169","0.052","null","0.0023","0.178","5.18","null","6.89","83.39","97","4.597","1.787","0.146"
"Milk, sheep, fluid","Dairy and Egg Products","5.98","0.193","0.044","null","0.004200000000000001","0.137","5.36","null","7","80.7","108","4.603","1.724","0.308"
"Sour cream, light","Dairy and Egg Products","3.5","0.141","0.071","null","0.0009","0.212","7.1","0.22","10.6","78.1","138","6.6","3.1","0.4"
"Whey, acid, fluid","Dairy and Egg Products","0.76","0.103","0.048","null","0.0001","0.143","5.12","5.12","0.09","93.42","24","0.057","0.025","0.004"
"Whey, sweet, fluid","Dairy and Egg Products","0.85","0.047","0.054","null","0.0001","0.161","5.14","5.14","0.36","93.12","27","0.23","0.1","0.011"
"Yogurt, plain, skim milk, 13 grams protein per 8 ounce","Dairy and Egg Products","5.73","0.199","0.077","null","0.0009","0.255","7.68","7.68","0.18","85.23","56","0.116","0.049","0.005"
"Yogurt, plain, whole milk, 8 grams protein per 8 ounce","Dairy and Egg Products","3.47","0.121","0.046","null","0.0005","0.155","4.66","4.66","3.25","87.9","61","2.096","0.893","0.092"
"Fish oil, cod liver","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","22.608","46.711","22.541"
"Fish oil, herring","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","21.29","56.564","15.604"
"Fish oil, menhaden","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","30.427","26.694","34.197"
"Fish oil, menhaden, fully hydrogenated","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","95.6","null","null"
"Fish oil, salmon","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","19.872","29.037","40.324"
"Fish oil, sardine","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","29.892","33.841","31.867"
"Lard","Fats and Oils","null","0","0","null","0","0","null","null","100","null","902","39.2","45.1","11.2"
"Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries","Fats and Oils","1.9","0.066","0.879","null","0.0004","0.094","null","null","80.2","15.8","714","20.442","46.692","9.265"
"Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy","Fats and Oils","0.18","0.003","0.886","null","0","0.018","0.71","null","80","17.17","714","16.321","37.46","22.422"
"Margarine, regular, hard, soybean (hydrogenated)","Fats and Oils","0.9","0.03","0.943","null","0.0002","0.042","0.9","null","80.5","15.7","719","16.7","39.3","20.9"
"Mayonnaise dressing, no cholesterol","Fats and Oils","null","0.007","0.486","null","0","0.014","0.3","0.3","77.8","21.7","688","10.784","18.026","45.539"
"Oil, PAM cooking spray, original","Fats and Oils","0.26","0","0.059","null","0","0","20.69","null","78.69","0.11","792","11.6","55.79","9.82"
"Oil, almond","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","8.2","69.9","17.4"
"Oil, apricot kernel","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","6.3","60","29.3"
"Oil, avocado","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","11.56","70.554","13.486"
"Oil, babassu","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","81.2","11.4","1.6"
"Oil, canola","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","7.365","63.276","28.142"
"Oil, cocoa butter","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","59.7","32.9","3"
"Oil, coconut","Fats and Oils","null","0","0","null","0","0","null","null","100","null","862","86.5","5.8","1.8"
"Oil, cooking and salad, ENOVA, 80% diglycerides","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","4.63","37.016","53.37"
"Oil, corn and canola","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","8.026","58.537","29.113"
"Oil, corn, industrial and retail, all purpose salad or cooking","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","12.948","27.576","54.677"
"Oil, corn, peanut, and olive","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","14.367","48.033","33.033"
"Oil, cottonseed, salad or cooking","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","25.9","17.8","51.9"
"Oil, cupu assu","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","53.2","38.7","3.8"
"Oil, flaxseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","9.4","20.2","66"
"Oil, grapeseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","9.6","16.1","69.9"
"Oil, hazelnut","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","7.4","78","10.2"
"Oil, industrial, canola for salads, woks and light frying","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","7.758","61.15","26.397"
"Oil, industrial, canola, high oleic","Fats and Oils","null","0","0","null","0","0","null","null","100","null","900","6.787","72.734","15.785"
"Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners","Fats and Oils","null","0.001","0.007","null","0","0.002","null","null","99.5","0.07","880","93.536","0.267","null"
"Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","86.002","5.935","1.657"
"Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy","Fats and Oils","null","0.001","0.006","null","0","0.002","null","null","100","0.04","884","88.965","4.934","null"
"Oil, industrial, soy ( partially hydrogenated), all purpose","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","24.75","61.248","9.295"
"Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","15.341","34.63","45.228"
"Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","28.421","59.715","7.095"
"Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","25.883","59.133","10.305"
"Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","18.101","40.262","36.847"
"Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","17.683","41.929","35.638"
"Oil, industrial, soy, fully hydrogenated","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","93.966","1.341","0.383"
"Oil, industrial, soy, refined, for woks and light frying","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","15.34","21.701","58.208"
"Oil, mustard","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","11.582","59.187","21.23"
"Oil, nutmeg butter","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","90","4.8","null"
"Oil, oat","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","19.62","35.11","40.87"
"Oil, olive, salad or cooking","Fats and Oils","null","0.001","0.002","null","0","0.001","null","null","100","null","884","13.808","72.961","10.523"
"Oil, palm","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","49.3","37","9.3"
"Oil, peanut, salad or cooking","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","16.9","46.2","32"
"Oil, poppyseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","13.5","19.7","62.4"
"Oil, rice bran","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","19.7","39.3","35"
"Oil, sesame, salad or cooking","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","14.2","39.7","41.7"
"Oil, sheanut","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","46.6","44","5.2"
"Oil, soybean lecithin","Fats and Oils","null","0","0","null","0","0","null","null","100","null","763","15.005","10.977","45.318"
"Oil, soybean, salad or cooking","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","15.65","22.783","57.74"
"Oil, soybean, salad or cooking, (partially hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","14.9","43","37.6"
"Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","18","29.5","48.1"
"Oil, teaseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","21.1","51.5","23"
"Oil, tomatoseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","19.7","22.8","53.1"
"Oil, ucuhuba butter","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","85.2","6.7","2.9"
"Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","6.511","71.991","17.098"
"Oil, walnut","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","9.1","22.8","63.3"
"Oil, wheat germ","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","18.8","15.1","61.7"
"Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light","Fats and Oils","1.53","0.013","0.848","0.2","0","0.063","9.39","5.38","34.18","52.44","333","3.288","16.662","11.776"
"Salad dressing, KRAFT MIRACLE WHIP LIGHT Dressing","Fats and Oils","0.6","0.005","0.821","0.1","0","0.023","14.4","9.9","18.6","63.3","231","2.9","null","null"
"Salad dressing, KRAFT Mayo Light Mayonnaise","Fats and Oils","0.6","0.006","0.797","0.1","0.0003","0.052","8.5","4.2","32.9","55.4","334","5","null","null"
"Salad dressing, Mayonnaise dressing, diet, no cholesterol","Fats and Oils","0.9","0.014","0.711","null","0","0.009","23.9","6.4","33.4","39.9","390","5","9","18"
"Salad dressing, bacon and tomato","Fats and Oils","1.8","0.004","0.905","0.2","0.0088","0.108","2","2","35","58.7","326","5.435","8.415","19.584"
"Salad dressing, blue or roquefort cheese dressing, commercial, regular","Fats and Oils","1.37","0.037","1.041","0.4","0.0007","0.088","4.62","3.48","51.1","39.71","476","8.275","13.279","27.545"
"Salad dressing, buttermilk, lite","Fats and Oils","1.25","0.04","1.12","1.1","0.0006","0.132","21.33","3.77","12.42","62.04","202","1.25","2.794","4.213"
"Salad dressing, caesar dressing, regular","Fats and Oils","2.17","0.048","1.209","0.5","0.0003","0.029","3.3","2.81","57.85","34.3","542","8.789","13.504","32.857"
"Salad dressing, coleslaw","Fats and Oils","0.9","0.014","0.71","0.1","0","0.009","23.8","20.11","33.4","39.9","390","4.9","9","18"
"Salad dressing, french dressing, commercial, regular","Fats and Oils","0.77","0.024","0.836","null","0.0036","0.067","15.58","15.95","44.81","36.56","457","5.648","8.433","21.029"
"Salad dressing, french, cottonseed, oil, home recipe","Fats and Oils","0.1","0.006","0.658","null","0","0.024","3.4","null","70.2","24.2","631","18.2","null","null"
"Salad dressing, french, home recipe","Fats and Oils","0.1","0.006","0.658","null","0.0006","0.024","3.4","null","70.2","24.2","631","12.6","20.7","33.7"
"Salad dressing, green goddess, regular","Fats and Oils","1.9","0.034","0.867","0.1","0.0002","0.058","7.36","6.67","43.33","45.03","427","5.978","9.423","23.165"
"Salad dressing, home recipe, vinegar and oil","Fats and Oils","null","0","0.001","null","0","0.008","2.5","2.5","50.1","47.4","449","9.1","14.8","24.1"
"Salad dressing, italian dressing, commercial, regular","Fats and Oils","0.38","0.007","1.018","null","0","0.048","10.43","8.32","28.37","56.4","291","4.474","6.315","12.941"
"Salad dressing, mayonnaise, light","Fats and Oils","0.88","0.008","0.673","null","0","0.04","8.2","4.34","33.09","55.91","324","5.209","8.135","17.953"
"Salad dressing, peppercorn dressing, commercial, regular","Fats and Oils","1.2","0.022","1.103","null","0.0006","0.176","3.5","2.45","61.4","31.9","564","10.527","14.84","32.972"
"Salad dressing, ranch dressing, commercial, regular","Fats and Oils","1.03","0.031","1.094","0.7","0.0034","0.062","6.69","2.45","51.39","38.18","484","8.019","11.394","28.329"
"Salad dressing, russian dressing","Fats and Oils","0.69","0.013","1.133","0.7","0.006","0.173","31.9","17.68","26.18","38.53","355","2.39","5.928","14.83"
"Salad dressing, sesame seed dressing, regular","Fats and Oils","3.1","0.019","1","1","0","0.157","8.6","8.32","45.2","39.2","443","6.2","11.9","25.1"
"Salad dressing, spray-style dressing, assorted flavors","Fats and Oils","0.16","0.006","1.102","0.3","0.0007","0","16.6","14.29","10.75","71","165","1.643","null","null"
"Salad dressing, sweet and sour","Fats and Oils","0.1","0.004","0.208","null","0.0081","0.033","3.7","3.7","null","95.7","15","null","null","null"
"Salad dressing, thousand island, commercial, regular","Fats and Oils","1.09","0.017","0.863","0.8","0","0.107","14.64","15.18","35.06","46.51","370","5.092","7.881","18.22"
"Shortening bread, soybean (hydrogenated) and cottonseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","22","33","40.6"
"Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","27.2","54.2","14.1"
"Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","91.3","2.2","1"
"Shortening frying (heavy duty), palm (hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","47.5","40.6","7.5"
"Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","21.1","73.7","0.4"
"Shortening household soybean (hydrogenated) and palm","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","25.02","42.51","26.64"
"Shortening industrial, lard and vegetable oil","Fats and Oils","null","0","0","null","0","0","null","null","100","null","900","35.7","40.7","19.2"
"Shortening industrial, soybean (hydrogenated) and cottonseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","25.6","58","12"
"Shortening, confectionery, fractionated palm","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","65.5","29.6","0.5"
"Shortening, household, lard and vegetable oil","Fats and Oils","null","0","0","null","0","0","null","null","100","null","900","40.3","44.4","10.9"
"Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","25","44.5","26.1"
"Shortening, industrial, soy (partially hydrogenated ) and corn for frying","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","17.416","40.824","36.038"
"Shortening, industrial, soy (partially hydrogenated ) for baking and confections","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","18.788","71.023","5.4"
"Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","18.358","38.87","38.009"
"Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","30.423","50.973","14.204"
"Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","28.843","29.583","37.174"
"Shortening, special purpose for cakes and frostings, soybean (hydrogenated)","Fats and Oils","null","0","0","null","0","0","null","null","100","null","884","20.001","36.555","37.991"
"Shortening, vegetable, household, composite","Fats and Oils","null","0.001","0.004","null","0","0","null","null","99.97","null","884","24.98","41.186","28.097"
"Vegetable oil, palm kernel","Fats and Oils","null","0","0","null","0","0","null","null","100","null","862","81.5","11.4","1.6"
"Chicken, feet, boiled","Poultry Products","19.4","0.088","0.067","null","0","0.031","0.2","null","14.6","65.8","215","3.92","5.5","2.98"
"Turkey patties, breaded, battered, fried","Poultry Products","14","0.014","0.8","0.5","0","0.275","15.7","0.32","18","49.7","283","4.69","7.47","4.71"
"Turkey sticks, breaded, battered, fried","Poultry Products","14.2","0.014","0.838","null","0","0.26","17","null","16.9","49.4","279","4.38","6.92","4.39"
"Fish broth","Soups, Sauces, and Gravies","2","0.03","0.318","null","0","0.086","0.4","0.09","0.6","96","16","0.133","0.108","0.245"
"Gravy, HEINZ Home Style Savory Beef Gravy","Soups, Sauces, and Gravies","1.09","0.006","0.587","0.7","0","0.022","6.24","0.52","1.13","89.97","39","0.4","0.432","0.046"
"Sauce, barbecue","Soups, Sauces, and Gravies","null","0.012","0.847","0.6","0.0007","0.208","36.25","26.06","0.29","60.34","150","null","0.074","0.17"
"Sauce, worcestershire","Soups, Sauces, and Gravies","null","0.107","0.98","null","0.013","0.8","19.46","10.03","null","78.54","78","null","null","null"
"Soup, egg drop, Chinese restaurant","Soups, Sauces, and Gravies","1.16","0.007","0.37","0.4","0.0065","0.022","4.29","0.09","0.61","92.87","27","0.166","0.191","0.129"
"Soup, hot and sour, Chinese restaurant","Soups, Sauces, and Gravies","2.58","0.019","0.376","0.5","0","0.055","4.35","0.42","1.21","90.65","39","0.229","0.288","0.311"
"Soup, wonton, Chinese restaurant","Soups, Sauces, and Gravies","2.08","0.005","0.406","0.2","0.0007","0.032","5.25","0.34","0.26","91.18","32","0.062","0.077","0.071"
"BUTCHER BOY MEATS, INC., Turkey Franks","Sausages and Luncheon Meats","13.45","0.148","1.162","0.2","0.0008","0.189","4.66","2.49","18.17","59.06","239","5.86","5.542","5.046"
"Bacon and beef sticks","Sausages and Luncheon Meats","29.1","0.014","1.42","null","0","0.385","0.8","0.8","44.2","21.6","517","16","21.9","4.3"
"Barbecue loaf, pork, beef","Sausages and Luncheon Meats","15.84","0.055","1.334","null","0","0.329","6.4","null","8.9","64.82","173","3.17","4.14","0.81"
"Beerwurst, beer salami, pork","Sausages and Luncheon Meats","14.24","0.008","1.24","null","0","0.253","2.06","null","18.8","61.46","238","6.28","8.98","2.36"
"Beerwurst, beer salami, pork and beef","Sausages and Luncheon Meats","14","0.027","0.732","0.9","0.0006","0.244","3.76","null","22.53","56.71","277","8.438","10.105","2.08"
"Beerwurst, pork and beef","Sausages and Luncheon Meats","14","0.027","0.732","0.9","0.0006","0.244","4.27","null","22.53","56.71","276","8.438","10.105","2.08"
"Blood sausage","Sausages and Luncheon Meats","14.6","0.006","0.68","null","0","0.038","1.29","1.29","34.5","47.3","379","13.4","15.9","3.46"
"Bologna, beef","Sausages and Luncheon Meats","10.27","0.031","1.08","null","0.0152","0.172","3.98","null","28.19","54.26","311","11.134","12.218","0.776"
"Bologna, beef and pork","Sausages and Luncheon Meats","15.2","0.085","0.736","null","0.0008","0.315","5.49","4.42","24.59","51.87","308","9.301","10.526","1.12"
"Bologna, chicken, pork","Sausages and Luncheon Meats","10.31","0.196","1.24","null","0.0132","0.162","4.19","null","30.61","50.85","336","9.863","13.172","4.348"
"Bologna, chicken, pork, beef","Sausages and Luncheon Meats","11.33","0.092","1.12","null","0.0158","0.313","5.61","null","22.73","56.42","272","6.997","9.698","3.475"
"Bologna, chicken, turkey, pork","Sausages and Luncheon Meats","9.88","0.082","0.922","null","0.0197","0.152","5.65","null","26.18","55.25","298","7.99","10.555","4.672"
"Bologna, pork","Sausages and Luncheon Meats","15.3","0.011","1.184","null","0","0.281","0.73","null","19.87","60.6","247","6.839","9.732","2.107"
"Bologna, pork and turkey, lite","Sausages and Luncheon Meats","13.06","0.048","0.716","null","0","0.138","3.45","null","16.06","64.87","211","5.46","7.548","3.051"
"Bologna, pork, turkey and beef","Sausages and Luncheon Meats","11.56","0.031","1.055","null","0.011","0.222","6.66","1.35","29.25","45.37","336","11.7","12.789","2.512"
"Bologna, turkey","Sausages and Luncheon Meats","11.42","0.123","1.252","0.5","0.013300000000000001","0.135","4.68","2.9","16.05","64.55","209","4.355","6.836","3.854"
"Bratwurst, beef and pork, smoked","Sausages and Luncheon Meats","12.2","0.007","0.848","null","0","0.283","2","null","26.34","56.65","297","6.08","8","1.58"
"Bratwurst, pork, beef and turkey, lite, smoked","Sausages and Luncheon Meats","14.45","0.014","0.982","null","0","0.246","1.62","1.57","13.53","65.89","186","null","7.165","0.846"
"Braunschweiger (a liver sausage), pork","Sausages and Luncheon Meats","14.5","0.009","1.16","null","0","0.199","3.1","null","28.5","50.6","327","9.307","12.731","3.193"
"Brotwurst, pork, beef, link","Sausages and Luncheon Meats","14.3","0.048","1.112","null","0","0.281","2.93","2.98","27.8","51.3","323","9.93","13.34","2.83"
"CARL BUDDIG, Smoked Sliced Beef","Sausages and Luncheon Meats","19.3","0.014","1.431","null","0","0.336","0.6","null","6.5","69.4","139","2.6","null","0.3"
"CARL BUDDIG, Smoked Sliced Chicken, light and dark meat","Sausages and Luncheon Meats","17.9","0.124","0.954","null","0","0.256","0.7","null","10.1","68.2","165","2.6","null","2.1"
"CARL BUDDIG, Smoked Sliced Ham","Sausages and Luncheon Meats","18.5","0.016","1.381","null","0","0.34","1.1","null","9.3","67","163","3.1","null","1.1"
"CARL BUDDIG, Smoked Sliced Turkey, light and dark meat","Sausages and Luncheon Meats","17.5","0.06","1.096","null","0","0.329","1.8","null","9.1","68.2","160","3.1","null","2.7"
"Cheesefurter, cheese smokie, pork, beef","Sausages and Luncheon Meats","14.1","0.058","1.082","null","0","0.206","1.37","1.51","29","52.5","328","10.47","13.64","3.02"
"Chicken roll, light meat","Sausages and Luncheon Meats","16.64","0.016","1.059","null","0","0.439","4.66","0.57","2.73","72.41","110","0.621","0.89","0.374"
"Chicken spread","Sausages and Luncheon Meats","18.01","0.016","0.722","0.3","0","0.106","4.05","0.47","17.56","57.41","158","3.23","4.8","2.35"
"Chorizo, pork and beef","Sausages and Luncheon Meats","24.1","0.008","1.235","null","0","0.398","1.86","null","38.27","31.85","455","14.38","18.4","3.46"
"Corned beef loaf, jellied","Sausages and Luncheon Meats","22.9","0.011","0.953","null","0","0.101","null","null","6.1","69.1","153","2.6","2.68","0.32"
"Dutch brand loaf, chicken, pork and beef","Sausages and Luncheon Meats","12","0.007","1.055","0.3","0.0014","0.21","3.93","0.9","22.91","58.1","273","9.043","11.433","3.053"
"Frankfurter, beef","Sausages and Luncheon Meats","11.24","0.014","1.14","null","0","0.156","4.06","3.39","29.57","52.01","330","11.688","14.305","1.182"
"Frankfurter, beef and pork","Sausages and Luncheon Meats","11.53","0.011","1.12","null","0","0.167","1.72","null","27.64","55.96","305","10.77","13.67","2.73"
"Frankfurter, beef, heated","Sausages and Luncheon Meats","11.54","0.012","1.154","null","0","0.147","3.77","3.39","29.46","52.18","326","11.436","14.321","1.064"
"Frankfurter, chicken","Sausages and Luncheon Meats","15.51","0.074","0.844","0.4","0","0.202","2.74","0.53","16.19","62.5","223","3.856","5.932","3.873"
"Frankfurter, meat","Sausages and Luncheon Meats","10.26","0.099","1.09","null","0","0.152","4.17","null","25.76","56.31","290","null","null","null"
"Frankfurter, meat, heated","Sausages and Luncheon Meats","9.77","0.099","1.013","null","0","0.141","4.9","null","24.31","57.82","278","null","null","null"
"Frankfurter, pork","Sausages and Luncheon Meats","12.81","0.267","0.816","0.1","0.002","0.264","0.28","null","23.68","59.85","269","8.719","10.89","2.233"
"Frankfurter, turkey","Sausages and Luncheon Meats","12.23","0.148","1.078","null","0","0.392","3.81","1.21","17.29","62.99","223","4.028","5.736","3.949"
"HORMEL WRANGLER Beef Franks","Sausages and Luncheon Meats","12.58","0.014","0.994","null","0.019899999999999998","0.172","2.11","1.67","25.69","56.67","290","10.62","13.01","0.89"
"Ham and cheese loaf or roll","Sausages and Luncheon Meats","13.6","0.058","1.08","null","0","0.294","4","null","18.7","60.3","241","6.966","8.59","2.022"
"Ham and cheese spread","Sausages and Luncheon Meats","16.18","0.217","1.197","null","0","0.162","2.28","null","18.53","59.13","245","8.62","7.08","1.38"
"Ham salad spread","Sausages and Luncheon Meats","8.68","0.008","0.912","null","0","0.15","10.64","null","15.53","62.6","216","5.049","7.171","2.689"
"Ham, minced","Sausages and Luncheon Meats","16.28","0.01","1.245","null","0","0.311","1.84","null","20.68","57.35","263","7.181","9.581","2.47"
"Ham, sliced, extra lean","Sausages and Luncheon Meats","18.85","0.006","1.06","null","0","0.649","0.75","null","2.59","73.9","107","0.66","0.992","0.214"
"Headcheese, pork","Sausages and Luncheon Meats","13.83","0.016","0.83","null","0","0.031","null","null","10.9","73.84","157","3.402","5.601","1.134"
"Honey loaf, pork, beef","Sausages and Luncheon Meats","11.12","0.017","1.32","0.8","0","0.343","9.98","0.17","4.47","70.47","125","1.449","2.024","0.472"
"Honey roll sausage, beef","Sausages and Luncheon Meats","18.58","0.009","1.322","null","0","0.291","2.18","null","10.5","64.78","182","4.08","4.82","0.49"
"Kielbasa, Polish, turkey and beef, smoked","Sausages and Luncheon Meats","13.1","0","1.2","null","0.0148","0","3.9","null","17.6","62","226","6.23","8.27","2.33"
"Knackwurst, knockwurst, pork, beef","Sausages and Luncheon Meats","11.1","0.011","0.93","null","0","0.199","3.2","null","27.7","55.3","307","10.21","12.81","2.92"
"Lebanon bologna, beef","Sausages and Luncheon Meats","19.03","0.02","1.374","null","0.0009","0.33","0.44","null","10.44","65.77","172","2.794","4.436","0.258"
"Liver cheese, pork","Sausages and Luncheon Meats","15.2","0.008","1.225","null","0.003","0.226","2.1","null","25.6","53.6","304","8.96","12.26","3.42"
"Liver sausage, liverwurst, pork","Sausages and Luncheon Meats","14.1","0.026","0.86","null","0","0.17","2.2","null","28.5","52.1","326","10.6","13.34","2.6"
"Liverwurst spread","Sausages and Luncheon Meats","12.38","0.022","0.7","2.5","0.0035","0.17","5.89","1.65","25.45","53.53","305","9.925","12.286","2.427"
"Luncheon meat, beef, loaved","Sausages and Luncheon Meats","14.4","0.011","1.329","null","0","0.208","2.9","null","26.2","52.5","308","11.214","12.288","0.863"
"Luncheon meat, beef, thin sliced","Sausages and Luncheon Meats","17.94","0.006","1.117","null","0","0.308","2.59","null","3.4","72.53","117","1.101","1.289","0.089"
"Luncheon meat, pork, beef","Sausages and Luncheon Meats","12.59","0.009","1.293","null","0","0.202","2.33","null","32.16","49.28","353","11.59","15.09","3.74"
"Luncheon sausage, pork and beef","Sausages and Luncheon Meats","15.38","0.013","1.182","null","0","0.245","1.58","null","20.9","58.62","260","7.62","9.93","2.05"
"Luxury loaf, pork","Sausages and Luncheon Meats","18.4","0.036","1.225","null","0","0.377","4.9","null","4.8","68.2","141","1.58","2.33","0.51"
"Macaroni and cheese loaf, chicken, pork and beef","Sausages and Luncheon Meats","11.76","0.122","0.003","null","0.0167","0.313","11.63","null","14.96","57.63","228","5.614","7.614","1.657"
"Mortadella, beef, pork","Sausages and Luncheon Meats","16.37","0.018","1.246","null","0","0.163","3.05","null","25.39","52.3","311","9.51","11.38","3.12"
"Mother's loaf, pork","Sausages and Luncheon Meats","12.07","0.043","1.127","null","0.001","0.225","7.53","null","22.3","54.9","282","7.95","10.34","2.58"
"New england brand sausage, pork, beef","Sausages and Luncheon Meats","17.27","0.007","1.22","null","0","0.321","4.83","null","7.58","66.77","161","2.56","3.64","0.72"
"OSCAR MAYER, Bologna (beef light)","Sausages and Luncheon Meats","11.75","0.013","1.151","null","0","0.156","5.6","2.3","14.5","65","200","5.82","7.16","0.47"
"OSCAR MAYER, Bologna (beef)","Sausages and Luncheon Meats","11.05","0.012","1.179","null","0","0.168","2.45","1.4","29.1","54.15","316","12.85","15.21","1.11"
"OSCAR MAYER, Bologna (chicken, pork, beef)","Sausages and Luncheon Meats","10.9","0.069","1.033","null","0","0.154","2.4","1.4","29.4","53.7","318","10.49","14.48","3.93"
"OSCAR MAYER, Bologna Light (pork, chicken, beef)","Sausages and Luncheon Meats","11.5","0.05","1.117","null","0","0.163","5.7","2.6","14.75","64.75","202","5.62","7.3","1.54"
"OSCAR MAYER, Braunschweiger Liver Sausage (saren tube)","Sausages and Luncheon Meats","14.2","0.009","1.118","0.1","0.009","0.184","2.3","0.7","30.6","49.6","341","10.89","15.57","3.76"
"OSCAR MAYER, Braunschweiger Liver Sausage (sliced)","Sausages and Luncheon Meats","14.25","0.009","1.159","0.2","0.009","0.202","2.6","1.2","29.35","50.5","331","10.94","15.48","3.73"
"OSCAR MAYER, Chicken Breast (honey glazed)","Sausages and Luncheon Meats","19.85","0.01","1.438","null","0","0.329","3.95","4.3","1.5","70.4","109","0.394","0.564","0.218"
"OSCAR MAYER, Ham (water added, boiled)","Sausages and Luncheon Meats","16.6","0.01","1.348","null","0","0.283","1.2","0.3","3.7","74.6","104","1.247","1.727","0.356"
"OSCAR MAYER, Ham (water added, honey)","Sausages and Luncheon Meats","16.7","0.01","1.248","null","0","0.281","3.1","3.1","3.5","72.7","111","1.167","1.669","0.314"
"OSCAR MAYER, Ham and Cheese Loaf","Sausages and Luncheon Meats","13.85","0.067","1.167","null","0","0.265","3.75","3.3","18.2","60.5","234","6.561","8.278","1.798"
"OSCAR MAYER, Head Cheese","Sausages and Luncheon Meats","15.7","0.021","1.073","null","0","0.029","null","null","13.5","67.5","185","4.299","6.913","1.344"
"OSCAR MAYER, Luncheon Loaf (spiced)","Sausages and Luncheon Meats","13.5","0.109","1.226","null","0","0.27","7","4.6","16.9","58.6","234","5.367","7.393","2.789"
"OSCAR MAYER, Old Fashioned Loaf","Sausages and Luncheon Meats","13.1","0.113","1.184","null","0","0.294","8","4.6","16.3","58.9","231","5.6","7.86","2.64"
"OSCAR MAYER, Olive Loaf (chicken, pork, turkey)","Sausages and Luncheon Meats","9.9","0.111","1.318","null","0","0.186","6.9","3.2","21.8","57.5","263","7.02","11.13","2.63"
"OSCAR MAYER, Salami (Genoa)","Sausages and Luncheon Meats","20.7","0.02","1.826","null","0","0.334","1.2","0.2","33.3","39.1","388","12.04","16.75","2.71"
"OSCAR MAYER, Salami (for beer)","Sausages and Luncheon Meats","13.5","0.009","1.231","null","0","0.212","1.9","1.1","18.2","62.9","225","6.388","8.824","1.896"
"OSCAR MAYER, Salami (hard)","Sausages and Luncheon Meats","25.9","0.012","1.976","null","0","0.356","1.6","0.2","28.7","38.25","368","11.085","15.011","2.856"
"OSCAR MAYER, Salami Beef Cotto","Sausages and Luncheon Meats","14.2","0.007","1.309","null","0","0.207","1.9","1.1","15.7","64.5","206","6.74","6.91","0.78"
"OSCAR MAYER, Salami Cotto (beef, pork, chicken)","Sausages and Luncheon Meats","13.4","0.075","1.095","null","0","0.217","2.2","1.5","20.3","60.6","245","8.47","10.15","1.67"
"OSCAR MAYER, Sandwich Spread (pork, chicken, beef)","Sausages and Luncheon Meats","6.5","0.027","0.821","0.3","0","0.118","15.4","7.9","16.6","59.2","237","5.754","7.201","2.483"
"OSCAR MAYER, Smokie Links Sausage","Sausages and Luncheon Meats","12.4","0.01","1.007","null","0","0.18","1.7","1.6","27.3","55.5","302","9.38","13.17","2.78"
"OSCAR MAYER, Smokies (beef)","Sausages and Luncheon Meats","12.25","0.011","0.967","null","0","0.173","1.95","1.4","26.65","56.3","296","11.25","12.8","0.9"
"OSCAR MAYER, Smokies (cheese)","Sausages and Luncheon Meats","12.9","0.045","1.046","null","0","0.181","1.8","1.5","27.1","54.9","303","10.16","12.99","2.7"
"OSCAR MAYER, Smokies Sausage Little (pork, turkey)","Sausages and Luncheon Meats","12.4","0.011","1.022","null","0","0.173","1.8","1.4","27.1","55.5","301","9.444","12.889","2.87"
"OSCAR MAYER, Smokies Sausage Little Cheese (pork, turkey)","Sausages and Luncheon Meats","13.5","0.067","1.036","null","0","0.152","1.7","0.3","28.2","53.2","315","11.16","13.19","2.79"
"OSCAR MAYER, Summer Sausage Beef Thuringer Cervelat","Sausages and Luncheon Meats","14.6","0.008","1.424","null","0","0.233","1.9","1.1","27","52.5","309","11.8","12.9","1.13"
"OSCAR MAYER, Summer Sausage Thuringer Cervalat","Sausages and Luncheon Meats","14.9","0.009","1.43","null","0","0.228","0.9","0.5","26.7","53.3","304","10.727","12.142","2.229"
"OSCAR MAYER, Wieners (beef franks)","Sausages and Luncheon Meats","11.35","0.01","1.025","null","0","0.13","2.35","1.6","30.26","53.22","327","12.46","14.74","1.36"
"OSCAR MAYER, Wieners (beef franks, bun length)","Sausages and Luncheon Meats","11.1","0.013","1.025","null","0","0.158","2.65","1.8","30.1","53.15","324","12.53","14.62","0.96"
"OSCAR MAYER, Wieners (beef franks, light)","Sausages and Luncheon Meats","10.7","0.021","1.079","null","0","0.401","4.1","2.1","14.9","66.8","193","6.32","7.52","0.99"
"OSCAR MAYER, Wieners (light pork, turkey, beef)","Sausages and Luncheon Meats","12.1","0.038","1.036","null","0","0.397","2.8","1.5","14.9","66.7","194","5.199","6.763","2.044"
"OSCAR MAYER, Wieners (pork, turkey)","Sausages and Luncheon Meats","10.95","0.06","0.988","null","0","0.162","2.7","1.8","29.9","53.35","327","9.467","13.806","4.255"
"OSCAR MAYER, Wieners Little (pork, turkey)","Sausages and Luncheon Meats","10.9","0.013","1.039","null","0","0.159","2.3","1.6","28.7","55","311","11.15","14.33","2.67"
"OSCAR MAYER. Bologna (Wisconsin made ring)","Sausages and Luncheon Meats","11.8","0.015","0.827","null","0","0.139","2.6","2.2","28.4","54.7","313","11.14","14.09","1.97"
"Olive loaf, pork","Sausages and Luncheon Meats","11.8","0.109","1.484","null","0","0.297","9.2","null","16.5","58.2","235","5.85","7.87","1.93"
"Oven-roasted chicken breast roll","Sausages and Luncheon Meats","14.59","0.006","0.883","null","0","0.324","1.79","0.43","7.65","72.98","134","2.48","2.816","1.456"
"Pastrami, turkey","Sausages and Luncheon Meats","16.3","0.011","0.981","0.1","0.0081","0.345","1.79","3.34","6.21","71.73","133","1.699","2.131","1.635"
"Pate, truffle flavor","Sausages and Luncheon Meats","11.2","0.07","0.807","null","0.002","0.138","6.3","null","28.5","51.8","327","10.1","13.6","3.42"
"Peppered loaf, pork, beef","Sausages and Luncheon Meats","17.3","0.054","1.523","null","0","0.394","4.53","4.61","6.37","67.4","149","2.28","3","0.5"
"Pepperoni, pork, beef","Sausages and Luncheon Meats","22.68","0.022","1.653","null","0.0007","0.279","null","null","43.98","30.72","494","14.86","17.166","3.426"
"Pickle and pimiento loaf, pork","Sausages and Luncheon Meats","11.23","0.109","1.304","1.5","0.0078","0.371","8.46","8.46","15.95","60.29","225","5.287","7.06","2.804"
"Picnic loaf, pork, beef","Sausages and Luncheon Meats","14.92","0.047","1.164","null","0","0.267","4.76","null","16.64","60.2","232","6.07","7.68","1.89"
"Polish sausage, pork","Sausages and Luncheon Meats","14.1","0.012","0.876","null","0.001","0.237","1.63","null","28.72","53.15","326","10.33","13.52","3.08"
"Poultry salad sandwich spread","Sausages and Luncheon Meats","11.64","0.01","0.377","null","0.001","0.183","7.41","null","13.52","66.17","200","3.45","3.25","6.22"
"Roast beef spread","Sausages and Luncheon Meats","15.27","0.023","0.724","0.2","0.0002","0.259","3.73","0.71","16.28","61.7","223","6.4","5.587","0.427"
"Salami, Italian, pork","Sausages and Luncheon Meats","21.7","0.01","1.89","null","0","0.34","1.2","1.2","37","34.6","425","13.1","18.2","3.6"
"Salami, pork, beef, less sodium","Sausages and Luncheon Meats","15.01","0.094","0.623","0.2","0.0007","1.372","15.38","6.21","30.5","33.74","396","10.58","13.32","3.067"
"Sandwich spread, pork, beef","Sausages and Luncheon Meats","7.66","0.012","1.013","0.2","0","0.11","11.94","null","17.34","60.28","235","5.977","7.584","2.565"
"Sausage, Berliner, pork, beef","Sausages and Luncheon Meats","15.27","0.012","1.297","null","0","0.283","2.59","2.35","17.2","60.97","230","6.08","8","1.58"
"Sausage, Italian, sweet, links","Sausages and Luncheon Meats","16.13","0.025","0.57","null","0.0002","0.194","2.1","null","8.42","71.6","149","3.257","3.629","0.493"
"Sausage, Italian, turkey, smoked","Sausages and Luncheon Meats","15.05","0.021","0.928","0.9","0.0304","0.197","4.65","3.2","8.75","68.5","158","null","null","null"
"Sausage, Polish, pork and beef, smoked","Sausages and Luncheon Meats","12.07","0.007","0.848","null","0","0.189","1.98","null","26.56","56.58","301","9.207","12.302","2.826"
"Sausage, chicken and beef, smoked","Sausages and Luncheon Meats","18.5","0.011","1.02","null","0","0.139","null","null","24","55.6","295","7.16","10.19","4.72"
"Sausage, chicken, beef, pork, skinless, smoked","Sausages and Luncheon Meats","13.6","0.1","1.034","null","0","0.246","8.1","1.9","14.3","60.5","216","4.8","7.165","0.846"
"Sausage, smoked link sausage, pork and beef","Sausages and Luncheon Meats","12","0.012","0.911","null","0","0.179","2.42","null","28.73","53.97","320","9.769","12.238","3.927"
"Sausage, turkey, hot, smoked","Sausages and Luncheon Meats","15.05","0.021","0.928","0.9","0.0304","0.197","4.65","3.2","8.75","68.5","158","3.77","2.38","1.572"
"Scrapple, pork","Sausages and Luncheon Meats","8.06","0.007","0.659","0.3","0.0025","0.158","14.06","0.2","13.87","62.47","213","4.732","6.156","1.664"
"Smoked link sausage, pork","Sausages and Luncheon Meats","11.98","0.011","0.827","null","0","0.483","0.18","0.94","28.23","56.49","307","9.313","11.212","3.626"
"Thuringer, cervelat, summer sausage, beef, pork","Sausages and Luncheon Meats","17.45","0.009","1.3","null","0.0166","0.26","3.33","0.85","30.43","45.18","362","11.51","12.97","1.2"
"Turkey breast meat","Sausages and Luncheon Meats","17.07","0.008","1.015","0.5","0.0057","0.302","4.21","3.51","1.66","74.07","104","0.333","0.494","0.312"
"Turkey ham, sliced, extra lean, prepackaged or deli-sliced","Sausages and Luncheon Meats","19.6","0.005","1.038","null","0","0.299","2.93","null","3.8","72","124","1.09","0.864","1.148"
"Turkey roll, light and dark meat","Sausages and Luncheon Meats","18.14","0.032","0.586","null","0","0.27","2.12","null","6.99","70.15","149","2.04","2.3","1.78"
"Turkey roll, light meat","Sausages and Luncheon Meats","14.79","0.007","1.042","null","0","0.427","5.03","null","1.66","74.87","98","0.318","0.421","0.255"
"Turkey, white, rotisserie, deli cut","Sausages and Luncheon Meats","13.5","0.016","1.2","0.4","0.01","0.349","7.7","4","3","72","112","0.118","0.591","0.37"
"AMARANTH FLAKES","Breakfast Cereals","15.54","0.017","0.035","9.5","0.0025","0.353","71.15","0.42","7","3","353","1.325","2.148","2.752"
"Cereals ready to eat, composite character cereals (movies, TV), brand A","Breakfast Cereals","6.13","0.107","0.648","3.6","0.0525","0.165","85.9","39.25","2.33","2.68","389","0.525","0.975","0.775"
"Cereals ready to eat, composite character cereals (movies, TV), brand B","Breakfast Cereals","3.33","0.333","0.533","null","0.02","0.033","90","46.67","1.67","2.5","388","null","1.667","null"
"Cereals, QUAKER, Instant Grits Product--Ham 'n' Cheese","Breakfast Cereals","10.83","0.023","1.93","4.2","0","0.212","71.98","null","4.69","6.82","359","1.06","2.26","1.05"
"KASHI GOLEAN Crisp Toasted Berry Crumble","Breakfast Cereals","17.8","0.137","0.244","14.9","0","0.321","68.4","20.9","8","4","368","1","3.6","2.4"
"Milk and cereal bar","Breakfast Cereals","6.47","0.41","0.319","0.4","0.0154","0.254","72.05","45.97","10.98","8.69","413","9.114","1.186","0.239"
"Millet, puffed","Breakfast Cereals","13","0.008","0.005","2.7","0","0.04","80","0.55","3.4","2.5","354","0.67","0.717","1.98"
"Rice and Wheat cereal bar","Breakfast Cereals","9.09","0.031","0.5","1.8","0","0.143","72.73","31.8","9.09","7.5","409","null","6.567","2.049"
"Candied fruit","Fruits and Fruit Juices","0.34","0.018","0.098","1.6","0","0.056","82.74","80.68","0.07","16.7","322","0.01","0.008","0.02"
"Cranberry juice, unsweetened","Fruits and Fruit Juices","0.39","0.008","0.002","0.1","0.009300000000000001","0.077","12.2","12.1","0.13","87.13","46","0.01","0.023","0.07"
"Dates, deglet noor","Fruits and Fruit Juices","2.45","0.039","0.002","8","0.0004","0.656","75.03","63.35","0.39","20.53","282","0.032","0.036","0.019"
"Dates, medjool","Fruits and Fruit Juices","1.81","0.064","0.001","6.7","0","0.696","74.97","66.47","0.15","21.32","277","null","null","null"
"Horned melon (Kiwano)","Fruits and Fruit Juices","1.78","0.013","0.002","null","0.0053","0.123","7.56","null","1.26","88.97","44","null","null","null"
"Orange juice, chilled, includes from concentrate","Fruits and Fruit Juices","0.68","0.011","0.002","0.3","0.033600000000000005","0.178","11.54","8.31","0.12","87.22","49","0.014","0.022","0.03"
"Plantains, green, fried","Fruits and Fruit Juices","1.5","0.004","0.002","3.5","0.0034","0.482","49.17","3.63","11.81","36.08","309","3.69","4.353","2.697"
"Pomegranate juice, bottled","Fruits and Fruit Juices","0.15","0.011","0.009","0.1","0.0001","0.214","13.13","12.65","0.29","85.95","54","0.077","0.059","0.05"
"Prune puree","Fruits and Fruit Juices","2.1","0.031","0.023","3.3","0.0043","0.852","65.1","39","0.2","30","257","0.016","null","null"
"Raisins, golden seedless","Fruits and Fruit Juices","3.39","0.053","0.012","4","0.0032","0.746","79.52","59.19","0.46","14.97","302","0.151","0.019","0.135"
"Raisins, seeded","Fruits and Fruit Juices","2.52","0.028","0.028","6.8","0.0054","0.825","78.47","null","0.54","16.57","296","0.178","0.022","0.159"
"Raisins, seedless","Fruits and Fruit Juices","3.07","0.05","0.011","3.7","0.0023","0.749","79.18","59.19","0.46","15.43","299","0.058","0.051","0.037"
"HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork","Pork Products","18.74","0.014","0.378","null","0.0017","0.307","0.84","0.28","9.62","69.17","167","3.6","4.43","0.83"
"HORMEL Canadian Style Bacon","Pork Products","16.88","0.006","1.016","null","0.0014","0.279","1.87","1.43","4.94","72.95","122","1.83","2.49","0.62"
"HORMEL, Cure 81 Ham","Pork Products","18.43","0.004","1.038","null","0.0016","0.319","0.21","null","3.59","74.25","106","1.17","1.75","0.37"
"Pork, pickled pork hocks","Pork Products","19.11","0.019","1.05","null","0","0.047","null","null","10.54","68.02","171","3.231","5.134","1.198"
"Beans, snap, green, microwaved","Vegetables and Vegetable Products","2.31","0.055","0.003","3.4","0.0073","0.323","6.41","3.22","0.5","90.04","39","null","null","null"
"Cabbage, japanese style, fresh, pickled","Vegetables and Vegetable Products","1.6","0.048","0.277","3.1","0.0007","0.853","5.67","1.3","0.1","91.4","30","0.013","0.008","0.048"
"Cabbage, mustard, salted","Vegetables and Vegetable Products","1.1","0.067","0.717","3.1","0","0.246","5.63","1.4","0.1","92.1","28","0.013","0.007","0.048"
"Catsup","Vegetables and Vegetable Products","1.74","0.018","1.114","0.3","0.015099999999999999","0.382","25.15","22.77","0.31","69.15","97","0.043","0.047","0.126"
"Eggplant, pickled","Vegetables and Vegetable Products","0.9","0.025","1.674","2.5","0","0.012","9.77","4.8","0.7","86.9","49","0.14","0.063","0.294"
"Mushrooms, portabella, exposed to ultraviolet light, grilled","Vegetables and Vegetable Products","3.28","0.003","0.011","2.2","0","0.437","4.44","2.26","0.58","90.66","29","0.079","0.011","0.287"
"Mushrooms, portabella, grilled","Vegetables and Vegetable Products","3.28","0.003","0.011","2.2","0","0.437","4.44","2.26","0.58","90.66","29","0.079","0.011","0.287"
"Mushrooms, shiitake, stir-fried","Vegetables and Vegetable Products","3.45","0.002","0.005","3.6","0","0.326","7.68","0.3","0.35","87.74","39","0.03","null","0.14"
"Mushrooms, white, microwaved","Vegetables and Vegetable Products","3.91","0.006","0.017","2.5","0","0.488","6.04","null","0.46","88.52","35","0.06","0.02","0.28"
"Mushrooms, white, stir-fried","Vegetables and Vegetable Products","3.58","0.004","0.012","1.8","0","0.396","4.04","null","0.33","91.1","26","0.04","null","0.16"
"Peppers, sweet, green, sauteed","Vegetables and Vegetable Products","0.78","0.008","0.017","1.8","0.177","0.134","4.22","2.17","11.85","82.65","127","1.59","2.337","5.9"
"Peppers, sweet, red, sauteed","Vegetables and Vegetable Products","1.04","0.007","0.021","1.8","0.1628","0.193","6.57","4.28","12.75","78.95","133","1.557","2.287","5.719"
"Pickle relish, hamburger","Vegetables and Vegetable Products","0.63","0.004","1.096","3.2","0.0023","0.076","34.48","null","0.54","61.12","129","0.052","0.269","0.131"
"Pickle relish, hot dog","Vegetables and Vegetable Products","1.5","0.005","1.091","1.5","0.001","0.078","23.35","null","0.46","71.65","91","0.044","0.227","0.11"
"Pickle relish, sweet","Vegetables and Vegetable Products","0.37","0.003","0.811","1.1","0.001","0.025","35.06","29.13","0.47","62.07","130","0.054","0.209","0.122"
"Pickles, cucumber, dill or kosher dill","Vegetables and Vegetable Products","0.6","0.042","0.875","1.1","0.0008","0.092","2.59","1.31","0.14","94.33","12","0.036","0.002","0.056"
"Pickles, cucumber, sour","Vegetables and Vegetable Products","0.33","0","1.208","1.2","0.001","0.023","2.26","1.06","0.2","94.08","11","0.052","0.003","0.081"
"Pickles, cucumber, sweet (includes bread and butter pickles)","Vegetables and Vegetable Products","0.58","0.061","0.457","1","0.0007","0.1","21.15","18.27","0.41","76.2","91","0.067","0.004","0.106"
"Poi","Vegetables and Vegetable Products","0.38","0.016","0.012","0.4","0.004","0.183","27.23","0.39","0.14","71.64","112","0.029","0.011","0.058"
"Potato pancakes","Vegetables and Vegetable Products","6.08","0.032","0.764","3.3","0.027600000000000003","0.622","27.81","1.79","14.76","47.77","268","2.496","3.73","7.516"
"Potatoes, Russet, flesh and skin, baked","Vegetables and Vegetable Products","2.63","0.018","0.014","2.3","0.0083","0.55","21.44","1.08","0.13","74.45","97","0.034","0.003","0.056"
"Potatoes, red, flesh and skin, baked","Vegetables and Vegetable Products","2.3","0.009","0.012","1.8","0.0126","0.545","19.59","1.43","0.15","76.67","89","0.026","0.002","0.043"
"Potatoes, white, flesh and skin, baked","Vegetables and Vegetable Products","2.1","0.01","0.007","2.1","0.0126","0.544","21.08","1.53","0.15","75.43","94","0.022","0.002","0.037"
"Radishes, hawaiian style, pickled","Vegetables and Vegetable Products","1.1","0.028","0.789","2.2","0","0.333","5.2","2","0.3","91.5","28","0.092","0.05","0.135"
"Spinach souffle","Vegetables and Vegetable Products","7.89","0.165","0.566","0.7","0.0073","0.231","5.9","1.85","12.95","70.73","172","6.091","3.021","0.61"
"Tomato sauce, no salt added","Vegetables and Vegetable Products","1.3","0.014","0.011","1.5","0.013099999999999999","0.371","8.71","5.22","0.2","89.1","42","0.028","0.029","0.079"
"Nuts, almond paste","Nut and Seed Products","9","0.172","0.009","4.8","0.0001","0.314","47.81","36.25","27.74","14.08","458","2.629","18.012","5.821"
"Nuts, almonds","Nut and Seed Products","21.22","0.264","0.001","12.2","0","0.705","21.67","3.89","49.42","4.7","575","3.731","30.889","12.07"
"Nuts, almonds, blanched","Nut and Seed Products","21.4","0.236","0.019","9.9","0","0.659","18.67","4.63","52.52","4.51","590","3.953","33.415","12.368"
"Nuts, almonds, honey roasted, unblanched","Nut and Seed Products","18.17","0.263","0.13","13.7","0.0007","0.56","27.9","null","49.9","1.7","594","4.73","32.402","10.472"
"Nuts, chestnuts, chinese, boiled and steamed","Nut and Seed Products","2.88","0.012","0.002","null","0.0247","0.306","33.64","null","0.76","61.57","153","0.112","0.399","0.197"
"Nuts, chestnuts, chinese, roasted","Nut and Seed Products","4.48","0.019","0.004","null","0.0384","0.477","52.36","null","1.19","40.2","239","0.175","0.62","0.307"
"Nuts, chestnuts, european, boiled and steamed","Nut and Seed Products","2","0.046","0.027","null","0.026699999999999998","0.715","27.76","null","1.38","68.15","131","0.26","0.476","0.545"
"Nuts, chestnuts, european, roasted","Nut and Seed Products","3.17","0.029","0.002","5.1","0.026","0.592","52.96","10.6","2.2","40.48","245","0.414","0.759","0.869"
"Nuts, chestnuts, japanese, boiled and steamed","Nut and Seed Products","0.82","0.011","0.005","null","0.0095","0.119","12.64","null","0.19","86.03","56","0.028","0.101","0.05"
"Nuts, chestnuts, japanese, roasted","Nut and Seed Products","2.97","0.035","0.019","null","0.028","0.427","45.13","null","0.8","49.9","201","0.118","0.419","0.207"
"Nuts, coconut water (liquid from coconuts)","Nut and Seed Products","0.72","0.024","0.105","1.1","0.0024","0.25","3.71","2.61","0.2","94.99","19","0.176","0.008","0.002"
"Nuts, hazelnuts or filberts","Nut and Seed Products","14.95","0.114","0","9.7","0.0063","0.68","16.7","4.34","60.75","5.31","628","4.464","45.652","7.92"
"Nuts, hazelnuts or filberts, blanched","Nut and Seed Products","13.7","0.149","0","11","0.002","0.658","17","3.49","61.15","5.79","629","4.669","48.192","5.558"
"Nuts, pecans","Nut and Seed Products","9.17","0.07","0","9.6","0.0011","0.41","13.86","3.97","71.97","3.52","691","6.18","40.801","21.614"
"Nuts, walnuts, english","Nut and Seed Products","15.23","0.098","0.002","6.7","0.0013","0.441","13.71","2.61","65.21","4.07","654","6.126","8.933","47.174"
"Seeds, breadfruit seeds, boiled","Nut and Seed Products","5.3","0.061","0.023","4.8","0.0060999999999999995","0.875","32","null","2.3","59.3","168","0.621","0.293","1.225"
"Seeds, breadfruit seeds, roasted","Nut and Seed Products","6.2","0.086","0.028","6","0.0076","1.082","40.1","null","2.7","49.7","207","0.729","0.344","1.438"
"Seeds, cottonseed kernels, roasted (glandless)","Nut and Seed Products","32.59","0.1","0.025","5.5","0.009","1.35","21.9","null","36.29","4.65","506","9.699","6.919","18.068"
"Seeds, flaxseed","Nut and Seed Products","18.29","0.255","0.03","27.3","0.0006","0.813","28.88","1.55","42.16","6.96","534","3.663","7.527","28.73"
"Seeds, sesame butter, paste","Nut and Seed Products","18.08","0.96","0.012","5.5","0","0.582","24.05","null","50.87","1.6","586","7.124","19.209","22.296"
"Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)","Nut and Seed Products","17","0.426","0.115","9.3","0","0.414","21.19","0.49","53.76","3.05","595","7.529","20.302","23.564"
"Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)","Nut and Seed Products","17.95","0.141","0.001","9.3","0","0.459","17.89","null","56.44","3","607","7.904","21.313","24.737"
"Seeds, sesame butter, tahini, type of kernels unspecified","Nut and Seed Products","17.4","0.141","0.035","4.7","0.004200000000000001","0.459","21.5","null","53.01","3","592","7.423","20.016","23.232"
"Seeds, sesame seeds, whole, roasted and toasted","Nut and Seed Products","16.96","0.989","0.011","14","0","0.475","25.74","null","48","3.3","565","6.722","18.127","21.039"
"Alcoholic Beverage, wine, table, red, Barbera","Beverages","0.07","0","0","null","0","0","2.79","null","null","86.29","85","null","null","null"
"Alcoholic Beverage, wine, table, red, Burgundy","Beverages","0.07","0","0","null","0","0","3.69","null","null","85.62","86","null","null","null"
"Alcoholic Beverage, wine, table, red, Cabernet Franc","Beverages","0.07","0","0","null","0","0","2.45","null","null","86.59","83","null","null","null"
"Alcoholic Beverage, wine, table, red, Cabernet Sauvignon","Beverages","0.07","0","0","null","0","0","2.6","null","null","86.56","83","null","null","null"
"Alcoholic Beverage, wine, table, red, Carignane","Beverages","0.07","0","0","null","0","0","2.4","null","null","87.88","74","null","null","null"
"Alcoholic Beverage, wine, table, red, Claret","Beverages","0.07","0","0","null","0","0","3.01","null","null","86.38","83","null","null","null"
"Alcoholic Beverage, wine, table, red, Gamay","Beverages","0.07","0","0","null","0","0","2.38","null","null","87.49","78","null","null","null"
"Alcoholic Beverage, wine, table, red, Lemberger","Beverages","0.07","0","0","null","0","0","2.46","null","null","87.02","80","null","null","null"
"Alcoholic Beverage, wine, table, red, Merlot","Beverages","0.07","0.008","0.004","null","0","0.127","2.51","0.62","null","86.59","83","null","null","null"
"Alcoholic Beverage, wine, table, red, Mouvedre","Beverages","0.07","0","0","null","0","0","2.64","null","null","85.81","88","null","null","null"
"Alcoholic Beverage, wine, table, red, Petite Sirah","Beverages","0.07","0","0","null","0","0","2.68","null","null","86.22","85","null","null","null"
"Alcoholic Beverage, wine, table, red, Pinot Noir","Beverages","0.07","0","0","null","0","0","2.31","null","null","86.94","82","null","null","null"
"Alcoholic Beverage, wine, table, red, Sangiovese","Beverages","0.07","0","0","null","0","0","2.62","null","null","86.17","86","null","null","null"
"Alcoholic Beverage, wine, table, red, Syrah","Beverages","0.07","0","0","null","0","0","2.58","null","null","86.53","83","null","null","null"
"Alcoholic Beverage, wine, table, red, Zinfandel","Beverages","0.07","0","0","null","0","0","2.86","null","null","85.71","88","null","null","null"
"Alcoholic beverage, beer, light","Beverages","0.24","0.004","0.004","null","0","0.021","1.64","0.09","null","94.88","29","null","null","null"
"Alcoholic beverage, beer, light, BUD LIGHT","Beverages","0.25","0.003","0.003","null","0","0.026","1.86","null","null","95","31","null","null","null"
"Alcoholic beverage, beer, light, BUDWEISER SELECT","Beverages","0.2","0.004","0.003","null","0","0.026","0.87","null","null","95.3","28","null","null","null"
"Alcoholic beverage, beer, light, MICHELOB ULTRA","Beverages","0.17","0.004","0.003","null","0","0.017","0.73","null","null","95.4","27","null","null","null"
"Alcoholic beverage, beer, regular, BUDWEISER","Beverages","0.36","0.004","0.003","null","0","0.033","2.97","null","null","92.77","41","null","null","null"
"Alcoholic beverage, beer, regular, all","Beverages","0.46","0.004","0.004","null","0","0.027","3.55","null","null","91.96","43","null","null","null"
"Alcoholic beverage, creme de menthe, 72 proof","Beverages","null","0","0.005","null","0","0","41.6","41.6","0.3","28.3","371","0.014","0.015","0.167"
"Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 100 proof","Beverages","null","0","0.001","null","0","0.002","null","null","null","57.5","295","null","null","null"
"Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 80 proof","Beverages","null","0","0.001","null","0","0.002","null","null","null","66.6","231","null","null","null"
"Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 86 proof","Beverages","null","0","0.001","null","0","0.002","0.1","null","null","63.9","250","null","null","null"
"Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 90 proof","Beverages","null","0","0.001","null","0","0.002","null","null","null","62.1","263","null","null","null"
"Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 94 proof","Beverages","null","0","0.001","null","0","0.002","null","null","null","60.3","275","null","null","null"
"Alcoholic beverage, distilled, gin, 90 proof","Beverages","null","0","0.002","null","0","0","null","null","null","62.1","263","null","null","null"
"Alcoholic beverage, distilled, rum, 80 proof","Beverages","null","0","0.001","null","0","0.002","null","null","null","66.6","231","null","null","null"
"Alcoholic beverage, distilled, vodka, 80 proof","Beverages","null","0","0.001","null","0","0.001","null","null","null","66.6","231","null","null","null"
"Alcoholic beverage, distilled, whiskey, 86 proof","Beverages","null","0","0","null","0","0.001","0.1","0.1","null","63.9","250","null","null","null"
"Alcoholic beverage, liqueur, coffee, 53 proof","Beverages","0.1","0.001","0.008","null","0","0.03","46.8","46.43","0.3","31","326","0.106","0.022","0.105"
"Alcoholic beverage, liqueur, coffee, 63 proof","Beverages","0.1","0.001","0.008","null","0","0.03","32.2","32.2","0.3","41.4","308","0.106","0.022","0.105"
"Alcoholic beverage, rice (sake)","Beverages","0.5","0.005","0.002","null","0","0.025","5","null","null","78.4","134","null","null","null"
"Alcoholic beverage, wine, cooking","Beverages","0.5","0.009","0.626","null","0","0.088","6.3","1.55","null","88.9","50","null","null","null"
"Alcoholic beverage, wine, dessert, sweet","Beverages","0.2","0.008","0.009","null","0","0.092","13.69","7.78","null","70.51","160","null","null","null"
"Alcoholic beverage, wine, light","Beverages","0.07","0.009","0.007","null","0","0.088","1.17","1.15","null","92.23","49","null","null","null"
"Alcoholic beverage, wine, table, all","Beverages","0.07","0.008","0.005","null","0","0.099","2.72","0.79","null","86.58","83","null","null","null"
"Alcoholic beverage, wine, table, red","Beverages","0.07","0.008","0.004","null","0","0.127","2.61","0.62","null","86.49","85","null","null","null"
"Alcoholic beverage, wine, table, white","Beverages","0.07","0.009","0.005","null","0","0.071","2.6","0.96","null","86.86","82","null","null","null"
"Alcoholic beverage, wine, table, white, Chenin Blanc","Beverages","0.07","0","0","null","0","0","3.31","null","null","86.78","80","null","null","null"
"Alcoholic beverage, wine, table, white, Fume Blanc","Beverages","0.07","0","0","null","0","0","2.27","null","null","86.98","82","null","null","null"
"Alcoholic beverage, wine, table, white, Gewurztraminer","Beverages","0.07","0","0","null","0","0","2.6","null","null","87.03","81","null","null","null"
"Alcoholic beverage, wine, table, white, Muller Thurgau","Beverages","0.07","0","0","null","0","0","3.48","null","null","87.28","76","null","null","null"
"Alcoholic beverage, wine, table, white, Muscat","Beverages","0.07","0","0","null","0","0","5.23","null","null","85.69","82","null","null","null"
"Alcoholic beverage, wine, table, white, Pinot Blanc","Beverages","0.07","0","0","null","0","0","1.94","null","null","87.14","81","null","null","null"
"Alcoholic beverage, wine, table, white, Pinot Gris (Grigio)","Beverages","0.07","0","0","null","0","0","2.06","null","null","86.98","83","null","null","null"
"Alcoholic beverage, wine, table, white, Riesling","Beverages","0.07","0","0","null","0","0","3.74","null","null","86.56","80","null","null","null"
"Alcoholic beverage, wine, table, white, Sauvignon Blanc","Beverages","0.07","0","0","null","0","0","2.05","null","null","87.16","81","null","null","null"
"Alcoholic beverage, wine, table, white, Semillon","Beverages","0.07","0","0","null","0","0","3.12","null","null","86.54","82","null","null","null"
"Alcoholic beverage, wine, table, white, late harvest","Beverages","0.07","0","0","null","0","0","13.39","null","null","77.76","112","null","null","null"
"Beverage, Horchata, as served in restaurant","Beverages","0.48","0.018","0.014","null","0","0.034","11.52","9.36","0.71","87.1","54","null","null","null"
"Carbonated beverage, chocolate-flavored soda","Beverages","null","0.004","0.088","null","0","0.05","10.7","10.7","null","89.2","42","null","null","null"
"Carbonated beverage, club soda","Beverages","null","0.005","0.021","null","0","0.002","null","null","null","99.9","null","null","null","null"
"Carbonated beverage, cola, contains caffeine","Beverages","0.07","0.002","0.004","null","0","0.002","9.56","8.97","0.02","90.31","37","null","null","null"
"Carbonated beverage, cream soda","Beverages","null","0.005","0.012","null","0","0.001","13.3","13.3","null","86.7","51","null","null","null"
"Carbonated beverage, ginger ale","Beverages","null","0.003","0.007","null","0","0.001","8.77","8.7","null","91.23","34","null","null","null"
"Carbonated beverage, grape soda","Beverages","null","0.003","0.015","null","0","0.001","11.2","null","null","88.8","43","null","null","null"
"Carbonated beverage, lemon-lime soda, contains caffeine","Beverages","0.09","0.002","0.01","null","0","0.001","10.42","10.19","null","89.49","41","null","null","null"
"Carbonated beverage, orange","Beverages","null","0.005","0.012","null","0","0.002","12.3","null","null","87.6","48","null","null","null"
"Carbonated beverage, pepper-type, contains caffeine","Beverages","null","0.003","0.01","null","0","0.001","10.4","null","0.1","89.4","41","0.07","null","null"
"Carbonated beverage, root beer","Beverages","null","0.005","0.013","null","0","0.001","10.6","10.6","null","89.3","41","null","null","null"
"Carbonated beverage, tonic water","Beverages","null","0.001","0.012","null","0","0","8.8","8.8","null","91.1","34","null","null","null"
"Chocolate syrup","Beverages","2.1","0.014","0.072","2.6","0.0002","0.224","65.1","49.65","1.13","31","279","0.519","0.286","0.026"
"Chocolate-flavored drink, whey and milk based","Beverages","0.64","0.1","0.091","0.6","0.002","0.079","10.68","8.68","0.4","87.63","49","0.31","0.049","0.009"
"Cocoa mix, NESTLE, Rich Chocolate Hot Cocoa Mix","Beverages","3","0.1","0.85","4","0","0","75","60","15","3.73","400","10","null","null"
"Corn beverage","Beverages","0.8","0.003","0.14","0.4","0","0.017","8.7","0.18","0.2","90.16","40","null","null","null"
"Cranberry juice cocktail, bottled","Beverages","null","0.003","0.002","null","0.0423","0.014","13.52","11.87","0.1","86.17","54","0.009","0.019","0.059"
"Cranberry-apple juice drink, bottled","Beverages","null","0.003","0.002","null","0.0395","0.017","15.85","14.5","0.11","83.78","63","0.013","0.014","0.052"
"Cranberry-apricot juice drink, bottled","Beverages","0.2","0.009","0.002","0.1","0","0.061","16.2","null","null","83.5","64","null","null","null"
"Cranberry-grape juice drink, bottled","Beverages","0.2","0.008","0.003","0.1","0.032","0.024","14","null","0.1","85.6","56","0.033","0.004","0.023"
"Energy Drink, Monster","Beverages","null","0.003","0.075","null","0","0.003","11.25","11.25","null","88.45","42","null","null","null"
"Energy drink, AMP","Beverages","0.25","0.013","0.027","null","0","0.003","12.08","12.08","0.08","87.3","46","null","null","null"
"Energy drink, AMP, sugar free","Beverages","null","0","0.031","null","0","0.002","1.03","null","null","98.35","2","null","null","null"
"Energy drink, FULL THROTTLE","Beverages","0.25","0.013","0.035","null","0","0.003","12.08","12.08","0.08","87.3","46","null","null","null"
"Energy drink, ROCKSTAR","Beverages","null","0.013","0.017","null","0","0.003","12.7","12.7","null","87","58","null","null","null"
"Energy drink, ROCKSTAR, sugar free","Beverages","0.25","0.013","0.052","null","0","0.003","0.7","null","0.08","98.35","4","null","null","null"
"Energy drink, VAULT Zero, sugar-free, citrus flavor","Beverages","0.25","0.002","0.014","null","0","0.003","0.7","null","0.08","98.35","1","null","null","null"
"Energy drink, VAULT, citrus flavor","Beverages","null","0.002","0.012","null","0","0.003","12.99","12.99","null","86.73","49","null","null","null"
"Malt beverage","Beverages","0.21","0.007","0.013","null","0.0005","0.008","8.05","8.05","0.12","91.15","37","0.024","0.015","0.056"
"Orange juice drink","Beverages","0.2","0.002","0.002","0.2","0.015","0.042","13.41","9.36","null","86.2","54","null","0.01","0.01"
"QUAKER OATS, PROPEL Fitness Water, fruit-flavored, non-carbonated","Beverages","null","0.001","0.013","null","0.0088","0.016","1.22","1.22","null","98.78","5","null","null","null"
"Sports drink, COCA-COLA, POWERADE, lemon-lime flavored, ready-to-drink","Beverages","null","0.001","0.022","null","0","0.018","7.84","6.11","0.05","91.91","32","0.008","0.011","0.028"
"Sports drink, PEPSICO QUAKER GATORADE, GATORADE, original, fruit-flavored, ready-to-drink","Beverages","null","0.001","0.039","null","0.0004","0.015","6.43","5.24","null","93.38","26","null","null","null"
"Tea, herb, chamomile, brewed","Beverages","null","0.002","0.001","null","0","0.009","0.2","null","null","99.7","1","0.002","null","0.005"
"Tea, herb, other than chamomile, brewed","Beverages","null","0.002","0.001","null","0","0.009","0.2","null","null","99.7","1","0.002","null","0.005"
"Tea, ready-to-drink, NESTLE, COOL NESTEA ice tea lemon flavor","Beverages","null","0.003","0.021","null","0","0.019","9.09","9.09","null","91.18","36","null","null","null"
"Water, bottled, PERRIER","Beverages","null","0.014","0.001","null","0","0","null","null","null","99.9","null","null","null","null"
"Water, bottled, POLAND SPRING","Beverages","null","0.001","0.001","null","0","0","null","null","null","100","null","null","null","null"
"Water, bottled, generic","Beverages","null","0.01","0.002","null","0","0","null","null","null","99.98","null","null","null","null"
"Water, bottled, non-carbonated, CALISTOGA","Beverages","null","0","0","null","0","0","null","null","null","100","null","null","null","null"
"Water, bottled, non-carbonated, CRYSTAL GEYSER","Beverages","null","0.003","0.001","null","0","0","null","null","null","100","null","null","null","null"
"Water, bottled, non-carbonated, DANNON","Beverages","null","0.003","0","null","0","0","null","null","null","99.98","null","null","null","null"
"Water, bottled, non-carbonated, DANNON Fluoride To Go","Beverages","null","0.003","0.001","null","0","0","0.03","null","null","99.97","null","null","null","null"
"Water, bottled, non-carbonated, DASANI","Beverages","null","0","0","null","0","0","null","null","null","99.96","null","null","null","null"
"Water, bottled, non-carbonated, EVIAN","Beverages","null","0.008","0","null","0","0","null","null","null","99.97","null","null","null","null"
"Water, bottled, non-carbonated, NAYA","Beverages","null","0.004","0.001","null","0","0","null","null","null","100","null","null","null","null"
"Water, bottled, non-carbonated, PEPSI, AQUAFINA","Beverages","null","0","0","null","0","0","null","null","null","99.97","null","null","null","null"
"Water, tap, drinking","Beverages","null","0.003","0.004","null","0","0","null","null","null","99.9","null","null","null","null"
"Water, tap, municipal","Beverages","null","0.003","0.003","null","0","0.001","null","null","null","99.9","null","null","null","null"
"Water, tap, well","Beverages","null","0.003","0.005","null","0","0","null","null","null","99.9","null","null","null","null"
"Whiskey sour mix, bottled","Beverages","0.1","0.002","0.102","null","0.0027","0.028","21.4","21.4","0.1","78.2","87","0.008","0.002","0.02"
"Wine, non-alcoholic","Beverages","0.5","0.009","0.007","null","0","0.088","1.1","1.1","null","98.2","6","null","null","null"
"Crustaceans, crab, blue, crab cakes","Finfish and Shellfish Products","20.21","0.105","0.33","null","0.0028","0.324","0.48","null","7.52","71","155","1.483","2.815","2.273"
"Fish, caviar, black and red, granular","Finfish and Shellfish Products","24.6","0.275","1.5","null","0","0.181","4","null","17.9","47.5","264","4.06","4.631","7.405"
"Fish, cisco, smoked","Finfish and Shellfish Products","16.36","0.026","0.481","null","0","0.293","null","null","11.9","69.8","177","1.741","5.484","2.274"
"Fish, gefiltefish, commercial, sweet recipe","Finfish and Shellfish Products","9.07","0.023","0.524","null","0.0008","0.091","7.41","null","1.73","80.35","84","0.412","0.824","0.285"
"Fish, haddock, smoked","Finfish and Shellfish Products","25.23","0.049","0.763","null","0","0.415","null","null","0.96","71.48","116","0.173","0.157","0.321"
"Fish, herring, Atlantic, kippered","Finfish and Shellfish Products","24.58","0.084","0.918","null","0.001","0.447","null","null","12.37","59.7","217","2.791","5.112","2.919"
"Fish, herring, Atlantic, pickled","Finfish and Shellfish Products","14.19","0.077","0.87","null","0","0.069","9.64","7.71","18","55.22","262","2.381","11.947","1.679"
"Fish, mackerel, salted","Finfish and Shellfish Products","18.5","0.066","4.45","null","0","0.52","null","null","25.1","43","305","7.148","8.32","6.21"
"Fish, sablefish, smoked","Finfish and Shellfish Products","17.65","0.05","0.737","null","0","0.471","null","null","20.14","60.14","257","4.213","10.605","2.688"
"Fish, salmon, chinook, smoked","Finfish and Shellfish Products","18.28","0.011","0.784","null","0","0.175","null","null","4.32","72","117","0.929","2.023","0.995"
"Fish, salmon, chinook, smoked, (lox), regular","Finfish and Shellfish Products","18.28","0.011","2","null","0","0.175","null","null","4.32","72","117","0.929","2.023","0.995"
"Fish, sturgeon, mixed species, smoked","Finfish and Shellfish Products","31.2","0.017","0.739","null","0","0.379","null","null","4.4","62.5","173","1.037","2.356","0.436"
"Fish, surimi","Finfish and Shellfish Products","15.18","0.009","0.143","null","0","0.112","6.85","null","0.9","76.34","99","0.191","0.149","0.443"
"Fish, tuna salad","Finfish and Shellfish Products","16.04","0.017","0.402","null","0.0022","0.178","9.41","null","9.26","63.16","187","1.544","2.887","4.122"
"Fish, whitefish, mixed species, smoked","Finfish and Shellfish Products","23.4","0.018","1.019","null","0","0.423","null","null","0.93","70.83","108","0.228","0.278","0.293"
"Mollusks, conch, baked or broiled","Finfish and Shellfish Products","26.3","0.098","0.153","null","0","0.163","1.7","null","1.2","69.4","130","0.37","0.334","0.274"
"Bacon bits, meatless","Legumes and Legume Products","32","0.101","1.77","10.2","0.0019","0.145","28.6","null","25.9","8","476","4.055","6.225","13.548"
"Bacon, meatless","Legumes and Legume Products","10.68","0.023","1.465","2.6","0","0.17","6.32","null","29.52","48.98","310","4.622","7.095","15.441"
"Bean beverage","Legumes and Legume Products","2.8","0.017","0.002","null","0","0.337","5.8","0.08","null","90.9","34","null","null","null"
"Beans, adzuki, yokan, mature seeds","Legumes and Legume Products","3.29","0.027","0.083","null","0","0.045","60.72","null","0.12","35.45","260","0.043","null","null"
"Beans, liquid from stewed kidney beans","Legumes and Legume Products","1.8","0.013","0.002","0.1","0","0.408","2.8","null","3.2","91.5","47","1.174","1.536","0.34"
"Chicken, meatless","Legumes and Legume Products","23.64","0.035","0.709","3.6","0","0.054","3.64","null","12.73","58.84","224","1.82","2.727","7.273"
"Chicken, meatless, breaded, fried","Legumes and Legume Products","21.28","0.042","0.4","4.3","0","0.3","8.51","null","12.77","56.44","234","1.13","3.226","4.581"
"Fish sticks, meatless","Legumes and Legume Products","23","0.095","0.49","6.1","0","0.6","9","0.8","18","45","290","2.849","4.376","9.332"
"Frankfurter, meatless","Legumes and Legume Products","19.61","0.033","0.471","3.9","0","0.098","7.7","null","13.73","58","233","1.961","3.922","7.843"
"GARDENBURGER Breaded Chik'n Veggie Patties","Legumes and Legume Products","12.5","0.087","0.695","5","0","0.408","18.5","0.8","12.4","52.1","218","1.8","6.9","3.6"
"GARDENBURGER, Black Bean Chipotle Burger","Legumes and Legume Products","6.6","0.048","0.545","6.4","0.017","0.204","22.3","1.5","3.9","65.5","134","0.4","2.2","1.1"
"GARDENBURGER, California Burger","Legumes and Legume Products","5.1","0.048","0.564","3.6","0.016","0.204","21.5","1.5","5.2","66.2","144","0.5","3","1.5"
"GARDENBURGER, Flame Grilled Burger","Legumes and Legume Products","17.5","0.097","0.705","7.2","0","0.397","8.6","0.4","4.7","67.2","123","0.4","2.4","1.8"
"GARDENBURGER, Garden Vegan","Legumes and Legume Products","12.5","0.023","0.385","6.1","0.0003","0.102","17","0.3","1","68.3","106","0.2","0.2","0.5"
"GARDENBURGER, Gourmet Baja Steak","Legumes and Legume Products","4.4","0.058","0.441","6.2","0.041","0.189","22.9","2.1","3.9","67.1","123","1.1","1.8","0.8"
"GARDENBURGER, Gourmet Fire Dragon Steak","Legumes and Legume Products","3.1","0.041","0.363","7.6","0.027","0.153","17.9","4.3","4.9","72.6","101","1.5","1.7","1.6"
"GARDENBURGER, Gourmet Hula Steak","Legumes and Legume Products","3.8","0.027","0.386","6.9","0.003","0.129","30.5","8","5.4","58.9","162","3.8","0.7","0.6"
"GARDENBURGER, Gourmet Tuscany Steak","Legumes and Legume Products","7.5","0.091","0.479","8.3","0.044","0.148","22.8","2.4","4.9","63","138","2.4","1.5","0.7"
"GARDENBURGER, Herb Crusted Cutlet","Legumes and Legume Products","13.1","0.063","0.581","4.5","0","0.262","17.7","0.9","10","57","200","0.8","6","2.6"
"GARDENBURGER, Homestyle Classic Veggie Burger","Legumes and Legume Products","17.5","0.111","0.695","6.4","0","0.464","10.6","0.6","8.8","59.9","171","0.7","4.7","2.9"
"GARDENBURGER, Original","Legumes and Legume Products","6.4","0.065","0.565","6.5","0.0056","0.156","25.3","1","4.5","61.9","145","1.4","1.7","1"
"GARDENBURGER, Savory Portabella Veggie Burger","Legumes and Legume Products","6.3","0.067","0.695","7.1","0.003","0.15","23.4","1.2","3.6","63.1","139","1.1","1","0.7"
"GARDENBURGER, Veggie Medley Burger","Legumes and Legume Products","4.6","0.033","0.53","7.3","0.02","0.178","24.3","1.6","3.7","65.4","135","0.4","1.5","1.6"
"Hummus, commercial","Legumes and Legume Products","7.9","0.038","0.379","6","0","0.228","14.29","null","9.6","66.59","166","1.437","4.039","3.613"
"Luncheon slices, meatless","Legumes and Legume Products","17.78","0.041","0.711","null","0","0.2","4.44","2.22","11.11","65.01","189","1.338","2.055","4.383"
"Meat extender","Legumes and Legume Products","38.11","0.204","0.01","17.5","0","1.902","38.32","null","2.97","7.48","313","0.424","0.648","1.657"
"Meatballs, meatless","Legumes and Legume Products","21","0.025","0.55","4.6","0","0.18","8","1.25","9","58","197","1.425","2.188","4.666"
"Miso","Legumes and Legume Products","11.69","0.057","3.728","5.4","0","0.21","26.47","6.2","6.01","43.02","199","1.139","1.242","3.204"
"Natto","Legumes and Legume Products","17.72","0.217","0.007","5.4","0.013","0.729","14.36","4.89","11","55.02","212","1.591","2.43","6.21"
"Papad","Legumes and Legume Products","25.56","0.143","1.745","18.6","0","1","59.87","null","3.25","3.49","371","1.084","0.532","1.148"
"Sandwich spread, meatless","Legumes and Legume Products","8","0.044","0.63","3.3","0","0.34","9","4.58","9","70","149","1.425","2.188","4.666"
"Sausage, meatless","Legumes and Legume Products","18.53","0.063","0.888","2.8","0","0.231","9.84","null","18.16","50.4","257","2.926","4.498","9.279"
"Soybean, curd cheese","Legumes and Legume Products","12.5","0.188","0.02","null","0","0.199","6.9","1.6","8.1","70.9","151","1.172","1.789","4.572"
"Soybeans, mature seeds, roasted, no salt added","Legumes and Legume Products","35.22","0.138","0.004","17.7","0.0022","1.47","33.55","null","25.4","1.95","471","3.674","5.61","14.339"
"Soybeans, mature seeds, roasted, salted","Legumes and Legume Products","35.22","0.138","0.163","17.7","0.0022","1.47","33.55","4.2","25.4","1.95","471","3.674","5.61","14.339"
"Soymilk (All flavors), enhanced","Legumes and Legume Products","2.94","0.14","0.05","0.4","0.0072","0.141","3.45","2.53","1.99","90.98","45","0.206","0.412","1.19"
"Soymilk, chocolate, unfortified","Legumes and Legume Products","2.26","0.025","0.053","0.4","0.0017","0.143","9.95","7.86","1.53","85.61","63","0.24","0.379","0.836"
"Soymilk, original and vanilla, unfortified","Legumes and Legume Products","3.27","0.025","0.051","0.6","0","0.118","6.28","3.99","1.75","88.05","54","0.205","0.401","0.961"
"Tempeh","Legumes and Legume Products","18.54","0.111","0.009","null","0","0.412","9.39","null","10.8","59.65","193","2.22","3","3.827"
"Tofu yogurt","Legumes and Legume Products","3.5","0.118","0.035","0.2","0.0025","0.047","15.96","1.24","1.8","77.5","94","0.259","0.4","1.017"
"Tofu, fried","Legumes and Legume Products","17.19","0.372","0.016","3.9","0","0.146","10.49","2.72","20.18","50.52","271","2.918","4.456","11.39"
"Tofu, okara","Legumes and Legume Products","3.22","0.08","0.009","null","0","0.213","12.54","null","1.73","81.64","77","0.193","0.295","0.755"
"Tofu, salted and fermented (fuyu)","Legumes and Legume Products","8.15","0.046","2.873","null","0.0002","0.075","5.15","null","8","70.01","116","1.157","1.767","4.516"
"Vegetarian fillets","Legumes and Legume Products","23","0.095","0.49","6.1","0","0.6","9","0.8","18","45","290","2.849","4.376","9.332"
"Vegetarian meatloaf or patties","Legumes and Legume Products","21","0.029","0.55","4.6","0","0.18","8","1.2","9","58","197","1.425","2.188","4.666"
"Vegetarian stew","Legumes and Legume Products","17","0.031","0.4","1.1","0","0.12","7","1.25","3","70","123","0.475","0.729","1.555"
"Vermicelli, made from soy","Legumes and Legume Products","0.1","0.055","0.004","3.9","0","0.003","82.32","17.44","0.1","11.9","331","0.014","0.013","0.041"
"Bagels, cinnamon-raisin","Baked Products","9.8","0.019","0.433","2.3","0.0007","0.148","55.2","5.98","1.7","32","273","0.274","0.175","0.671"
"Bagels, cinnamon-raisin, toasted","Baked Products","10.6","0.02","0.346","2.5","0.0006","0.163","59.3","6.43","1.8","26.9","294","0.295","0.188","0.722"
"Bagels, egg","Baked Products","10.6","0.013","0.505","2.3","0.0006","0.068","53","null","2.1","32.7","278","0.421","0.42","0.642"
"Bagels, oat bran","Baked Products","10.7","0.012","0.59","3.6","0.0002","0.115","53.3","1.63","1.2","32.9","255","0.191","0.249","0.486"
"Biscuits, mixed grain, refrigerated dough","Baked Products","6.1","0.017","0.67","null","0","0.456","47.4","null","5.6","37.8","263","1.366","2.932","0.88"
"Biscuits, plain or buttermilk, commercially baked","Baked Products","6.2","0.049","0.788","1.3","0","0.224","48.5","3.48","16.5","26.7","365","2.49","6.906","6.209"
"Bread sticks, plain","Baked Products","12","0.022","0.657","3","0","0.124","68.4","1.26","9.5","6.1","412","1.41","3.568","3.628"
"Bread, Multi-Grain (includes whole-grain)","Baked Products","13.36","0.103","0.42","7.4","0.0001","0.23","43.34","6.39","4.23","36.94","265","0.872","0.76","1.872"
"Bread, Multi-Grain, toasted (includes whole-grain)","Baked Products","14.52","0.111","0.457","8.1","0.0001","0.25","47.11","6.94","4.6","31.46","288","0.948","0.826","2.035"
"Bread, cracked-wheat","Baked Products","8.7","0.043","0.538","5.5","0","0.177","49.5","null","3.9","35.8","260","0.916","1.902","0.682"
"Bread, egg","Baked Products","9.5","0.093","0.412","2.3","0","0.115","47.8","1.78","6","34.7","283","1.593","2.302","1.106"
"Bread, egg, toasted","Baked Products","10.5","0.102","0.54","2.5","0","0.126","52.6","1.94","6.6","28.3","315","1.616","2.989","1.149"
"Bread, french or vienna (includes sourdough)","Baked Products","11.75","0.044","0.513","2.4","0.0002","0.128","56.44","2.56","1.83","27.81","289","0.497","0.347","0.787"
"Bread, french or vienna, toasted (includes sourdough)","Baked Products","13","0.047","0.72","3.1","0.0002","0.14","61.93","3.59","2.14","20.61","319","0.502","0.386","0.83"
"Bread, italian","Baked Products","8.8","0.078","0.584","2.7","0","0.11","50","0.83","3.5","35.7","271","0.855","0.812","1.39"
"Bread, oat bran","Baked Products","10.4","0.065","0.407","4.5","0","0.147","39.8","7.7","4.4","44","236","0.697","1.59","1.694"
"Bread, oat bran, toasted","Baked Products","11.4","0.071","0.448","4.9","0","0.123","43.7","8.46","4.8","38.5","259","0.766","1.748","1.861"
"Bread, pita, white, enriched","Baked Products","9.1","0.086","0.536","2.2","0","0.12","55.7","1.3","1.2","32.1","275","0.166","0.105","0.535"
"Bread, pita, white, unenriched","Baked Products","9.1","0.086","0.536","2.2","0","0.12","55.7","null","1.2","32.1","275","0.166","0.105","0.535"
"Bread, pita, whole-wheat","Baked Products","9.8","0.015","0.532","7.4","0","0.17","55","0.82","2.6","30.6","266","0.41","0.349","1.055"
"Bread, pound cake type, pan de torta salvadoran","Baked Products","7.06","0.046","0.39","1.7","0","0.21","51.29","18.1","17.45","22.38","390","3.042","4.411","9.424"
"Bread, pumpernickel","Baked Products","8.7","0.068","0.671","6.5","0","0.208","47.5","0.53","3.1","37.9","250","0.437","0.932","1.237"
"Bread, pumpernickel, toasted","Baked Products","9.5","0.074","0.738","7.1","0","0.228","52.2","0.58","3.4","31.8","275","0.481","1.024","1.359"
"Bread, raisin, enriched","Baked Products","7.9","0.066","0.313","4.3","0.0001","0.227","52.3","5.68","4.4","33.6","274","1.081","2.294","0.679"
"Bread, raisin, toasted, enriched","Baked Products","8.6","0.072","0.424","4.7","0.0004","0.246","56.9","6.18","4.8","27.8","297","1.175","2.494","0.738"
"Bread, raisin, unenriched","Baked Products","7.9","0.066","0.39","4.3","0.0001","0.227","52.3","null","4.4","33.6","274","1.081","2.294","0.679"
"Bread, rice bran","Baked Products","8.9","0.069","0.303","4.9","0","0.215","43.5","4.67","4.6","41","243","0.709","1.654","1.76"
"Bread, rice bran, toasted","Baked Products","9.7","0.075","0.478","5.3","0","0.212","47.3","5.08","5","35.9","264","0.771","1.798","1.913"
"Bread, rye","Baked Products","8.5","0.073","0.66","5.8","0.0004","0.166","48.3","3.85","3.3","37.3","258","0.626","1.311","0.799"
"Bread, rye, toasted","Baked Products","9.4","0.08","0.725","6.4","0.0002","0.183","53.1","4.23","3.6","31","284","0.688","1.44","0.879"
"Bread, salvadoran sweet cheese (quesadilla salvadorena)","Baked Products","7.12","0.073","0.51","0.7","0","0.35","47.84","24.9","17.12","25.48","374","4.612","6.794","4.428"
"Bread, wheat","Baked Products","10.91","0.142","0.521","3.6","0.0002","0.184","47.51","5.75","3.64","35.74","266","0.803","0.835","1.435"
"Bread, wheat bran","Baked Products","8.8","0.074","0.486","4","0","0.227","47.8","9.68","3.4","37.8","248","0.779","1.618","0.649"
"Bread, wheat germ","Baked Products","9.6","0.089","0.553","2.1","0.0002","0.254","48.3","3.73","2.9","37.1","261","0.657","1.275","0.668"
"Bread, wheat germ, toasted","Baked Products","10.7","0.1","0.621","2.3","0.0003","0.285","54.3","4.14","3.3","29.3","293","0.738","1.432","0.751"
"Bread, wheat, toasted","Baked Products","12.96","0.165","0.611","4.7","0.0002","0.223","55.77","6.42","4.27","24.23","313","0.989","1.019","1.72"
"Cake, pound, BIMBO Bakeries USA, Panque Casero, home baked style","Baked Products","6.62","0.052","0.357","1","0","0.101","48.94","28.77","21.7","21.29","418","null","null","null"
"Cake, snack cakes, creme-filled, sponge","Baked Products","3.47","0.024","0.512","1","0.0001","0.071","64.03","37.3","11.54","19.6","374","4.139","4.906","1.86"
"Coffeecake, cheese","Baked Products","7","0.059","0.339","1","0.0001","0.289","44.3","null","15.2","32.2","339","5.391","7.129","1.645"
"Coffeecake, fruit","Baked Products","5.2","0.045","0.385","2.5","0.0008","0.09","51.5","null","10.2","31.7","311","2.495","5.557","1.473"
"Cookies, animal crackers (includes arrowroot, tea biscuits)","Baked Products","6.9","0.043","0.482","1.1","0","0.1","74.1","13.93","13.8","3.9","446","3.463","7.666","1.873"
"Cookies, chocolate chip, refrigerated dough","Baked Products","4.4","0.025","0.209","1.5","0","0.18","61.4","null","20.4","12.7","443","6.729","10.414","2.172"
"Cookies, chocolate chip, refrigerated dough, baked","Baked Products","4.9","0.028","0.232","1.7","0","0.2","68.2","null","22.6","3","492","7.759","11.258","2.319"
"Cookies, chocolate wafers","Baked Products","6.6","0.031","0.69","3.4","0","0.21","72.4","29.66","14.2","4.5","433","4.241","4.865","4.153"
"Cookies, fig bars","Baked Products","3.7","0.064","0.35","4.6","0.0003","0.207","70.9","46.36","7.3","16.5","348","1.123","3.003","2.772"
"Cookies, fortune","Baked Products","4.2","0.012","0.274","1.6","0","0.041","84","45.42","2.7","8","378","0.669","1.345","0.466"
"Cookies, fudge, cake-type (includes trolley cakes)","Baked Products","5","0.034","0.192","2.8","0.0001","0.138","78.3","null","3.7","11.8","349","1.112","1.813","0.466"
"Cookies, gingersnaps","Baked Products","5.6","0.077","0.558","2.2","0","0.346","76.9","19.92","9.8","5.3","416","2.451","5.365","1.372"
"Cookies, graham crackers, chocolate-coated","Baked Products","5.8","0.058","0.257","3.1","0","0.209","66.5","41.56","23.2","2.6","484","13.38","7.687","1.038"
"Cookies, graham crackers, plain or honey (includes cinnamon)","Baked Products","6.9","0.024","0.477","2.8","0","0.135","76.8","31.1","10.1","4.4","423","1.519","4.086","3.832"
"Cookies, molasses","Baked Products","5.6","0.074","0.459","1","0","0.346","73.8","17.6","12.8","5.8","430","3.212","7.13","1.729"
"Cookies, peanut butter sandwich, regular","Baked Products","8.8","0.053","0.368","1.9","0.0001","0.192","65.6","35.44","21.1","2.8","478","4.995","11.191","3.795"
"Cookies, peanut butter sandwich, special dietary","Baked Products","10","0.043","0.412","null","0","0.294","50.8","null","34","3.7","535","4.937","15.391","12.026"
"Cookies, peanut butter, refrigerated dough","Baked Products","8.2","0.101","0.397","1.1","0","0.308","52.1","null","25","12.6","458","5.791","13.124","4.787"
"Cookies, peanut butter, refrigerated dough, baked","Baked Products","9.1","0.111","0.436","1.2","0","0.338","57.3","null","27.5","4","503","6.199","14.526","4.889"
"Cookies, raisin, soft-type","Baked Products","4.1","0.046","0.338","1.2","0.0004","0.14","68","47.56","13.6","13.1","401","3.46","7.649","1.756"
"Cookies, sugar, refrigerated dough","Baked Products","4.2","0.081","0.422","0.7","0","0.147","59","21.56","20.7","14.5","436","5.265","11.761","2.62"
"Cookies, sugar, refrigerated dough, baked","Baked Products","4.7","0.09","0.468","0.8","0","0.163","65.6","23.96","23.1","5","484","5.906","13.01","2.891"
"Crackers, cheese, regular","Baked Products","10.1","0.151","0.995","2.4","0","0.145","58.2","0.28","25.3","3.1","503","9.371","12.105","2.472"
"Crackers, cream, GAMESA SABROSAS","Baked Products","7.01","0.026","1.148","2.4","0","0.129","64.55","9.37","20.37","4.45","484","5.362","10.625","2.45"
"Crackers, cream, LA MODERNA RIKIS CREAM CRACKERS","Baked Products","7.19","0.734","0.752","2.4","0","0.117","64.88","10.41","19.5","4.48","422","9.377","7.313","1.276"
"Crackers, crispbread, rye","Baked Products","7.9","0.031","0.453","16.5","0","0.319","82.2","1.07","1.3","6.1","366","0.145","0.165","0.557"
"Crackers, matzo, egg","Baked Products","12.3","0.04","0.021","2.8","0.0001","0.15","78.6","null","2.1","6.4","391","0.548","0.612","0.473"
"Crackers, matzo, egg and onion","Baked Products","10","0.036","0.285","5","0.0002","0.083","77.1","null","3.9","7.2","391","0.936","0.987","1.001"
"Crackers, matzo, plain","Baked Products","10","0.013","0","3","0","0.112","83.7","0.29","1.4","4.3","395","0.226","0.127","0.603"
"Crackers, matzo, whole-wheat","Baked Products","13.1","0.023","0.002","11.8","0","0.316","78.9","null","1.5","4.8","351","0.243","0.194","0.653"
"Crackers, melba toast, plain","Baked Products","12.1","0.093","0.598","6.3","0","0.202","76.6","0.94","3.2","5.1","390","0.445","0.782","1.282"
"Crackers, melba toast, rye (includes pumpernickel)","Baked Products","11.6","0.078","0.899","8","0","0.193","77.3","null","3.4","4.9","389","0.453","0.907","1.347"
"Crackers, melba toast, wheat","Baked Products","12.9","0.043","0.837","7.4","0","0.148","76.4","null","2.3","5.5","374","0.337","0.544","0.91"
"Crackers, milk","Baked Products","7.6","0.172","0.592","1.9","0.0002","0.114","69.7","16.44","15.8","4.7","455","2.633","6.479","5.749"
"Crackers, rusk toast","Baked Products","13.5","0.027","0.253","null","0","0.245","72.3","null","7.2","5.5","407","1.376","2.755","2.31"
"Crackers, rye, wafers, plain","Baked Products","9.6","0.04","0.557","22.9","0.0001","0.495","80.4","1.01","0.9","5","334","0.108","0.152","0.397"
"Crackers, rye, wafers, seasoned","Baked Products","9","0.044","0.887","20.9","0.0001","0.454","73.8","null","9.2","4","381","1.287","3.27","3.608"
"Crackers, saltines (includes oyster, soda, soup)","Baked Products","9.5","0.021","1.116","2.9","0","0.159","74.34","2.22","8.85","4.03","421","2.001","2.247","4.068"
"Crackers, saltines, unsalted tops (includes oyster, soda, soup)","Baked Products","9.2","0.119","0.766","3","0","0.128","71.5","null","11.8","4.1","434","2.932","6.422","1.679"
"Crackers, snack, GOYA CRACKERS","Baked Products","14.25","0.016","0.665","3.8","0","0.124","64.35","2.35","13.35","5.93","433","6.323","4.697","1.536"
"Crackers, standard snack-type, regular","Baked Products","6.6","0.095","0.865","2.1","0","0.111","61.37","7.45","25.83","3.46","504","5.4","6.652","12.597"
"Crackers, wheat, regular","Baked Products","8.95","0.081","0.918","3.7","0","0.207","67.35","13.8","17.36","3.18","456","2.73","4.297","9.225"
"Crackers, whole-wheat","Baked Products","10.58","0.036","0.704","10.3","0","0.345","69.55","1.19","14.13","2.94","427","2.063","3.248","6.945"
"Croissants, apple","Baked Products","7.4","0.03","0.274","2.5","0.0005","0.09","37.1","null","8.7","45.6","254","4.994","2.393","0.628"
"Croissants, butter","Baked Products","8.2","0.037","0.347","2.6","0.0002","0.118","45.8","11.26","21","23.2","406","11.659","5.525","1.094"
"Croissants, cheese","Baked Products","9.2","0.053","0.361","2.6","0.0002","0.132","47","11.35","20.9","21","414","10.628","6.509","2.384"
"Croutons, plain","Baked Products","11.9","0.076","0.698","5.1","0","0.124","73.5","null","6.6","5.5","407","1.51","3.059","1.273"
"Croutons, seasoned","Baked Products","10.8","0.096","1.089","5","0","0.181","63.5","4.41","18.3","3.6","465","5.247","9.498","2.368"
"Danish pastry, cheese","Baked Products","8","0.035","0.322","1","0.0001","0.098","37.2","6.95","21.9","31.4","374","6.794","11.313","2.575"
"Danish pastry, cinnamon, enriched","Baked Products","7","0.071","0.371","1.3","0.0001","0.125","44.6","19.78","22.4","24.3","403","5.681","12.515","2.933"
"Danish pastry, cinnamon, unenriched","Baked Products","7","0.071","0.371","1.2","0.0002","0.125","44.6","null","22.4","24.3","403","5.681","12.515","2.933"
"Danish pastry, lemon, unenriched","Baked Products","5.4","0.046","0.354","1.9","0.0039","0.083","47.8","null","18.5","27.1","371","2.826","5.937","1.508"
"Danish pastry, nut (includes almond, raisin nut, cinnamon nut)","Baked Products","7.1","0.094","0.298","2","0.0017","0.095","45.7","25.87","25.2","20.4","430","5.821","13.685","4.281"
"Danish pastry, raspberry, unenriched","Baked Products","5.4","0.046","0.354","1.9","0.0039","0.083","47.8","null","18.5","27.1","371","2.826","5.937","1.508"
"Doughnuts, cake-type, chocolate, sugared or glazed","Baked Products","4.5","0.213","0.397","2.2","0.0001","0.106","57.4","31.92","19.9","16.3","417","5.132","11.278","2.477"
"Doughnuts, cake-type, plain (includes unsugared, old-fashioned)","Baked Products","5.87","0.025","0.557","1.6","0.0013","0.113","45.63","16.28","23.55","22.88","418","7.127","12.732","2.659"
"Doughnuts, cake-type, plain, chocolate-coated or frosted","Baked Products","4.93","0.024","0.326","1.9","0.0013","0.201","51.33","26.65","25.25","16.76","452","13.47","8.618","1.96"
"Doughnuts, cake-type, plain, sugared or glazed","Baked Products","5.2","0.06","0.402","1.5","0.0001","0.102","50.8","null","22.9","19.6","426","5.926","12.697","2.909"
"Doughnuts, cake-type, wheat, sugared or glazed","Baked Products","6.3","0.049","0.427","2.2","0.0002","0.148","42.6","21.58","19.3","29.8","360","3.023","8.101","7.077"
"Doughnuts, french crullers, glazed","Baked Products","3.1","0.026","0.345","1.2","0","0.078","59.5","35.11","18.3","17.9","412","4.667","10.446","2.285"
"English muffins, mixed-grain (includes granola)","Baked Products","9.1","0.196","0.334","2.8","0","0.156","46.3","0.81","1.8","40.2","235","0.23","0.827","0.559"
"English muffins, mixed-grain, toasted (includes granola)","Baked Products","9.9","0.213","0.453","3","0","0.169","50.3","0.88","1.9","35","255","0.25","0.899","0.608"
"English muffins, raisin-cinnamon (includes apple-cinnamon)","Baked Products","7.91","0.114","0.277","2.6","0.0013","0.173","48.1","14.76","1.8","40.6","240","0.54","0.846","0.339"
"English muffins, raisin-cinnamon, toasted (includes apple-cinnamon)","Baked Products","8.87","0.139","0.369","3","0.0014","0.194","55.04","13.34","2.21","32.07","276","0.579","1.065","0.469"
"English muffins, wheat","Baked Products","8.7","0.178","0.382","4.6","0","0.186","44.8","1.56","2","42.3","223","0.287","0.28","0.834"
"English muffins, wheat, toasted","Baked Products","9.4","0.193","0.415","5","0","0.202","48.7","1.7","2.1","37.2","243","0.312","0.305","0.906"
"English muffins, whole-wheat","Baked Products","8.8","0.265","0.364","6.7","0","0.21","40.4","8.09","2.1","45.7","203","0.334","0.513","0.835"
"English muffins, whole-wheat, toasted","Baked Products","9.6","0.288","0.692","7.3","0","0.228","44.1","8.79","2.3","41","221","0.363","0.557","0.908"
"GEORGE WESTON BAKERIES, Thomas English Muffins","Baked Products","8","0.18","0.345","null","0","0","46","null","1.8","42.6","232","0.308","0.303","0.92"
"INTERSTATE BRANDS CORP, WONDER Hamburger Rolls","Baked Products","8.07","0.087","0.488","2.6","0","0","50.84","11.06","4.15","34.2","273","1.013","0.848","2.177"
"Ice cream cones, cake or wafer-type","Baked Products","8.1","0.025","0.256","3","0","0.112","79","6","6.9","5.3","417","1.222","1.845","3.264"
"Ice cream cones, sugar, rolled-type","Baked Products","7.9","0.044","0.251","1.7","0","0.145","84.1","25.66","3.8","3","402","0.573","1.47","1.452"
"KEEBLER, KEEBLER Chocolate Graham SELECTS","Baked Products","7.1","0","0.357","null","0","0","71.8","26.5","16.6","3.1","465","3.09","null","null"
"KEEBLER, KEEBLER GOLDEN Vanilla Wafers, Artificially Flavored","Baked Products","5.2","0","0.386","null","0","0","69.7","27.4","19.5","4.2","475","3.58","null","null"
"KELLOGG'S Eggo Golden Oat Waffles","Baked Products","6.83","0.066","0.385","3.5","0.0008","0.191","37.52","3.47","3.22","50.6","198","0.6","1.067","1.067"
"KELLOGG'S Pop-Tarts Pastry Swirls, Apple Cinnamon Danish","Baked Products","4.8","0.032","0.306","1.4","0","0","59.7","17.7","17.7","16.8","413","4.8","5.8","7.1"
"KELLOGG'S Pop-Tarts Pastry Swirls, Cheese Danish","Baked Products","4.8","0.064","0.29","0.5","0","0","59.1","19.4","17.7","16.85","407","4.8","5.8","7.1"
"KELLOGG, KELLOG'S NUTRI-GRAIN CEREAL BARS, Mixed Berry","Baked Products","4.3","0.039","0.284","1.9","0","0.188","72.8","33.6","7.6","14.5","370","1.5","5","1.1"
"KELLOGG, KELLOGG'S EGGO, Banana Bread Waffles","Baked Products","6.8","0.051","0.359","2.5","0.0014","0.18","41.6","6.7","9.5","41.2","272","1.71","5.28","2.51"
"KELLOGG, KELLOGG'S EGGO, Buttermilk Pancake","Baked Products","6","0.035","0.508","1.1","0.0014","0.103","38.1","8.2","6.69","47.2","233","1.44","2.94","2.13"
"KRAFT, STOVE TOP Stuffing Mix Chicken Flavor","Baked Products","12.6","0.063","1.532","2.5","0.0033","0.267","73.1","10.1","4.1","5.3","381","0.8","null","null"
"Keikitos (muffins), Latino bakery item","Baked Products","6.81","0.063","0.515","1.2","0","0.09","53.16","25.81","25.24","12.99","467","null","null","null"
"Muffins, blueberry, toaster-type","Baked Products","4.6","0.013","0.247","1.8","0","0.083","53.3","4.85","9.5","30.8","313","1.398","2.162","5.351"
"Muffins, blueberry, toaster-type, toasted","Baked Products","4.9","0.014","0.509","1.9","0","0.088","56.7","12.95","10.1","26.4","333","1.551","2.371","5.477"
"Muffins, corn, toaster-type","Baked Products","5.3","0.019","0.43","1.6","0","0.092","57.9","null","11.3","23.6","346","1.681","2.625","6.324"
"Muffins, oat bran","Baked Products","7","0.063","0.393","4.6","0","0.507","48.3","8.22","7.4","35","270","1.087","1.695","4.129"
"NABISCO, NABISCO GRAHAMS Crackers","Baked Products","6.99","0.079","0.659","3.4","0","0.177","76.2","23","10","3.6","424","1.56","3.6","0.46"
"NABISCO, NABISCO OREO CRUNCHIES, Cookie Crumb Topping","Baked Products","4.78","0.024","0.528","3.2","0","0.194","70.23","36","21.5","1.57","476","4.14","3.17","0.82"
"NABISCO, NABISCO RITZ Crackers","Baked Products","7.23","0.154","0.882","2.3","0","0.119","63.51","8.14","23.21","3.12","492","5.45","6.276","10.896"
"PILLSBURY GRANDS, Buttermilk Biscuits, refrigerated dough","Baked Products","6.9","0.034","1.034","1.2","0","0","41.38","6.9","13.79","33.5","317","5.172","null","null"
"PILLSBURY Golden Layer Buttermilk Biscuits, Artificial Flavor, refrigerated dough","Baked Products","5.88","0","1.059","1.2","0","0","41.18","5.88","13.24","35.5","307","2.941","null","null"
"PILLSBURY, Buttermilk Biscuits, Artificial Flavor, refrigerated dough","Baked Products","6.25","0","0.891","1.6","0","0","45.31","6.25","3.13","40.6","234","0.469","null","null"
"PILLSBURY, Chocolate Chip Cookies, refrigerated dough","Baked Products","3.57","0","0.304","2.1","0","0","60.71","35.71","25","8.93","482","7.143","9.063","1.828"
"PILLSBURY, Crusty French Loaf, refrigerated dough","Baked Products","7.69","0","0.577","1.7","0","0","46.15","3.85","2.89","40","241","0.962","null","null"
"Pastry, Pastelitos de Guava (guava pastries)","Baked Products","5.48","0.014","0.231","2.2","0","0.103","47.76","17","18.5","27.26","379","5.535","8.543","2.835"
"Phyllo dough","Baked Products","7.1","0.011","0.483","1.9","0","0.074","52.6","0.18","6","32.6","299","1.47","3.149","0.923"
"Pie Crust, Cookie-type, Chocolate, Ready Crust","Baked Products","6.08","0.032","0.503","2.7","0","0.187","64.48","26.31","22.42","4.99","484","4.725","14.501","2.035"
"Pie Crust, Cookie-type, Graham Cracker, Ready Crust","Baked Products","5.1","0.029","0.33","1.9","0","0.113","64.3","18.13","24.83","4.37","501","4.999","16.928","1.671"
"Pie crust, refrigerated, regular, baked","Baked Products","3.41","0.012","0.472","1.4","0","0.083","58.52","null","28.69","7.96","506","11.087","11.815","3.756"
"Pie crust, refrigerated, regular, unbaked","Baked Products","2.97","0.01","0.409","1.8","0","0.073","51.11","null","25.46","19.25","445","9.596","10.206","3.292"
"Pie, fried pies, cherry","Baked Products","3","0.022","0.374","2.6","0.0013","0.065","42.6","null","16.1","37.6","316","2.457","7.449","5.376"
"Pie, fried pies, fruit","Baked Products","3","0.022","0.374","2.6","0.0013","0.065","42.6","21.4","16.1","37.6","316","2.457","7.449","5.376"
"Pie, fried pies, lemon","Baked Products","3","0.022","0.374","2.6","0","0.065","42.6","null","16.1","37.6","316","2.457","7.449","5.376"
"Pie, peach","Baked Products","1.9","0.008","0.194","0.8","0.0009","0.125","32.9","6.19","10","54.4","223","1.508","4.241","3.749"
"Rolls, dinner, egg","Baked Products","9.5","0.059","0.459","3.7","0","0.104","52","4.3","6.4","30.4","307","1.577","2.93","1.128"
"Rolls, dinner, oat bran","Baked Products","9.5","0.085","0.413","4.1","0","0.121","40.2","6.67","4.6","44","236","0.619","1.488","1.568"
"Rolls, dinner, rye","Baked Products","10.3","0.03","0.65","4.9","0","0.18","53.1","1.17","3.4","30.1","286","0.605","1.236","0.708"
"Rolls, dinner, wheat","Baked Products","8.6","0.176","0.485","3.8","0","0.115","46","1.63","6.3","37","273","1.497","3.109","1.107"
"Rolls, dinner, whole-wheat","Baked Products","8.7","0.106","0.401","7.5","0","0.272","51.1","8.46","4.7","33.1","266","0.836","1.199","2.161"
"Rolls, french","Baked Products","8.6","0.091","0.507","3.2","0","0.114","50.2","0.31","4.3","34.8","277","0.962","1.961","0.834"
"Rolls, hamburger or hotdog, mixed-grain","Baked Products","9.6","0.095","0.458","3.8","0","0.16","44.6","6.25","6","38","263","1.39","2.839","1.153"
"Rolls, hamburger or hotdog, plain","Baked Products","9.5","0.138","0.479","2.1","0","0.094","49.45","6.25","4.33","34.7","279","1.092","1.112","1.968"
"Rolls, hard (includes kaiser)","Baked Products","9.9","0.095","0.544","2.3","0","0.108","52.7","1.77","4.3","31","293","0.606","1.133","1.719"
"Rolls, pumpernickel","Baked Products","10.8","0.067","0.707","5.4","0","0.208","52.8","0.4","2.8","32","277","0.495","0.609","1.184"
"Strudel, apple","Baked Products","3.3","0.015","0.157","2.2","0.0017","0.149","41.1","25.75","11.2","43.5","274","2.044","3.267","5.315"
"Sweet rolls, cheese","Baked Products","7.1","0.118","0.357","1.2","0.0002","0.137","43.7","null","18.3","29.4","360","6.059","9.057","2.032"
"Taco shells, baked","Baked Products","7.08","0.101","0.389","4.6","0","0.223","62.72","1.23","20.83","7.38","467","6.246","6.43","7.265"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Apple cinnamon","Baked Products","4.4","0.023","0.334","1.1","0","0.091","72.02","33.7","10.2","12.5","395","1.69","5.87","2.6"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Blueberry","Baked Products","4.6","0.024","0.35","1.1","0","0.095","68.38","30.9","13.3","12.5","408","2.02","6.5","4.81"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Brown sugar cinnamon","Baked Products","5.4","0.031","0.38","1.5","0","0.135","64.4","25.4","18.4","10.5","438","2.08","7.14","9.14"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Cherry","Baked Products","4.6","0.028","0.423","1.1","0","0.114","71.19","31.7","10.4","12.5","393","1.67","5.73","3"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted blueberry","Baked Products","4.6","0.024","0.32","1.1","0","0.095","71.77","31.2","10","12.5","391","1.98","6.83","1.13"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted brown sugar cinnamon","Baked Products","5","0.029","0.35","1.3","0","0.111","68.32","30.8","14.8","10.5","422","2.26","7.88","4.76"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted cherry","Baked Products","4.2","0.025","0.32","1","0","0.095","71.96","36","10.2","12.5","393","1.94","6.69","1.58"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted chocolate fudge","Baked Products","5.1","0.038","0.44","1.1","0","0.158","71.8","38","9.3","12.5","387","1.9","5.2","2.2"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted chocolate vanilla creme","Baked Products","5","0.03","0.441","1","0","0.12","70.84","37.3","10.2","12.5","391","1.94","6.19","1.98"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted grape","Baked Products","4.4","0.023","0.333","1","0","0.115","72.25","35.4","9.8","12.5","391","1.73","5.9","2.15"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted raspberry","Baked Products","4.2","0.022","0.32","1","0","0.085","71.54","35.4","10.6","12.5","395","1.88","6.17","2.56"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, Frosted wild berry","Baked Products","4.3","0.021","0.311","1","0","0.082","72.9","38.8","9.2","12.5","388","2.6","5.4","1.3"
"Toaster Pastries, KELLOGG, KELLOGG'S POP TARTS, S'mores","Baked Products","6.2","0.029","0.41","1.4","0","0.125","69.6","36.5","10.5","12.5","392","2.8","5.9","1.8"
"Toaster pastries, brown-sugar-cinnamon","Baked Products","5.1","0.034","0.424","1","0.0001","0.114","68.1","null","14.2","10.8","412","3.639","8.032","1.802"
"Tortillas, ready-to-bake or -fry, corn","Baked Products","5.7","0.081","0.045","6.3","0","0.186","44.64","0.88","2.85","45.89","218","0.453","0.692","1.419"
"Tostada shells, corn","Baked Products","6.15","0.076","0.657","5.8","0","0.237","64.43","null","23.38","3.32","474","7.011","7.217","8.285"
"Wonton wrappers (includes egg roll wrappers)","Baked Products","9.8","0.047","0.572","1.8","0","0.082","57.9","null","1.5","28.8","291","0.263","0.195","0.61"
"Baking chocolate, MARS SNACKFOOD US, M&M's Milk Chocolate Mini Baking Bits","Sweets","4.78","0.116","0.068","2.7","0.0006","0","68.4","62.54","23.36","1.5","502","14.466","null","null"
"Baking chocolate, MARS SNACKFOOD US, M&M's Semisweet Chocolate Mini Baking Bits","Sweets","4.44","0.034","0.002","6.7","0","0","65.96","53.07","26.15","1.27","517","15.618","null","null"
"Baking chocolate, mexican, squares","Sweets","3.64","0.034","0.003","4","0.0001","0.397","77.41","69.4","15.59","1.59","426","8.606","5.044","1.162"
"Baking chocolate, unsweetened, liquid","Sweets","12.1","0.054","0.012","18.1","0","1.166","36.2","null","47.7","0.9","472","25.29","9.23","10.7"
"Baking chocolate, unsweetened, squares","Sweets","12.9","0.101","0.024","16.6","0","0.83","29.84","0.91","52.31","1.34","501","32.351","16.105","1.555"
"Candies, 5TH AVENUE Candy Bar","Sweets","8.78","0.073","0.225","3.1","0.0004","0.347","62.68","47.19","23.98","2.3","482","6.65","10.6","3.39"
"Candies, ALMOND JOY BITES","Sweets","5.58","0.109","0.039","4.3","0.001","0.306","57.54","51.71","34.5","1.26","563","20.6","8.85","1.46"
"Candies, ALMOND JOY Candy Bar","Sweets","4.13","0.064","0.142","5","0.0007","0.254","59.51","48.34","26.93","8.2","479","17.59","5.26","1.18"
"Candies, CARAMELLO Candy Bar","Sweets","6.19","0.213","0.122","1.2","0.0017","0.341","63.81","56.92","21.19","6.79","462","12.72","5.29","0.63"
"Candies, HEATH BITES","Sweets","3.94","0.086","0.245","2","0.0008","0.21","63.39","60.02","30.38","0.86","530","15.62","8.8","2.55"
"Candies, HERSHEY'S GOLDEN ALMOND SOLITAIRES","Sweets","11.97","0.203","0.052","4.4","0","0","46.91","37.13","37.13","null","570","15.23","null","null"
"Candies, HERSHEY'S POT OF GOLD Almond Bar","Sweets","12.82","0.192","0.064","3.8","0","0","46.15","38.46","38.46","null","577","16.667","null","null"
"Candies, HERSHEY, KIT KAT BIG KAT Bar","Sweets","6.24","0.138","0.064","1.9","0.0013","0.294","63.64","53.96","27.84","1.1","520","17.99","4.91","0.51"
"Candies, HERSHEY, REESESTICKS crispy wafers, peanut butter, milk chocolate","Sweets","9.53","0.07","0.264","3.3","0.0006","0.295","55.38","40.33","31.34","1.6","521","13.21","10.82","4.68"
"Candies, KIT KAT Wafer Bar","Sweets","6.51","0.125","0.054","1","0","0.231","64.59","48.68","25.99","1.63","518","17.953","5.844","0.895"
"Candies, KRACKEL Chocolate Bar","Sweets","6.62","0.158","0.196","2.2","0.0008","0.325","63.96","52.53","26.58","1.17","512","15.92","6.25","0.57"
"Candies, MARS SNACKFOOD US, 3 MUSKETEERS Bar","Sweets","2.6","0.054","0.194","1.5","0.0002","0.133","77.77","66.89","12.75","5.8","436","8.646","2.373","0.316"
"Candies, MARS SNACKFOOD US, COCOAVIA Blueberry and Almond Chocolate Bar","Sweets","6.35","0.985","0.008","9.1","0.0342","0","60.37","38.99","28.68","2.9","525","13.07","null","null"
"Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Bar","Sweets","5.81","1.164","0.007","8.7","0.0426","0","62.99","39.19","29.3","0.7","539","15.703","null","null"
"Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Covered Almonds","Sweets","9.51","0.84","0.009","10.4","0.0273","0","50.22","26.92","37.07","1.5","573","11.745","null","null"
"Candies, MARS SNACKFOOD US, COCOAVIA Crispy Chocolate Bar","Sweets","8.21","1.07","0.04","7.8","0.037899999999999996","0","62.06","34.96","26.23","1.9","517","14.007","null","null"
"Candies, MARS SNACKFOOD US, DOVE Dark Chocolate","Sweets","5.19","0.037","0.004","7.6","0","0","59.4","46.27","32.45","1.66","520","19.209","null","null"
"Candies, MARS SNACKFOOD US, DOVE Milk Chocolate","Sweets","5.94","0.16","0.063","2.4","0.0008","0","59.78","55.45","31.72","1.61","546","19.24","null","null"
"Candies, MARS SNACKFOOD US, M&M's Almond Chocolate Candies","Sweets","7.53","0.155","0.045","5.6","0.0006","0.381","60.5","49.22","27.76","2.52","522","9.435","11.29","3.753"
"Candies, MARS SNACKFOOD US, M&M's Crispy Chocolate Candies","Sweets","4.28","0.09","0.136","2","0.0005","0","72.4","58.94","19.32","1.7","475","11.651","null","null"
"Candies, MARS SNACKFOOD US, M&M's MINIs Milk Chocolate Candies","Sweets","4.78","0.116","0.068","2.7","0.0006","0","68.4","62.54","23.36","1.19","502","14.466","null","null"
"Candies, MARS SNACKFOOD US, M&M's Milk Chocolate Candies","Sweets","4.33","0.105","0.061","2.8","0.0005","0.261","71.19","63.68","21.13","1.7","492","13.08","5.183","0.921"
"Candies, MARS SNACKFOOD US, M&M's Peanut Butter Chocolate Candies","Sweets","10.16","0.088","0.213","4","0.0005","0.33","56.89","47.15","29.32","2","529","18.485","4.448","0.542"
"Candies, MARS SNACKFOOD US, M&M's Peanut Chocolate Candies","Sweets","9.57","0.102","0.05","3.7","0","0.347","60.48","50.75","26.13","2.48","515","10.169","8.086","3.456"
"Candies, MARS SNACKFOOD US, MARS Almond Bar","Sweets","8.1","0.168","0.17","2","0.0007","0.325","62.7","52.1","23","4.5","467","7.268","10.693","3.98"
"Candies, MARS SNACKFOOD US, MILKY WAY Bar","Sweets","4.01","0.115","0.167","1","0.0007","0.124","71.17","59.69","17.23","6.3","456","12.016","2.23","0.26"
"Candies, MARS SNACKFOOD US, MILKY WAY Caramels, milk chocolate covered","Sweets","4.28","0.141","0.273","0.7","0.0007","0","68.49","58.65","19.17","6.99","463","13.157","null","null"
"Candies, MARS SNACKFOOD US, MILKY WAY Caramels. dark chocolate covered","Sweets","3.82","0.083","0.246","2.8","0.0004","0","67.56","54.08","20.42","6.99","458","13.814","null","null"
"Candies, MARS SNACKFOOD US, MILKY WAY Midnight Bar","Sweets","3.2","0.053","0.168","2.9","0.0002","0.196","71.22","57.81","17.5","7.2","443","11.474","4.639","0.514"
"Candies, MARS SNACKFOOD US, POP'ABLES 3 MUSKETEERS Brand Bite Size Candies","Sweets","2.59","0.06","0.172","1.3","0.0004","0","75.94","67","15.17","5.3","443","9.921","null","null"
"Candies, MARS SNACKFOOD US, POP'ABLES MILKY WAY Brand Bite Size Candies","Sweets","3.3","0.091","0.146","1","0.0006","0","71.85","61.08","18","5.78","463","8.889","null","null"
"Candies, MARS SNACKFOOD US, POP'ABLES SNICKERS Brand Bite Size Candies","Sweets","7.15","0.096","0.224","2.3","0.0005","0","61.07","51.69","24.32","5.78","480","9.891","null","null"
"Candies, MARS SNACKFOOD US, SKITTLES Original Bite Size Candies","Sweets","0.19","0","0.015","null","0.0668","0.012","90.78","75.84","4.37","3.83","405","4.115","null","null"
"Candies, MARS SNACKFOOD US, SKITTLES Sours Original","Sweets","0.18","0","0.014","null","0.0611","0","91.02","73.16","4","3.83","401","3.765","null","null"
"Candies, MARS SNACKFOOD US, SKITTLES Tropical Bite Size Candies","Sweets","0.19","0","0.015","null","0.06709999999999999","0","90.77","75.76","4.34","3.83","405","null","null","null"
"Candies, MARS SNACKFOOD US, SKITTLES Wild Berry Bite Size Candies","Sweets","0.19","0","0.015","null","0.06709999999999999","0","90.76","75.92","4.25","3.83","402","4.115","null","null"
"Candies, MARS SNACKFOOD US, SNICKERS Almond bar","Sweets","5.4","0.132","0.156","2.6","0.0007","0","64.67","53.93","22.4","5.45","472","8.534","null","null"
"Candies, MARS SNACKFOOD US, SNICKERS Bar","Sweets","7.53","0.093","0.239","2.3","0.0005","0.323","61.51","50.47","23.85","5.55","491","9.069","7.875","3.014"
"Candies, MARS SNACKFOOD US, SNICKERS CRUNCHER","Sweets","6.86","0.09","0.189","1.9","0.0005","0","62.85","46.54","24.38","4.47","488","12.703","null","null"
"Candies, MARS SNACKFOOD US, SNICKERS MUNCH bar","Sweets","15.25","0.054","0.358","4.7","0","0","43.64","30.87","36.22","2.99","536","8.819","null","null"
"Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Fruit and Creme","Sweets","0.41","0","0.002","null","0.0583","0","82.43","57.98","8.36","8.7","408","7.931","null","null"
"Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Original fruits","Sweets","0.41","0","0.002","null","0.0587","0.002","82.57","58.12","8.21","8.51","408","7.778","null","null"
"Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Tropical fruits","Sweets","0.41","0","0.002","null","0.0594","0","82.76","58.18","8.31","8.51","409","8.048","null","null"
"Candies, MARS SNACKFOOD US, STARBURST Sour Fruit Chews","Sweets","0.39","0","0.089","null","0.056600000000000004","0","79.73","56.1","7.78","10.89","400","7.52","null","null"
"Candies, MARS SNACKFOOD US, TWIX Caramel Cookie Bars","Sweets","4.91","0.106","0.198","1.1","0.0006","0.186","64.8","48.25","24.85","4.23","502","18.96","2.988","0.628"
"Candies, MARS SNACKFOOD US, TWIX Peanut Butter Cookie Bars","Sweets","9.18","0.075","0.226","3.1","0.0003","0.264","54.15","36.13","32.67","1.82","536","15.758","12.317","3.407"
"Candies, MARS SNACKFOOD US, TWIX chocolate fudge cookie bars","Sweets","7.3","0.13","0.266","3","0.001","0.309","56","53","33.3","2.2","550","4.962","14.319","12.521"
"Candies, MOUNDS Candy Bar","Sweets","4.6","0.021","0.145","3.7","0.0004","0.321","58.59","46.19","26.6","9.05","486","20.58","0.39","0.14"
"Candies, MR. GOODBAR Chocolate Bar","Sweets","10.22","0.11","0.041","3.8","0.0009","0.394","54.34","47.22","33.21","0.45","538","14.13","8.203","4.366"
"Candies, NESTLE, 100 GRAND Bar","Sweets","2.5","0.076","0.203","1","0.0007","0.163","70.97","51.9","19.33","6.1","468","11.9","6.039","1.388"
"Candies, NESTLE, AFTER EIGHT Mints","Sweets","1.67","0.013","0.001","2.4","0","0","79.53","66.6","11.9","6.3","432","8.33","null","null"
"Candies, NESTLE, BABY RUTH Bar","Sweets","5.4","0.047","0.23","2","0","0.249","64.8","54","21.6","6.99","459","12.1","5.557","2.638"
"Candies, NESTLE, BIT-O'-HONEY Candy Chews","Sweets","2","0.035","0.295","0.2","0.0008","0.044","80","48","7.5","8.3","375","5.5","1.03","0.338"
"Candies, NESTLE, BUTTERFINGER Bar","Sweets","5.4","0.036","0.23","2","0","0.22","72.9","45.9","18.9","1.23","459","9.5","5.119","3.164"
"Candies, NESTLE, CHUNKY Bar","Sweets","7.5","0.1","0.038","2.5","0","0","60","52.5","27.5","2.9","475","12.5","null","null"
"Candies, NESTLE, CRUNCH Bar and Dessert Topping","Sweets","5","0.1","0.15","1.9","0.0005","0.305","67","55","26","0.65","500","16","null","null"
"Candies, NESTLE, GOOBERS Chocolate Covered Peanuts","Sweets","9.7","0.089","0.036","9.7","0.0003","0.502","53","43","34","1.9","512","12.1","null","null"
"Candies, NESTLE, OH HENRY! Bar","Sweets","7.7","0.069","0.193","1.9","0","0.259","65.5","46.2","23","2.3","462","9.6","5.53","2.706"
"Candies, NESTLE, RAISINETS Chocolate Covered Raisins","Sweets","4.4","0.085","0.033","2.2","0.0016","0","71","59","17","6.4","422","11","null","null"
"Candies, REESE'S BITES","Sweets","11.34","0.112","0.179","3.1","0.0008","0.382","55.18","48.03","29.85","1.65","521","18","7.06","1.82"
"Candies, REESE'S NUTRAGEOUS Candy Bar","Sweets","11.28","0.068","0.141","3.9","0.0005","0.364","52.8","40.22","32.09","1.5","517","8.86","12.63","8.09"
"Candies, REESE'S PIECES Candy","Sweets","12.46","0.069","0.194","3","0","0.359","59.86","53.25","24.77","1","497","16.42","4.46","1.88"
"Candies, REESE'S Peanut Butter Cups","Sweets","10.24","0.078","0.357","3.6","0.0003","0.343","55.36","47.17","30.53","1.44","515","10.73","13.1","5.5"
"Candies, ROLO Caramels in Milk Chocolate","Sweets","5.08","0.145","0.188","0.9","0.0009","0.188","67.95","63.93","20.93","4.6","474","14.542","2.104","0.265"
"Candies, SKOR Toffee Bar","Sweets","3.13","0","0.317","1.3","0.0005","0.153","61.72","59.89","32.18","1.57","535","18.78","9.29","1.28"
"Candies, SPECIAL DARK Chocolate Bar","Sweets","5.54","0.03","0.006","6.5","0","0.502","60.49","47.56","32.4","0.9","556","null","5.14","0.44"
"Candies, SYMPHONY Milk Chocolate Bar","Sweets","8.51","0.251","0.101","1.7","0.0022","0.438","58.01","53.96","30.57","0.94","531","18.34","7.91","0.69"
"Candies, TOOTSIE ROLL, chocolate-flavor roll","Sweets","1.59","0.036","0.044","0.1","0","0.116","87.73","56.32","3.31","6.69","387","0.967","1.929","0.266"
"Candies, TWIZZLERS CHERRY BITES","Sweets","2.97","0.012","0.261","0.1","0","0.014","79.38","null","1.7","15","338","0.25","0.49","0.04"
"Candies, TWIZZLERS NIBS CHERRY BITS","Sweets","2.3","0.008","0.195","0.6","0","0.037","79.37","51.35","2.64","15","347","0.54","1.88","0.14"
"Candies, WHATCHAMACALLIT Candy Bar","Sweets","8.04","0.118","0.299","1.9","0.0009","0.303","63.23","48.86","23.68","3.04","494","17.04","3.78","0.83"
"Candies, YORK BITES","Sweets","1.78","0.01","0.046","2","0","0.108","81.64","75","7.32","9.09","394","4.43","0.48","0.1"
"Candies, YORK Peppermint Pattie","Sweets","2.19","0.011","0.028","2","0","0.111","80.99","63.78","7.17","9.03","384","4.34","0.41","0.11"
"Candies, butterscotch","Sweets","0.03","0.004","0.391","null","0","0.003","90.4","80.46","3.3","5.25","391","2.065","0.845","0.122"
"Candies, caramels","Sweets","4.6","0.138","0.245","null","0.0004","0.214","77","65.5","8.1","8.5","382","2.476","1.542","3.478"
"Candies, caramels, chocolate-flavor roll","Sweets","1.59","0.036","0.044","0.1","0","0.116","85.97","56.32","5.07","6.69","396","0.963","3.836","0.268"
"Candies, carob, unsweetened","Sweets","8.15","0.303","0.107","3.8","0.0005","0.633","56.29","34.11","31.36","1.54","540","29.018","0.483","0.295"
"Candies, chocolate, dark, NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)","Sweets","5.09","0.057","0.023","7.2","0","0.568","59.97","46.14","32.2","1","550","18.993","9.801","1.107"
"Candies, confectioner's coating, butterscotch","Sweets","2.2","0.034","0.089","null","0.0001","0.064","67.1","67.1","29.05","0.75","539","24.1","2.271","1.041"
"Candies, confectioner's coating, peanut butter","Sweets","18.3","0.11","0.25","5","0.0003","0.505","46.88","38.3","29.8","2.67","529","13.12","12.829","2.053"
"Candies, confectioner's coating, yogurt","Sweets","5.87","0.205","0.088","null","0.0005","0.29","63.94","62.36","27","1.91","522","24.104","0.526","0.524"
"Candies, dark chocolate coated coffee beans","Sweets","7.5","0.1","0.025","7.5","0","0.342","59.95","42.5","30","1.47","540","15","null","null"
"Candies, gumdrops, starch jelly pieces","Sweets","null","0.003","0.044","0.1","0","0.005","98.9","58.97","null","1","396","null","null","null"
"Candies, halavah, plain","Sweets","12.49","0.033","0.195","4.5","0.0001","0.187","60.49","null","21.52","3.67","469","4.127","8.194","8.481"
"Candies, hard","Sweets","null","0.003","0.038","null","0","0.005","98","62.9","0.2","1.3","394","null","null","null"
"Candies, jellybeans","Sweets","null","0.003","0.05","0.2","0","0.037","93.55","70","0.05","6.3","375","null","null","null"
"Candies, milk chocolate","Sweets","7.65","0.189","0.079","3.4","0","0.372","59.4","51.5","29.66","1.5","535","18.509","7.186","1.376"
"Candies, milk chocolate coated coffee beans","Sweets","7.41","0.169","0.07","5.7","0","0.413","55.25","50.75","33.18","2.42","549","18.138","13.735","1.31"
"Candies, milk chocolate coated peanuts","Sweets","13.1","0.104","0.041","4.7","0","0.502","49.7","37.59","33.5","1.9","519","14.6","12.92","4.33"
"Candies, milk chocolate coated raisins","Sweets","4.1","0.086","0.036","3.1","0.0002","0.514","68.4","62.22","14.8","11.2","390","10.272","3.134","0.571"
"Candies, peanut bar","Sweets","15.5","0.078","0.156","4.1","0","0.407","47.4","42.22","33.7","1.6","522","4.678","16.721","10.65"
"Candies, semisweet chocolate","Sweets","4.2","0.032","0.011","5.9","0","0.365","63.9","54.5","30","0.7","480","17.75","9.966","0.966"
"Candies, sesame crunch","Sweets","11.6","0.639","0.167","7.7","0","0.307","50.3","31.17","33.3","2.2","516","4.662","12.571","14.591"
"Candies, soft fruit and nut squares","Sweets","2.31","0.017","0.131","2.4","0.0002","0.082","73.81","45.95","9.52","13.88","390","0.898","1.297","6.84"
"Candies, sugar-coated almonds","Sweets","10","0.1","0.013","2.5","0","0.255","68.26","62.5","17.93","2.3","474","1.948","12.078","3.904"
"Candies, sweet chocolate","Sweets","3.9","0.024","0.016","5.5","0","0.29","60.4","51.48","34.2","0.5","507","20.08","11.22","0.99"
"Candies, sweet chocolate coated fondant","Sweets","2.2","0.017","0.026","2.1","0","0.168","80.4","71.42","9.3","7.7","366","5.46","3.09","0.3"
"Candies, white chocolate","Sweets","5.87","0.199","0.09","0.2","0.0005","0.286","59.24","59","32.09","1.3","539","19.412","9.097","1.013"
"Chewing gum","Sweets","null","0","0.001","2.4","0","0.002","96.7","66.08","0.3","2.6","360","0.042","0.079","0.137"
"Chewing gum, sugarless","Sweets","null","0.02","0.007","2.4","0","0","94.8","null","0.4","3.5","268","0.058","0.093","0.232"
"Chocolate, dark, 45- 59% cacao solids","Sweets","4.88","0.056","0.024","7","0","0.559","61.17","47.9","31.28","0.97","546","18.519","9.54","1.092"
"Chocolate, dark, 60-69% cacao solids","Sweets","6.12","0.062","0.01","8","0","0.567","52.42","36.71","38.31","1.25","579","22.031","11.522","1.221"
"Chocolate, dark, 70-85% cacao solids","Sweets","7.79","0.073","0.02","10.9","0","0.715","45.9","23.99","42.63","1.37","598","24.489","12.781","1.257"
"Chocolate-flavored hazelnut spread","Sweets","5.41","0.108","0.041","5.4","0","0.407","62.16","54.05","29.73","1.07","541","28.423","null","null"
"Fruit butters, apple","Sweets","0.39","0.014","0.015","1.5","0.0006","0.091","42.47","35.3","0.3","56.45","173","0.053","0.016","0.084"
"Honey","Sweets","0.3","0.006","0.004","0.2","0.0005","0.052","82.4","82.12","null","17.1","304","null","null","null"
"Ice creams, chocolate","Sweets","3.8","0.109","0.076","1.2","0.0007","0.249","28.2","25.36","11","55.7","216","6.8","3.21","0.41"
"Ice creams, chocolate, light","Sweets","5","0.159","0.071","0.8","0.0012","0.17","25.7","24.71","7.19","61.43","187","4.38","2.055","0.241"
"Ice creams, chocolate, light, no sugar added","Sweets","3.54","0.121","0.075","0.9","0.0007","0.196","26.79","5.65","5.74","62.99","173","3.61","0.93","0.527"
"Ice creams, chocolate, rich","Sweets","4.72","0.142","0.057","0.9","0.0005","0.238","20.75","17.35","16.98","57.52","255","10.377","4.794","0.658"
"Ice creams, french vanilla, soft-serve","Sweets","4.1","0.131","0.061","0.7","0.0008","0.177","22.2","21.16","13","59.8","222","7.48","3.49","0.45"
"Ice creams, vanilla","Sweets","3.5","0.128","0.08","0.7","0.0006","0.199","23.6","21.22","11","61","207","6.79","2.969","0.452"
"Ice creams, vanilla, light","Sweets","4.78","0.161","0.074","0.3","0.0012","0.208","29.46","22.12","4.83","59.85","180","2.927","1.281","0.219"
"Ice creams, vanilla, light, no sugar added","Sweets","3.97","0.136","0.096","null","0.0009","0.196","21.42","6.46","7.45","65.52","169","4.048","1.855","0.74"
"Ice creams, vanilla, light, soft-serve","Sweets","4.9","0.157","0.07","null","0.0009","0.221","21.8","18.69","2.6","69.6","126","1.63","0.76","0.1"
"Ice creams, vanilla, rich","Sweets","3.5","0.117","0.061","null","0","0.157","22.29","20.65","16.2","57.2","249","10.329","4.46","0.68"
"Jams and preserves","Sweets","0.37","0.02","0.032","1.1","0.0088","0.077","68.86","48.5","0.07","30.47","278","0.01","0.038","null"
"Jams and preserves, apricot","Sweets","0.7","0.02","0.04","0.3","0.0088","0.077","64.4","43.4","0.2","34.5","242","0.01","null","null"
"Jellies","Sweets","0.15","0.007","0.03","1","0.0009","0.054","69.95","51.22","0.02","29.77","266","0.005","null","0.004"
"Marmalade, orange","Sweets","0.3","0.038","0.056","0.7","0.0048","0.037","66.3","60","null","33.2","246","null","null","null"
"Molasses","Sweets","null","0.205","0.037","null","0","1.464","74.73","55.49","0.1","21.87","290","0.018","0.032","0.05"
"Pectin, liquid","Sweets","null","0","0","2.1","0","0","2.1","null","null","96.9","11","null","null","null"
"Sherbet, orange","Sweets","1.1","0.054","0.046","1.3","0.0023","0.096","30.4","24.32","2","66.1","144","1.16","0.53","0.08"
"Snacks, fruit leather, pieces","Sweets","1","0.018","0.403","null","0.056","0.164","82.82","57.58","2.68","12.3","359","0.65","1.48","0.55"
"Snacks, fruit leather, rolls","Sweets","0.1","0.032","0.317","null","0.12","0.294","85.8","49.16","3","10.2","371","0.672","1.48","0.552"
"Sugar, turbinado","Sweets","null","0.012","0.003","null","0","0.029","99.8","99.19","null","0.03","399","null","null","null"
"Sugars, brown","Sweets","0.12","0.083","0.028","null","0","0.133","98.09","97.02","null","1.34","380","null","null","null"
"Sugars, granulated","Sweets","null","0.001","0.001","null","0","0.002","99.98","99.8","null","0.02","387","null","null","null"
"Sugars, maple","Sweets","0.1","0.09","0.011","null","0","0.274","90.9","84.87","0.2","8","354","0.036","0.064","0.1"
"Sweeteners, for baking, brown, contains sugar and sucralose","Sweets","null","0.063","0.011","null","0","0.13","97.11","45.66","null","2.44","388","null","null","null"
"Sweeteners, for baking, contains sugar and sucralose","Sweets","null","0.001","0.002","null","0","0.002","99.53","47.05","null","0.43","398","null","null","null"
"Sweeteners, tabletop, aspartame, EQUAL, packets","Sweets","2.17","0","0","null","0","0.004","89.08","80.7","null","8.75","365","null","null","null"
"Sweeteners, tabletop, fructose, liquid","Sweets","null","0.001","0.002","0.1","0","0","76.1","76","null","23.9","279","null","null","null"
"Sweeteners, tabletop, saccharin","Sweets","0.94","0","0.428","null","0","0.004","89.11","85.19","null","8.75","360","null","null","null"
"Sweeteners, tabletop, sucralose, SPLENDA packets","Sweets","null","0","0","null","0","0.004","91.17","80.33","null","8.83","336","null","null","null"
"Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup","Sweets","1.4","0.011","0.1","null","0","0.187","34.56","28.57","0.97","62.16","153","null","null","null"
"Syrups, chocolate, fudge-type","Sweets","4.6","0.049","0.346","2.8","0.0002","0.284","62.9","34.82","8.9","21.8","350","3.98","3.857","0.278"
"Syrups, corn, dark","Sweets","null","0.018","0.155","null","0","0.044","77.59","26.7","null","22.01","286","null","null","null"
"Syrups, corn, high-fructose","Sweets","null","0","0.002","null","0","0","76","26.36","null","24","281","null","null","null"
"Syrups, corn, light","Sweets","null","0.013","0.062","null","0","0.001","76.79","26.77","0.2","22.81","283","null","null","null"
"Syrups, dietetic","Sweets","0.8","0","0.021","3","0","0","49.2","0.01","null","50","40","null","null","null"
"Syrups, grenadine","Sweets","null","0.006","0.027","null","0","0.028","66.91","46.55","null","32.4","268","null","null","null"
"Syrups, malt","Sweets","6.2","0.061","0.035","null","0","0.32","71.3","71.3","null","21.1","318","null","null","null"
"Syrups, maple","Sweets","0.04","0.102","0.012","null","0","0.212","67.04","60.44","0.06","32.39","260","0.007","0.011","0.017"
"Syrups, sorghum","Sweets","null","0.15","0.008","null","0","1","74.9","74.9","null","22.7","290","null","null","null"
"Syrups, table blends, cane and 15% maple","Sweets","null","0.012","0.104","0.1","0","0.053","69.52","68.2","0.1","30.1","278","0.02","0.032","0.05"
"Syrups, table blends, corn, refiner, and sugar","Sweets","null","0.023","0.071","null","0","0.063","83.9","null","null","15.6","319","null","null","null"
"Syrups, table blends, pancake","Sweets","null","0.003","0.082","null","0","0.015","61.47","21.47","null","37.98","234","null","null","null"
"Toppings, butterscotch or caramel","Sweets","1.5","0.053","0.349","0.9","0.0003","0.084","65.9","null","0.1","32","252","0.11","0.02","null"
"Toppings, nuts in syrup","Sweets","4.5","0.035","0.042","2.3","0.0003","0.151","58.08","36.72","22","14.69","448","1.96","4.97","13.73"
"Toppings, pineapple","Sweets","0.1","0.006","0.042","0.4","0.0031","0.043","66.4","21.01","0.1","33","253","0.018","0.032","0.05"
"Barley, hulled","Cereal Grains and Pasta","12.48","0.033","0.012","17.3","0","0.452","73.48","0.8","2.3","9.44","354","0.482","0.295","1.108"
"Buckwheat","Cereal Grains and Pasta","13.25","0.018","0.001","10","0","0.46","71.5","null","3.4","9.75","343","0.741","1.04","1.039"
"Corn, white","Cereal Grains and Pasta","9.42","0.007","0.035","null","0","0.287","74.26","null","4.74","10.37","365","0.667","1.251","2.163"
"Cornstarch","Cereal Grains and Pasta","0.26","0.002","0.009","0.9","0","0.003","91.27","null","0.05","8.32","381","0.009","0.016","0.025"
"Noodles, chinese, chow mein","Cereal Grains and Pasta","8.38","0.02","0.439","3.9","0","0.12","57.54","0.26","30.76","0.73","527","4.384","7.689","17.331"
"Noodles, flat, crunchy, Chinese restaurant","Cereal Grains and Pasta","10.33","0.021","0.378","1.9","0","0.089","51.9","0.25","31.72","4.93","521","4.931","7.617","16.949"
"Oats","Cereal Grains and Pasta","16.89","0.054","0.002","10.6","0","0.429","66.27","null","6.9","8.22","389","1.217","2.178","2.535"
"Pasta, fresh-refrigerated, plain, as purchased","Cereal Grains and Pasta","11.31","0.015","0.026","null","0","0.179","54.73","null","2.3","31","288","0.328","0.271","0.942"
"Pasta, fresh-refrigerated, spinach, as purchased","Cereal Grains and Pasta","11.26","0.043","0.027","null","0","0.272","55.72","null","2.1","30.1","289","0.483","0.659","0.467"
"Rice, white, steamed, Chinese restaurant","Cereal Grains and Pasta","3.2","0.005","0.005","0.9","0","0.02","33.88","null","0.27","62.5","151","null","null","null"
"Rye","Cereal Grains and Pasta","10.34","0.024","0.002","15.1","0","0.51","75.86","0.98","1.63","10.6","338","0.197","0.208","0.767"
"Semolina, enriched","Cereal Grains and Pasta","12.68","0.017","0.001","3.9","0","0.186","72.83","null","1.05","12.67","360","0.15","0.124","0.43"
"Semolina, unenriched","Cereal Grains and Pasta","12.68","0.017","0.001","3.9","0","0.186","72.83","null","1.05","12.67","360","0.15","0.124","0.43"
"Sorghum","Cereal Grains and Pasta","11.3","0.028","0.006","6.3","0","0.35","74.63","null","3.3","9.2","339","0.457","0.993","1.37"
"Triticale","Cereal Grains and Pasta","13.05","0.037","0.005","null","0","0.332","72.13","null","2.09","10.51","336","0.366","0.211","0.913"
"Wheat, durum","Cereal Grains and Pasta","13.68","0.034","0.002","null","0","0.431","71.13","null","2.47","10.94","339","0.454","0.344","0.978"
"Wheat, hard red spring","Cereal Grains and Pasta","15.4","0.025","0.002","12.2","0","0.34","68.03","0.41","1.92","12.76","329","0.314","0.303","0.765"
"Wheat, hard red winter","Cereal Grains and Pasta","12.61","0.029","0.002","12.2","0","0.363","71.18","0.41","1.54","13.1","327","0.269","0.2","0.627"
"Wheat, hard white","Cereal Grains and Pasta","11.31","0.032","0.002","12.2","0","0.432","75.9","0.41","1.71","9.57","342","0.277","0.203","0.75"
"Wheat, soft red winter","Cereal Grains and Pasta","10.35","0.027","0.002","12.5","0","0.397","74.24","0.41","1.56","12.17","331","0.289","0.178","0.656"
"Wheat, soft white","Cereal Grains and Pasta","10.69","0.034","0.002","12.7","0","0.435","75.36","0.41","1.99","10.42","340","0.368","0.227","0.837"
"Wheat, sprouted","Cereal Grains and Pasta","7.49","0.028","0.016","1.1","0.0026","0.169","42.53","null","1.27","47.75","198","0.206","0.151","0.557"
"BURGER KING, CHICKEN TENDERS","Fast Foods","17.25","0.015","0.721","2.3","0.0007","0.263","17.41","0.12","16.67","46.06","289","null","null","null"
"BURGER KING, Cheeseburger","Fast Foods","14.57","0.093","0.602","2.8","0.0002","0.178","23.71","4.49","14.81","44.59","286","6.842","5.704","1.521"
"BURGER KING, Chicken WHOPPER Sandwich","Fast Foods","11.77","0.033","0.433","1.5","0.0002","0.183","18.67","3.39","10.52","57.3","216","2.198","3.1","4.76"
"BURGER KING, DOUBLE WHOPPER, no cheese","Fast Foods","13.94","0.035","0.289","1.4","0.0002","0.192","13.74","3.52","15.66","55.29","252","5.773","6.117","3.016"
"BURGER KING, French Fries","Fast Foods","3.5","0.009","0.455","2.9","0.0007","0.473","40.08","0.69","17.4","36.66","331","null","null","null"
"BURGER KING, French Toast Sticks","Fast Foods","6","0.053","0.428","1.4","0","0.111","41.21","9.89","17.74","33.57","349","3.989","9.502","2.566"
"BURGER KING, Hamburger","Fast Foods","14.18","0.051","0.455","2","0.0002","0.182","27.11","4.85","12.17","44.68","275","5.068","5.317","1.246"
"BURGER KING, Hash Brown Rounds","Fast Foods","2.87","0.016","0.511","2.9","0.0016","0.365","34.55","0.27","24.35","36.12","369","null","null","null"
"BURGER KING, Original Chicken Sandwich","Fast Foods","12.57","0.04","0.59","2.4","0.0002","0.185","24.35","2.71","15.4","45.52","286","null","null","null"
"BURGER KING, Vanilla Shake","Fast Foods","3.19","0.104","0.1","null","0","0.153","19.03","11.67","8.74","68.13","168","5.335","2.47","0.434"
"BURGER KING, WHOPPER, no cheese","Fast Foods","10.74","0.039","0.313","1.8","0.0002","0.169","18.55","4.22","12.84","56.43","233","4.25","4.685","3.389"
"DOMINO'S 14" Cheese Pizza, Classic Hand-Tossed Crust","Fast Foods","10.98","0.134","0.478","1.4","0","0.152","34.45","3.57","8.39","44.3","257","3.547","1.976","1.583"
"DOMINO'S 14" Cheese Pizza, Crunchy Thin Crust","Fast Foods","12.96","0.222","0.497","2.1","0","0.184","28.01","3.17","16.82","39.72","315","6.756","4.217","3.646"
"DOMINO'S 14" Cheese Pizza, Ultimate Deep Dish Crust","Fast Foods","11.36","0.148","0.561","2.3","0","0.164","33.93","3.28","10.34","42.09","274","4.025","2.937","1.921"
"DOMINO'S 14" EXTRAVAGANZZA FEAST Pizza, Classic Hand-Tossed Crust","Fast Foods","10.33","0.113","0.456","2","0","0.174","25.72","3.3","11.1","50.77","244","4.386","3.627","1.425"
"DOMINO'S 14" Pepperoni Pizza, Classic Hand-Tossed Crust","Fast Foods","11.6","0.122","0.507","1.5","0","0.176","32.29","3.45","10.54","43.45","270","4.255","3.137","1.75"
"DOMINO'S 14" Pepperoni Pizza, Ultimate Deep Dish Crust","Fast Foods","12.11","0.112","0.526","2.1","0","0.176","32.3","3.26","12.28","40.85","288","4.905","4.027","2.03"
"Entrees, crab cake","Fast Foods","18.75","0.337","0.819","0.4","0.0003","0.27","8.52","null","17.25","53.38","266","3.74","7.18","5.13"
"Entrees, fish fillet, battered or breaded, and fried","Fast Foods","14.66","0.018","0.532","0.5","0","0.32","16.97","null","12.29","53.57","232","2.82","2.58","6.27"
"KENTUCKY FRIED CHICKEN, Biscuit, analyzed prior to January 2007","Fast Foods","7.25","0.06","1.053","1.5","0","0.115","42.51","3.22","17.45","28.96","356","4.197","11.686","1.159"
"KENTUCKY FRIED CHICKEN, Coleslaw","Fast Foods","0.91","0.028","0.189","2","0.0146","0.14","15.65","13.54","8.64","73.99","144","1.303","1.963","4.888"
"KENTUCKY FRIED CHICKEN, Crispy Chicken Strips","Fast Foods","20.25","0.025","0.948","1.4","0","0.333","13.66","null","15.42","47.93","274","2.887","4.308","6.881"
"KENTUCKY FRIED CHICKEN, Fried Chicken, EXTRA CRISPY, Breast, meat only, skin and breading removed","Fast Foods","27.25","0.02","0.477","null","0","0.309","0.25","null","4.82","65.71","153","1.196","1.683","1.62"
"KENTUCKY FRIED CHICKEN, Fried Chicken, EXTRA CRISPY, Drumstick, meat only, skin and breading removed","Fast Foods","25.9","0.016","0.526","null","0","0.273","null","null","7.43","64.78","170","1.893","2.903","2.051"
"KENTUCKY FRIED CHICKEN, Fried Chicken, EXTRA CRISPY, Skin and Breading","Fast Foods","10.96","0.041","0.828","1.5","0","0.17","22.54","null","36.61","26.98","464","7.541","11.816","14.238"
"KENTUCKY FRIED CHICKEN, Fried Chicken, EXTRA CRISPY, Thigh, meat only, skin and breading removed","Fast Foods","22.41","0.021","0.558","null","0","0.271","null","null","9.96","65.68","179","2.709","4.164","2.267"
"KENTUCKY FRIED CHICKEN, Fried Chicken, EXTRA CRISPY, Wing, meat only, skin and breading removed","Fast Foods","28.67","0.03","0.714","null","0","0.265","2.97","null","12.13","53.85","236","2.603","3.917","4.045"
"KENTUCKY FRIED CHICKEN, Fried Chicken, ORIGINAL RECIPE, Breast, meat only, skin and breading removed","Fast Foods","26.76","0.019","0.469","null","0","0.304","0.17","null","4.3","66.67","146","1.089","1.53","1.189"
"KENTUCKY FRIED CHICKEN, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat only, skin and breading removed","Fast Foods","26.3","0.016","0.524","null","0","0.273","0.11","null","7.66","63.77","175","1.838","2.816","1.963"
"KENTUCKY FRIED CHICKEN, Fried Chicken, ORIGINAL RECIPE, Skin and Breading","Fast Foods","13","0.059","0.86","null","0","0.199","17.63","null","29.47","36.63","388","6.495","10.454","9.696"
"KENTUCKY FRIED CHICKEN, Fried Chicken, ORIGINAL RECIPE, Thigh, meat only, skin and breading removed","Fast Foods","22.54","0.02","0.541","null","0","0.263","0.26","null","9.43","65.7","176","2.694","4.189","2.106"
"KENTUCKY FRIED CHICKEN, Fried Chicken, ORIGINAL RECIPE, Wing, meat only, skin and breading removed","Fast Foods","27.88","0.029","0.683","null","0","0.254","2.75","null","10.62","56.14","218","2.465","3.813","3.382"
"KENTUCKY FRIED CHICKEN, Popcorn Chicken","Fast Foods","17.67","0.032","1.14","1","0","0.288","21.18","null","21.74","35.62","351","3.954","5.66","10.093"
"KENTUCKY FRIED CHICKEN, Potato Wedges, analyzed prior to January 2007","Fast Foods","4.05","0.026","0.757","3.1","0","0.522","33.55","null","14.77","44.19","283","2.981","8.858","1.799"
"LITTLE CAESARS 14" Cheese Pizza, Large Deep Dish Crust","Fast Foods","12.63","0.224","0.432","1.3","0","0.16","30.1","3.66","10.22","44.9","263","4.237","2.757","1.728"
"LITTLE CAESARS 14" Cheese Pizza, Thin Crust","Fast Foods","16.23","0.422","0.455","1.6","0","0.177","22.85","2.76","16.99","41.21","309","7.327","4.42","3.161"
"LITTLE CAESARS 14" Original Round Cheese Pizza, Regular Crust","Fast Foods","13.39","0.233","0.454","1.7","0","0.17","31.5","4.02","9.54","43.39","265","4.206","2.38","1.461"
"LITTLE CAESARS 14" Original Round Meat and Vegetable Pizza, Regular Crust","Fast Foods","12.12","0.167","0.578","2.1","0","0.195","23.1","3.74","11.35","51.1","243","4.561","4.063","1.72"
"LITTLE CAESARS 14" Original Round Pepperoni Pizza, Regular Crust","Fast Foods","13.59","0.21","0.518","1.7","0","0.178","31.01","3.76","10.5","42.57","273","4.541","3.108","1.603"
"LITTLE CAESARS 14" Pepperoni Pizza, Large Deep Dish Crust","Fast Foods","12.93","0.201","0.492","1.5","0","0.173","29.03","3.39","10.81","44.98","265","4.314","3.151","1.756"
"McDONALD'S, Apple Dippers","Fast Foods","null","0.062","0","null","0.277","0","12.1","9.2","null","87.5","48","null","null","null"
"McDONALD'S, BIG 'N TASTY","Fast Foods","10.64","0.065","0.317","1.4","0.0019","0.2","16.6","3.79","13.68","57.71","226","3.726","4.195","2.995"
"McDONALD'S, BIG MAC","Fast Foods","11.82","0.116","0.46","1.6","0.0004","0.181","20.08","3.97","14.96","51.3","257","3.803","3.474","0.306"
"McDONALD'S, Bacon Egg & Cheese Biscuit","Fast Foods","13.45","0.109","0.863","0.9","0.0021000000000000003","0.121","22.26","2.18","18.77","42.29","304","8.262","5.546","2.625"
"McDONALD'S, Bacon, Egg & Cheese McGRIDDLES","Fast Foods","12.03","0.109","0.752","0.8","0.0018","0","26.19","9.56","13.19","45.85","272","4.201","4.686","1.775"
"McDONALD'S, Baked Apple Pie","Fast Foods","3.07","0.019","0.199","2","0.032299999999999995","0.063","43.62","17.25","15.66","36.98","323","3.995","9.183","1.038"
"McDONALD'S, Barbeque Sauce","Fast Foods","1.55","0.011","0.91","1.3","0","0.197","36.93","34.31","1.22","57.68","165","0.14","0.271","0.504"
"McDONALD'S, Biscuit, large size","Fast Foods","6.16","0.076","0.974","2","0","0.12","43.76","2.96","16.01","30.71","344","9.26","3.749","2.227"
"McDONALD'S, Biscuit, regular size","Fast Foods","6.16","0.076","0.974","2","0","0.12","43.77","2.96","16","30.71","344","9.26","3.748","2.223"
"McDONALD'S, Cheeseburger","Fast Foods","12.97","0.167","0.626","1.1","0.0006","0.2","27.81","6.22","11.79","45","263","4.435","3.631","0.355"
"McDONALD'S, Chicken McNUGGETS","Fast Foods","14.97","0.014","0.632","0.8","0.0012","0.251","17.22","null","18.07","47.44","291","3.133","8.177","5.896"
"McDONALD'S, Chicken SELECTS Premium Breast Strips","Fast Foods","17.23","0.02","0.767","0.2","0","0.291","17.83","null","18.08","44.12","303","2.575","8.129","6.597"
"McDONALD'S, Chocolate TRIPLE THICK Shake","Fast Foods","3.69","0.122","0.071","0.2","0","0.226","27.87","23.63","4.51","62.98","163","2.302","1.122","0.212"
"McDONALD'S, Creamy Ranch Sauce","Fast Foods","1.11","0.029","0.708","null","0","0.078","3.49","3.45","52.03","41.36","468","7.894","11.094","28.178"
"McDONALD'S, Deluxe Warm Cinnamon Roll","Fast Foods","5.62","0.048","0.407","2.5","0","0.094","51.8","22.23","16.24","24.97","367","4.606","7.452","1.985"
"McDONALD'S, Double Cheeseburger","Fast Foods","14.89","0.16","0.657","0.8","0.0004","0.217","19.83","4.66","14.97","47.77","265","6.088","4.983","0.486"
"McDONALD'S, Egg McMUFFIN","Fast Foods","12.65","0.198","0.619","1.1","0.0012","0.157","20.54","2.01","9.11","55.24","215","3.222","2.722","1.812"
"McDONALD'S, English Muffin","Fast Foods","9.26","0.292","0.485","2.6","0","0.128","44.36","2.57","7.87","36.26","285","1.554","1.936","4.092"
"McDONALD'S, FILET-O-FISH","Fast Foods","10.99","0.115","0.485","1","0.0001","0.175","27.45","2.65","13.47","46.18","275","2.597","3.85","5.633"
"McDONALD'S, French Fries","Fast Foods","3.81","0.017","0.227","4.2","0.0073","0.56","39.02","0.2","16.12","39.76","316","2.084","7.805","4.664"
"McDONALD'S, Fruit & Walnut Salad","Fast Foods","1.81","0.065","0.032","null","0.1453","0","16.6","12.45","5.05","75.95","118","0.699","0.81","3.204"
"McDONALD'S, Fruit 'n Yogurt Parfait","Fast Foods","2.73","0.086","0.058","1","0.013900000000000001","0.167","20.72","12.83","1.3","74.61","105","0.041","0.106","0.095"
"McDONALD'S, Hamburger","Fast Foods","12.36","0.121","0.507","1.3","0.0006","0.203","30.69","6.58","9.29","45.67","252","2.938","3.17","0.223"
"McDONALD'S, Hash Browns","Fast Foods","2.26","0.014","0.548","2.8","0.0017","0.391","26.3","0.06","16.46","52.73","262","2.263","8.525","4.945"
"McDONALD'S, Honey","Fast Foods","0.09","0.005","0.007","null","0.0007","0.03","86.44","74.32","null","13.4","351","null","null","null"
"McDONALD'S, Hot Caramel Sundae","Fast Foods","3.58","0.127","0.08","null","0","0.186","33.36","23.54","4.89","57.27","188","2.468","1.21","0.232"
"McDONALD'S, Hot Fudge Sundae","Fast Foods","4.14","0.139","0.094","0.4","0","0.246","30.05","26.89","5.91","58.81","186","3.592","1.045","0.22"
"McDONALD'S, Hot Mustard Sauce","Fast Foods","2.6","0.032","0.902","5","0","0.083","29.08","21.76","7.31","58.65","190","0.987","1.724","3.406"
"McDONALD'S, Hotcakes (plain)","Fast Foods","6","0.084","0.358","1.4","0","0.173","38.27","8.84","5.84","48.24","228","1.158","1.236","2.978"
"McDONALD'S, Hotcakes and Sausage","Fast Foods","5.87","0.051","0.354","0.8","0","0.148","38.79","17.3","13.21","40.7","294","2.747","3.426","2.468"
"McDONALD'S, McDONALDLAND Chocolate Chip Cookies","Fast Foods","5.56","0.034","0.293","2","0","0.194","66.24","33.86","22.79","4.19","480","11.373","5.894","1.305"
"McDONALD'S, McDONALDLAND Cookies","Fast Foods","6.56","0.017","0.483","1.6","0","0.098","72.75","24.13","15.35","3.97","447","3.244","8.087","2.151"
"McDONALD'S, NEWMAN'S OWN Cobb Dressing","Fast Foods","1.69","0.05","0.709","0.3","0.0005","0.02","15.49","7.79","14.45","66.41","196","2.77","3.67","7.91"
"McDONALD'S, NEWMAN'S OWN Creamy Caesar Dressing","Fast Foods","3.56","0.104","0.851","0.1","0","0.027","6.85","3","31.5","54.9","319","5.86","7.75","16.3"
"McDONALD'S, NEWMAN'S OWN Ranch Dressing","Fast Foods","2.62","0.077","0.954","0.3","0.0008","0.12","16.75","6.57","26.57","51.35","313","4.36","15.35","6.35"
"McDONALD'S, Peanuts (for Sundaes)","Fast Foods","28.04","0.046","0","null","0","0.634","16.23","4.15","52.91","0.56","640","8.305","25.749","13.979"
"McDONALD'S, Premium Crispy Chicken Classic Sandwich","Fast Foods","12.08","0.034","0.512","1.4","0.0025","0.227","25.46","5.37","8.68","51.98","228","1.409","3.179","3.708"
"McDONALD'S, Premium Crispy Chicken Club Sandwich","Fast Foods","15.38","0.092","0.605","1.2","0.0038","0","22.61","4.99","11.76","48.02","250","3.333","4.223","3.557"
"McDONALD'S, Premium Crispy Chicken Ranch BLT Sandwich","Fast Foods","14.7","0.035","0.637","1.4","0.0043","0","24.93","5.53","9.55","48.61","244","1.971","3.773","3.231"
"McDONALD'S, Premium Grilled Chicken Classic Sandwich","Fast Foods","14.16","0.037","0.54","1.4","0.0032","0.228","22.28","5.01","4.29","57.3","183","0.865","1.157","2.074"
"McDONALD'S, Premium Grilled Chicken Club Sandwich","Fast Foods","17.19","0.095","0.63","1.2","0.0044","0","19.87","4.68","8.05","52.52","221","2.89","2.508","2.16"
"McDONALD'S, Premium Grilled Chicken Ranch BLT Sandwich","Fast Foods","16.7","0.038","0.666","1.4","0.004900000000000001","0","21.91","5.2","5.41","53.61","204","1.463","1.865","1.678"
"McDONALD'S, QUARTER POUNDER","Fast Foods","14.1","0.084","0.427","1.6","0.0009","0.227","22.17","5.13","11.55","50.37","244","4.008","4.202","0.283"
"McDONALD'S, Sausage Biscuit","Fast Foods","9.62","0.055","0.875","1.2","0","0.177","27.2","1.97","25.4","34.71","376","10.659","8.832","3.42"
"McDONALD'S, Sausage Burrito","Fast Foods","11.54","0.18","0.675","1.1","0.0008","0.137","21.39","1.25","15.15","49.41","262","5.361","5.735","2.109"
"McDONALD'S, Sausage McGRIDDLES","Fast Foods","8.41","0.063","0.737","1","0","0.145","31.25","11.23","17.76","40.11","312","5.435","7.532","2.591"
"McDONALD'S, Sausage McMUFFIN","Fast Foods","12.66","0.224","0.693","1.4","0","0.188","24.52","1.93","21.06","38.94","333","7.253","7.749","3.234"
"McDONALD'S, Sausage Patty","Fast Foods","15.19","0.023","0.721","null","0","0.268","1.4","0.43","39.58","41.21","405","12.83","16.719","4.824"
"McDONALD'S, Sausage, Egg & Cheese McGRIDDLES","Fast Foods","10.77","0.096","0.652","0.6","0","0.146","22.04","7.9","17.73","47.03","283","5.649","6.718","2.26"
"McDONALD'S, Scrambled Eggs","Fast Foods","15.06","0.066","0.192","null","0","0.139","1.85","0.26","14.69","66.94","193","4.062","5.22","2.195"
"McDONALD'S, Side Salad","Fast Foods","1.03","0.024","0.012","1.6","0.0157","0.22","4.3","2.24","0.19","93.93","20","0.02","0.006","0.079"
"McDONALD'S, Spicy Buffalo Sauce","Fast Foods","0.54","0.009","2.14","1.5","0","0.1","1.81","null","15.45","76","142","2.277","3.222","8.433"
"McDONALD'S, Sweet 'N Sour Sauce","Fast Foods","0.66","0.006","0.557","null","0.0012","0.099","39.38","35.79","1.09","57.37","170","0.148","0.241","0.514"
"McDONALD'S, Tangy Honey Mustard Sauce","Fast Foods","1.32","0.023","0.383","2.7","0","0.049","28.81","21.88","5.77","63","167","0.895","1.334","2.679"
"McDONALD'S, Vanilla TRIPLE THICK Shake","Fast Foods","3.47","0.121","0.053","null","0","0.176","26.61","20.43","4.43","64.69","156","2.25","1.094","0.213"
"McDONALD'S, Warm Cinnamon Roll","Fast Foods","7.18","0.057","0.378","1.9","0","0.14","53.02","24.64","18.14","20.34","398","4.47","9.062","2.811"
"PAPA JOHN'S 14" Cheese Pizza, Original Crust","Fast Foods","11.53","0.166","0.578","1.9","0","0.138","32.74","5.32","9.25","44.16","260","3.871","2.476","1.97"
"PAPA JOHN'S 14" Cheese Pizza, Thin Crust","Fast Foods","12.29","0.238","0.528","2.3","0","0.16","26.26","3.85","15.66","43.3","295","6.202","6.002","1.663"
"PAPA JOHN'S 14" Pepperoni Pizza, Original Crust","Fast Foods","11.97","0.152","0.671","1.2","0","0.15","30.04","4.84","11.86","43.6","275","4.908","3.912","2.206"
"PAPA JOHN'S 14" The Works Pizza, Original Crust","Fast Foods","10.27","0.099","0.57","2.5","0","0.16","26.69","4.84","10.21","50.57","240","3.765","3.652","1.877"
"PIZZA HUT 12" Cheese Pizza, Regular Crust","Fast Foods","11.93","0.209","0.685","1.8","0","0.173","31.22","3.37","10.89","43.29","271","5.04","2.919","1.839"
"PIZZA HUT 12" Cheese Pizza, THIN 'N CRISPY Crust","Fast Foods","15.29","0.278","0.784","1.6","0","0.191","28.64","2.67","14.1","38.77","303","6.896","3.807","1.698"