File size: 11,256 Bytes
d3266e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
names:
- '-'
- 555 sardines in tomato sauce
- 555 tuna afritada
- 555 tuna caldereta
- 7up
- absolute pure distilled drinking water
- agnesi polenta
- akabare khursani
- alaska classic sweetened condensed filled milk
- alaska condensada
- alaska evaporada
- all natural seasons tropical fruit
- almond
- almond milk
- angel all purpose creamer
- aook
- apple
- apples
- aqua life filtration systems
- argentina corned beef
- argentina giniling
- argentina meat loaf
- artichoke
- ash gourd
- asparagus
- avocado
- bacon
- bamboo shoots
- banana
- bananas
- basmati rice
- bazlama
- beans
- bear brand fortified powdered drink milk
- bear brand swak pack chocomilk
- beaten rice
- beef
- beetroot
- bell pepper
- bethu ko saag
- bingo double choco
- bingo orange cream
- bitter gourd
- black beans
- black lentils
- blackberry
- blue lychee
- blueberry
- bok choy
- book
- bottle gourd
- bread
- broad beans
- broccoli
- brussel sprouts
- buff meat
- butter
- c2 apple green tea
- c2 lemon green tea
- cabbage
- cadbury dairy milk
- cadbury dairy milk wholenut
- calamansi
- califlower
- calvin klein
- cantaloupe
- capsicum
- carrot
- carrots
- cassava
- cauliflower
- cdo funtastyk chicken tocino
- cdo karne norte classic
- cdo meat loaf
- century tuna flakes in oil
- cereal
- cerealbox
- chayote
- cheese
- cheez whiz original
- chicken
- chicken gizzards
- chickpeas
- chili pepper
- chili powder
- chilli
- chillies
- chips ahoy milka
- chockolate
- choco chum choco
- choco chum white choco
- choco mucho cookie sandwich white chocolate
- choco mucho dark chocolate
- choco mucho milk chocolate
- choco mucho white chocolate
- chocolate
- chowmein noodles
- cinnamon
- clementine
- cobra energy drink
- coca cola coke zero
- coca cola original
- coca cola original in can
- coca cola royal
- coca cola sprite
- coca cola sprite in can
- coca cola zero sugar
- coca cola zero sugar in can
- coffe
- coffee
- combi triple choco
- cookie
- coriander
- corn
- cornflakec
- courgates
- crab meat
- cream
- cucumber
- dabur honey
- daily quezo
- dates
- datu puti soy sauce
- datu puti vinegar
- del monte creamy and cheesy sphagetti sauce
- del monte fiesta fruit cocktail
- del monte fiilipino style spaghetti sauce
- del monte filipino style spaghetti sauce
- del monte four seasons
- del monte italian style spaghetti sauce
- del monte mango juice drink
- del monte original style tomato sauce
- del monte pineapple juice drink heart smart
- del monte pineapple juice with vitamins ace
- del monte pineapple tidbits
- del monte potato crisp biscuit original
- del monte sweet style sphagetti sauce
- del monte sweetened pineapple juice drink
- delfi knick knacks strawberry
- delight duo active probiotic fiber
- detergent
- don frank buko pandan gulaman powder
- doowee donut strawberry dipped donut with strawberry flavored
- doowee donut white choco frost with milky cream flavored
- doreen sweetened condensed creamer
- doritos nacho cheese
- dr pepper
- drinks
- ec crunchy choco flakes
- eden original
- egg
- eggplant
- eggs
- el rancho corned beef
- farsi ko munta
- ferrero rocher
- fibisco choco mallows
- fibisco hi ro chocolate flavored
- fibisco the ultimate chocolate chip cookies
- fiddlehead ferns
- fish
- flour
- fudgee barr chocolate
- fudgee barr macapuno
- fudgee barr milk custard
- fudgee barr vanilla
- galia
- galinco chips delight  chocolate chip cookies
- galinco chips delight striped cappuccino cookies
- galinco chips delight striped chocolate cookies
- garden cress
- garden peas
- garlic
- gatorade blue bolt
- gatorade fierce grape
- gatorade fierce tropical fruit
- ginger
- glico pocky chocolate
- glico pocky strawberry
- goya almond in milk chocolate
- goya choco spread
- goya cream white chocolate
- goya dark chocolate
- goya milk chocolate
- goya take it 4 fingers
- goya take it dark chocolate
- goya very berries
- goya winter chill milk chocolate
- granny goose tortillos cheese
- granny goose tortillos chili
- grapes
- great buy mushrooms pieces and stems
- great taste supreme toffee hazelnut
- green bell pepper
- green brinjal
- green chili
- green lentils
- green mint
- green peas
- green soyabean
- groats
- ground meat
- gundruk
- ham
- hansel chocolate sandwich
- hansel mocha sandwich
- heavy cream
- hokkaido mackerel
- honey dew
- honeydew
- ice
- ion supply drink pocari sweat
- jack daniels
- jack fruit
- jack n jill cheesy knots milky cheese flavored
- jack n jill chicharon ni mang juan
- jack n jill chippy barbecue
- jack n jill chippy chili and cheese
- jack n jill cloud 9 choco fudge
- jack n jill cloud 9 classic
- jack n jill cream o vanilla
- jack n jill dewberry blueberries n cream
- jack n jill dewberry blueberry cheesecake
- jack n jill hello chocolate
- jack n jill mr chips nacho cheese flavored
- jack n jill nips creamy tiramisu
- jack n jill nips dark chocolate
- jack n jill nips milk chocolate
- jack n jill nips peanut
- jack n jill nips white chocolate
- jack n jill nova cheddar flavor
- jack n jill piattos cheese
- jack n jill piattos cheese supersized
- jack n jill piattos roadhouse barbecue
- jack n jill piattos roast beef
- jack n jill piattos sour cream and onion
- jack n jill piattos sour cream and onion supersized
- jack n jill pic a ultimate cheddar
- jack n jill presto choco vanilla
- jack n jill presto chocolate
- jack n jill presto peanut
- jack n jill quake overload mocha butter
- jack n jill quake overload white choco
- jack n jill roller coaster cheddar cheese flavored
- jack n jill vcut spicy barbeque
- jalees bbq mushroom chicharon
- jalees garlic mushroom chicharon
- jersey chocolate condensed creamer
- jersey sweetened condensed creamer
- jinro chamisul original soju
- jinro grapefruit soju
- jinro green grape soju
- jinro peach soju
- jinro strawberry soju
- jolly mushrooms
- juan tasty
- juice
- jumpee chocolate
- ketchup
- kimchi
- king sue chicken tocino
- king sue pork tocino
- knorr liquid seasoning original
- kopiko brown coffee
- ladys choice real mayonnaise
- lapsi
- lays classic
- lays stax extra cheese flavour
- lays stax original
- lays stax sour cream and onion
- le mineral
- lemon
- lemon square lava cake chocolate
- lemon square lava cake cream bavarian
- lemons
- leslies clover chips cheesier
- leslies clover chips chili and cheese
- lettuce
- lime
- long beans
- lotte pepero almond
- lotte pepero original
- lucky me beef na beef noodles
- lucky me chicken na chicken noodles
- lucky me go cup batchoy
- lucky me go cup bulalo
- lucky me pancit canton chilimansi
- lucky me pancit canton extra hot chili
- lucky me pancit canton kalamansi
- m y san grahams
- m-ms chocolate
- magic chips barbeque flavored
- magic chips cheese flavored
- mango
- mars caramel chocolate bar
- masyaura
- mayonnaise
- mayora beng beng chocolate
- mayora cal cheese cheese wafer
- meat
- milk
- minced meat
- mini oreo original
- mirinda orange flavor
- moringa leaves
- mountain dew
- mozarella cheese
- mug root beer
- mushroom
- mussel
- mutton
- nagaraya garlic cracker nuts
- nectarine
- nescafe creamy latte twin pack
- nescafe creamy white twin pack
- nescafe original
- nespresso
- nestea lemon tea drink
- nestle all purpose cream
- nestle bear brand sterilized milk
- nestle gold corn flakes
- nestle koko krunch all in one
- nestle koko krunch chocolate
- nestle milo
- nissin bread stix
- nissin butter coconut
- nissin cup noodles beef
- nissin cup noodles seafood
- nissin cup noodles spicy hot beef
- nissin eggnog cookies
- noodle
- nutrela
- nutri snack cheez it cheese
- nutri snack moby caramel puffs
- nutri snack moby crunchy chocolate
- nutri snack peewee sizzling bbq
- o puff mango cream filled marshmallows
- oil
- oishi bread pan buttered toast
- oishi bread pan cheese and onion
- oishi bread pan toasted garlic
- oishi bread pan white cheddar cheese
- oishi cracklings salt and vinegar
- oishi crispy patata
- oishi fishda fish kropeck
- oishi kirei shrimp flavor
- oishi pillows choco filled crackers
- oishi pillows ube filled crackers
- oishi potato chips plain salted flavor
- oishi potato fries cheese
- oishi prawn crackers spicy flavor
- oishi rinbee cheese
- oishi sponge chocolate crunch
- ok cheese
- okra
- olive
- olive oil
- olives
- onion
- onion leaves
- orange
- oranges
- oreo chocolate cream
- oreo chocolate creme
- oreo double stuff
- oyster
- paco rabanne
- palak
- palungo
- pampangas best chicken longaniza
- pampangas best native longaniza
- pampangas best pampanga longaniza
- pampangas best smoked longaniza
- pampangas best tocino original
- paneer
- papaya
- parmesan cheese
- parsley
- pasta
- patanjali honey
- pea
- peach
- pear
- peas
- pedro domecq fundador solera
- pepsi
- pik nik
- pineapple
- pixel 4
- planet oat original
- plum
- pointed gourd
- pork
- pork rib
- potato
- pringles cheesy cheese
- pringles pizza
- pringles saucy bbq
- pringles sour cream and onion
- pumpkin
- pure foods chinese style luncheon meat
- queso cheese
- radish
- rahar ko daal
- rasp berries
- raspberries
- rayo ko saag
- rebisco choco crackers
- rebisco hansel crackers
- rebisco strawberry crackers
- red beans
- red bel pepper
- red bell pepper
- red lentils
- red onion
- refresh mineral water
- reno liver spread
- rice
- ritter sport nocciole intere
- royal elbow macaroni
- sajjyun
- salad
- salmon
- salt
- samsung s20
- san marino chili corned tuna
- san marino corned tuna
- sauce
- sausage
- sausages
- scallop
- seaweed
- selecta choco almond fudge
- selecta moo fortified chocolate
- selecta quezo real
- selecta strawberry solo pack
- shrimp
- sliced garlic
- snack pack choco crunchies chocolate
- snake gourd
- snickers
- soy sauce
- soyabean
- spinace
- spinach
- sponge gourd
- spring onion
- squash
- stateline loaded chocolate filled
- sticko chocolate
- stinging nettle
- straw berry
- strawberry
- sugar
- summit drinking water
- super delights brownie bites chocolate
- super golden bihon
- sweet potato
- sweetcorn
- swiss miss chocolate milk blend
- tang pineapple
- taro leaves
- taro root
- thukpa noodles
- tida
- toast bread
- toblerone white chocolate
- todays mixed fruit
- tofu
- tomato
- tomato paste
- topss choco
- tori ko saag
- tree tomato
- tropicana
- tuna
- turnip
- uni pak premium sardines
- vicente vidal queso y cebolla
- vitamilk choco shake
- vitamilk double choco shake
- vitasoy original
- vitasoy plus original
- wallnut
- water
- water melon
- watermelon
- wattermelon
- wheat
- wilkins sparkling water
- yakult probiotics
- yellow bell pepper
- yellow lentils
- yoghurt
- yogurt
- ys quality nata de coco green
- yum yum strawberry snack
- zesto big apple
- zesto big grapes
- zesto big mango
- zesto big orange
- zesto big pineapple
- zucchini
nc: 503
test: ../test/images
train: ../train/images
val: ../valid/images