-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathingredientsHS.json
1286 lines (1286 loc) · 173 KB
/
ingredientsHS.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"more": false,
"minimumInputLength": 2,
"classCode": "HS",
"className": "HS (as reported)",
"results": [
{
"id": "ALL",
"text": "ALL - All HS commodities",
"parent": "#"
},
{ "id": "TOTAL", "text": "TOTAL - Total of all HS commodities", "parent": "#" },
{ "id": "AG2", "text": "AG2 - All 2-digit HS commodities", "parent": "#" },
{ "id": "AG4", "text": "AG4 - All 4-digit HS commodities", "parent": "#" },
{ "id": "AG6", "text": "AG6 - All 6-digit HS commodities", "parent": "#" },
{ "id": "01", "text": "01 - Live animals", "parent": "TOTAL" },
{ "id": "0101", "text": "0101 - Live horses, asses, mules and hinnies", "parent": "01" },
{ "id": "010110", "text": "010110 - Live horses/asses/mules/hinnies: pure-bred breeding animals", "parent": "0101" },
{ "id": "010111", "text": "010111 - Horses, live pure-bred breeding", "parent": "0101" },
{ "id": "010119", "text": "010119 - Horses, live except pure-bred breeding", "parent": "0101" },
{ "id": "010120", "text": "010120 - Asses, mules and hinnies, live", "parent": "0101" },
{ "id": "010121", "text": "010121 - Live animals // Live horses, asses, mules and hinnies. // - Horses : // -- Pure-bred breeding animals", "parent": "0101" },
{ "id": "010129", "text": "010129 - Live animals // Live horses, asses, mules and hinnies. // - Horses : // -- Other", "parent": "0101" },
{ "id": "010130", "text": "010130 - Live animals // Live horses, asses, mules and hinnies. // -Asses", "parent": "0101" },
{ "id": "010190", "text": "010190 - Live horses/asses/mules/hinnies other than pure-bred breeding animals", "parent": "0101" },
{ "id": "0102", "text": "0102 - Live bovine animals", "parent": "01" },
{ "id": "010210", "text": "010210 - Bovine animals, live pure-bred breeding", "parent": "0102" },
{ "id": "010221", "text": "010221 - Live animals // Live bovine animals. // - Cattle : // -- Pure-bred breeding animals", "parent": "0102" },
{ "id": "010229", "text": "010229 - Live animals // Live bovine animals. // - Cattle : // -- Other", "parent": "0102" },
{ "id": "010231", "text": "010231 - Live animals // Live bovine animals. // - Buffalo : // -- Pure-bred breeding animals", "parent": "0102" },
{ "id": "010239", "text": "010239 - Live animals // Live bovine animals. // - Buffalo : // -- Other", "parent": "0102" },
{ "id": "010290", "text": "010290 - Bovine animals, live, except pure-bred breeding", "parent": "0102" },
{ "id": "0103", "text": "0103 - Live swine", "parent": "01" },
{ "id": "010310", "text": "010310 - Swine, live pure-bred breeding", "parent": "0103" },
{ "id": "010391", "text": "010391 - Swine, live except pure-bred breeding < 50 kg", "parent": "0103" },
{ "id": "010392", "text": "010392 - Swine, live except pure-bred breeding > 50 kg", "parent": "0103" },
{ "id": "0104", "text": "0104 - Live sheep and goats", "parent": "01" },
{ "id": "010410", "text": "010410 - Sheep, live", "parent": "0104" },
{ "id": "010420", "text": "010420 - Goats, live", "parent": "0104" },
{ "id": "0105", "text": "0105 - Live poultry, domestic fowls, ducks, geese, etc.", "parent": "01" },
{ "id": "010511", "text": "010511 - Fowls, live domestic < 185 grams", "parent": "0105" },
{ "id": "010512", "text": "010512 - Turkeys", "parent": "0105" },
{ "id": "010513", "text": "010513 - Live animals // Live poultry, that is to say, fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls. // - Weighing not more than 185 g : // -- Ducks", "parent": "0105" },
{ "id": "010514", "text": "010514 - Live animals // Live poultry, that is to say, fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls. // - Weighing not more than 185 g : // -- Geese", "parent": "0105" },
{ "id": "010515", "text": "010515 - Live animals // Live poultry, that is to say, fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls. // - Weighing not more than 185 g : // -- Guinea fowls", "parent": "0105" },
{ "id": "010519", "text": "010519 - Poultry, live except domestic fowls, < 185 grams", "parent": "0105" },
{ "id": "010591", "text": "010591 - Fowls, live domestic > 185 grams", "parent": "0105" },
{ "id": "010592", "text": "010592 - Fowls, domestic, live we", "parent": "0105" },
{ "id": "010593", "text": "010593 - Fowls, domestic, live we", "parent": "0105" },
{ "id": "010594", "text": "010594 - Live fowls of species Gallus domesticus, weighing > 185g", "parent": "0105" },
{ "id": "010599", "text": "010599 - Poultry, live except domestic fowls, > 185 grams", "parent": "0105" },
{ "id": "0106", "text": "0106 - Animals, live, except farm animals", "parent": "01" },
{ "id": "010600", "text": "010600 - Animals, live, except farm animals", "parent": "0106" },
{ "id": "010611", "text": "010611 - Live primates", "parent": "0106" },
{ "id": "010612", "text": "010612 - Live whales/dolphins \u0026 porpoises (order Cetacea)/manatees \u0026 dugongs (order ...", "parent": "0106" },
{ "id": "010613", "text": "010613 - Live animals // Other live animals. // - Mammals : // -- Camels and other camelids (Camelidae)", "parent": "0106" },
{ "id": "010614", "text": "010614 - Live animals // Other live animals. // - Mammals : // -- Rabbits and hares", "parent": "0106" },
{ "id": "010619", "text": "010619 - Live mammals, n.e.s.", "parent": "0106" },
{ "id": "010620", "text": "010620 - Live reptiles, incl. snakes \u0026 turtles", "parent": "0106" },
{ "id": "010631", "text": "010631 - Live birds of prey", "parent": "0106" },
{ "id": "010632", "text": "010632 - Live birds (order Psittaciformes), incl. parrots/parakeets/macaws/cockatoos ...", "parent": "0106" },
{ "id": "010633", "text": "010633 - Live animals // Other live animals. // - Birds : // -- Ostriches; emus (Dromaius novaehollandiae)", "parent": "0106" },
{ "id": "010639", "text": "010639 - Live birds (excl. of 0106.31 \u0026 0106.32)", "parent": "0106" },
{ "id": "010641", "text": "010641 - Live animals // Other live animals. // - Insects : // -- Bees", "parent": "0106" },
{ "id": "010649", "text": "010649 - Live animals // Other live animals. // - Insects : // -- Other", "parent": "0106" },
{ "id": "010690", "text": "010690 - Live animals, n.e.s.", "parent": "0106" },
{ "id": "02", "text": "02 - Meat and edible meat offal", "parent": "TOTAL" },
{ "id": "0201", "text": "0201 - Meat of bovine animals, fresh or chilled", "parent": "02" },
{ "id": "020110", "text": "020110 - Bovine carcasses and half carcasses, fresh or chilled", "parent": "0201" },
{ "id": "020120", "text": "020120 - Bovine cuts bone in, fresh or chilled", "parent": "0201" },
{ "id": "020130", "text": "020130 - Bovine cuts boneless, fresh or chilled", "parent": "0201" },
{ "id": "0202", "text": "0202 - Meat of bovine animals, frozen", "parent": "02" },
{ "id": "020210", "text": "020210 - Bovine carcasses and half carcasses, frozen", "parent": "0202" },
{ "id": "020220", "text": "020220 - Bovine cuts bone in, frozen", "parent": "0202" },
{ "id": "020230", "text": "020230 - Bovine cuts boneless, frozen", "parent": "0202" },
{ "id": "0203", "text": "0203 - Meat of swine, fresh, chilled or frozen", "parent": "02" },
{ "id": "020311", "text": "020311 - Swine carcasses and half carcasses, fresh or chilled", "parent": "0203" },
{ "id": "020312", "text": "020312 - Swine hams, shoulders \u0026 cuts bone in, fresh or chille", "parent": "0203" },
{ "id": "020319", "text": "020319 - Swine cuts, fresh or chilled, nes", "parent": "0203" },
{ "id": "020321", "text": "020321 - Swine carcasses and half carcasses, frozen", "parent": "0203" },
{ "id": "020322", "text": "020322 - Hams, shoulders and cuts, of swine, bone in, frozen", "parent": "0203" },
{ "id": "020329", "text": "020329 - Swine cuts, frozen nes", "parent": "0203" },
{ "id": "0204", "text": "0204 - Meat of sheep or goats, fresh, chilled or frozen", "parent": "02" },
{ "id": "020410", "text": "020410 - Lamb carcasses and half carcasses, fresh or chilled", "parent": "0204" },
{ "id": "020421", "text": "020421 - Sheep carcasses and half carcasses, fresh or chilled", "parent": "0204" },
{ "id": "020422", "text": "020422 - Sheep cuts, bone in, fresh or chilled", "parent": "0204" },
{ "id": "020423", "text": "020423 - Sheep cuts, boneless, fresh or chilled", "parent": "0204" },
{ "id": "020430", "text": "020430 - Lamb carcasses and half carcasses, frozen", "parent": "0204" },
{ "id": "020441", "text": "020441 - Sheep carcasses and half carcasses, frozen", "parent": "0204" },
{ "id": "020442", "text": "020442 - Sheep cuts, bone in, frozen", "parent": "0204" },
{ "id": "020443", "text": "020443 - Sheep cuts, boneless, frozen", "parent": "0204" },
{ "id": "020450", "text": "020450 - Goat meat, fresh, chilled or frozen", "parent": "0204" },
{ "id": "0205", "text": "0205 - Horse, ass, mule, hinny meat, fresh, chilled or froze", "parent": "02" },
{ "id": "020500", "text": "020500 - Horse, ass, mule, hinny meat, fresh, chilled or froze", "parent": "0205" },
{ "id": "0206", "text": "0206 - Edible offal of domestic animals", "parent": "02" },
{ "id": "020610", "text": "020610 - Bovine edible offal, fresh or chilled", "parent": "0206" },
{ "id": "020621", "text": "020621 - Bovine tongues, frozen", "parent": "0206" },
{ "id": "020622", "text": "020622 - Bovine livers, frozen", "parent": "0206" },
{ "id": "020629", "text": "020629 - Bovine edible offal, frozen except livers and tongues", "parent": "0206" },
{ "id": "020630", "text": "020630 - Swine edible offal, fresh or chilled", "parent": "0206" },
{ "id": "020641", "text": "020641 - Swine livers, frozen", "parent": "0206" },
{ "id": "020649", "text": "020649 - Swine edible offal, frozen except livers", "parent": "0206" },
{ "id": "020680", "text": "020680 - Sheep, goat, ass, mule, hinnie offal, fresh or chille", "parent": "0206" },
{ "id": "020690", "text": "020690 - Sheep, goat, ass, mule, hinnie edible offal, frozen", "parent": "0206" },
{ "id": "0207", "text": "0207 - Meat, edible offal of domestic poultry", "parent": "02" },
{ "id": "020710", "text": "020710 - Poultry, domestic, whole, fresh or chilled", "parent": "0207" },
{ "id": "020711", "text": "020711 - Fowls, domestic, not cut", "parent": "0207" },
{ "id": "020712", "text": "020712 - Fowls, domestic, not cut", "parent": "0207" },
{ "id": "020713", "text": "020713 - Fowls, cuts \u0026 offal, fre", "parent": "0207" },
{ "id": "020714", "text": "020714 - Fowls, cuts \u0026 offal, fro", "parent": "0207" },
{ "id": "020721", "text": "020721 - Fowls, domestic, whole, frozen", "parent": "0207" },
{ "id": "020722", "text": "020722 - Turkeys, domestic, whole, frozen", "parent": "0207" },
{ "id": "020723", "text": "020723 - Ducks, geese and guinea fowls, domestic, whole, froze", "parent": "0207" },
{ "id": "020724", "text": "020724 - Turkeys, not cut, fresh", "parent": "0207" },
{ "id": "020725", "text": "020725 - Turkeys, not cut, frozen", "parent": "0207" },
{ "id": "020726", "text": "020726 - Turkey cuts \u0026 offal fres", "parent": "0207" },
{ "id": "020727", "text": "020727 - Turkey cuts \u0026 offal froz", "parent": "0207" },
{ "id": "020731", "text": "020731 - Fatty livers (geese,ducks) domestic fresh or chilled", "parent": "0207" },
{ "id": "020732", "text": "020732 - Ducks, geese, not cut fr", "parent": "0207" },
{ "id": "020733", "text": "020733 - Ducks, geese, not cut fz", "parent": "0207" },
{ "id": "020734", "text": "020734 - Fatty livers of geese or", "parent": "0207" },
{ "id": "020735", "text": "020735 - Poultry cuts\u0026offal, fres", "parent": "0207" },
{ "id": "020736", "text": "020736 - Poultry cuts\u0026offal, froz", "parent": "0207" },
{ "id": "020739", "text": "020739 - Poultry cuts \u0026 offal, except livers, fresh or chilled", "parent": "0207" },
{ "id": "020741", "text": "020741 - Fowl cuts \u0026 offal, domestic, except livers, frozen", "parent": "0207" },
{ "id": "020742", "text": "020742 - Turkey cuts \u0026 offal, except livers, frozen", "parent": "0207" },
{ "id": "020743", "text": "020743 - Duck, goose, guinea fowl cuts, offal not liver, froze", "parent": "0207" },
{ "id": "020744", "text": "020744 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of ducks : // -- Other, fresh or chilled", "parent": "0207" },
{ "id": "020745", "text": "020745 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of ducks : // -- Other, frozen", "parent": "0207" },
{ "id": "020750", "text": "020750 - Poultry livers, domestic, frozen", "parent": "0207" },
{ "id": "020751", "text": "020751 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of geese : // -- Not cut in pieces, fresh or chilled", "parent": "0207" },
{ "id": "020752", "text": "020752 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of geese : // -- Not cut in pieces, frozen", "parent": "0207" },
{ "id": "020753", "text": "020753 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of geese : // -- Fatty livers, fresh or chilled", "parent": "0207" },
{ "id": "020754", "text": "020754 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of geese : // -- Other, fresh or chilled", "parent": "0207" },
{ "id": "020755", "text": "020755 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // - Of geese : // -- Other, frozen", "parent": "0207" },
{ "id": "020760", "text": "020760 - Meat and edible meat offal // Meat and edible offal, of the poultry of heading 01.05, fresh, chilled or frozen. // -Of guinea fowls", "parent": "0207" },
{ "id": "0208", "text": "0208 - Meat, edible meat offal nes, fresh, chilled or frozen", "parent": "02" },
{ "id": "020810", "text": "020810 - Rabbit or hare meat, offal, fresh, chilled or frozen", "parent": "0208" },
{ "id": "020820", "text": "020820 - Frog legs, fresh, chilled or frozen", "parent": "0208" },
{ "id": "020830", "text": "020830 - Meat \u0026 edible meat offal of primates, fresh/chilled/frozen", "parent": "0208" },
{ "id": "020840", "text": "020840 - Meat \u0026 edible offal of whales, dolphins \u0026 porpoises (order Cetacea); of man ...", "parent": "0208" },
{ "id": "020850", "text": "020850 - Meat \u0026 edible offal of reptiles, incl. snakes \u0026 turtles, fresh/chilled/froz ...", "parent": "0208" },
{ "id": "020860", "text": "020860 - Meat and edible meat offal // Other meat and edible meat offal, fresh, chilled or frozen. // -Of camels and other camelids (Camelidae)", "parent": "0208" },
{ "id": "020890", "text": "020890 - Meat and edible offal nes fresh, chilled or frozen", "parent": "0208" },
{ "id": "0209", "text": "0209 - Pig and poultry fat, unrendered", "parent": "02" },
{ "id": "020900", "text": "020900 - Pig and poultry fat, unrendered", "parent": "0209" },
{ "id": "020910", "text": "020910 - Meat and edible meat offal // Pig fat, free of lean meat, and poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked. // -Of pigs", "parent": "0209" },
{ "id": "020990", "text": "020990 - Meat and edible meat offal // Pig fat, free of lean meat, and poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked. // -Other", "parent": "0209" },
{ "id": "0210", "text": "0210 - Salted, dried or smoked meat or offal, flour and meal", "parent": "02" },
{ "id": "021011", "text": "021011 - Hams and shoulders, swine, salted, dried or smoked", "parent": "0210" },
{ "id": "021012", "text": "021012 - Bellies (streaky) of swine, salted, dried or smoked", "parent": "0210" },
{ "id": "021019", "text": "021019 - Swine meat, salted/dried/smoked not ham/shoulder/bell", "parent": "0210" },
{ "id": "021020", "text": "021020 - Bovine meat salted, dried or smoked", "parent": "0210" },
{ "id": "021090", "text": "021090 - Meat and edible meat offal cured, flours, meals nes", "parent": "0210" },
{ "id": "021091", "text": "021091 - Meat \u0026 edible meat offal of primates, salted/in brine/dried/smoked, incl. e ...", "parent": "0210" },
{ "id": "021092", "text": "021092 - Meat \u0026 edible meat offal of whales/dolphins/porpoises (order Cetacea)/manat ...", "parent": "0210" },
{ "id": "021093", "text": "021093 - Meat \u0026 edible meat offal of reptiles, incl. snakes \u0026 turtles, salted/in bri ...", "parent": "0210" },
{ "id": "021099", "text": "021099 - Meat \u0026 edible meat offal, n.e.s., salted/in brine/dried/smoked, incl. edibl ...", "parent": "0210" },
{ "id": "03", "text": "03 - Fish, crustaceans, molluscs, aquatic invertebrates ne", "parent": "TOTAL" },
{ "id": "0301", "text": "0301 - Live fish", "parent": "03" },
{ "id": "030110", "text": "030110 - Ornamental fish, live", "parent": "0301" },
{ "id": "030111", "text": "030111 - Fish and crustaceans, molluscs and other aquatic invertebrates // Live fish. // - Ornamental fish : // -- Freshwater", "parent": "0301" },
{ "id": "030119", "text": "030119 - Fish and crustaceans, molluscs and other aquatic invertebrates // Live fish. // - Ornamental fish : // -- Other", "parent": "0301" },
{ "id": "030191", "text": "030191 - Trout, live", "parent": "0301" },
{ "id": "030192", "text": "030192 - Eels, live", "parent": "0301" },
{ "id": "030193", "text": "030193 - Carp, live", "parent": "0301" },
{ "id": "030194", "text": "030194 - Live bluefin tunas (Thunnus thynnus)", "parent": "0301" },
{ "id": "030195", "text": "030195 - Live southern bluefin tunas (Thunnus maccoyii)", "parent": "0301" },
{ "id": "030199", "text": "030199 - Fish live, except trout, eel or carp", "parent": "0301" },
{ "id": "0302", "text": "0302 - Fish, fresh or chilled, whole", "parent": "03" },
{ "id": "030211", "text": "030211 - Trout, fresh or chilled, whole", "parent": "0302" },
{ "id": "030212", "text": "030212 - Salmon fresh or chilled, whole", "parent": "0302" },
{ "id": "030213", "text": "030213 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Salmonidae, excluding livers and roes : // -- Pacific salmon (Oncorhynchus nerka, Oncorhynchus gorb", "parent": "0302" },
{ "id": "030214", "text": "030214 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Salmonidae, excluding livers and roes : // -- Atlantic salmon (Salmo salar) and Danube salmon (Huch", "parent": "0302" },
{ "id": "030219", "text": "030219 - Salmonidae, not trout or salmon,fresh or chilled whol", "parent": "0302" },
{ "id": "030221", "text": "030221 - Halibut, fresh or chilled, whole", "parent": "0302" },
{ "id": "030222", "text": "030222 - Plaice, fresh or chilled, whole", "parent": "0302" },
{ "id": "030223", "text": "030223 - Sole, fresh or chilled, whole", "parent": "0302" },
{ "id": "030224", "text": "030224 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Flat fish (Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae), exclu", "parent": "0302" },
{ "id": "030229", "text": "030229 - Flatfish, fresh/chilled not halibut/plaice/sole, whol", "parent": "0302" },
{ "id": "030231", "text": "030231 - Tuna(albacore,longfin) fresh or chilled, whole", "parent": "0302" },
{ "id": "030232", "text": "030232 - Tuna(yellowfin) fresh or chilled, whole", "parent": "0302" },
{ "id": "030233", "text": "030233 - Skipjack,stripe-belly bonito, fresh or chilled, whole", "parent": "0302" },
{ "id": "030234", "text": "030234 - Bigeye tunas (Thunnus obesus), fresh/chilled (excl. fillets/oth. fish meat ...", "parent": "0302" },
{ "id": "030235", "text": "030235 - Bluefin tunas (Thunnus thynnus), fresh/chilled (excl. fillets/oth. fish mea ...", "parent": "0302" },
{ "id": "030236", "text": "030236 - Southern bluefin tunas (Thunnus maccoyii), fresh/chilled (excl. fillets/oth ...", "parent": "0302" },
{ "id": "030239", "text": "030239 - Tuna nes, fresh or chilled, whole", "parent": "0302" },
{ "id": "030240", "text": "030240 - Herring, fresh or chilled, whole", "parent": "0302" },
{ "id": "030241", "text": "030241 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030242", "text": "030242 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030243", "text": "030243 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030244", "text": "030244 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030245", "text": "030245 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030246", "text": "030246 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030247", "text": "030247 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Herrings (Clupea harengus, Clupea pallasii), anchovies (Engraulis spp.), sardines (Sardina pilchard", "parent": "0302" },
{ "id": "030250", "text": "030250 - Cod, fresh or chilled, whole", "parent": "0302" },
{ "id": "030251", "text": "030251 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030252", "text": "030252 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030253", "text": "030253 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030254", "text": "030254 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030255", "text": "030255 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030256", "text": "030256 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030259", "text": "030259 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciid", "parent": "0302" },
{ "id": "030261", "text": "030261 - Sardines,brisling,sprats, fresh or chilled, whole", "parent": "0302" },
{ "id": "030262", "text": "030262 - Haddock, fresh or chilled, whole", "parent": "0302" },
{ "id": "030263", "text": "030263 - Coalfish, fresh or chilled, whole", "parent": "0302" },
{ "id": "030264", "text": "030264 - Mackerel, fresh or chilled, whole", "parent": "0302" },
{ "id": "030265", "text": "030265 - Dogfish and other sharks, fresh or chilled, whole", "parent": "0302" },
{ "id": "030266", "text": "030266 - Eels, fresh or chilled, whole", "parent": "0302" },
{ "id": "030267", "text": "030267 - Swordfish (Xiphias gladius), fresh/chilled (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0302" },
{ "id": "030268", "text": "030268 - Toothfish (Dissostichus spp.),fresh/chilled (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0302" },
{ "id": "030269", "text": "030269 - Fish nes, fresh or chilled, whole", "parent": "0302" },
{ "id": "030270", "text": "030270 - Fish livers and roes, fresh or chilled", "parent": "0302" },
{ "id": "030271", "text": "030271 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), ", "parent": "0302" },
{ "id": "030272", "text": "030272 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), ", "parent": "0302" },
{ "id": "030273", "text": "030273 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), ", "parent": "0302" },
{ "id": "030274", "text": "030274 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), ", "parent": "0302" },
{ "id": "030279", "text": "030279 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), ", "parent": "0302" },
{ "id": "030281", "text": "030281 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Dogfish and other sharks", "parent": "0302" },
{ "id": "030282", "text": "030282 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Rays and skates (Rajidae)", "parent": "0302" },
{ "id": "030283", "text": "030283 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Toothfish (Dissostichus spp.)", "parent": "0302" },
{ "id": "030284", "text": "030284 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Seabass (Dicentrarchus spp.)", "parent": "0302" },
{ "id": "030285", "text": "030285 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Seabream (Sparidae)", "parent": "0302" },
{ "id": "030289", "text": "030289 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // - Other fish, excluding livers and roes : // -- Other", "parent": "0302" },
{ "id": "030290", "text": "030290 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, fresh or chilled, excluding fish fillets and other fish meat of heading 03.04. // -Livers and roes", "parent": "0302" },
{ "id": "0303", "text": "0303 - Fish, frozen, whole", "parent": "03" },
{ "id": "030310", "text": "030310 - Salmon, Pacific, frozen, whole", "parent": "0303" },
{ "id": "030311", "text": "030311 - Sockeye salmon (red salmon) (Oncorhynchus nerka), frozen (excl. fillets/oth ...", "parent": "0303" },
{ "id": "030312", "text": "030312 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Salmonidae, excluding livers and roes : // -- Other Pacific salmon (Oncorhynchus gorbuscha, Oncorhynchus keta,", "parent": "0303" },
{ "id": "030313", "text": "030313 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Salmonidae, excluding livers and roes : // -- Atlantic salmon (Salmo salar) and Danube salmon (Hucho hucho)", "parent": "0303" },
{ "id": "030314", "text": "030314 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Salmonidae, excluding livers and roes : // -- Trout (Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, O", "parent": "0303" },
{ "id": "030319", "text": "030319 - Pacific salmon (Oncorhynchus gorbuscha/keta/tschawytscha/kisutch/masou/rhod ...", "parent": "0303" },
{ "id": "030321", "text": "030321 - Trout, frozen, whole", "parent": "0303" },
{ "id": "030322", "text": "030322 - Salmon Atlantic or Danube, frozen, whole", "parent": "0303" },
{ "id": "030323", "text": "030323 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), carp (Cypri", "parent": "0303" },
{ "id": "030324", "text": "030324 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), carp (Cypri", "parent": "0303" },
{ "id": "030325", "text": "030325 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), carp (Cypri", "parent": "0303" },
{ "id": "030326", "text": "030326 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.), carp (Cypri", "parent": "0303" },
{ "id": "030329", "text": "030329 - Salmonidae, nes,frozen, whole", "parent": "0303" },
{ "id": "030331", "text": "030331 - Halibut, frozen, whole", "parent": "0303" },
{ "id": "030332", "text": "030332 - Plaice, frozen, whole", "parent": "0303" },
{ "id": "030333", "text": "030333 - Sole, frozen, whole", "parent": "0303" },
{ "id": "030334", "text": "030334 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Flat fish (Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae), excluding livers", "parent": "0303" },
{ "id": "030339", "text": "030339 - Flatfish except halibut, plaice or sole, frozen, whol", "parent": "0303" },
{ "id": "030341", "text": "030341 - Tunas(albacore,longfin), frozen, whole", "parent": "0303" },
{ "id": "030342", "text": "030342 - Tunas(yellowfin) frozen, whole", "parent": "0303" },
{ "id": "030343", "text": "030343 - Skipjack,stripe-bellied bonito, frozen, whole", "parent": "0303" },
{ "id": "030344", "text": "030344 - Bigeye tunas (Thunnus obesus), frozen (excl. fillets/oth. fish meat of 03.0 ...", "parent": "0303" },
{ "id": "030345", "text": "030345 - Bluefin tunas (Thunnus thynnus), frozen (excl. fillets/oth. fish meat of 03 ...", "parent": "0303" },
{ "id": "030346", "text": "030346 - Southern bluefin tunas (Thunnus maccoyii), frozen (excl. fillets/oth. fish ...", "parent": "0303" },
{ "id": "030349", "text": "030349 - Tunas nes, frozen, whole", "parent": "0303" },
{ "id": "030350", "text": "030350 - Herrings, frozen, whole", "parent": "0303" },
{ "id": "030351", "text": "030351 - Herrings (Clupea harengus, Clupea pallasii), frozen (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0303" },
{ "id": "030352", "text": "030352 - Cod (Gadus morhua, Gadus ogac, Gadus macrocephalus), frozen (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0303" },
{ "id": "030353", "text": "030353 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Herrings (Clupea harengus, Clupea pallasii), sardines (Sardina pilchardus, Sardinops spp.), sardinella (Sardin", "parent": "0303" },
{ "id": "030354", "text": "030354 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Herrings (Clupea harengus, Clupea pallasii), sardines (Sardina pilchardus, Sardinops spp.), sardinella (Sardin", "parent": "0303" },
{ "id": "030355", "text": "030355 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Herrings (Clupea harengus, Clupea pallasii), sardines (Sardina pilchardus, Sardinops spp.), sardinella (Sardin", "parent": "0303" },
{ "id": "030356", "text": "030356 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Herrings (Clupea harengus, Clupea pallasii), sardines (Sardina pilchardus, Sardinops spp.), sardinella (Sardin", "parent": "0303" },
{ "id": "030357", "text": "030357 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Herrings (Clupea harengus, Clupea pallasii), sardines (Sardina pilchardus, Sardinops spp.), sardinella (Sardin", "parent": "0303" },
{ "id": "030360", "text": "030360 - Cod, frozen, whole", "parent": "0303" },
{ "id": "030361", "text": "030361 - Swordfish (Xiphias gladius), frozen (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0303" },
{ "id": "030362", "text": "030362 - Toothfish (Dissostichus spp.),frozen (excl. fillets/other fish meat of 03.04/livers \u0026 roes)", "parent": "0303" },
{ "id": "030363", "text": "030363 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030364", "text": "030364 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030365", "text": "030365 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030366", "text": "030366 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030367", "text": "030367 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030368", "text": "030368 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030369", "text": "030369 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae", "parent": "0303" },
{ "id": "030371", "text": "030371 - Sardines,brisling,sprats, frozen, whole", "parent": "0303" },
{ "id": "030372", "text": "030372 - Haddock, frozen, whole", "parent": "0303" },
{ "id": "030373", "text": "030373 - Coalfish, frozen, whole", "parent": "0303" },
{ "id": "030374", "text": "030374 - Mackerel, frozen, whole", "parent": "0303" },
{ "id": "030375", "text": "030375 - Dogfish and other sharks, frozen, whole", "parent": "0303" },
{ "id": "030376", "text": "030376 - Eels, frozen, whole", "parent": "0303" },
{ "id": "030377", "text": "030377 - Sea bass, frozen, whole", "parent": "0303" },
{ "id": "030378", "text": "030378 - Hake, frozen, whole", "parent": "0303" },
{ "id": "030379", "text": "030379 - Fish nes, frozen, whole", "parent": "0303" },
{ "id": "030380", "text": "030380 - Fish livers and roes, frozen", "parent": "0303" },
{ "id": "030381", "text": "030381 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Other fish, excluding livers and roes : // -- Dogfish and other sharks", "parent": "0303" },
{ "id": "030382", "text": "030382 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Other fish, excluding livers and roes : // -- Rays and skates (Rajidae)", "parent": "0303" },
{ "id": "030383", "text": "030383 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Other fish, excluding livers and roes : // -- Toothfish (Dissostichus spp.)", "parent": "0303" },
{ "id": "030384", "text": "030384 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Other fish, excluding livers and roes : // -- Seabass (Dicentrarchus spp.)", "parent": "0303" },
{ "id": "030389", "text": "030389 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // - Other fish, excluding livers and roes : // -- Other", "parent": "0303" },
{ "id": "030390", "text": "030390 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, frozen, excluding fish fillets and other fish meat of heading03.04. // -Livers and roes", "parent": "0303" },
{ "id": "0304", "text": "0304 - Fish fillets, fish meat, mince except liver, roe", "parent": "03" },
{ "id": "030410", "text": "030410 - Fish fillet or meat, fresh or chilled, not liver, roe", "parent": "0304" },
{ "id": "030411", "text": "030411 - Swordfish (Xiphias gladius),fresh/chilled", "parent": "0304" },
{ "id": "030412", "text": "030412 - Toothfish (Dissostichus spp.),fresh/chilled ", "parent": "0304" },
{ "id": "030419", "text": "030419 - Fish fillets\u0026other fish meat (excl. of 0304.11-0304.12, whether/not minced), fresh/chilled", "parent": "0304" },
{ "id": "030420", "text": "030420 - Fish fillets, frozen", "parent": "0304" },
{ "id": "030421", "text": "030421 - Swordfish (Xiphias gladius),frozen fillets", "parent": "0304" },
{ "id": "030422", "text": "030422 - Toothfish (Dissostichus spp.), frozen fillets", "parent": "0304" },
{ "id": "030429", "text": "030429 - Fish fillets\u0026other fish meat (excl. of 0304.21-0304.92, whether/not minced), frozen fillets", "parent": "0304" },
{ "id": "030431", "text": "030431 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clar", "parent": "0304" },
{ "id": "030432", "text": "030432 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clar", "parent": "0304" },
{ "id": "030433", "text": "030433 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clar", "parent": "0304" },
{ "id": "030439", "text": "030439 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clar", "parent": "0304" },
{ "id": "030441", "text": "030441 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Pacific salmon (Oncorhynchus nerka, Oncorhynchus gorb", "parent": "0304" },
{ "id": "030442", "text": "030442 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Trout (Salmo trutta, Oncorhynchus mykiss, Oncorhynchu", "parent": "0304" },
{ "id": "030443", "text": "030443 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Flat fish (Pleuronectidae, Bothidae, Cynoglossidae, S", "parent": "0304" },
{ "id": "030444", "text": "030444 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Fish of the families Bregmacerotidae, Euclichthyidae,", "parent": "0304" },
{ "id": "030445", "text": "030445 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Swordfish (Xiphias gladius)", "parent": "0304" },
{ "id": "030446", "text": "030446 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Toothfish (Dissostichus spp.)", "parent": "0304" },
{ "id": "030449", "text": "030449 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Fresh or chilled fillets of other fish : // -- Other", "parent": "0304" },
{ "id": "030451", "text": "030451 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., ", "parent": "0304" },
{ "id": "030452", "text": "030452 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Salmonidae", "parent": "0304" },
{ "id": "030453", "text": "030453 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macro", "parent": "0304" },
{ "id": "030454", "text": "030454 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Swordfish (Xiphias gladius)", "parent": "0304" },
{ "id": "030455", "text": "030455 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Toothfish (Dissostichus spp.)", "parent": "0304" },
{ "id": "030459", "text": "030459 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, fresh or chilled : // -- Other", "parent": "0304" },
{ "id": "030461", "text": "030461 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., ", "parent": "0304" },
{ "id": "030462", "text": "030462 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., ", "parent": "0304" },
{ "id": "030463", "text": "030463 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., ", "parent": "0304" },
{ "id": "030469", "text": "030469 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias spp., ", "parent": "0304" },
{ "id": "030471", "text": "030471 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030472", "text": "030472 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030473", "text": "030473 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030474", "text": "030474 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030475", "text": "030475 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030479", "text": "030479 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melano", "parent": "0304" },
{ "id": "030481", "text": "030481 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Pacific salmon (Oncorhynchus nerka, Oncorhynchus gorbuscha, Onc", "parent": "0304" },
{ "id": "030482", "text": "030482 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Trout (Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, ", "parent": "0304" },
{ "id": "030483", "text": "030483 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Flat fish (Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, S", "parent": "0304" },
{ "id": "030484", "text": "030484 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Swordfish (Xiphias gladius)", "parent": "0304" },
{ "id": "030485", "text": "030485 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Toothfish (Dissostichus spp.)", "parent": "0304" },
{ "id": "030486", "text": "030486 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Herrings (Clupea harengus, Clupea pallasii)", "parent": "0304" },
{ "id": "030487", "text": "030487 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Tunas (of the genus Thunnus), skipjack or stripe-bellied bonito", "parent": "0304" },
{ "id": "030489", "text": "030489 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Frozen fillets of other fish : // -- Other", "parent": "0304" },
{ "id": "030490", "text": "030490 - Fish meat \u0026 mince, except liver, roe \u0026 fillets, froze", "parent": "0304" },
{ "id": "030491", "text": "030491 - Swordfish (Xiphias gladius),n.e.s.", "parent": "0304" },
{ "id": "030492", "text": "030492 - Toothfish (Dissostichus spp.),n.e.s.", "parent": "0304" },
{ "id": "030493", "text": "030493 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, frozen : // -- Tilapias (Oreochromis spp.), catfish (Pangasius spp., Silurus spp., Clarias sp", "parent": "0304" },
{ "id": "030494", "text": "030494 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, frozen : // -- Alaska Pollack (Theragra chalcogramma)", "parent": "0304" },
{ "id": "030495", "text": "030495 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish fillets and other fish meat (whether or not minced), fresh, chilled or frozen. // - Other, frozen : // -- Fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Me", "parent": "0304" },
{ "id": "030499", "text": "030499 - Fish fillets\u0026other fish meat (excl. of 0304.11-0304.29, whether/not minced),n.e.s.", "parent": "0304" },
{ "id": "0305", "text": "0305 - Fish,cured, smoked, fish meal for human consumption", "parent": "03" },
{ "id": "030510", "text": "030510 - Flours, meals \u0026 pellets of fish for human consumption", "parent": "0305" },
{ "id": "030520", "text": "030520 - Livers and roes, dried, smoked, salted or in brine", "parent": "0305" },
{ "id": "030530", "text": "030530 - Fish fillets, dried, salted or in brine, not smoked", "parent": "0305" },
{ "id": "030531", "text": "030531 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fillets, dr", "parent": "0305" },
{ "id": "030532", "text": "030532 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fillets, dr", "parent": "0305" },
{ "id": "030539", "text": "030539 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fillets, dr", "parent": "0305" },
{ "id": "030541", "text": "030541 - Salmon, smoked, including fillets", "parent": "0305" },
{ "id": "030542", "text": "030542 - Herrings, smoked, including fillets", "parent": "0305" },
{ "id": "030543", "text": "030543 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Smoked fish, inc", "parent": "0305" },
{ "id": "030544", "text": "030544 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Smoked fish, inc", "parent": "0305" },
{ "id": "030549", "text": "030549 - Smoked fish \u0026 fillets other than herrings or salmon", "parent": "0305" },
{ "id": "030551", "text": "030551 - Cod dried, whether or not salted but not smoked", "parent": "0305" },
{ "id": "030559", "text": "030559 - Dried fish, other than cod, not smoked", "parent": "0305" },
{ "id": "030561", "text": "030561 - Herrings, salted or in brine, not dried or smoked", "parent": "0305" },
{ "id": "030562", "text": "030562 - Cod, salted or in brine, not dried or smoked", "parent": "0305" },
{ "id": "030563", "text": "030563 - Anchovies, salted or in brine, not dried or smoked", "parent": "0305" },
{ "id": "030564", "text": "030564 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish, salted but", "parent": "0305" },
{ "id": "030569", "text": "030569 - Fish nes, salted or in brine, not dried or smoked", "parent": "0305" },
{ "id": "030571", "text": "030571 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fins, heads", "parent": "0305" },
{ "id": "030572", "text": "030572 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fins, heads", "parent": "0305" },
{ "id": "030579", "text": "030579 - Fish and crustaceans, molluscs and other aquatic invertebrates // Fish, dried, salted or in brine; smoked fish, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption. // - Fish fins, heads", "parent": "0305" },
{ "id": "0306", "text": "0306 - Crustaceans", "parent": "03" },
{ "id": "030611", "text": "030611 - Rock lobster and other sea crawfish, frozen", "parent": "0306" },
{ "id": "030612", "text": "030612 - Lobsters (Homarus) frozen", "parent": "0306" },
{ "id": "030613", "text": "030613 - Shrimps and prawns, frozen", "parent": "0306" },
{ "id": "030614", "text": "030614 - Crabs, frozen", "parent": "0306" },
{ "id": "030615", "text": "030615 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030616", "text": "030616 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030617", "text": "030617 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030619", "text": "030619 - Crustaceans nes, frozen,", "parent": "0306" },
{ "id": "030621", "text": "030621 - Rock lobster and other sea crawfish not frozen", "parent": "0306" },
{ "id": "030622", "text": "030622 - Lobsters (Homarus), not frozen", "parent": "0306" },
{ "id": "030623", "text": "030623 - Shrimps and prawns, not frozen", "parent": "0306" },
{ "id": "030624", "text": "030624 - Crabs, not frozen", "parent": "0306" },
{ "id": "030625", "text": "030625 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030626", "text": "030626 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030627", "text": "030627 - Fish and crustaceans, molluscs and other aquatic invertebrates // Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked crustaceans, whether in shell or not, whether or not cooked before or during the smokin", "parent": "0306" },
{ "id": "030629", "text": "030629 - Crustaceans nes, not frozen", "parent": "0306" },
{ "id": "0307", "text": "0307 - Molluscs", "parent": "03" },
{ "id": "030710", "text": "030710 - Oysters", "parent": "0307" },
{ "id": "030711", "text": "030711 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030719", "text": "030719 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030721", "text": "030721 - Scallops, live, fresh or chilled", "parent": "0307" },
{ "id": "030729", "text": "030729 - Scallops other than live, fresh or chilled", "parent": "0307" },
{ "id": "030731", "text": "030731 - Mussels, shelled or not, live, fresh or chilled", "parent": "0307" },
{ "id": "030739", "text": "030739 - Mussels, frozen, dried, salted or in brine", "parent": "0307" },
{ "id": "030741", "text": "030741 - Cuttle fish, squid, live, fresh or chilled", "parent": "0307" },
{ "id": "030749", "text": "030749 - Cuttle fish, squid, frozen, dried, salted or in brine", "parent": "0307" },
{ "id": "030751", "text": "030751 - Octopus, live, fresh or chilled", "parent": "0307" },
{ "id": "030759", "text": "030759 - Octopus, frozen, dried, salted or in brine", "parent": "0307" },
{ "id": "030760", "text": "030760 - Snails, edible (except sea snails)", "parent": "0307" },
{ "id": "030771", "text": "030771 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030779", "text": "030779 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030781", "text": "030781 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030789", "text": "030789 - Fish and crustaceans, molluscs and other aquatic invertebrates // Molluscs, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; smoked molluscs, whether in shell or not, whether or not cooked before or during the smoking proc", "parent": "0307" },
{ "id": "030791", "text": "030791 - Aquatic invertebrates nes, fresh or chilled, live", "parent": "0307" },
{ "id": "030799", "text": "030799 - Aquatic invertebrates nes, frozen or preserved", "parent": "0307" },
{ "id": "0308", "text": "0308 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "03" },
{ "id": "030811", "text": "030811 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "030819", "text": "030819 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "030821", "text": "030821 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "030829", "text": "030829 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "030830", "text": "030830 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "030890", "text": "030890 - Fish and crustaceans, molluscs and other aquatic invertebrates // Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine; smoked aquatic invertebrates other than crustaceans and molluscs, whether", "parent": "0308" },
{ "id": "04", "text": "04 - Dairy products, eggs, honey, edible animal product nes", "parent": "TOTAL" },
{ "id": "0401", "text": "0401 - Milk and cream, neither concentrated nor sweetened", "parent": "04" },
{ "id": "040110", "text": "040110 - Milk not concentrated nor sweetened < 1% fat", "parent": "0401" },
{ "id": "040120", "text": "040120 - Milk not concentrated nor sweetened 1-6% fat", "parent": "0401" },
{ "id": "040130", "text": "040130 - Milk and cream not concentrated nor sweetened < 6% fa", "parent": "0401" },
{ "id": "040140", "text": "040140 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Milk and cream, not concentrated nor containing added sugar or other sweetening matter. // -Of a fat content, by weight, exceeding 6 % but ", "parent": "0401" },
{ "id": "040150", "text": "040150 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Milk and cream, not concentrated nor containing added sugar or other sweetening matter. // -Of a fat content, by weight, exceeding 10 %", "parent": "0401" },
{ "id": "0402", "text": "0402 - Milk and cream, concentrated or sweetened", "parent": "04" },
{ "id": "040210", "text": "040210 - Milk powder < 1.5% fat", "parent": "0402" },
{ "id": "040221", "text": "040221 - Milk and cream powder unsweetened < 1.5% fat", "parent": "0402" },
{ "id": "040229", "text": "040229 - Milk and cream powder sweetened < 1.5% fat", "parent": "0402" },
{ "id": "040291", "text": "040291 - Milk and cream unsweetened, concentrated", "parent": "0402" },
{ "id": "040299", "text": "040299 - Milk and cream nes sweetened or concentrated", "parent": "0402" },
{ "id": "0403", "text": "0403 - Buttermilk, cream, yogurt etc", "parent": "04" },
{ "id": "040310", "text": "040310 - Yogurt", "parent": "0403" },
{ "id": "040390", "text": "040390 - Buttermilk, curdled milk, cream, kephir, etc.", "parent": "0403" },
{ "id": "0404", "text": "0404 - Whey, natural milk products nes", "parent": "04" },
{ "id": "040410", "text": "040410 - Whey", "parent": "0404" },
{ "id": "040490", "text": "040490 - Natural milk products nes", "parent": "0404" },
{ "id": "0405", "text": "0405 - Butter and other fats and oils derived from milk", "parent": "04" },
{ "id": "040500", "text": "040500 - Butter and other fats and oils derived from milk", "parent": "0405" },
{ "id": "040510", "text": "040510 - Butter", "parent": "0405" },
{ "id": "040520", "text": "040520 - Dairy spreads", "parent": "0405" },
{ "id": "040590", "text": "040590 - Other milk fats and oils", "parent": "0405" },
{ "id": "0406", "text": "0406 - Cheese and curd", "parent": "04" },
{ "id": "040610", "text": "040610 - Fresh cheese, unfermented whey cheese, curd", "parent": "0406" },
{ "id": "040620", "text": "040620 - Cheese, grated or powdered, of all kinds", "parent": "0406" },
{ "id": "040630", "text": "040630 - Cheese processed, not grated or powdered", "parent": "0406" },
{ "id": "040640", "text": "040640 - Cheese, blue-veined", "parent": "0406" },
{ "id": "040690", "text": "040690 - Cheese except fresh, grated, processed or blue-veined", "parent": "0406" },
{ "id": "0407", "text": "0407 - Birds eggs, in shell, fresh, preserved or cooked", "parent": "04" },
{ "id": "040700", "text": "040700 - Birds eggs, in shell, fresh, preserved or cooked", "parent": "0407" },
{ "id": "040711", "text": "040711 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Birds' eggs, in shell, fresh, preserved or cooked. // - Fertilised eggs for incubation : // -- Of fowls of the species Gallus domesticus", "parent": "0407" },
{ "id": "040719", "text": "040719 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Birds' eggs, in shell, fresh, preserved or cooked. // - Fertilised eggs for incubation : // -- Other", "parent": "0407" },
{ "id": "040721", "text": "040721 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Birds' eggs, in shell, fresh, preserved or cooked. // - Other fresh eggs : // -- Of fowls of the species Gallus domesticus", "parent": "0407" },
{ "id": "040729", "text": "040729 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Birds' eggs, in shell, fresh, preserved or cooked. // - Other fresh eggs : // -- Other", "parent": "0407" },
{ "id": "040790", "text": "040790 - Dairy produce; birds' eggs; natural honey; edible products of animal origin, not elsewhere specified or included // Birds' eggs, in shell, fresh, preserved or cooked. // -Others", "parent": "0407" },
{ "id": "0408", "text": "0408 - Birds eggs, other than in shell, egg yolks", "parent": "04" },
{ "id": "040811", "text": "040811 - Egg yolks dried", "parent": "0408" },
{ "id": "040819", "text": "040819 - Egg yolks except dried", "parent": "0408" },
{ "id": "040891", "text": "040891 - Eggs, bird, not in shell, dried", "parent": "0408" },
{ "id": "040899", "text": "040899 - Eggs, bird, not in shell not dried", "parent": "0408" },
{ "id": "0409", "text": "0409 - Honey, natural", "parent": "04" },
{ "id": "040900", "text": "040900 - Honey, natural", "parent": "0409" },
{ "id": "0410", "text": "0410 - Edible products of animal origin, nes", "parent": "04" },
{ "id": "041000", "text": "041000 - Edible products of animal origin nes", "parent": "0410" },
{ "id": "05", "text": "05 - Products of animal origin, nes", "parent": "TOTAL" },
{ "id": "0501", "text": "0501 - Hair, human, unworked, waste of human hair", "parent": "05" },
{ "id": "050100", "text": "050100 - Hair, human, unworked, waste of human hair", "parent": "0501" },
{ "id": "0502", "text": "0502 - Bristle, hair (pig, badger), brush making hair, waste", "parent": "05" },
{ "id": "050210", "text": "050210 - Bristles, hair \u0026 waste thereof of pigs, hogs or boars", "parent": "0502" },
{ "id": "050290", "text": "050290 - Hair \u0026 waste of badger and of other brush making hair", "parent": "0502" },
{ "id": "0503", "text": "0503 - Horsehair, waste", "parent": "05" },
{ "id": "050300", "text": "050300 - Horsehair, waste", "parent": "0503" },
{ "id": "0504", "text": "0504 - Guts, bladders and stomachs of animals except fish", "parent": "05" },
{ "id": "050400", "text": "050400 - Guts, bladders and stomachs of animals except fish", "parent": "0504" },
{ "id": "0505", "text": "0505 - Feathers, down, skins, other parts of birds, unworked", "parent": "05" },
{ "id": "050510", "text": "050510 - Feathers and down used for stuffing", "parent": "0505" },
{ "id": "050590", "text": "050590 - Feathers, down, etc. of birds, except for stuffing", "parent": "0505" },
{ "id": "0506", "text": "0506 - Bones and horn-cores unworked or simply worked", "parent": "05" },
{ "id": "050610", "text": "050610 - Ossein and bones treated with acid", "parent": "0506" },
{ "id": "050690", "text": "050690 - Bones and horn-cores unworked or simply worked nes", "parent": "0506" },
{ "id": "0507", "text": "0507 - Ivory,whalebone etc, unworked, simply worked, unshape", "parent": "05" },
{ "id": "050710", "text": "050710 - Ivory, unworked or simply prepared, powder and waste", "parent": "0507" },
{ "id": "050790", "text": "050790 - Whalebone, horns, etc unworked or simply prepared nes", "parent": "0507" },
{ "id": "0508", "text": "0508 - Coral, shell, cuttle bone, etc, unworked, and waste", "parent": "05" },
{ "id": "050800", "text": "050800 - Coral,seashell,cuttle bone,etc, unworked,powder,waste", "parent": "0508" },
{ "id": "0509", "text": "0509 - Sponges, natural, of animal origin", "parent": "05" },
{ "id": "050900", "text": "050900 - Sponges, natural, of animal origin", "parent": "0509" },
{ "id": "0510", "text": "0510 - Ambergris, civet, musk, etc for pharmaceutical use", "parent": "05" },
{ "id": "051000", "text": "051000 - Ambergris, civet, musk, etc for pharmaceutical use", "parent": "0510" },
{ "id": "0511", "text": "0511 - Animal products nes, dead animals (non-food)", "parent": "05" },
{ "id": "051110", "text": "051110 - Semen bovine", "parent": "0511" },
{ "id": "051191", "text": "051191 - Fish, shellfish and crustaceans (non-food)", "parent": "0511" },
{ "id": "051199", "text": "051199 - Animal products and domestic animal carcass (non-food", "parent": "0511" },
{ "id": "06", "text": "06 - Live trees, plants, bulbs, roots, cut flowers etc", "parent": "TOTAL" },
{ "id": "0601", "text": "0601 - Bulbs, tubers, corms, etc., chicory plant (non-food)", "parent": "06" },
{ "id": "060110", "text": "060110 - Bulbs, tubers, corms, crowns and rhizomes, dormant", "parent": "0601" },
{ "id": "060120", "text": "060120 - Bulbs, tubers, corms etc in growth, chicory plants", "parent": "0601" },
{ "id": "0602", "text": "0602 - Live plants nes, roots, cuttings, mushroom spawn", "parent": "06" },
{ "id": "060210", "text": "060210 - Cuttings and slips, not rooted", "parent": "0602" },
{ "id": "060220", "text": "060220 - Trees, edible fruit or nut, shrubs and bushes", "parent": "0602" },
{ "id": "060230", "text": "060230 - Rhododendrons and azaleas", "parent": "0602" },
{ "id": "060240", "text": "060240 - Roses", "parent": "0602" },
{ "id": "060290", "text": "060290 - Plants live, mushroom sp", "parent": "0602" },
{ "id": "060291", "text": "060291 - Mushroom spawn", "parent": "0602" },
{ "id": "060299", "text": "060299 - Plants, live (including their roots),nes", "parent": "0602" },
{ "id": "0603", "text": "0603 - Cut flowers, dried flowers for bouquets, etc,", "parent": "06" },
{ "id": "060310", "text": "060310 - Cut flowers and flower buds for bouquets, etc., fresh", "parent": "0603" },
{ "id": "060311", "text": "060311 - Fresh roses", "parent": "0603" },
{ "id": "060312", "text": "060312 - Fresh carnations", "parent": "0603" },
{ "id": "060313", "text": "060313 - Fresh orchids", "parent": "0603" },
{ "id": "060314", "text": "060314 - Fresh chrysanthemums", "parent": "0603" },
{ "id": "060315", "text": "060315 - Live trees and other plants; bulbs, roots and the like; cut flowers and ornamental foliage // Cut flowers and flower buds of a kind suitable for bouquets or for ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared. // - Fre", "parent": "0603" },
{ "id": "060319", "text": "060319 - Cut flowers \u0026 flower buds of a kind suit. for bouquets/ornamental purposes(excl. of 0603.11-0603.14), fresh", "parent": "0603" },
{ "id": "060390", "text": "060390 - Cut flowers and flower buds for bouquets, dried, etc.", "parent": "0603" },
{ "id": "0604", "text": "0604 - Foliage etc except flowers for ornamental purposes", "parent": "06" },
{ "id": "060410", "text": "060410 - Mosses and lichens for bouquets, ornamental purposes", "parent": "0604" },
{ "id": "060420", "text": "060420 - Live trees and other plants; bulbs, roots and the like; cut flowers and ornamental foliage // Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, mosses and lichens, being goods of a kind suitable for bouquets or for ", "parent": "0604" },
{ "id": "060490", "text": "060490 - Live trees and other plants; bulbs, roots and the like; cut flowers and ornamental foliage // Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, mosses and lichens, being goods of a kind suitable for bouquets or for ", "parent": "0604" },
{ "id": "060491", "text": "060491 - Foliage,branches, for bouquets, etc. - fresh", "parent": "0604" },
{ "id": "060499", "text": "060499 - Foliage,branches, for bouquets, etc. - except fresh", "parent": "0604" },
{ "id": "07", "text": "07 - Edible vegetables and certain roots and tubers", "parent": "TOTAL" },
{ "id": "0701", "text": "0701 - Potatoes, fresh or chilled", "parent": "07" },
{ "id": "070110", "text": "070110 - Potatoes seed, fresh or chilled", "parent": "0701" },
{ "id": "070190", "text": "070190 - Potatoes, fresh or chilled except seed", "parent": "0701" },
{ "id": "0702", "text": "0702 - Tomatoes, fresh or chilled", "parent": "07" },
{ "id": "070200", "text": "070200 - Tomatoes, fresh or chilled", "parent": "0702" },
{ "id": "0703", "text": "0703 - Onions, shallots, garlic, leeks, etc. fresh or chille", "parent": "07" },
{ "id": "070310", "text": "070310 - Onions and shallots, fresh or chilled", "parent": "0703" },
{ "id": "070320", "text": "070320 - Garlic, fresh or chilled", "parent": "0703" },
{ "id": "070390", "text": "070390 - Leeks \u0026 other alliaceous vegetables, fresh or chilled", "parent": "0703" },
{ "id": "0704", "text": "0704 - Cabbage, cauliflower, kohlrabi \u0026 kale, fresh, chilled", "parent": "07" },
{ "id": "070410", "text": "070410 - Cauliflowers and headed broccoli, fresh or chilled", "parent": "0704" },
{ "id": "070420", "text": "070420 - Brussels sprouts, fresh or chilled", "parent": "0704" },
{ "id": "070490", "text": "070490 - Edible brassicas nes, fresh or chilled", "parent": "0704" },
{ "id": "0705", "text": "0705 - Lettuce and chicory, fresh or chilled", "parent": "07" },
{ "id": "070511", "text": "070511 - Cabbage lettuce (head lettuce) fresh or chilled", "parent": "0705" },
{ "id": "070519", "text": "070519 - Lettuce, fresh or chilled except cabbage lettuce", "parent": "0705" },
{ "id": "070521", "text": "070521 - Witloof chicory, fresh or chilled", "parent": "0705" },
{ "id": "070529", "text": "070529 - Chicory, fresh or chilled, except witloof", "parent": "0705" },
{ "id": "0706", "text": "0706 - Carrots, turnips, beetroot, etc. fresh or chilled", "parent": "07" },
{ "id": "070610", "text": "070610 - Carrots and turnips, fresh or chilled", "parent": "0706" },
{ "id": "070690", "text": "070690 - Beetroot,salsify,celeriac,radishes etc. fresh, chille", "parent": "0706" },
{ "id": "0707", "text": "0707 - Cucumbers and gherkins, fresh or chilled", "parent": "07" },
{ "id": "070700", "text": "070700 - Cucumbers and gherkins, fresh or chilled", "parent": "0707" },
{ "id": "0708", "text": "0708 - Leguminous vegetables, fresh or chilled", "parent": "07" },
{ "id": "070810", "text": "070810 - Peas, shelled or unshelled, fresh or chilled", "parent": "0708" },
{ "id": "070820", "text": "070820 - Beans, shelled or unshelled, fresh or chilled", "parent": "0708" },
{ "id": "070890", "text": "070890 - Legumes except peas \u0026 beans, fresh or chilled", "parent": "0708" },
{ "id": "0709", "text": "0709 - Vegetables nes, fresh or chilled", "parent": "07" },
{ "id": "070910", "text": "070910 - Globe artichokes, fresh or chilled", "parent": "0709" },
{ "id": "070920", "text": "070920 - Asparagus, fresh or chilled", "parent": "0709" },
{ "id": "070930", "text": "070930 - Aubergines(egg-plants), fresh or chilled", "parent": "0709" },
{ "id": "070940", "text": "070940 - Celery, other than celeriac, fresh or chilled", "parent": "0709" },
{ "id": "070951", "text": "070951 - Mushrooms, fresh or chilled", "parent": "0709" },
{ "id": "070952", "text": "070952 - Truffles, fresh or chilled", "parent": "0709" },
{ "id": "070959", "text": "070959 - Mushrooms other than of the genus Agaricus, fresh/chilled", "parent": "0709" },
{ "id": "070960", "text": "070960 - Peppers (Capsicum, Pimenta) fresh or chilled", "parent": "0709" },
{ "id": "070970", "text": "070970 - Spinach fresh or chilled", "parent": "0709" },
{ "id": "070990", "text": "070990 - Vegetables, fresh or chilled nes", "parent": "0709" },
{ "id": "070991", "text": "070991 - Edible vegetables and certain roots and tubers // Other vegetables, fresh or chilled. // - Other : // -- Globe artichokes", "parent": "0709" },
{ "id": "070992", "text": "070992 - Edible vegetables and certain roots and tubers // Other vegetables, fresh or chilled. // - Other : // -- Olives", "parent": "0709" },
{ "id": "070993", "text": "070993 - Edible vegetables and certain roots and tubers // Other vegetables, fresh or chilled. // - Other : // -- Pumpkins, squash and gourds (Cucurbita spp.)", "parent": "0709" },
{ "id": "070999", "text": "070999 - Edible vegetables and certain roots and tubers // Other vegetables, fresh or chilled. // - Other : // -- Other", "parent": "0709" },
{ "id": "0710", "text": "0710 - Vegetables (uncooked, steamed, boiled) frozen", "parent": "07" },
{ "id": "071010", "text": "071010 - Potatoes, frozen, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071021", "text": "071021 - Peas, frozen, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071022", "text": "071022 - Beans, frozen, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071029", "text": "071029 - Legumes, except peas and beans, frozen", "parent": "0710" },
{ "id": "071030", "text": "071030 - Spinach, frozen, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071040", "text": "071040 - Sweet corn, frozen, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071080", "text": "071080 - Vegetables, frozen nes, uncooked steamed or boiled", "parent": "0710" },
{ "id": "071090", "text": "071090 - Frozen vegetable mixtures, uncooked, boiled or steame", "parent": "0710" },
{ "id": "0711", "text": "0711 - Vegetables provisionally preserved, not ready to eat", "parent": "07" },
{ "id": "071110", "text": "071110 - Onions, provisionally preserved", "parent": "0711" },
{ "id": "071120", "text": "071120 - Olives, provisionally preserved", "parent": "0711" },
{ "id": "071130", "text": "071130 - Capers, provisionally preserved", "parent": "0711" },
{ "id": "071140", "text": "071140 - Cucumbers and gherkins provisionally preserved", "parent": "0711" },
{ "id": "071151", "text": "071151 - Mushrooms of the genus Agaricus, provisionally presvd.", "parent": "0711" },
{ "id": "071159", "text": "071159 - Mushrooms other than of the genus Agaricus, provisionally presvd.", "parent": "0711" },
{ "id": "071190", "text": "071190 - Vegetables nes and mixtures provisionally preserved", "parent": "0711" },
{ "id": "0712", "text": "0712 - Vegetables, dried, not further prepared", "parent": "07" },
{ "id": "071210", "text": "071210 - Potatoes, dried, not further prepared", "parent": "0712" },
{ "id": "071220", "text": "071220 - Onions, dried, not further prepared", "parent": "0712" },
{ "id": "071230", "text": "071230 - Mushrooms and truffles, dried, not further prepared", "parent": "0712" },
{ "id": "071231", "text": "071231 - Mushrooms of the genus Agaricus, dried, whole/cut/sliced/broken/in powder b ...", "parent": "0712" },
{ "id": "071232", "text": "071232 - Wood ears (Auricularia spp.), dried, whole/cut/sliced/broken/in powder but ...", "parent": "0712" },
{ "id": "071233", "text": "071233 - Jelly fungi (Tremella spp.), dried, whole/cut/sliced/broken/in powder but n ...", "parent": "0712" },
{ "id": "071239", "text": "071239 - Mushrooms (excl. of 0712.31-0712.33) \u0026 truffles, dried, whole/cut/sliced/br ...", "parent": "0712" },
{ "id": "071290", "text": "071290 - Vegetables nes \u0026 mixtures, dried, not further prepare", "parent": "0712" },
{ "id": "0713", "text": "0713 - Vegetables, leguminous dried, shelled", "parent": "07" },
{ "id": "071310", "text": "071310 - Peas dried, shelled", "parent": "0713" },
{ "id": "071320", "text": "071320 - Chickpeas, dried, shelled", "parent": "0713" },
{ "id": "071331", "text": "071331 - Urd,mung,black or green gram beans dried shelled", "parent": "0713" },
{ "id": "071332", "text": "071332 - Beans, small red (Adzuki) dried, shelled", "parent": "0713" },
{ "id": "071333", "text": "071333 - Kidney beans and white pea beans dried shelled", "parent": "0713" },
{ "id": "071334", "text": "071334 - Edible vegetables and certain roots and tubers // Dried leguminous vegetables, shelled, whether or not skinned or split. // - Beans (Vigna spp., Phaseolus spp.) : // -- Bambara beans (Vigna subterranea or Voandzeia subterranea)", "parent": "0713" },
{ "id": "071335", "text": "071335 - Edible vegetables and certain roots and tubers // Dried leguminous vegetables, shelled, whether or not skinned or split. // - Beans (Vigna spp., Phaseolus spp.) : // -- Cow peas (Vigna unguiculata)", "parent": "0713" },
{ "id": "071339", "text": "071339 - Beans dried, shelled, nes", "parent": "0713" },
{ "id": "071340", "text": "071340 - Lentils dried, shelled", "parent": "0713" },
{ "id": "071350", "text": "071350 - Broad beans and horse beans dried, shelled", "parent": "0713" },
{ "id": "071360", "text": "071360 - Edible vegetables and certain roots and tubers // Dried leguminous vegetables, shelled, whether or not skinned or split. // -Pigeon peas (Cajanus cajan)", "parent": "0713" },
{ "id": "071390", "text": "071390 - Leguminous vegetables dried, shelled", "parent": "0713" },
{ "id": "0714", "text": "0714 - Manioc, rrowroot, salep etc, fresh, dried, sago pith", "parent": "07" },
{ "id": "071410", "text": "071410 - Manioc (cassava), fresh or dried", "parent": "0714" },
{ "id": "071420", "text": "071420 - Sweet potatoes, fresh or dried", "parent": "0714" },
{ "id": "071430", "text": "071430 - Edible vegetables and certain roots and tubers // Manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pell", "parent": "0714" },
{ "id": "071440", "text": "071440 - Edible vegetables and certain roots and tubers // Manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pell", "parent": "0714" },
{ "id": "071450", "text": "071450 - Edible vegetables and certain roots and tubers // Manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pell", "parent": "0714" },
{ "id": "071490", "text": "071490 - Arrowroot, salep, etc fresh or dried and sago pith", "parent": "0714" },
{ "id": "08", "text": "08 - Edible fruit, nuts, peel of citrus fruit, melons", "parent": "TOTAL" },
{ "id": "0801", "text": "0801 - Coconuts, Brazil nuts and cashew nuts, fresh or dried", "parent": "08" },
{ "id": "080110", "text": "080110 - Coconuts, fresh or dried", "parent": "0801" },
{ "id": "080111", "text": "080111 - Coconuts, dessicated, sh", "parent": "0801" },
{ "id": "080112", "text": "080112 - Edible fruit and nuts; peel of citrus fruit or melons // Coconuts, Brazil nuts and cashew nuts, fresh or dried, whether or not shelled or peeled. // - Coconuts : // -- In the inner shell (endocarp)", "parent": "0801" },
{ "id": "080119", "text": "080119 - Coconuts, fresh, shelled", "parent": "0801" },
{ "id": "080120", "text": "080120 - Brazil nuts, fresh or dried", "parent": "0801" },
{ "id": "080121", "text": "080121 - Brazil nuts, in shell fr", "parent": "0801" },
{ "id": "080122", "text": "080122 - Brazil nuts, shelled dri", "parent": "0801" },
{ "id": "080130", "text": "080130 - Cashew nuts, fresh or dried", "parent": "0801" },
{ "id": "080131", "text": "080131 - Cashew nuts, in shell dr", "parent": "0801" },
{ "id": "080132", "text": "080132 - Cashew nuts, shelled dri", "parent": "0801" },
{ "id": "0802", "text": "0802 - Nuts except coconut, brazil \u0026 cashew, fresh or dried", "parent": "08" },
{ "id": "080211", "text": "080211 - Almonds in shell fresh or dried", "parent": "0802" },
{ "id": "080212", "text": "080212 - Almonds,fresh or dried, shelled", "parent": "0802" },
{ "id": "080221", "text": "080221 - Hazelnuts and filberts in shell fresh or dried", "parent": "0802" },
{ "id": "080222", "text": "080222 - Hazelnuts and filberts, fresh or dried, shelled", "parent": "0802" },
{ "id": "080231", "text": "080231 - Walnuts in shell, fresh or dried", "parent": "0802" },
{ "id": "080232", "text": "080232 - Walnuts, fresh or dried, shelled", "parent": "0802" },
{ "id": "080240", "text": "080240 - Chestnuts, fresh or dried", "parent": "0802" },
{ "id": "080241", "text": "080241 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Chestnuts (Castanea spp.) : // -- In shell", "parent": "0802" },
{ "id": "080242", "text": "080242 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Chestnuts (Castanea spp.) : // -- Shelled", "parent": "0802" },
{ "id": "080250", "text": "080250 - Pistachios, fresh or dried", "parent": "0802" },
{ "id": "080251", "text": "080251 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Pistachios : // -- In shell", "parent": "0802" },
{ "id": "080252", "text": "080252 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Pistachios : // -- Shelled", "parent": "0802" },
{ "id": "080260", "text": "080260 - Macadamia nuts", "parent": "0802" },
{ "id": "080261", "text": "080261 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Macadamia nuts : // -- In shell", "parent": "0802" },
{ "id": "080262", "text": "080262 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // - Macadamia nuts : // -- Shelled", "parent": "0802" },
{ "id": "080270", "text": "080270 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // -Kola nuts (Cola spp.)", "parent": "0802" },
{ "id": "080280", "text": "080280 - Edible fruit and nuts; peel of citrus fruit or melons // Other nuts, fresh or dried, whether or not shelled or peeled. // -Areca nuts", "parent": "0802" },
{ "id": "080290", "text": "080290 - Nuts edible, fresh or dried, nes", "parent": "0802" },
{ "id": "0803", "text": "0803 - Bananas, including plantains, fresh or dried", "parent": "08" },
{ "id": "080300", "text": "080300 - Bananas, including plantains, fresh or dried", "parent": "0803" },
{ "id": "080310", "text": "080310 - Edible fruit and nuts; peel of citrus fruit or melons // Bananas, including plantains, fresh or dried. // -Plantains", "parent": "0803" },
{ "id": "080390", "text": "080390 - Edible fruit and nuts; peel of citrus fruit or melons // Bananas, including plantains, fresh or dried. // -Other", "parent": "0803" },
{ "id": "0804", "text": "0804 - Dates, figs, pineapple, avocado, guava, fresh or drie", "parent": "08" },
{ "id": "080410", "text": "080410 - Dates, fresh or dried", "parent": "0804" },
{ "id": "080420", "text": "080420 - Figs, fresh or dried", "parent": "0804" },
{ "id": "080430", "text": "080430 - Pineapples, fresh or dried", "parent": "0804" },
{ "id": "080440", "text": "080440 - Avocados, fresh or dried", "parent": "0804" },
{ "id": "080450", "text": "080450 - Guavas, mangoes and mangosteens, fresh or dried", "parent": "0804" },
{ "id": "0805", "text": "0805 - Citrus fruit, fresh or dried", "parent": "08" },
{ "id": "080510", "text": "080510 - Oranges, fresh or dried", "parent": "0805" },
{ "id": "080520", "text": "080520 - Mandarin, clementine \u0026 citrus hybrids, fresh or dried", "parent": "0805" },
{ "id": "080530", "text": "080530 - Lemons and limes, fresh or dried", "parent": "0805" },
{ "id": "080540", "text": "080540 - Grapefruit, fresh or dried", "parent": "0805" },
{ "id": "080550", "text": "080550 - Lemons (Citrus limon/limonum) \u0026 limes (Citrus aurantifolia/latifolia), fres ...", "parent": "0805" },
{ "id": "080590", "text": "080590 - Citrus fruits, fresh or dried, nes", "parent": "0805" },
{ "id": "0806", "text": "0806 - Grapes, fresh or dried", "parent": "08" },
{ "id": "080610", "text": "080610 - Grapes, fresh", "parent": "0806" },
{ "id": "080620", "text": "080620 - Grapes, dried", "parent": "0806" },
{ "id": "0807", "text": "0807 - Melons, watermelons and papaws (papayas), fresh", "parent": "08" },
{ "id": "080710", "text": "080710 - Melons (including watermelons), fresh", "parent": "0807" },
{ "id": "080711", "text": "080711 - Watermelons, fresh", "parent": "0807" },
{ "id": "080719", "text": "080719 - Melons, fresh", "parent": "0807" },
{ "id": "080720", "text": "080720 - Papaws (papayas), fresh", "parent": "0807" },
{ "id": "0808", "text": "0808 - Apples, pears and quinces, fresh", "parent": "08" },
{ "id": "080810", "text": "080810 - Apples, fresh", "parent": "0808" },
{ "id": "080820", "text": "080820 - Pears and quinces, fresh", "parent": "0808" },
{ "id": "080830", "text": "080830 - Edible fruit and nuts; peel of citrus fruit or melons // Apples, pears and quinces, fresh. // -Pears", "parent": "0808" },
{ "id": "080840", "text": "080840 - Edible fruit and nuts; peel of citrus fruit or melons // Apples, pears and quinces, fresh. // -Quinces", "parent": "0808" },
{ "id": "0809", "text": "0809 - Stone fruit, fresh (apricot, cherry, plum, peach, etc", "parent": "08" },
{ "id": "080910", "text": "080910 - Apricots, fresh", "parent": "0809" },
{ "id": "080920", "text": "080920 - Cherries, fresh", "parent": "0809" },
{ "id": "080921", "text": "080921 - Edible fruit and nuts; peel of citrus fruit or melons // Apricots, cherries, peaches (including nectarines), plums and sloes, fresh. // - Cherries : // -- Sour cherries (Prunus cerasus)", "parent": "0809" },
{ "id": "080929", "text": "080929 - Edible fruit and nuts; peel of citrus fruit or melons // Apricots, cherries, peaches (including nectarines), plums and sloes, fresh. // - Cherries : // -- Other", "parent": "0809" },
{ "id": "080930", "text": "080930 - Peaches, nectarines, fresh", "parent": "0809" },
{ "id": "080940", "text": "080940 - Plums, sloes, fresh", "parent": "0809" },
{ "id": "0810", "text": "0810 - Fruits nes, fresh", "parent": "08" },
{ "id": "081010", "text": "081010 - Strawberries, fresh", "parent": "0810" },
{ "id": "081020", "text": "081020 - Raspberry, blackberry, mulberry and loganberry, fresh", "parent": "0810" },
{ "id": "081030", "text": "081030 - Black, white or red currants and gooseberries, fresh", "parent": "0810" },
{ "id": "081040", "text": "081040 - Cranberries, bilberries, similar fruits, fresh", "parent": "0810" },
{ "id": "081050", "text": "081050 - Kiwifruit, fresh", "parent": "0810" },
{ "id": "081060", "text": "081060 - Durians, fresh", "parent": "0810" },
{ "id": "081070", "text": "081070 - Edible fruit and nuts; peel of citrus fruit or melons // Other fruit, fresh. // -Persimmons", "parent": "0810" },
{ "id": "081090", "text": "081090 - Fruits, fresh nes", "parent": "0810" },
{ "id": "0811", "text": "0811 - Fruits and nuts, uncooked boiled or steamed, frozen", "parent": "08" },
{ "id": "081110", "text": "081110 - Strawberries, (uncooked steamed or boiled), frozen", "parent": "0811" },
{ "id": "081120", "text": "081120 - Rasp-, mul-berries, etc (uncooked, steam, boil),froze", "parent": "0811" },
{ "id": "081190", "text": "081190 - Fruits and nuts (uncooked, steamed, boiled) frozen,ne", "parent": "0811" },
{ "id": "0812", "text": "0812 - Fruits, nuts provisionally preserved, not ready to ea", "parent": "08" },
{ "id": "081210", "text": "081210 - Cherries provisionally preserved", "parent": "0812" },
{ "id": "081220", "text": "081220 - Strawberries provisionally preserved", "parent": "0812" },
{ "id": "081290", "text": "081290 - Fruits and nuts, provisionally preserved nes", "parent": "0812" },
{ "id": "0813", "text": "0813 - Fruit, dried, nes, dried fruit and nut mixtures", "parent": "08" },
{ "id": "081310", "text": "081310 - Apricots, dried", "parent": "0813" },
{ "id": "081320", "text": "081320 - Prunes, dried", "parent": "0813" },
{ "id": "081330", "text": "081330 - Apples, dried", "parent": "0813" },
{ "id": "081340", "text": "081340 - Fruits, dried nes", "parent": "0813" },
{ "id": "081350", "text": "081350 - Mixtures of edible nuts, dried and preserved fruits", "parent": "0813" },
{ "id": "0814", "text": "0814 - Peel of citrus fruit or melons", "parent": "08" },
{ "id": "081400", "text": "081400 - Peel of citrus fruit or melons", "parent": "0814" },
{ "id": "09", "text": "09 - Coffee, tea, mate and spices", "parent": "TOTAL" },
{ "id": "0901", "text": "0901 - Coffee, coffee husks and skins and coffee substitutes", "parent": "09" },
{ "id": "090111", "text": "090111 - Coffee, not roasted, not decaffeinated", "parent": "0901" },
{ "id": "090112", "text": "090112 - Coffee, not roasted, decaffeinated", "parent": "0901" },
{ "id": "090121", "text": "090121 - Coffee, roasted, not decaffeinated", "parent": "0901" },
{ "id": "090122", "text": "090122 - Coffee, roasted, decaffeinated", "parent": "0901" },
{ "id": "090130", "text": "090130 - Coffee husks and skins", "parent": "0901" },
{ "id": "090140", "text": "090140 - Coffee substitutes containing coffee", "parent": "0901" },
{ "id": "090190", "text": "090190 - Coffee husks and skins,", "parent": "0901" },
{ "id": "0902", "text": "0902 - Tea", "parent": "09" },
{ "id": "090210", "text": "090210 - Tea, green (unfermented) in packages < 3 kg", "parent": "0902" },
{ "id": "090220", "text": "090220 - Tea, green (unfermented) in packages > 3 kg", "parent": "0902" },
{ "id": "090230", "text": "090230 - Tea, black (fermented or partly) in packages < 3 kg", "parent": "0902" },
{ "id": "090240", "text": "090240 - Tea, black (fermented or partly) in packages > 3 kg", "parent": "0902" },
{ "id": "0903", "text": "0903 - Mate", "parent": "09" },
{ "id": "090300", "text": "090300 - Mate", "parent": "0903" },
{ "id": "0904", "text": "0904 - Pepper (Piper), crushed or ground Capsicum, Pimenta", "parent": "09" },
{ "id": "090411", "text": "090411 - Pepper of the genus Piper, whole", "parent": "0904" },
{ "id": "090412", "text": "090412 - Pepper of the genus Piper, crushed or ground", "parent": "0904" },
{ "id": "090420", "text": "090420 - Capsicum or Pimenta, dried, crushed or ground", "parent": "0904" },
{ "id": "090421", "text": "090421 - Coffee, tea, maté and spices // Pepper of the genus Piper; dried or crushed or ground fruits of the genus Capsicum or of the genus Pimenta. // - Fruits of the genus Capsicum or of the genus Pimenta : // -- Dried, neither crushed nor ground", "parent": "0904" },
{ "id": "090422", "text": "090422 - Coffee, tea, maté and spices // Pepper of the genus Piper; dried or crushed or ground fruits of the genus Capsicum or of the genus Pimenta. // - Fruits of the genus Capsicum or of the genus Pimenta : // -- Crushed or ground", "parent": "0904" },
{ "id": "0905", "text": "0905 - Vanilla beans", "parent": "09" },
{ "id": "090500", "text": "090500 - Vanilla beans", "parent": "0905" },
{ "id": "090510", "text": "090510 - Coffee, tea, maté and spices // Vanilla. // -Neither crushed nor ground", "parent": "0905" },
{ "id": "090520", "text": "090520 - Coffee, tea, maté and spices // Vanilla. // -Crushed or ground", "parent": "0905" },
{ "id": "0906", "text": "0906 - Cinnamon and cinnamon-tree flowers", "parent": "09" },
{ "id": "090610", "text": "090610 - Cinnamon and cinnamon-tree flowers whole", "parent": "0906" },
{ "id": "090611", "text": "090611 - Cinnamon(Cinnamomum zeylanicum Blume) \u0026 cinnamon-tree flowers, neither crushed/ground", "parent": "0906" },
{ "id": "090619", "text": "090619 - Cinnamon(excl. of 0906.11) \u0026 cinnamon-tree flowers, neither crushed/ground", "parent": "0906" },
{ "id": "090620", "text": "090620 - Cinnamon and cinnamon-tree flowers crushed or ground", "parent": "0906" },
{ "id": "0907", "text": "0907 - Cloves (whole fruit, cloves and stems)", "parent": "09" },
{ "id": "090700", "text": "090700 - Cloves (whole fruit, cloves and stems)", "parent": "0907" },
{ "id": "090710", "text": "090710 - Coffee, tea, maté and spices // Cloves (whole fruit, cloves and stems). // -Neither crushed nor ground", "parent": "0907" },
{ "id": "090720", "text": "090720 - Coffee, tea, maté and spices // Cloves (whole fruit, cloves and stems). // -Crushed or ground", "parent": "0907" },
{ "id": "0908", "text": "0908 - Nutmeg, mace and cardamons", "parent": "09" },
{ "id": "090810", "text": "090810 - Nutmeg", "parent": "0908" },
{ "id": "090811", "text": "090811 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Nutmeg : // -- Neither crushed nor ground", "parent": "0908" },
{ "id": "090812", "text": "090812 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Nutmeg : // -- Crushed or ground", "parent": "0908" },
{ "id": "090820", "text": "090820 - Mace", "parent": "0908" },
{ "id": "090821", "text": "090821 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Mace : // -- Neither crushed nor ground", "parent": "0908" },
{ "id": "090822", "text": "090822 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Mace : // -- Crushed or ground", "parent": "0908" },
{ "id": "090830", "text": "090830 - Cardamoms", "parent": "0908" },
{ "id": "090831", "text": "090831 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Cardamoms : // -- Neither crushed nor ground", "parent": "0908" },
{ "id": "090832", "text": "090832 - Coffee, tea, maté and spices // Nutmeg, mace and cardamoms. // - Cardamoms : // -- Crushed or ground", "parent": "0908" },
{ "id": "0909", "text": "0909 - Seed spices", "parent": "09" },
{ "id": "090910", "text": "090910 - Anise or badian seeds", "parent": "0909" },
{ "id": "090920", "text": "090920 - Coriander seeds", "parent": "0909" },
{ "id": "090921", "text": "090921 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of coriander : // -- Neither crushed nor ground", "parent": "0909" },
{ "id": "090922", "text": "090922 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of coriander : // -- Crushed or ground", "parent": "0909" },
{ "id": "090930", "text": "090930 - Cumin seeds", "parent": "0909" },
{ "id": "090931", "text": "090931 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of cumin : // -- Neither crushed nor ground", "parent": "0909" },
{ "id": "090932", "text": "090932 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of cumin : // -- Crushed or ground", "parent": "0909" },
{ "id": "090940", "text": "090940 - Caraway seeds", "parent": "0909" },
{ "id": "090950", "text": "090950 - Fennel seeds, juniper berries", "parent": "0909" },
{ "id": "090961", "text": "090961 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of anise, badian, caraway or fennel; juniper berries : // -- Neither crushed nor ground", "parent": "0909" },
{ "id": "090962", "text": "090962 - Coffee, tea, maté and spices // Seeds of anise, badian, fennel, coriander, cumin or caraway; juniper berries. // - Seeds of anise, badian, caraway or fennel; juniper berries : // -- Crushed or ground", "parent": "0909" },
{ "id": "0910", "text": "0910 - Other spices", "parent": "09" },
{ "id": "091010", "text": "091010 - Ginger", "parent": "0910" },
{ "id": "091011", "text": "091011 - Coffee, tea, maté and spices // Ginger, saffron, turmeric (curcuma), thyme, bay leaves, curry and other spices. // - Ginger : // -- Neither crushed nor ground", "parent": "0910" },
{ "id": "091012", "text": "091012 - Coffee, tea, maté and spices // Ginger, saffron, turmeric (curcuma), thyme, bay leaves, curry and other spices. // - Ginger : // -- Crushed or ground", "parent": "0910" },
{ "id": "091020", "text": "091020 - Saffron", "parent": "0910" },
{ "id": "091030", "text": "091030 - Turmeric (curcuma)", "parent": "0910" },
{ "id": "091040", "text": "091040 - Thyme and bay leaves", "parent": "0910" },
{ "id": "091050", "text": "091050 - Curry", "parent": "0910" },
{ "id": "091091", "text": "091091 - Mixtures of spices", "parent": "0910" },
{ "id": "091099", "text": "091099 - Spices nes", "parent": "0910" },
{ "id": "10", "text": "10 - Cereals", "parent": "TOTAL" },
{ "id": "1001", "text": "1001 - Wheat and meslin", "parent": "10" },
{ "id": "100110", "text": "100110 - Durum wheat", "parent": "1001" },
{ "id": "100111", "text": "100111 - Cereals // Wheat and meslin. // - Durum wheat : // -- Seed", "parent": "1001" },
{ "id": "100119", "text": "100119 - Cereals // Wheat and meslin. // - Durum wheat : // -- Other", "parent": "1001" },
{ "id": "100190", "text": "100190 - Wheat except durum wheat, and meslin", "parent": "1001" },
{ "id": "100191", "text": "100191 - Cereals // Wheat and meslin. // - Other : // -- Seed", "parent": "1001" },
{ "id": "100199", "text": "100199 - Cereals // Wheat and meslin. // - Other : // -- Other", "parent": "1001" },
{ "id": "1002", "text": "1002 - Rye", "parent": "10" },
{ "id": "100200", "text": "100200 - Rye", "parent": "1002" },
{ "id": "100210", "text": "100210 - Cereals // Rye. // -Seed", "parent": "1002" },
{ "id": "100290", "text": "100290 - Cereals // Rye. // -Other", "parent": "1002" },
{ "id": "1003", "text": "1003 - Barley", "parent": "10" },
{ "id": "100300", "text": "100300 - Barley", "parent": "1003" },
{ "id": "100310", "text": "100310 - Cereals // Barley. // -Seed", "parent": "1003" },
{ "id": "100390", "text": "100390 - Cereals // Barley. // -Other", "parent": "1003" },
{ "id": "1004", "text": "1004 - Oats", "parent": "10" },
{ "id": "100400", "text": "100400 - Oats", "parent": "1004" },
{ "id": "100410", "text": "100410 - Cereals // Oats. // -Seed", "parent": "1004" },
{ "id": "100490", "text": "100490 - Cereals // Oats. // -Other", "parent": "1004" },
{ "id": "1005", "text": "1005 - Maize (corn)", "parent": "10" },
{ "id": "100510", "text": "100510 - Maize (corn) seed", "parent": "1005" },
{ "id": "100590", "text": "100590 - Maize except seed corn", "parent": "1005" },
{ "id": "1006", "text": "1006 - Rice", "parent": "10" },
{ "id": "100610", "text": "100610 - Rice in the husk (paddy or rough)", "parent": "1006" },
{ "id": "100620", "text": "100620 - Rice, husked (brown)", "parent": "1006" },
{ "id": "100630", "text": "100630 - Rice, semi-milled or wholly milled", "parent": "1006" },
{ "id": "100640", "text": "100640 - Rice, broken", "parent": "1006" },
{ "id": "1007", "text": "1007 - Grain sorghum", "parent": "10" },
{ "id": "100700", "text": "100700 - Grain sorghum", "parent": "1007" },
{ "id": "100710", "text": "100710 - Cereals // Grain sorghum. // -Seed", "parent": "1007" },
{ "id": "100790", "text": "100790 - Cereals // Grain sorghum. // -Other", "parent": "1007" },
{ "id": "1008", "text": "1008 - Buckwheat, millet and canary seed, other cereals", "parent": "10" },
{ "id": "100810", "text": "100810 - Buckwheat", "parent": "1008" },
{ "id": "100820", "text": "100820 - Millet", "parent": "1008" },
{ "id": "100821", "text": "100821 - Cereals // Buckwheat, millet and canary seeds; other cereals. // - Millet : // -- Seed", "parent": "1008" },
{ "id": "100829", "text": "100829 - Cereals // Buckwheat, millet and canary seeds; other cereals. // - Millet : // -- Other", "parent": "1008" },
{ "id": "100830", "text": "100830 - Canary seed", "parent": "1008" },
{ "id": "100840", "text": "100840 - Cereals // Buckwheat, millet and canary seeds; other cereals. // -Fonio (Digitaria spp.)", "parent": "1008" },
{ "id": "100850", "text": "100850 - Cereals // Buckwheat, millet and canary seeds; other cereals. // -Quinoa (Chenopodium quinoa)", "parent": "1008" },
{ "id": "100860", "text": "100860 - Cereals // Buckwheat, millet and canary seeds; other cereals. // -Triticale", "parent": "1008" },
{ "id": "100890", "text": "100890 - Cereals unmilled nes", "parent": "1008" },
{ "id": "11", "text": "11 - Milling products, malt, starches, inulin, wheat glute", "parent": "TOTAL" },
{ "id": "1101", "text": "1101 - Wheat or meslin flour", "parent": "11" },
{ "id": "110100", "text": "110100 - Wheat or meslin flour", "parent": "1101" },
{ "id": "1102", "text": "1102 - Cereal flours other than of wheat or meslin", "parent": "11" },
{ "id": "110210", "text": "110210 - Rye flour", "parent": "1102" },
{ "id": "110220", "text": "110220 - Maize (corn) flour", "parent": "1102" },
{ "id": "110230", "text": "110230 - Rice flour", "parent": "1102" },
{ "id": "110290", "text": "110290 - Cereal flour except wheat, meslin, rye, maize, rice", "parent": "1102" },
{ "id": "1103", "text": "1103 - Cereal grouts, meal and pellets", "parent": "11" },
{ "id": "110311", "text": "110311 - Wheat meal", "parent": "1103" },
{ "id": "110312", "text": "110312 - Oat groats or meal", "parent": "1103" },
{ "id": "110313", "text": "110313 - Maize (corn) groats or meal", "parent": "1103" },
{ "id": "110314", "text": "110314 - Rice groats or meal", "parent": "1103" },
{ "id": "110319", "text": "110319 - Cereal groats or meal except wheat, maize, rice, oats", "parent": "1103" },
{ "id": "110320", "text": "110320 - Pellets of cereals", "parent": "1103" },
{ "id": "110321", "text": "110321 - Wheat pellets", "parent": "1103" },
{ "id": "110329", "text": "110329 - Cereal pellets except wheat", "parent": "1103" },
{ "id": "1104", "text": "1104 - Worked cereal grains except flour, groat, meal, pelle", "parent": "11" },
{ "id": "110411", "text": "110411 - Barley, rolled or flaked grains", "parent": "1104" },
{ "id": "110412", "text": "110412 - Oats, rolled or flaked grains", "parent": "1104" },
{ "id": "110419", "text": "110419 - Cereals, rolled or flaked grains nes", "parent": "1104" },
{ "id": "110421", "text": "110421 - Barley, hulled, pearled, sliced or kibbled", "parent": "1104" },
{ "id": "110422", "text": "110422 - Oats, hulled, pearled, sliced or kibbled", "parent": "1104" },
{ "id": "110423", "text": "110423 - Maize (corn), hulled, pearled, sliced or kibbled", "parent": "1104" },
{ "id": "110429", "text": "110429 - Cereals, hulled, pearled, sliced or kibbled nes", "parent": "1104" },
{ "id": "110430", "text": "110430 - Germ of cereals, whole, rolled, flaked or ground", "parent": "1104" },
{ "id": "1105", "text": "1105 - Potato flour, meal, flakes, etc", "parent": "11" },
{ "id": "110510", "text": "110510 - Potato flour or meal", "parent": "1105" },
{ "id": "110520", "text": "110520 - Potato flakes, granules and pellets", "parent": "1105" },
{ "id": "1106", "text": "1106 - Flour and meal of legumes, roots, tubers, nuts, citru", "parent": "11" },
{ "id": "110610", "text": "110610 - Flour or meal of dried legumes", "parent": "1106" },
{ "id": "110620", "text": "110620 - Flour or meal of sago, starchy roots or tubers", "parent": "1106" },
{ "id": "110630", "text": "110630 - Flour, meal, powder of fruit/nut, citrus or melon pee", "parent": "1106" },
{ "id": "1107", "text": "1107 - Malt", "parent": "11" },
{ "id": "110710", "text": "110710 - Malt, not roasted", "parent": "1107" },
{ "id": "110720", "text": "110720 - Malt, roasted", "parent": "1107" },
{ "id": "1108", "text": "1108 - Starches, inulin", "parent": "11" },
{ "id": "110811", "text": "110811 - Wheat, starch", "parent": "1108" },
{ "id": "110812", "text": "110812 - Maize (corn) starch", "parent": "1108" },
{ "id": "110813", "text": "110813 - Potato starch", "parent": "1108" },
{ "id": "110814", "text": "110814 - Manioc (cassava) starch", "parent": "1108" },
{ "id": "110819", "text": "110819 - Starches except wheat, maize, potato, manioc", "parent": "1108" },
{ "id": "110820", "text": "110820 - Inulin", "parent": "1108" },
{ "id": "1109", "text": "1109 - Wheat gluten", "parent": "11" },
{ "id": "110900", "text": "110900 - Wheat gluten", "parent": "1109" },
{ "id": "12", "text": "12 - Oil seed, oleagic fruits, grain, seed, fruit, etc, ne", "parent": "TOTAL" },
{ "id": "1201", "text": "1201 - Soya beans", "parent": "12" },
{ "id": "120100", "text": "120100 - Soya beans", "parent": "1201" },
{ "id": "120110", "text": "120110 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Soya beans, whether or not broken. // -Seed", "parent": "1201" },
{ "id": "120190", "text": "120190 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Soya beans, whether or not broken. // -Other", "parent": "1201" },
{ "id": "1202", "text": "1202 - Ground-nuts, not roasted or otherwise cooked", "parent": "12" },
{ "id": "120210", "text": "120210 - Ground-nuts in shell not roasted or cooked", "parent": "1202" },
{ "id": "120220", "text": "120220 - Ground-nuts shelled, not roasted or cooked", "parent": "1202" },
{ "id": "120230", "text": "120230 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Ground-nuts, not roasted or otherwise cooked, whether or not shelled or broken. // -Seed", "parent": "1202" },
{ "id": "120241", "text": "120241 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Ground-nuts, not roasted or otherwise cooked, whether or not shelled or broken. // - Other : // -- In shell", "parent": "1202" },
{ "id": "120242", "text": "120242 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Ground-nuts, not roasted or otherwise cooked, whether or not shelled or broken. // - Other : // -- Shelled, whether or not broken", "parent": "1202" },
{ "id": "1203", "text": "1203 - Copra", "parent": "12" },
{ "id": "120300", "text": "120300 - Copra", "parent": "1203" },
{ "id": "1204", "text": "1204 - Linseed", "parent": "12" },
{ "id": "120400", "text": "120400 - Linseed", "parent": "1204" },
{ "id": "1205", "text": "1205 - Rape or colza seeds", "parent": "12" },
{ "id": "120500", "text": "120500 - Rape or colza seeds", "parent": "1205" },
{ "id": "120510", "text": "120510 - Low erucic acid rape/colza seeds, whether or not broken", "parent": "1205" },
{ "id": "120590", "text": "120590 - Rape/colza seeds (excl. low erucic acid), whether or not broken", "parent": "1205" },
{ "id": "1206", "text": "1206 - Sunflower seeds", "parent": "12" },
{ "id": "120600", "text": "120600 - Sunflower seeds", "parent": "1206" },
{ "id": "1207", "text": "1207 - Oil seeds and oleaginous fruits nes", "parent": "12" },
{ "id": "120710", "text": "120710 - Palm nuts and kernels", "parent": "1207" },
{ "id": "120720", "text": "120720 - Cotton seeds", "parent": "1207" },
{ "id": "120721", "text": "120721 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Other oil seeds and oleaginous fruits, whether or not broken. // - Cotton seeds : // -- Seed", "parent": "1207" },
{ "id": "120729", "text": "120729 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Other oil seeds and oleaginous fruits, whether or not broken. // - Cotton seeds : // -- Other", "parent": "1207" },
{ "id": "120730", "text": "120730 - Castor oil seeds", "parent": "1207" },
{ "id": "120740", "text": "120740 - Sesamum seeds", "parent": "1207" },
{ "id": "120750", "text": "120750 - Mustard seeds", "parent": "1207" },
{ "id": "120760", "text": "120760 - Safflower seeds", "parent": "1207" },
{ "id": "120770", "text": "120770 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Other oil seeds and oleaginous fruits, whether or not broken. // -Melon seeds", "parent": "1207" },
{ "id": "120791", "text": "120791 - Poppy seeds", "parent": "1207" },
{ "id": "120792", "text": "120792 - Shea nuts (karite nuts)", "parent": "1207" },
{ "id": "120799", "text": "120799 - Oil seeds and oleaginous fruits, nes", "parent": "1207" },
{ "id": "1208", "text": "1208 - Flour, meal of oleaginous seed or fruit except mustar", "parent": "12" },
{ "id": "120810", "text": "120810 - Soya bean flour or meal", "parent": "1208" },
{ "id": "120890", "text": "120890 - Flour or meal of oil seed, fruit, except mustard, soy", "parent": "1208" },
{ "id": "1209", "text": "1209 - Seed, fruit and spores, for sowing", "parent": "12" },
{ "id": "120910", "text": "120910 - Sugar beet seed, of a kind used for sowing", "parent": "1209" },
{ "id": "120911", "text": "120911 - Seed, sugar beet, for sowing", "parent": "1209" },
{ "id": "120919", "text": "120919 - Seed, beet, except sugar, for sowing", "parent": "1209" },
{ "id": "120921", "text": "120921 - Seed, lucerne (alfalfa), for sowing", "parent": "1209" },
{ "id": "120922", "text": "120922 - Seed, clover, for sowing", "parent": "1209" },
{ "id": "120923", "text": "120923 - Seed, fescue, for sowing", "parent": "1209" },
{ "id": "120924", "text": "120924 - Seed, Kentucky blue grass, for sowing", "parent": "1209" },
{ "id": "120925", "text": "120925 - Seed, rye grass, for sowing", "parent": "1209" },
{ "id": "120926", "text": "120926 - Seed, Timothy grass, for sowing", "parent": "1209" },
{ "id": "120929", "text": "120929 - Seed, forage plants, for sowing nes", "parent": "1209" },
{ "id": "120930", "text": "120930 - Seed, flower, for sowing", "parent": "1209" },
{ "id": "120991", "text": "120991 - Seed, vegetable, nes for sowing", "parent": "1209" },
{ "id": "120999", "text": "120999 - Seed, fruits and spores for sowing, nes", "parent": "1209" },
{ "id": "1210", "text": "1210 - Hop cones, fresh or dried, lupulin", "parent": "12" },
{ "id": "121010", "text": "121010 - Hop cones, not ground, powdered or pelleted", "parent": "1210" },
{ "id": "121020", "text": "121020 - Hop cones, ground, powdered or pelleted and lupulin", "parent": "1210" },
{ "id": "1211", "text": "1211 - Plants, plant parts for perfumery, pharmacy, etc,", "parent": "12" },
{ "id": "121110", "text": "121110 - Liquorice roots", "parent": "1211" },
{ "id": "121120", "text": "121120 - Ginseng roots", "parent": "1211" },
{ "id": "121130", "text": "121130 - Coca leaf", "parent": "1211" },
{ "id": "121140", "text": "121140 - Poppy straw", "parent": "1211" },
{ "id": "121190", "text": "121190 - Plants \u0026 parts, pharmacy, perfume, insecticide use ne", "parent": "1211" },
{ "id": "1212", "text": "1212 - Locust beans, seaweed, sugar beet, cane, for food", "parent": "12" },
{ "id": "121210", "text": "121210 - Locust beans, locust seeds", "parent": "1212" },
{ "id": "121220", "text": "121220 - Seaweeds and other algae,", "parent": "1212" },
{ "id": "121221", "text": "121221 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Locust beans, seaweeds and other algae, sugar beet and sugar cane, fresh, chilled, frozen or dried, whether or not ground; fruit sto", "parent": "1212" },
{ "id": "121229", "text": "121229 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Locust beans, seaweeds and other algae, sugar beet and sugar cane, fresh, chilled, frozen or dried, whether or not ground; fruit sto", "parent": "1212" },
{ "id": "121230", "text": "121230 - Apricot, peach and plum stones \u0026 kernels, human food", "parent": "1212" },
{ "id": "121291", "text": "121291 - Sugar beet", "parent": "1212" },
{ "id": "121292", "text": "121292 - Sugar cane", "parent": "1212" },
{ "id": "121293", "text": "121293 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Locust beans, seaweeds and other algae, sugar beet and sugar cane, fresh, chilled, frozen or dried, whether or not ground; fruit sto", "parent": "1212" },
{ "id": "121294", "text": "121294 - Oil seeds and oleaginous fruits; miscellaneous grains,seeds and fruit; industrial or medicinal plants; straw and fodder // Locust beans, seaweeds and other algae, sugar beet and sugar cane, fresh, chilled, frozen or dried, whether or not ground; fruit sto", "parent": "1212" },
{ "id": "121299", "text": "121299 - Vegetable products nes for human consumption", "parent": "1212" },
{ "id": "1213", "text": "1213 - Cereal straw and husks, unprepared", "parent": "12" },
{ "id": "121300", "text": "121300 - Cereal straw \u0026 husks, unprepared", "parent": "1213" },
{ "id": "1214", "text": "1214 - Animal fodder and forage products, roots etc.", "parent": "12" },
{ "id": "121410", "text": "121410 - Lucerne (alfalfa) meal and pellets", "parent": "1214" },
{ "id": "121490", "text": "121490 - Other fodder and forage products, roots, etc.", "parent": "1214" },
{ "id": "13", "text": "13 - Lac, gums, resins, vegetable saps and extracts nes", "parent": "TOTAL" },
{ "id": "1301", "text": "1301 - Lac, natural gums, resins, gum-resins and balsams", "parent": "13" },
{ "id": "130110", "text": "130110 - Lac", "parent": "1301" },
{ "id": "130120", "text": "130120 - Gum arabic", "parent": "1301" },
{ "id": "130190", "text": "130190 - Natural gum, resin, gum-resin, balsam, not gum arabic", "parent": "1301" },
{ "id": "1302", "text": "1302 - Vegetable saps, etc, pectin etc, agar-agar etc", "parent": "13" },
{ "id": "130211", "text": "130211 - Opium sap", "parent": "1302" },
{ "id": "130212", "text": "130212 - Liquorice extract", "parent": "1302" },
{ "id": "130213", "text": "130213 - Hop extract", "parent": "1302" },
{ "id": "130214", "text": "130214 - Pyrethrum, roots containing rotenone, extracts", "parent": "1302" },
{ "id": "130219", "text": "130219 - Vegetable saps and extracts nes", "parent": "1302" },
{ "id": "130220", "text": "130220 - Pectic substances, pectinates, pectates", "parent": "1302" },
{ "id": "130231", "text": "130231 - Agar-agar", "parent": "1302" },
{ "id": "130232", "text": "130232 - Mucilages \u0026 thickeners, from locust bean, guar seeds", "parent": "1302" },
{ "id": "130239", "text": "130239 - Mucilages and thickeners nes", "parent": "1302" },
{ "id": "14", "text": "14 - Vegetable plaiting materials, vegetable products nes", "parent": "TOTAL" },
{ "id": "1401", "text": "1401 - Vegetable material for plaiting", "parent": "14" },
{ "id": "140110", "text": "140110 - Bamboos used primarily for plaiting", "parent": "1401" },
{ "id": "140120", "text": "140120 - Rattan used primarily for plaiting", "parent": "1401" },
{ "id": "140190", "text": "140190 - Vegetable materials nes, used primarily for plaiting", "parent": "1401" },
{ "id": "1402", "text": "1402 - Vegetable material for stuffing or padding", "parent": "14" },
{ "id": "140200", "text": "140200 - Vegetable mats. of a kind used primarily as stuffing/as padding (e.g., kapo ...", "parent": "1402" },
{ "id": "140210", "text": "140210 - Kapok", "parent": "1402" },
{ "id": "140290", "text": "140290 - Veg mat nes usd as stuff", "parent": "1402" },
{ "id": "140291", "text": "140291 - Vegetable hair used as stuffing or padding", "parent": "1402" },
{ "id": "140299", "text": "140299 - Vegetable material nes used as stuffing", "parent": "1402" },
{ "id": "1403", "text": "1403 - Vegetable material for brooms and brushes", "parent": "14" },
{ "id": "140300", "text": "140300 - Vegetable mats. of a kind used primarily in brooms/brushes (e.g., broomcorn ...", "parent": "1403" },
{ "id": "140310", "text": "140310 - Broom corn used in brooms or brushes", "parent": "1403" },
{ "id": "140390", "text": "140390 - Vegetable material nes used in brooms or brushes", "parent": "1403" },
{ "id": "1404", "text": "1404 - Vegetable products, nes", "parent": "14" },
{ "id": "140410", "text": "140410 - Raw vegetable materials for dyeing or tanning", "parent": "1404" },
{ "id": "140420", "text": "140420 - Cotton linters", "parent": "1404" },
{ "id": "140490", "text": "140490 - Vegetable products nes", "parent": "1404" },
{ "id": "15", "text": "15 - Animal,vegetable fats and oils, cleavage products, et", "parent": "TOTAL" },
{ "id": "1501", "text": "1501 - Lard, other pig fat and poultry fat, rendered", "parent": "15" },
{ "id": "150100", "text": "150100 - Lard, other pig fat and poultry fat, rendered", "parent": "1501" },
{ "id": "150110", "text": "150110 - Animal or vegetable fats and oils and their cleavage products; prepared edible fats; animal or vegetable waxes // Pig fat (including lard) and poultry fat, other than that of heading 02.09 or 15.03. // -Lard", "parent": "1501" },
{ "id": "150120", "text": "150120 - Animal or vegetable fats and oils and their cleavage products; prepared edible fats; animal or vegetable waxes // Pig fat (including lard) and poultry fat, other than that of heading 02.09 or 15.03. // -Other pig fat", "parent": "1501" },
{ "id": "150190", "text": "150190 - Animal or vegetable fats and oils and their cleavage products; prepared edible fats; animal or vegetable waxes // Pig fat (including lard) and poultry fat, other than that of heading 02.09 or 15.03. // -Other", "parent": "1501" },
{ "id": "1502", "text": "1502 - Bovine, sheep and goat fats, raw or rendered", "parent": "15" },
{ "id": "150200", "text": "150200 - Bovine, sheep and goat fats, raw or rendered", "parent": "1502" },
{ "id": "150210", "text": "150210 - Animal or vegetable fats and oils and their cleavage products; prepared edible fats; animal or vegetable waxes // Fats of bovine animals, sheep or goats, other than those of heading 15.03. // -Tallow", "parent": "1502" },
{ "id": "150290", "text": "150290 - Animal or vegetable fats and oils and their cleavage products; prepared edible fats; animal or vegetable waxes // Fats of bovine animals, sheep or goats, other than those of heading 15.03. // -Other", "parent": "1502" },
{ "id": "1503", "text": "1503 - Lard stearin, oleostearin \u0026 oils, natural tallow oil", "parent": "15" },
{ "id": "150300", "text": "150300 - Lard stearin, oleostearin \u0026 oils, natural tallow oil", "parent": "1503" },
{ "id": "1504", "text": "1504 - Fish, marine mammal fat or oil not chemically modifie", "parent": "15" },
{ "id": "150410", "text": "150410 - Fish-liver oils, fractions, not chemically modified", "parent": "1504" },
{ "id": "150420", "text": "150420 - Fish oils except liver, not chemically modified", "parent": "1504" },
{ "id": "150430", "text": "150430 - Marine mammal fats, oils, etc. not chemically modifie", "parent": "1504" },
{ "id": "1505", "text": "1505 - Wool grease and fatty derivatives (including lanolin)", "parent": "15" },
{ "id": "150500", "text": "150500 - Wool grease \u0026 fatty subs. derived therefrom, incl. lanolin", "parent": "1505" },
{ "id": "150510", "text": "150510 - Wool grease, crude", "parent": "1505" },
{ "id": "150590", "text": "150590 - Derivatives of wool grease (including lanolin)", "parent": "1505" },
{ "id": "1506", "text": "1506 - Animal fat, oil, fractions not chemically modified ne", "parent": "15" },
{ "id": "150600", "text": "150600 - Animal fats,oils,fractions not chemically modified ne", "parent": "1506" },
{ "id": "1507", "text": "1507 - Soya-bean oil, fractions, not chemically modified", "parent": "15" },
{ "id": "150710", "text": "150710 - Soya-bean oil crude, whether or not degummed", "parent": "1507" },
{ "id": "150790", "text": "150790 - Refined soya-bean oil, not chemically modified", "parent": "1507" },
{ "id": "1508", "text": "1508 - Ground-nut oil, fractions, not chemically modified", "parent": "15" },
{ "id": "150810", "text": "150810 - Ground-nut oil, crude", "parent": "1508" },
{ "id": "150890", "text": "150890 - Refined ground-nut oil not chemically modified", "parent": "1508" },
{ "id": "1509", "text": "1509 - Olive oil and its fractions, not chemically modified", "parent": "15" },
{ "id": "150910", "text": "150910 - Olive oil, virgin", "parent": "1509" },
{ "id": "150990", "text": "150990 - Olive oil, fractions, refined, not chemically modifie", "parent": "1509" },
{ "id": "1510", "text": "1510 - Olive oil, fractions, blends, not chemically modified", "parent": "15" },
{ "id": "151000", "text": "151000 - Olive oil, fractions, blends, not chemically modified", "parent": "1510" },
{ "id": "1511", "text": "1511 - Palm oil and its fractions, not chemically modified", "parent": "15" },
{ "id": "151110", "text": "151110 - Palm oil, crude", "parent": "1511" },
{ "id": "151190", "text": "151190 - Palm oil or fractions simply refined", "parent": "1511" },
{ "id": "1512", "text": "1512 - Safflower, sunflower and cotton-seed oil, fractions", "parent": "15" },
{ "id": "151211", "text": "151211 - Sunflower-seed or safflower oil, crude", "parent": "1512" },
{ "id": "151219", "text": "151219 - Sunflower or safflower oil,fractions simply refined", "parent": "1512" },
{ "id": "151221", "text": "151221 - Cotton-seed oil crude", "parent": "1512" },
{ "id": "151229", "text": "151229 - Cotton-seed or fractions simply refined", "parent": "1512" },
{ "id": "1513", "text": "1513 - Coconut, palm kernel, babassu oil, fractions, refined", "parent": "15" },
{ "id": "151311", "text": "151311 - Coconut (copra) oil crude", "parent": "1513" },
{ "id": "151319", "text": "151319 - Coconut (copra) oil or fractions simply refined", "parent": "1513" },
{ "id": "151321", "text": "151321 - Palm kernel or babassu oil, crude", "parent": "1513" },
{ "id": "151329", "text": "151329 - Palm kernel \u0026 babassu oil, fractions, simply refined", "parent": "1513" },
{ "id": "1514", "text": "1514 - Rape, colza, mustard oil, fractions, simply refined", "parent": "15" },
{ "id": "151410", "text": "151410 - Canola, rape, colza or mustard oil, crude", "parent": "1514" },
{ "id": "151411", "text": "151411 - Low erucic acid rape/colza oil, crude", "parent": "1514" },
{ "id": "151419", "text": "151419 - Low erucic acid rape/colza oil, other than crude, \u0026 fractions thereof , whe ...", "parent": "1514" },
{ "id": "151490", "text": "151490 - Canola, rape, colza or mustard oil, fractions, refine", "parent": "1514" },